Example #1
0
        private void selectTag(Button selectBtn, Telerik.WinControls.UI.RadLabel rlblLeft, Telerik.WinControls.UI.RadLabel rlblRight, int iIndex)
        {
            SelectTagForm form = new SelectTagForm();

            form.ThisTag = selectBtn.Tag == null ? "" : selectBtn.Tag.ToString();
            form.ShowDialog();

            if (form.RemoveFlag)
            {
                selectBtn.Text = removeText;
                selectBtn.Tag  = null;

                var model = SelectedTag.Where(o => o.index == iIndex).FirstOrDefault();

                if (model != null)
                {
                    SelectedTag.Remove(model);
                }

                rlblLeft.Text  = "";
                rlblRight.Text = "";
            }
            else
            {
                if (!string.IsNullOrEmpty(form.Tags))
                {
                    //设置曲线图量程
                    historyDataShow1.SetRange(Convert.ToDouble(form.From), Convert.ToDouble(form.To));
                    rlblLeft.Text  = form.From.ToString("#0");
                    rlblRight.Text = form.To.ToString("#0");
                    selectBtn.Text = form.Captial;
                    selectBtn.Tag  = form.Tags;

                    var model = SelectedTag.Where(o => o.index == iIndex).FirstOrDefault();

                    if (model == null)
                    {
                        HistoryDataModel hdm = new HistoryDataModel();
                        hdm.index = iIndex;
                        hdm.Tag   = form.Tags;
                        hdm.from  = double.Parse(rlblLeft.Text);
                        hdm.to    = double.Parse(rlblRight.Text);
                        SelectedTag.Add(hdm);
                    }
                    else
                    {
                        model.Tag  = form.Tags;
                        model.from = double.Parse(rlblLeft.Text);
                        model.to   = double.Parse(rlblRight.Text);
                    }
                }
            }
        }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.filterBox = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     ((System.ComponentModel.ISupportInitialize)(this.filterBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     this.SuspendLayout();
     //
     // filterBox
     //
     this.filterBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.filterBox.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.filterBox.Location = new System.Drawing.Point(3, 2);
     this.filterBox.Name = "filterBox";
     this.filterBox.Size = new System.Drawing.Size(259, 25);
     this.filterBox.TabIndex = 14;
     this.filterBox.TabStop = false;
     this.filterBox.TextChanged += new System.EventHandler(this.filterBox_TextChanged);
     //
     // radLabel1
     //
     this.radLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel1.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold);
     this.radLabel1.Location = new System.Drawing.Point(268, 3);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.Size = new System.Drawing.Size(42, 23);
     this.radLabel1.TabIndex = 13;
     this.radLabel1.Text = "جستجو:";
     this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // UCGridFilter
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.filterBox);
     this.Controls.Add(this.radLabel1);
     this.Name = "UCGridFilter";
     this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.Size = new System.Drawing.Size(313, 41);
     ((System.ComponentModel.ISupportInitialize)(this.filterBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        private void TrinhBayGiaTheoSoLuong(int soLuong)
        {
            Telerik.WinControls.UI.RadLabel lb;
            //flowLayOut.Controls.Clear();

            if (bangGiaInNhanhPres.SoLuongTinhS().Length <= 0)
            {
                return;
            }

            lb      = new Telerik.WinControls.UI.RadLabel();
            lb.Text = string.Format("{0}" + '\r' + '\n' + "{1:0,0.00}" + '\r' + '\n' + "{2:0,0.00}/{3}",
                                    bangGiaInNhanhPres.KetQuaSoLuongGia(soLuong).SoLuong,
                                    bangGiaInNhanhPres.KetQuaSoLuongGia(soLuong).Gia,
                                    bangGiaInNhanhPres.KetQuaSoLuongGia(soLuong).GiaTrungBinhDonVi(),
                                    this.DonViTinh);
            flowLayOut.Controls.Add(lb);
        }
        private void TrinhBaySoLuong_Gia()
        {
            Telerik.WinControls.UI.RadLabel lb;
            flowLayOut.Controls.Clear();

            if (bangGiaInNhanhPres.SoLuong_GiaS().Length <= 0)
            {
                return;
            }

            for (int i = 0; i < bangGiaInNhanhPres.SoLuong_GiaS().Length; ++i)
            {
                lb      = new Telerik.WinControls.UI.RadLabel();
                lb.Text = string.Format("{0}" + '\r' + '\n' + "{1:0,0.00}" + '\r' + '\n' + "{2:0,0.00}/{3}",
                                        bangGiaInNhanhPres.SoLuong_GiaS()[i].SoLuong,
                                        bangGiaInNhanhPres.SoLuong_GiaS()[i].Gia,
                                        bangGiaInNhanhPres.SoLuong_GiaS()[i].GiaTrungBinhDonVi(),
                                        this.DonViTinh);
                flowLayOut.Controls.Add(lb);
            }
        }
 /// <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();
     this.btnSave = new Telerik.WinControls.UI.RadButton();
     this.btnNew = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox6 = new Telerik.WinControls.UI.RadGroupBox();
     this.ucFilter1 = new ShayanDental.UserControls.UCFilter();
     this.grvItems = new Telerik.WinControls.UI.RadGridView();
     this.radGroupBox4 = new Telerik.WinControls.UI.RadGroupBox();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.radLabel20 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel22 = new Telerik.WinControls.UI.RadLabel();
     this.txtManual = new Telerik.WinControls.UI.RadTextBox();
     this.srcItem = new System.Windows.Forms.BindingSource(this.components);
     this.txtName = new Telerik.WinControls.UI.RadTextBox();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).BeginInit();
     this.radGroupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).BeginInit();
     this.radGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtManual)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     this.SuspendLayout();
     //
     // 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(470, 249);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(144, 35);
     this.btnSave.TabIndex = 4;
     this.btnSave.Text = "ذخیره";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnNew
     //
     this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | 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(5, 171);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(144, 35);
     this.btnNew.TabIndex = 3;
     this.btnNew.Text = "جدید";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // radGroupBox6
     //
     this.radGroupBox6.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox6.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.radGroupBox6.Controls.Add(this.ucFilter1);
     this.radGroupBox6.Controls.Add(this.grvItems);
     this.radGroupBox6.Font = new System.Drawing.Font("B Nazanin", 8.25F);
     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(12, 3);
     this.radGroupBox6.Name = "radGroupBox6";
     this.radGroupBox6.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.radGroupBox6.RootElement.MinSize = new System.Drawing.Size(0, 0);
     this.radGroupBox6.Size = new System.Drawing.Size(292, 281);
     this.radGroupBox6.TabIndex = 20;
     this.radGroupBox6.TabStop = false;
     this.radGroupBox6.Text = "داروها";
     //
     // ucFilter1
     //
     this.ucFilter1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.ucFilter1.Location = new System.Drawing.Point(5, 21);
     this.ucFilter1.Name = "ucFilter1";
     this.ucFilter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ucFilter1.Size = new System.Drawing.Size(282, 27);
     this.ucFilter1.TabIndex = 14;
     //
     // grvItems
     //
     this.grvItems.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.grvItems.Font = new System.Drawing.Font("B Nazanin", 9.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.grvItems.Location = new System.Drawing.Point(5, 52);
     //
     // grvItems
     //
     this.grvItems.MasterTemplate.AllowAddNewRow = false;
     this.grvItems.MasterTemplate.AllowCellContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnChooser = false;
     this.grvItems.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnReorder = false;
     this.grvItems.MasterTemplate.AllowDeleteRow = false;
     this.grvItems.MasterTemplate.AllowDragToGroup = false;
     this.grvItems.MasterTemplate.AllowEditRow = false;
     this.grvItems.MasterTemplate.AllowRowResize = false;
     this.grvItems.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName = "Title";
     gridViewTextBoxColumn1.HeaderText = "نام دارو";
     gridViewTextBoxColumn1.Name = "column1";
     gridViewTextBoxColumn1.Width = 232;
     gridViewCommandColumn1.AllowHide = false;
     gridViewCommandColumn1.AllowReorder = false;
     gridViewCommandColumn1.AllowResize = false;
     gridViewCommandColumn1.AllowSort = false;
     gridViewCommandColumn1.HeaderText = "حذف";
     gridViewCommandColumn1.Name = "column2";
     gridViewCommandColumn1.Width = 30;
     this.grvItems.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn1,
     gridViewCommandColumn1});
     this.grvItems.MasterTemplate.EnableGrouping = false;
     this.grvItems.MasterTemplate.EnableSorting = false;
     this.grvItems.Name = "grvItems";
     this.grvItems.ReadOnly = true;
     this.grvItems.Size = new System.Drawing.Size(282, 224);
     this.grvItems.TabIndex = 13;
     this.grvItems.ViewRowFormatting += new Telerik.WinControls.UI.RowFormattingEventHandler(this.grvItems_ViewRowFormatting);
     this.grvItems.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grvItems_CellFormatting);
     this.grvItems.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grvItems_CurrentRowChanging);
     this.grvItems.SelectionChanged += new System.EventHandler(this.grvItems_SelectionChanged);
     this.grvItems.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grvItems_CommandCellClick);
     this.grvItems.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grvItems_KeyDown);
     //
     // radGroupBox4
     //
     this.radGroupBox4.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radGroupBox4.Controls.Add(this.btnAdd);
     this.radGroupBox4.Controls.Add(this.btnNew);
     this.radGroupBox4.Controls.Add(this.radLabel20);
     this.radGroupBox4.Controls.Add(this.radLabel22);
     this.radGroupBox4.Controls.Add(this.txtManual);
     this.radGroupBox4.Controls.Add(this.txtName);
     this.radGroupBox4.Font = new System.Drawing.Font("B Nazanin", 8.25F);
     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(310, 0);
     this.radGroupBox4.Name = "radGroupBox4";
     this.radGroupBox4.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox4.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.radGroupBox4.RootElement.MinSize = new System.Drawing.Size(0, 0);
     this.radGroupBox4.Size = new System.Drawing.Size(311, 215);
     this.radGroupBox4.TabIndex = 19;
     this.radGroupBox4.TabStop = false;
     this.radGroupBox4.Text = "تعریف";
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | 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(160, 171);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(144, 35);
     this.btnAdd.TabIndex = 2;
     this.btnAdd.Text = "افزودن";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // radLabel20
     //
     this.radLabel20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel20.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel20.Location = new System.Drawing.Point(262, 26);
     this.radLabel20.Name = "radLabel20";
     this.radLabel20.Size = new System.Drawing.Size(43, 23);
     this.radLabel20.TabIndex = 11;
     this.radLabel20.Text = "نام دارو :";
     this.radLabel20.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel22
     //
     this.radLabel22.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel22.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel22.Location = new System.Drawing.Point(245, 52);
     this.radLabel22.Name = "radLabel22";
     this.radLabel22.Size = new System.Drawing.Size(61, 23);
     this.radLabel22.TabIndex = 9;
     this.radLabel22.Text = "نحوه مصرف :";
     this.radLabel22.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtManual
     //
     this.txtManual.AcceptsReturn = true;
     this.txtManual.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtManual.AutoScroll = true;
     this.txtManual.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Manual", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.txtManual.Font = new System.Drawing.Font("B Nazanin", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtManual.Location = new System.Drawing.Point(5, 55);
     this.txtManual.Multiline = true;
     this.txtManual.Name = "txtManual";
     //
     //
     //
     this.txtManual.RootElement.StretchVertically = true;
     this.txtManual.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtManual.Size = new System.Drawing.Size(239, 110);
     this.txtManual.TabIndex = 1;
     this.txtManual.TabStop = false;
     this.txtManual.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtManual_TextChanging);
     //
     // srcItem
     //
     this.srcItem.DataSource = typeof(Shayan.Data.Drug);
     //
     // txtName
     //
     this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Title", true));
     this.txtName.Font = new System.Drawing.Font("B Nazanin", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtName.Location = new System.Drawing.Point(5, 22);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(239, 27);
     this.txtName.TabIndex = 0;
     this.txtName.TabStop = false;
     this.txtName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtName_TextChanging);
     this.txtName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // 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(315, 249);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(144, 35);
     this.btnCancel.TabIndex = 5;
     this.btnCancel.Text = "انصراف";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // UCDrug
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.radGroupBox6);
     this.Controls.Add(this.radGroupBox4);
     this.Name = "UCDrug";
     this.Size = new System.Drawing.Size(628, 295);
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).EndInit();
     this.radGroupBox6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).EndInit();
     this.radGroupBox4.ResumeLayout(false);
     this.radGroupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtManual)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).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.radLabel7 = new Telerik.WinControls.UI.RadLabel();
     this.radButton2 = new Telerik.WinControls.UI.RadButton();
     this.radButton1 = new Telerik.WinControls.UI.RadButton();
     this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
     this.gridViewTemplate1 = new Telerik.WinControls.UI.GridViewTemplate();
     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();
     this.radButton3 = new Telerik.WinControls.UI.RadButton();
     this.radButton9 = new Telerik.WinControls.UI.RadButton();
     this.rad_canvas = new Telerik.WinControls.UI.RadRadioButton();
     this.rad_radial = new Telerik.WinControls.UI.RadRadioButton();
     this.radLabel11 = new Telerik.WinControls.UI.RadLabel();
     this.rad_tube_less = new Telerik.WinControls.UI.RadRadioButton();
     this.rad_tube = new Telerik.WinControls.UI.RadRadioButton();
     this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.com_brand = new Telerik.WinControls.UI.RadComboBox();
     this.com_made = new Telerik.WinControls.UI.RadComboBox();
     this.com_ply_rate = new Telerik.WinControls.UI.RadComboBox();
     this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
     this.com_t_pattern = new Telerik.WinControls.UI.RadComboBox();
     this.dtp_stok_date = new Telerik.WinControls.UI.RadDateTimePicker();
     this.txt_size = new Telerik.WinControls.UI.RadTextBox();
     this.radGridView2 = new Telerik.WinControls.UI.RadGridView();
     this.radButton6 = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).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.radButton3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rad_canvas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rad_radial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rad_tube_less)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rad_tube)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_made)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_t_pattern)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtp_stok_date)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radLabel7
     //
     this.radLabel7.BackColor = System.Drawing.Color.Transparent;
     this.radLabel7.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel7.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel7.Location = new System.Drawing.Point(32, 78);
     this.radLabel7.Name = "radLabel7";
     //
     //
     //
     this.radLabel7.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel7.Size = new System.Drawing.Size(71, 21);
     this.radLabel7.TabIndex = 18;
     this.radLabel7.Text = "Stock Date";
     //
     // radButton2
     //
     this.radButton2.Location = new System.Drawing.Point(138, 420);
     this.radButton2.Name = "radButton2";
     this.radButton2.Size = new System.Drawing.Size(50, 18);
     this.radButton2.TabIndex = 10;
     this.radButton2.Text = "Reset";
     this.radButton2.ThemeName = "Breeze";
     this.radButton2.Click += new System.EventHandler(this.radButton2_Click);
     //
     // radButton1
     //
     this.radButton1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton1.Location = new System.Drawing.Point(606, 448);
     this.radButton1.Name = "radButton1";
     this.radButton1.Size = new System.Drawing.Size(94, 33);
     this.radButton1.TabIndex = 7;
     this.radButton1.Text = "Add";
     this.radButton1.ThemeName = "Breeze";
     this.radButton1.Click += new System.EventHandler(this.radButton1_Click);
     //
     // radLabel6
     //
     this.radLabel6.BackColor = System.Drawing.Color.Transparent;
     this.radLabel6.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel6.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel6.Location = new System.Drawing.Point(29, 377);
     this.radLabel6.Name = "radLabel6";
     //
     //
     //
     this.radLabel6.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel6.Size = new System.Drawing.Size(94, 21);
     this.radLabel6.TabIndex = 29;
     this.radLabel6.Text = "Thread pattern";
     //
     // gridViewTemplate1
     //
     this.gridViewTemplate1.EnableAlternatingRowColor = true;
     //
     // radLabel5
     //
     this.radLabel5.BackColor = System.Drawing.Color.Transparent;
     this.radLabel5.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel5.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel5.Location = new System.Drawing.Point(32, 342);
     this.radLabel5.Name = "radLabel5";
     //
     //
     //
     this.radLabel5.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel5.Size = new System.Drawing.Size(54, 21);
     this.radLabel5.TabIndex = 27;
     this.radLabel5.Text = "Make in";
     //
     // radLabel4
     //
     this.radLabel4.BackColor = System.Drawing.Color.Transparent;
     this.radLabel4.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel4.Location = new System.Drawing.Point(32, 303);
     this.radLabel4.Name = "radLabel4";
     //
     //
     //
     this.radLabel4.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel4.Size = new System.Drawing.Size(54, 21);
     this.radLabel4.TabIndex = 25;
     this.radLabel4.Text = "Ply Rate";
     //
     // radLabel3
     //
     this.radLabel3.BackColor = System.Drawing.Color.Transparent;
     this.radLabel3.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel3.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel3.Location = new System.Drawing.Point(32, 264);
     this.radLabel3.Name = "radLabel3";
     //
     //
     //
     this.radLabel3.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel3.Size = new System.Drawing.Size(30, 21);
     this.radLabel3.TabIndex = 23;
     this.radLabel3.Text = "Size";
     //
     // radLabel2
     //
     this.radLabel2.BackColor = System.Drawing.Color.Transparent;
     this.radLabel2.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel2.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel2.Location = new System.Drawing.Point(32, 227);
     this.radLabel2.Name = "radLabel2";
     //
     //
     //
     this.radLabel2.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel2.Size = new System.Drawing.Size(41, 21);
     this.radLabel2.TabIndex = 19;
     this.radLabel2.Text = "Brand";
     //
     // radLabel1
     //
     this.radLabel1.BackColor = System.Drawing.Color.Transparent;
     this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Bold);
     this.radLabel1.ForeColor = System.Drawing.Color.Gold;
     this.radLabel1.Location = new System.Drawing.Point(19, 12);
     this.radLabel1.Name = "radLabel1";
     //
     //
     //
     this.radLabel1.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.radLabel1.Size = new System.Drawing.Size(270, 41);
     this.radLabel1.TabIndex = 35;
     this.radLabel1.Text = "VEHICLE CATEGORY";
     //
     // radButton3
     //
     this.radButton3.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton3.Location = new System.Drawing.Point(733, 448);
     this.radButton3.Name = "radButton3";
     this.radButton3.Size = new System.Drawing.Size(90, 33);
     this.radButton3.TabIndex = 8;
     this.radButton3.Text = "Update";
     this.radButton3.ThemeName = "Breeze";
     this.radButton3.Click += new System.EventHandler(this.radButton3_Click);
     //
     // radButton9
     //
     this.radButton9.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton9.Location = new System.Drawing.Point(857, 446);
     this.radButton9.Name = "radButton9";
     this.radButton9.Size = new System.Drawing.Size(90, 34);
     this.radButton9.TabIndex = 9;
     this.radButton9.Text = "Delete";
     this.radButton9.ThemeName = "Breeze";
     this.radButton9.Click += new System.EventHandler(this.radButton9_Click);
     //
     // rad_canvas
     //
     this.rad_canvas.BackColor = System.Drawing.Color.Transparent;
     this.rad_canvas.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_canvas.Location = new System.Drawing.Point(75, 9);
     this.rad_canvas.Name = "rad_canvas";
     //
     //
     //
     this.rad_canvas.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_canvas.Size = new System.Drawing.Size(62, 18);
     this.rad_canvas.TabIndex = 2;
     this.rad_canvas.Text = "Canvas";
     this.rad_canvas.Click += new System.EventHandler(this.radRadioButton5_Click);
     //
     // rad_radial
     //
     this.rad_radial.BackColor = System.Drawing.Color.Transparent;
     this.rad_radial.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_radial.Location = new System.Drawing.Point(11, 10);
     this.rad_radial.Name = "rad_radial";
     //
     //
     //
     this.rad_radial.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_radial.Size = new System.Drawing.Size(51, 18);
     this.rad_radial.TabIndex = 1;
     this.rad_radial.Text = "Radial";
     this.rad_radial.Click += new System.EventHandler(this.radRadioButton6_Click);
     //
     // radLabel11
     //
     this.radLabel11.BackColor = System.Drawing.Color.Transparent;
     this.radLabel11.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel11.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel11.Location = new System.Drawing.Point(32, 120);
     this.radLabel11.Name = "radLabel11";
     //
     //
     //
     this.radLabel11.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel11.Size = new System.Drawing.Size(64, 21);
     this.radLabel11.TabIndex = 47;
     this.radLabel11.Text = "Tyre Type";
     //
     // rad_tube_less
     //
     this.rad_tube_less.BackColor = System.Drawing.Color.Transparent;
     this.rad_tube_less.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_tube_less.Location = new System.Drawing.Point(73, 9);
     this.rad_tube_less.Name = "rad_tube_less";
     //
     //
     //
     this.rad_tube_less.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_tube_less.Size = new System.Drawing.Size(74, 18);
     this.rad_tube_less.TabIndex = 4;
     this.rad_tube_less.Text = "Tubeless";
     this.rad_tube_less.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.rad_tube_less_ToggleStateChanged);
     this.rad_tube_less.Click += new System.EventHandler(this.radRadioButton3_Click);
     //
     // rad_tube
     //
     this.rad_tube.BackColor = System.Drawing.Color.Transparent;
     this.rad_tube.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_tube.Location = new System.Drawing.Point(9, 10);
     this.rad_tube.Name = "rad_tube";
     //
     //
     //
     this.rad_tube.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_tube.Size = new System.Drawing.Size(51, 18);
     this.rad_tube.TabIndex = 3;
     this.rad_tube.Text = "Tube";
     this.rad_tube.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.radRadioButton4_ToggleStateChanged);
     this.rad_tube.Click += new System.EventHandler(this.radRadioButton4_Click);
     //
     // radLabel10
     //
     this.radLabel10.BackColor = System.Drawing.Color.Transparent;
     this.radLabel10.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel10.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel10.Location = new System.Drawing.Point(33, 170);
     this.radLabel10.Name = "radLabel10";
     //
     //
     //
     this.radLabel10.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel10.Size = new System.Drawing.Size(65, 21);
     this.radLabel10.TabIndex = 50;
     this.radLabel10.Text = "Tyre Tube";
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.rad_tube_less);
     this.groupBox1.Controls.Add(this.rad_tube);
     this.groupBox1.Location = new System.Drawing.Point(139, 165);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(150, 32);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.rad_canvas);
     this.groupBox2.Controls.Add(this.rad_radial);
     this.groupBox2.Location = new System.Drawing.Point(138, 120);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(151, 32);
     this.groupBox2.TabIndex = 0;
     this.groupBox2.TabStop = false;
     //
     // com_brand
     //
     this.com_brand.AutoScroll = true;
     this.com_brand.Location = new System.Drawing.Point(138, 227);
     this.com_brand.Name = "com_brand";
     //
     //
     //
     this.com_brand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_brand.Size = new System.Drawing.Size(151, 20);
     this.com_brand.TabIndex = 1;
     this.com_brand.TabStop = false;
     this.com_brand.SelectedIndexChanged += new System.EventHandler(this.com_brand_SelectedIndexChanged);
     this.com_brand.TextChanged += new System.EventHandler(this.com_brand_TextChanged);
     this.com_brand.Click += new System.EventHandler(this.com_brand_Click);
     this.com_brand.Enter += new System.EventHandler(this.com_brand_Enter);
     this.com_brand.KeyDown += new System.Windows.Forms.KeyEventHandler(this.com_brand_KeyDown);
     //
     // com_made
     //
     this.com_made.AutoScroll = true;
     this.com_made.Location = new System.Drawing.Point(138, 342);
     this.com_made.Name = "com_made";
     //
     //
     //
     this.com_made.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_made.Size = new System.Drawing.Size(151, 20);
     this.com_made.TabIndex = 5;
     this.com_made.TabStop = false;
     this.com_made.TextChanged += new System.EventHandler(this.com_made_TextChanged);
     this.com_made.Enter += new System.EventHandler(this.com_made_Enter);
     this.com_made.KeyDown += new System.Windows.Forms.KeyEventHandler(this.com_made_KeyDown);
     //
     // com_ply_rate
     //
     this.com_ply_rate.AutoScroll = true;
     this.com_ply_rate.Location = new System.Drawing.Point(138, 305);
     this.com_ply_rate.Name = "com_ply_rate";
     //
     //
     //
     this.com_ply_rate.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_ply_rate.Size = new System.Drawing.Size(151, 20);
     this.com_ply_rate.TabIndex = 4;
     this.com_ply_rate.TabStop = false;
     this.com_ply_rate.TextChanged += new System.EventHandler(this.com_ply_rate_TextChanged);
     this.com_ply_rate.Enter += new System.EventHandler(this.com_ply_rate_Enter);
     this.com_ply_rate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.com_ply_rate_KeyDown);
     //
     // radGridView1
     //
     this.radGridView1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.radGridView1.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView1.Font = new System.Drawing.Font("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(308, 78);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow = false;
     this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView1.Name = "radGridView1";
     this.radGridView1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.ReadOnly = true;
     this.radGridView1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView1.RootElement.CanFocus = true;
     this.radGridView1.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView1.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.Size = new System.Drawing.Size(646, 320);
     this.radGridView1.TabIndex = 11;
     this.radGridView1.Text = "radGridView1";
     this.radGridView1.SelectionChanged += new System.EventHandler(this.radGridView1_SelectionChanged);
     this.radGridView1.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     this.radGridView1.DataBindingComplete += new Telerik.WinControls.UI.GridViewBindingCompleteEventHandler(this.radGridView1_DataBindingComplete);
     this.radGridView1.Click += new System.EventHandler(this.radGridView1_Click);
     this.radGridView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.radGridView1_KeyDown);
     //
     // com_t_pattern
     //
     this.com_t_pattern.AutoScroll = true;
     this.com_t_pattern.Location = new System.Drawing.Point(138, 378);
     this.com_t_pattern.Name = "com_t_pattern";
     //
     //
     //
     this.com_t_pattern.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_t_pattern.Size = new System.Drawing.Size(151, 20);
     this.com_t_pattern.TabIndex = 6;
     this.com_t_pattern.TabStop = false;
     this.com_t_pattern.TextChanged += new System.EventHandler(this.com_t_pattern_TextChanged);
     this.com_t_pattern.Enter += new System.EventHandler(this.com_t_pattern_Enter);
     this.com_t_pattern.KeyDown += new System.Windows.Forms.KeyEventHandler(this.com_t_pattern_KeyDown);
     //
     // dtp_stok_date
     //
     this.dtp_stok_date.Format = System.Windows.Forms.DateTimePickerFormat.Long;
     this.dtp_stok_date.Location = new System.Drawing.Point(138, 78);
     this.dtp_stok_date.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.dtp_stok_date.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
     this.dtp_stok_date.Name = "dtp_stok_date";
     this.dtp_stok_date.NullDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
     this.dtp_stok_date.Size = new System.Drawing.Size(150, 20);
     this.dtp_stok_date.TabIndex = 0;
     this.dtp_stok_date.TabStop = false;
     this.dtp_stok_date.Text = "radDateTimePicker1";
     this.dtp_stok_date.Value = new System.DateTime(2011, 2, 28, 10, 32, 15, 5);
     this.dtp_stok_date.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dtp_stok_date_KeyDown);
     //
     // txt_size
     //
     this.txt_size.Location = new System.Drawing.Point(138, 265);
     this.txt_size.Name = "txt_size";
     this.txt_size.Size = new System.Drawing.Size(151, 20);
     this.txt_size.TabIndex = 2;
     this.txt_size.TabStop = false;
     this.txt_size.TextChanged += new System.EventHandler(this.txt_size_TextChanged);
     this.txt_size.Enter += new System.EventHandler(this.txt_size_Enter);
     this.txt_size.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_size_KeyDown);
     //
     // radGridView2
     //
     this.radGridView2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     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(138, 286);
     //
     // radGridView2
     //
     this.radGridView2.MasterTemplate.AllowAddNewRow = false;
     this.radGridView2.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView2.MasterTemplate.EnableGrouping = false;
     this.radGridView2.MasterTemplate.ShowColumnHeaders = false;
     this.radGridView2.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView2.Name = "radGridView2";
     this.radGridView2.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.ReadOnly = true;
     this.radGridView2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView2.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView2.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.ShowGroupPanel = false;
     this.radGridView2.Size = new System.Drawing.Size(151, 111);
     this.radGridView2.TabIndex = 3;
     this.radGridView2.Text = "radGridView2";
     this.radGridView2.SelectionChanged += new System.EventHandler(this.radGridView2_SelectionChanged_1);
     this.radGridView2.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView2_CellClick_1);
     this.radGridView2.Click += new System.EventHandler(this.radGridView2_Click);
     this.radGridView2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.radGridView2_KeyDown);
     //
     // radButton6
     //
     this.radButton6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.radButton6.Font = new System.Drawing.Font("Verdana", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton6.ForeColor = System.Drawing.Color.Crimson;
     this.radButton6.Location = new System.Drawing.Point(957, 13);
     this.radButton6.Name = "radButton6";
     //
     //
     //
     this.radButton6.RootElement.ForeColor = System.Drawing.Color.Crimson;
     this.radButton6.Size = new System.Drawing.Size(40, 40);
     this.radButton6.TabIndex = 72;
     this.radButton6.Text = "X";
     this.radButton6.ThemeName = "Breeze";
     this.radButton6.Click += new System.EventHandler(this.radButton6_Click);
     ((Telerik.WinControls.UI.RadButtonElement)(this.radButton6.GetChildAt(0))).Text = "X";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(0))).BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(166)))), ((int)(((byte)(91)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(0))).BackColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(109)))), ((int)(((byte)(60)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(0))).BackColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(29)))), ((int)(((byte)(29)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(220)))), ((int)(((byte)(159)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).ForeColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).ForeColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).ForeColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).InnerColor = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(254)))), ((int)(((byte)(143)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).InnerColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(247)))), ((int)(((byte)(91)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).InnerColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(236)))), ((int)(((byte)(78)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).InnerColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(242)))), ((int)(((byte)(14)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     //
     // AddNewStock
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.ClientSize = new System.Drawing.Size(1012, 602);
     this.Controls.Add(this.radButton6);
     this.Controls.Add(this.radGridView2);
     this.Controls.Add(this.txt_size);
     this.Controls.Add(this.dtp_stok_date);
     this.Controls.Add(this.com_t_pattern);
     this.Controls.Add(this.radGridView1);
     this.Controls.Add(this.com_made);
     this.Controls.Add(this.com_ply_rate);
     this.Controls.Add(this.com_brand);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.radLabel10);
     this.Controls.Add(this.radLabel11);
     this.Controls.Add(this.radButton3);
     this.Controls.Add(this.radButton9);
     this.Controls.Add(this.radLabel1);
     this.Controls.Add(this.radLabel7);
     this.Controls.Add(this.radButton2);
     this.Controls.Add(this.radButton1);
     this.Controls.Add(this.radLabel6);
     this.Controls.Add(this.radLabel5);
     this.Controls.Add(this.radLabel4);
     this.Controls.Add(this.radLabel3);
     this.Controls.Add(this.radLabel2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "AddNewStock";
     this.Opacity = 0.95D;
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "New Vehicle Tyre Catagory";
     this.ThemeName = "ControlDefault";
     this.Load += new System.EventHandler(this.AddNewStock_Load);
     this.Click += new System.EventHandler(this.AddNewStock_Click);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.AddNewStock_MouseDown);
     this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.AddNewStock_MouseMove);
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).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.radButton3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rad_canvas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rad_radial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rad_tube_less)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rad_tube)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_made)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_t_pattern)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtp_stok_date)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("(General)", System.Windows.Forms.HorizontalAlignment.Left);
     System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("(General)", System.Windows.Forms.HorizontalAlignment.Left);
     System.Windows.Forms.ListViewGroup listViewGroup3 = new System.Windows.Forms.ListViewGroup("lstGrupRaspunsuri", System.Windows.Forms.HorizontalAlignment.Left);
     System.Windows.Forms.ListViewGroup listViewGroup4 = new System.Windows.Forms.ListViewGroup("lstGrupTotal", System.Windows.Forms.HorizontalAlignment.Left);
     InfoCenter.Controls.CustomGridViewTextBoxColumn<InfoCenter.Classes.UnitateTestare> customGridViewTextBoxColumn_11 = new InfoCenter.Controls.CustomGridViewTextBoxColumn<InfoCenter.Classes.UnitateTestare>();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     InfoCenter.Controls.CustomGridViewCommandColumn customGridViewCommandColumn1 = new InfoCenter.Controls.CustomGridViewCommandColumn();
     Telerik.WinControls.UI.GridViewImageColumn gridViewImageColumn1 = new Telerik.WinControls.UI.GridViewImageColumn();
     Telerik.WinControls.UI.RadRibbonBarCommandTab radRibbonBarCommandTab1 = new Telerik.WinControls.UI.RadRibbonBarCommandTab();
     Telerik.WinControls.UI.RadRibbonBarCommandTab radRibbonBarCommandTab2 = new Telerik.WinControls.UI.RadRibbonBarCommandTab();
     Telerik.WinControls.UI.RadRibbonBarCommandTab radRibbonBarCommandTab3 = new Telerik.WinControls.UI.RadRibbonBarCommandTab();
     Telerik.WinControls.UI.RadRibbonBarCommandTab radRibbonBarCommandTab4 = new Telerik.WinControls.UI.RadRibbonBarCommandTab();
     Telerik.WinControls.UI.RadRibbonBarCommandTab radRibbonBarCommandTab5 = new Telerik.WinControls.UI.RadRibbonBarCommandTab();
     this.radRibbonBarChunk2 = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radRibbonBarButtonGroup5 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.lblNumarLectii = new Telerik.WinControls.UI.RadLabelElement();
     this.lblNumarProbleme = new Telerik.WinControls.UI.RadLabelElement();
     this.lblNumarTeste = new Telerik.WinControls.UI.RadLabelElement();
     this.radRibbonBarChunk3 = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radImageButtonElement1 = new Telerik.WinControls.UI.RadImageButtonElement();
     this.ribbonTabStart = new Telerik.WinControls.UI.TabItem();
     this.radChunkInfLectie = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radGroup13 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.lblNivelLectie = new Telerik.WinControls.UI.RadLabelElement();
     this.btnProblemeLectie = new Telerik.WinControls.UI.RadButtonElement();
     this.btnTesteLectie = new Telerik.WinControls.UI.RadButtonElement();
     this.ribbonTabLectii = new Telerik.WinControls.UI.TabItem();
     this.radChunkInfoProblema = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radGroup4 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.lblDificultateProblema = new Telerik.WinControls.UI.RadLabelElement();
     this.radChunkCautareProbleme = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radGroup7 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radGroup10 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.comboCautaProblema = new Telerik.WinControls.UI.RadComboBoxElement();
     this.btnCautaProbleme = new Telerik.WinControls.UI.RadButtonElement();
     this.btnToateProblemele = new Telerik.WinControls.UI.RadButtonElement();
     this.radGroup11 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.comboCautaCuvantCheie = new Telerik.WinControls.UI.RadComboBoxElement();
     this.btnCautaCuvantCheie = new Telerik.WinControls.UI.RadButtonElement();
     this.btnToateCuvinteleCheie = new Telerik.WinControls.UI.RadButtonElement();
     this.radChunkActiuniProblema = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radGroup5 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnSalvare = new Telerik.WinControls.UI.RadSplitButtonElement();
     this.radMenuSalvare = new Telerik.WinControls.UI.RadMenuItem();
     this.radMenuSalvareCa = new Telerik.WinControls.UI.RadMenuItem();
     this.radGroup15 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnMaresteCerinta = new Telerik.WinControls.UI.RadButtonElement();
     this.btnMaresteSursa = new Telerik.WinControls.UI.ActionButtonElement();
     this.btnRezolvaProblema = new Telerik.WinControls.UI.RadButtonElement();
     this.ribbonTabProbleme = new Telerik.WinControls.UI.TabItem();
     this.radChunkInformatiiTest = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radGroup2 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnLblNivelTest = new Telerik.WinControls.UI.RadLabelElement();
     this.lblPunctaj = new Telerik.WinControls.UI.RadLabelElement();
     this.lblTimpScurs = new Telerik.WinControls.UI.RadLabelElement();
     this.radChunkActiuniTest = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radGroup1 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnIncepeTest = new Telerik.WinControls.UI.ActionButtonElement();
     this.btnResetTest = new Telerik.WinControls.UI.ActionButtonElement();
     this.btnCorecteazaTest = new Telerik.WinControls.UI.ActionButtonElement();
     this.ribbonTabTeste = new Telerik.WinControls.UI.TabItem();
     this.radChunkActiuniCompilator = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radRibbonBarButtonGroup1 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.btnExecuta = new Telerik.WinControls.UI.RadButtonElement();
     this.btnTestareProgram = new Telerik.WinControls.UI.RadButtonElement();
     this.btnTestareAutomaticaProgram = new Telerik.WinControls.UI.RadButtonElement();
     this.btnSaveCodSursa = new Telerik.WinControls.UI.RadButtonElement();
     this.btnFragmenteDeCod = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarChunk1 = new Telerik.WinControls.UI.RadRibbonBarChunk();
     this.radRibbonBarButtonGroup2 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.radRibbonBarButtonGroup3 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.comboFont2 = new Telerik.WinControls.UI.RadComboBoxElement();
     this.radComboBoxItem12 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem13 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem14 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem15 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem16 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem17 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem18 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radRibbonBarButtonGroup9 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.comboFontSize2 = new Telerik.WinControls.UI.RadComboBoxElement();
     this.radComboBoxItem25 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem26 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem27 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem28 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.btnFontDecrease2 = new Telerik.WinControls.UI.RadButtonElement();
     this.btnFontIncrease2 = new Telerik.WinControls.UI.RadButtonElement();
     this.radRibbonBarButtonGroup4 = new Telerik.WinControls.UI.RadRibbonBarButtonGroup();
     this.ribbonTabCompilator = new Telerik.WinControls.UI.TabItem();
     this.radComboBoxItem6 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem7 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem8 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem9 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem10 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.radComboBoxItem11 = new Telerik.WinControls.UI.RadComboBoxItem();
     this.tabControlMain = new System.Windows.Forms.TabControl();
     this.tabPageStart = new System.Windows.Forms.TabPage();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.lblLinkCompilator = new System.Windows.Forms.LinkLabel();
     this.lblAutentificareProfesor = new System.Windows.Forms.LinkLabel();
     this.lblLinkTeste = new System.Windows.Forms.LinkLabel();
     this.lblLinkProbleme = new System.Windows.Forms.LinkLabel();
     this.lblLinkLectii = new System.Windows.Forms.LinkLabel();
     this.label2 = new System.Windows.Forms.Label();
     this.tabPageLectii = new System.Windows.Forms.TabPage();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.gBoxListaLectii = new System.Windows.Forms.GroupBox();
     this.cuprinsLectii = new Telerik.WinControls.UI.RadTreeView();
     this.gBoxContinutLectie = new System.Windows.Forms.GroupBox();
     this.lblStartLectie = new System.Windows.Forms.Label();
     this.navigatorLectii = new System.Windows.Forms.WebBrowser();
     this.tabPageProbleme = new System.Windows.Forms.TabPage();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.tabControlSubProbleme = new System.Windows.Forms.TabControl();
     this.tabPageListaProbleme = new System.Windows.Forms.TabPage();
     this.listaProbleme = new System.Windows.Forms.ListView();
     this.colHeaderTitluProblema = new System.Windows.Forms.ColumnHeader();
     this.tabPageCuvinteCheie = new System.Windows.Forms.TabPage();
     this.splitContainerCuvinteCheie = new System.Windows.Forms.SplitContainer();
     this.listaCuvinteCheie = new Telerik.WinControls.UI.RadTreeView();
     this.gBoxRezCautareCuvinte = new System.Windows.Forms.GroupBox();
     this.listaRezultateCautareProbleme = new System.Windows.Forms.ListView();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.splitContainer4 = new System.Windows.Forms.SplitContainer();
     this.gBoxCerinta = new System.Windows.Forms.GroupBox();
     this.txtCerintaProblema = new System.Windows.Forms.RichTextBox();
     this.gBoxSursa = new System.Windows.Forms.GroupBox();
     this.txtSursaProblema = new InfoCenter.Controls.CompilerTextBox();
     this.tabPageTeste = new System.Windows.Forms.TabPage();
     this.splitContainer6 = new System.Windows.Forms.SplitContainer();
     this.gBoxListaTeste = new System.Windows.Forms.GroupBox();
     this.listaTeste = new Telerik.WinControls.UI.RadTreeView();
     this.tabControlSubTeste = new System.Windows.Forms.TabControl();
     this.tabPageSubiectTest = new System.Windows.Forms.TabPage();
     this.btnIntrebareUrmatoare = new Telerik.WinControls.UI.RadButton();
     this.btnIntrebareAnterioara = new Telerik.WinControls.UI.RadButton();
     this.lblTitluTest = new System.Windows.Forms.Label();
     this.panelTestFinish = new System.Windows.Forms.Panel();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.lblTestTerminat = new Telerik.WinControls.UI.RadLabel();
     this.panelWelcomeTest = new System.Windows.Forms.Panel();
     this.label8 = new System.Windows.Forms.Label();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.tabPageCorectareTest = new System.Windows.Forms.TabPage();
     this.listaCorectareTest = new System.Windows.Forms.ListView();
     this.colHeaderNrCrt = new System.Windows.Forms.ColumnHeader();
     this.colHeaderRaspAles = new System.Windows.Forms.ColumnHeader();
     this.colHeaderRaspCorect = new System.Windows.Forms.ColumnHeader();
     this.colHeaderPunctaj = new System.Windows.Forms.ColumnHeader();
     this.tabPageCompilator = new System.Windows.Forms.TabPage();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.panel1 = new System.Windows.Forms.Panel();
     this.lblLinkProgramNou = new System.Windows.Forms.LinkLabel();
     this.label1 = new System.Windows.Forms.Label();
     this.lblCodSursa = new System.Windows.Forms.Label();
     this.txtCodSursa = new InfoCenter.Controls.CompilerTextBox();
     this.tabControlSubCompilator = new System.Windows.Forms.TabControl();
     this.tabPageRezultatCompilare = new System.Windows.Forms.TabPage();
     this.txtRezultatCompilare = new System.Windows.Forms.TextBox();
     this.tabPageTestareProgram = new System.Windows.Forms.TabPage();
     this.splitContainer5 = new System.Windows.Forms.SplitContainer();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.tabControlDateIntrare = new System.Windows.Forms.TabControl();
     this.tabcin = new System.Windows.Forms.TabPage();
     this.txtDateIntrareProgram = new System.Windows.Forms.TextBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.tabControlDateIesire = new System.Windows.Forms.TabControl();
     this.tabcout = new System.Windows.Forms.TabPage();
     this.txtRezultatProgram = new System.Windows.Forms.TextBox();
     this.tabPageTestareAutomata = new System.Windows.Forms.TabPage();
     this.btnAdaugaTestare = new Telerik.WinControls.UI.RadButton();
     this.btnVerifica = new Telerik.WinControls.UI.RadDropDownButton();
     this.radMenuSelectate = new Telerik.WinControls.UI.RadMenuItem();
     this.radMenuToate = new Telerik.WinControls.UI.RadMenuItem();
     this.gridVerificare = new Telerik.WinControls.UI.RadGridView();
     this.lblNoTest = new System.Windows.Forms.Label();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this.ribbonBar = new Telerik.WinControls.UI.RadRibbonBar();
     this.radMenuReloadInfo = new Telerik.WinControls.UI.RadMenuItem();
     this.radMenuUpdateApplication = new Telerik.WinControls.UI.RadMenuItem();
     this.statusStrip = new Telerik.WinControls.UI.RadStatusStrip();
     this.toolStripStatus = new Telerik.WinControls.UI.RadLabelElement();
     this.toolStripProgressBar = new Telerik.WinControls.UI.RadProgressBarElement();
     this.radLabelCopyright = new Telerik.WinControls.UI.RadLabelElement();
     this.toolStripConnectedMode = new Telerik.WinControls.UI.RadLabelElement();
     this.toolStripDataOra = new Telerik.WinControls.UI.RadLabelElement();
     this.btnFontItalic2 = new Telerik.WinControls.UI.RadToggleButtonElement();
     this.btnFontBold2 = new Telerik.WinControls.UI.RadToggleButtonElement();
     this.radMenuButtonItem1 = new Telerik.WinControls.UI.RadMenuButtonItem();
     this.testTimer = new InfoCenter.Controls.CustomTimer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.comboCautaProblema)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboCautaCuvantCheie)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboFont2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboFontSize2)).BeginInit();
     this.tabControlMain.SuspendLayout();
     this.tabPageStart.SuspendLayout();
     this.tabPageLectii.SuspendLayout();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.gBoxListaLectii.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cuprinsLectii)).BeginInit();
     this.gBoxContinutLectie.SuspendLayout();
     this.tabPageProbleme.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.tabControlSubProbleme.SuspendLayout();
     this.tabPageListaProbleme.SuspendLayout();
     this.tabPageCuvinteCheie.SuspendLayout();
     this.splitContainerCuvinteCheie.Panel1.SuspendLayout();
     this.splitContainerCuvinteCheie.Panel2.SuspendLayout();
     this.splitContainerCuvinteCheie.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.listaCuvinteCheie)).BeginInit();
     this.gBoxRezCautareCuvinte.SuspendLayout();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     this.gBoxCerinta.SuspendLayout();
     this.gBoxSursa.SuspendLayout();
     this.tabPageTeste.SuspendLayout();
     this.splitContainer6.Panel1.SuspendLayout();
     this.splitContainer6.Panel2.SuspendLayout();
     this.splitContainer6.SuspendLayout();
     this.gBoxListaTeste.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.listaTeste)).BeginInit();
     this.tabControlSubTeste.SuspendLayout();
     this.tabPageSubiectTest.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnIntrebareUrmatoare)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnIntrebareAnterioara)).BeginInit();
     this.panelTestFinish.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblTestTerminat)).BeginInit();
     this.panelWelcomeTest.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     this.tabPageCorectareTest.SuspendLayout();
     this.tabPageCompilator.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.tabControlSubCompilator.SuspendLayout();
     this.tabPageRezultatCompilare.SuspendLayout();
     this.tabPageTestareProgram.SuspendLayout();
     this.splitContainer5.Panel1.SuspendLayout();
     this.splitContainer5.Panel2.SuspendLayout();
     this.splitContainer5.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tabControlDateIntrare.SuspendLayout();
     this.tabcin.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tabControlDateIesire.SuspendLayout();
     this.tabcout.SuspendLayout();
     this.tabPageTestareAutomata.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdaugaTestare)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnVerifica)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridVerificare)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridVerificare.MasterGridViewTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusStrip)).BeginInit();
     this.SuspendLayout();
     //
     // radRibbonBarChunk2
     //
     this.radRibbonBarChunk2.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radRibbonBarButtonGroup5});
     this.radRibbonBarChunk2.Name = "radRibbonBarChunk2";
     this.radRibbonBarChunk2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radRibbonBarChunk2.Text = "Informaţii Info Center";
     //
     // radRibbonBarButtonGroup5
     //
     this.radRibbonBarButtonGroup5.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.lblNumarLectii,
     this.lblNumarProbleme,
     this.lblNumarTeste});
     this.radRibbonBarButtonGroup5.MinSize = new System.Drawing.Size(22, 22);
     this.radRibbonBarButtonGroup5.Name = "radRibbonBarButtonGroup5";
     this.radRibbonBarButtonGroup5.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup5.ShowBackColor = false;
     this.radRibbonBarButtonGroup5.ShowBorder = false;
     this.radRibbonBarButtonGroup5.Text = "radRibbonBarButtonGroup5";
     //
     // lblNumarLectii
     //
     this.lblNumarLectii.Name = "lblNumarLectii";
     this.lblNumarLectii.Text = "Număr lecţii:";
     //
     // lblNumarProbleme
     //
     this.lblNumarProbleme.Name = "lblNumarProbleme";
     this.lblNumarProbleme.Text = "Număr probleme:";
     //
     // lblNumarTeste
     //
     this.lblNumarTeste.Name = "lblNumarTeste";
     this.lblNumarTeste.Text = "Număr teste:";
     //
     // radRibbonBarChunk3
     //
     this.radRibbonBarChunk3.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radImageButtonElement1});
     this.radRibbonBarChunk3.Name = "radRibbonBarChunk3";
     this.radRibbonBarChunk3.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radRibbonBarChunk3.Text = " ";
     //
     // radImageButtonElement1
     //
     this.radImageButtonElement1.CanFocus = true;
     this.radImageButtonElement1.Class = "RibbonBarButtonElement";
     this.radImageButtonElement1.Image = global::InfoCenter.Properties.Resources.logoc;
     this.radImageButtonElement1.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.radImageButtonElement1.Name = "radImageButtonElement1";
     this.radImageButtonElement1.Padding = new System.Windows.Forms.Padding(20, 0, 5, 0);
     this.radImageButtonElement1.Text = "imageC";
     //
     // ribbonTabStart
     //
     this.ribbonTabStart.CanFocus = true;
     this.ribbonTabStart.Class = "TabItem";
     //
     // ribbonTabStart.ContentPanel
     //
     this.ribbonTabStart.ContentPanel.BackColor = System.Drawing.Color.Transparent;
     this.ribbonTabStart.ContentPanel.CausesValidation = true;
     this.ribbonTabStart.Name = "ribbonTabStart";
     this.ribbonTabStart.Text = "Pagina de start";
     this.ribbonTabStart.Click += new System.EventHandler(this.ribbonTabStartPage_Click);
     //
     // radChunkInfLectie
     //
     this.radChunkInfLectie.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radGroup13});
     this.radChunkInfLectie.Name = "radChunkInfLectie";
     this.radChunkInfLectie.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radChunkInfLectie.Text = "Informaţii lecţie";
     this.radChunkInfLectie.ToolTipText = null;
     //
     // radGroup13
     //
     this.radGroup13.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.lblNivelLectie,
     this.btnProblemeLectie,
     this.btnTesteLectie});
     this.radGroup13.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup13.Name = "radGroup13";
     this.radGroup13.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroup13.Padding = new System.Windows.Forms.Padding(1);
     this.radGroup13.ShowBackColor = false;
     this.radGroup13.ShowBorder = false;
     this.radGroup13.Text = "radGroup13";
     this.radGroup13.ToolTipText = null;
     //
     // lblNivelLectie
     //
     this.lblNivelLectie.CanFocus = true;
     this.lblNivelLectie.Class = "RibbonBarButtonElement";
     this.lblNivelLectie.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     this.lblNivelLectie.Image = global::InfoCenter.Properties.Resources._0_star_rating;
     this.lblNivelLectie.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblNivelLectie.Name = "lblNivelLectie";
     this.lblNivelLectie.Padding = new System.Windows.Forms.Padding(0, 20, 0, 0);
     this.lblNivelLectie.Text = "Dificultate";
     this.lblNivelLectie.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.lblNivelLectie.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.lblNivelLectie.ToolTipText = "Afişează nivelul necesar pentru parcurgerea lecţiei selectate (1 stea - începător" +
         "; 2 stele - mediu; 3 stele - avansat).";
     //
     // btnProblemeLectie
     //
     this.btnProblemeLectie.CanFocus = true;
     this.btnProblemeLectie.Class = "RibbonBarButtonElement";
     this.btnProblemeLectie.Enabled = false;
     this.btnProblemeLectie.Image = global::InfoCenter.Properties.Resources.imgProbleme32;
     this.btnProblemeLectie.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnProblemeLectie.Name = "btnProblemeLectie";
     this.btnProblemeLectie.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
     this.btnProblemeLectie.Text = "Problemele asociate";
     this.btnProblemeLectie.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnProblemeLectie.ToolTipText = "Afişează problemele asociate lecţiei selectate.";
     this.btnProblemeLectie.Click += new System.EventHandler(this.btnProblemeLectie_Click);
     //
     // btnTesteLectie
     //
     this.btnTesteLectie.CanFocus = true;
     this.btnTesteLectie.Class = "RibbonBarButtonElement";
     this.btnTesteLectie.Enabled = false;
     this.btnTesteLectie.Image = global::InfoCenter.Properties.Resources.imgTest32;
     this.btnTesteLectie.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnTesteLectie.Name = "btnTesteLectie";
     this.btnTesteLectie.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
     this.btnTesteLectie.Text = "Testele asociate";
     this.btnTesteLectie.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnTesteLectie.ToolTipText = "Afişează testele asociate lecţiei selectate.";
     this.btnTesteLectie.Click += new System.EventHandler(this.btnTesteLectie_Click);
     //
     // ribbonTabLectii
     //
     this.ribbonTabLectii.CanFocus = true;
     this.ribbonTabLectii.Class = "TabItem";
     //
     // ribbonTabLectii.ContentPanel
     //
     this.ribbonTabLectii.ContentPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ribbonTabLectii.ContentPanel.CausesValidation = true;
     this.ribbonTabLectii.KeyTip = " ";
     this.ribbonTabLectii.Name = "ribbonTabLectii";
     this.ribbonTabLectii.Text = "Lecţii";
     this.ribbonTabLectii.ToolTipText = null;
     this.ribbonTabLectii.Click += new System.EventHandler(this.ribbonTabLectii_Click);
     //
     // radChunkInfoProblema
     //
     this.radChunkInfoProblema.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radGroup4});
     this.radChunkInfoProblema.Name = "radChunkInfoProblema";
     this.radChunkInfoProblema.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radChunkInfoProblema.Text = "Informaţii problemă";
     this.radChunkInfoProblema.ToolTipText = null;
     //
     // radGroup4
     //
     this.radGroup4.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.lblDificultateProblema});
     this.radGroup4.Margin = new System.Windows.Forms.Padding(0, 5, 0, 0);
     this.radGroup4.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup4.Name = "radGroup4";
     this.radGroup4.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.radGroup4.Padding = new System.Windows.Forms.Padding(1);
     this.radGroup4.ShowBackColor = false;
     this.radGroup4.ShowBorder = false;
     this.radGroup4.Text = "radGroup4";
     this.radGroup4.ToolTipText = null;
     //
     // lblDificultateProblema
     //
     this.lblDificultateProblema.Alignment = System.Drawing.ContentAlignment.TopCenter;
     this.lblDificultateProblema.CanFocus = true;
     this.lblDificultateProblema.Class = "RibbonLabelElement";
     this.lblDificultateProblema.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     this.lblDificultateProblema.Image = global::InfoCenter.Properties.Resources._0_star_rating;
     this.lblDificultateProblema.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblDificultateProblema.Name = "lblDificultateProblema";
     this.lblDificultateProblema.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
     this.lblDificultateProblema.Text = "Dificultate:";
     this.lblDificultateProblema.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblDificultateProblema.TextImageRelation = System.Windows.Forms.TextImageRelation.TextAboveImage;
     this.lblDificultateProblema.ToolTipText = "Afişează nivelul necesar pentru rezolvarea problemei selectate (1 stea - începăto" +
         "r; 2 stele - mediu; 3 stele - avansat).";
     //
     // radChunkCautareProbleme
     //
     this.radChunkCautareProbleme.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radGroup7});
     this.radChunkCautareProbleme.Name = "radChunkCautareProbleme";
     this.radChunkCautareProbleme.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radChunkCautareProbleme.Text = "Căutare probleme şi cuvinte cheie";
     this.radChunkCautareProbleme.ToolTipText = null;
     //
     // radGroup7
     //
     this.radGroup7.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radGroup10,
     this.radGroup11});
     this.radGroup7.Margin = new System.Windows.Forms.Padding(0, 5, 0, 0);
     this.radGroup7.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup7.Name = "radGroup7";
     this.radGroup7.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.radGroup7.ShowBackColor = false;
     this.radGroup7.ShowBorder = false;
     this.radGroup7.Text = "radGroup7";
     this.radGroup7.ToolTipText = null;
     //
     // radGroup10
     //
     this.radGroup10.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.comboCautaProblema,
     this.btnCautaProbleme,
     this.btnToateProblemele});
     this.radGroup10.Margin = new System.Windows.Forms.Padding(2);
     this.radGroup10.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup10.Name = "radGroup10";
     this.radGroup10.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroup10.ShowBackColor = true;
     this.radGroup10.ShowBorder = true;
     this.radGroup10.Text = "radGroup10";
     this.radGroup10.ToolTipText = null;
     //
     // comboCautaProblema
     //
     this.comboCautaProblema.ArrowButtonMinWidth = 16;
     this.comboCautaProblema.DefaultValue = null;
     this.comboCautaProblema.DropDownSizingMode = ((Telerik.WinControls.UI.SizingMode)((Telerik.WinControls.UI.SizingMode.RightBottom | Telerik.WinControls.UI.SizingMode.UpDown)));
     this.comboCautaProblema.EditorElement = this.comboCautaProblema;
     this.comboCautaProblema.Focusable = true;
     this.comboCautaProblema.MaxDropDownItems = 9;
     this.comboCautaProblema.MaxSize = new System.Drawing.Size(140, 0);
     this.comboCautaProblema.MaxValue = null;
     this.comboCautaProblema.MinSize = new System.Drawing.Size(140, 0);
     this.comboCautaProblema.MinValue = null;
     this.comboCautaProblema.Name = "comboCautaProblema";
     this.comboCautaProblema.NullValue = null;
     this.comboCautaProblema.OwnerOffset = 0;
     this.comboCautaProblema.ReadOnly = false;
     this.comboCautaProblema.Text = "(Caută problemă)";
     this.comboCautaProblema.ToolTipText = "Caută în titlurile problemelor după o anumită secventă şi afişează rezultatele.";
     this.comboCautaProblema.Value = null;
     this.comboCautaProblema.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.comboCautaProblema_KeyPress);
     //
     // btnCautaProbleme
     //
     this.btnCautaProbleme.CanFocus = true;
     this.btnCautaProbleme.Class = "ButtonElement";
     this.btnCautaProbleme.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
     this.btnCautaProbleme.Name = "btnCautaProbleme";
     this.btnCautaProbleme.Padding = new System.Windows.Forms.Padding(0, 3, 0, 0);
     this.btnCautaProbleme.ShowBorder = false;
     this.btnCautaProbleme.Text = "Caută problemă";
     this.btnCautaProbleme.ToolTipText = "Caută în titlurile şi cerinţa problemelor după o anumită secventă şi afişează rez" +
         "ultatele.";
     this.btnCautaProbleme.Click += new System.EventHandler(this.btnCautaProbleme_Click);
     //
     // btnToateProblemele
     //
     this.btnToateProblemele.CanFocus = true;
     this.btnToateProblemele.Class = "ButtonElement";
     this.btnToateProblemele.Image = global::InfoCenter.Properties.Resources.imgToate16;
     this.btnToateProblemele.Name = "btnToateProblemele";
     this.btnToateProblemele.Padding = new System.Windows.Forms.Padding(1);
     this.btnToateProblemele.ShowBorder = false;
     this.btnToateProblemele.ToolTipText = "Afişează toate problemele.";
     this.btnToateProblemele.Click += new System.EventHandler(this.btnToateProblemele_Click);
     //
     // radGroup11
     //
     this.radGroup11.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.comboCautaCuvantCheie,
     this.btnCautaCuvantCheie,
     this.btnToateCuvinteleCheie});
     this.radGroup11.Margin = new System.Windows.Forms.Padding(2);
     this.radGroup11.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup11.Name = "radGroup11";
     this.radGroup11.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroup11.ShowBackColor = true;
     this.radGroup11.ShowBorder = true;
     this.radGroup11.Text = "radGroup11";
     this.radGroup11.ToolTipText = null;
     //
     // comboCautaCuvantCheie
     //
     this.comboCautaCuvantCheie.ArrowButtonMinWidth = 16;
     this.comboCautaCuvantCheie.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.comboCautaCuvantCheie.DefaultValue = null;
     this.comboCautaCuvantCheie.DropDownSizingMode = ((Telerik.WinControls.UI.SizingMode)((Telerik.WinControls.UI.SizingMode.RightBottom | Telerik.WinControls.UI.SizingMode.UpDown)));
     this.comboCautaCuvantCheie.EditorElement = this.comboCautaCuvantCheie;
     this.comboCautaCuvantCheie.Focusable = true;
     this.comboCautaCuvantCheie.MaxSize = new System.Drawing.Size(140, 0);
     this.comboCautaCuvantCheie.MaxValue = null;
     this.comboCautaCuvantCheie.MinSize = new System.Drawing.Size(140, 0);
     this.comboCautaCuvantCheie.MinValue = null;
     this.comboCautaCuvantCheie.Name = "comboCautaCuvantCheie";
     this.comboCautaCuvantCheie.NullValue = null;
     this.comboCautaCuvantCheie.OwnerOffset = 0;
     this.comboCautaCuvantCheie.ReadOnly = false;
     this.comboCautaCuvantCheie.Text = "(Caută cuvânt cheie)";
     this.comboCautaCuvantCheie.ToolTipText = "Caută în cuvintele cheie ale problemelor după o anumită secventă şi afişează rezu" +
         "ltatele.";
     this.comboCautaCuvantCheie.Value = null;
     this.comboCautaCuvantCheie.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.comboCautaCuvantCheie_KeyPress);
     //
     // btnCautaCuvantCheie
     //
     this.btnCautaCuvantCheie.CanFocus = true;
     this.btnCautaCuvantCheie.Class = "ButtonElement";
     this.btnCautaCuvantCheie.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
     this.btnCautaCuvantCheie.Name = "btnCautaCuvantCheie";
     this.btnCautaCuvantCheie.Padding = new System.Windows.Forms.Padding(0, 3, 0, 0);
     this.btnCautaCuvantCheie.ShowBorder = false;
     this.btnCautaCuvantCheie.Text = "Caută cuvânt cheie";
     this.btnCautaCuvantCheie.ToolTipText = "Caută în cuvintele cheie ale problemelor după o anumită secventă şi afişează rezu" +
         "ltatele.";
     this.btnCautaCuvantCheie.Click += new System.EventHandler(this.btnCautaCuvantCheie_Click);
     //
     // btnToateCuvinteleCheie
     //
     this.btnToateCuvinteleCheie.CanFocus = true;
     this.btnToateCuvinteleCheie.Class = "ButtonElement";
     this.btnToateCuvinteleCheie.Image = global::InfoCenter.Properties.Resources.imgToate16;
     this.btnToateCuvinteleCheie.Name = "btnToateCuvinteleCheie";
     this.btnToateCuvinteleCheie.Padding = new System.Windows.Forms.Padding(1);
     this.btnToateCuvinteleCheie.ShowBorder = false;
     this.btnToateCuvinteleCheie.ToolTipText = "Afişează toate cuvintele cheie.";
     this.btnToateCuvinteleCheie.Click += new System.EventHandler(this.btnToateCuvinteleCheie_Click);
     //
     // radChunkActiuniProblema
     //
     this.radChunkActiuniProblema.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radGroup5,
     this.radGroup15});
     this.radChunkActiuniProblema.Name = "radChunkActiuniProblema";
     this.radChunkActiuniProblema.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radChunkActiuniProblema.Text = "Acţiuni problemă";
     this.radChunkActiuniProblema.ToolTipText = null;
     //
     // radGroup5
     //
     this.radGroup5.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.btnSalvare});
     this.radGroup5.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup5.Name = "radGroup5";
     this.radGroup5.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroup5.Padding = new System.Windows.Forms.Padding(1);
     this.radGroup5.ShowBackColor = false;
     this.radGroup5.ShowBorder = false;
     this.radGroup5.Text = "radGroup5";
     this.radGroup5.ToolTipText = null;
     //
     // btnSalvare
     //
     this.btnSalvare.Alignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSalvare.ArrowButtonMinSize = new System.Drawing.Size(12, 12);
     this.btnSalvare.AutoSize = false;
     this.btnSalvare.BackColor = System.Drawing.Color.Empty;
     this.btnSalvare.Bounds = new System.Drawing.Rectangle(0, 0, 61, 61);
     this.btnSalvare.CanFocus = true;
     this.btnSalvare.Class = "RibbonBarButtonElement";
     this.btnSalvare.DefaultItem = null;
     this.btnSalvare.DropDownDirection = Telerik.WinControls.UI.RadDirection.Down;
     this.btnSalvare.ExpandArrowButton = false;
     this.btnSalvare.HasTwoColumnDropDown = false;
     this.btnSalvare.Image = global::InfoCenter.Properties.Resources.imgSaveAs32;
     this.btnSalvare.ImageAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.btnSalvare.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radMenuSalvare,
     this.radMenuSalvareCa});
     this.btnSalvare.Margin = new System.Windows.Forms.Padding(0, 0, 1, 1);
     this.btnSalvare.Name = "btnSalvare";
     this.btnSalvare.Padding = new System.Windows.Forms.Padding(0, -3, 0, 0);
     this.btnSalvare.StringAlignment = System.Drawing.StringAlignment.Center;
     this.btnSalvare.Text = "Salvare";
     this.btnSalvare.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnSalvare.ToolTipText = "Salvează codul sursă al problemei selectate într-un fişier specificat sau în dosa" +
         "rul de salvare rapidă.";
     //
     // radMenuSalvare
     //
     this.radMenuSalvare.Image = global::InfoCenter.Properties.Resources.imgSave32_2;
     this.radMenuSalvare.Name = "radMenuSalvare";
     this.radMenuSalvare.Text = "Salvare Rapidă";
     this.radMenuSalvare.ToolTipText = "Salvează codul sursă al problemei selectate în dosarul pentru salvare rapidă dacă" +
         " acesta a fost definit.";
     this.radMenuSalvare.Click += new System.EventHandler(this.btnSalvareRapida_Click);
     //
     // radMenuSalvareCa
     //
     this.radMenuSalvareCa.Image = global::InfoCenter.Properties.Resources.imgSaveAs32_2;
     this.radMenuSalvareCa.Name = "radMenuSalvareCa";
     this.radMenuSalvareCa.Text = "Salvare";
     this.radMenuSalvareCa.ToolTipText = "Salvează codul sursă al problemei selectate într-un fişier specificat.";
     this.radMenuSalvareCa.Click += new System.EventHandler(this.btnSalvare_Click);
     //
     // radGroup15
     //
     this.radGroup15.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.btnMaresteCerinta,
     this.btnMaresteSursa,
     this.btnRezolvaProblema});
     this.radGroup15.Margin = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.radGroup15.Name = "radGroup15";
     this.radGroup15.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroup15.Padding = new System.Windows.Forms.Padding(1);
     this.radGroup15.ShowBackColor = false;
     this.radGroup15.ShowBorder = false;
     this.radGroup15.ToolTipText = null;
     //
     // btnMaresteCerinta
     //
     this.btnMaresteCerinta.CanFocus = true;
     this.btnMaresteCerinta.Class = "RibbonBarButtonElement";
     this.btnMaresteCerinta.Image = global::InfoCenter.Properties.Resources.imgZoom32;
     this.btnMaresteCerinta.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnMaresteCerinta.Name = "btnMaresteCerinta";
     this.btnMaresteCerinta.Padding = new System.Windows.Forms.Padding(0, 5, 0, 5);
     this.btnMaresteCerinta.Text = "Măreşte cerinţa";
     this.btnMaresteCerinta.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnMaresteCerinta.ToolTipText = "Afişează cerinţa într-o fereastră mai mare.";
     this.btnMaresteCerinta.Click += new System.EventHandler(this.btnMaresteCerinta_Click);
     //
     // btnMaresteSursa
     //
     this.btnMaresteSursa.Alignment = System.Drawing.ContentAlignment.BottomLeft;
     this.btnMaresteSursa.CanFocus = true;
     this.btnMaresteSursa.Class = "RibbonBarButtonElement";
     this.btnMaresteSursa.Image = global::InfoCenter.Properties.Resources.imgZoom32;
     this.btnMaresteSursa.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnMaresteSursa.Name = "btnMaresteSursa";
     this.btnMaresteSursa.Padding = new System.Windows.Forms.Padding(0, 5, 0, 5);
     this.btnMaresteSursa.Text = "Măreşte codul sursă";
     this.btnMaresteSursa.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnMaresteSursa.ToolTipText = "Afişează codul sursă într-o fereastră mai mare.";
     this.btnMaresteSursa.Click += new System.EventHandler(this.btnMaresteSursa_Click);
     //
     // btnRezolvaProblema
     //
     this.btnRezolvaProblema.Alignment = System.Drawing.ContentAlignment.BottomLeft;
     this.btnRezolvaProblema.CanFocus = true;
     this.btnRezolvaProblema.Class = "RibbonBarButtonElement";
     this.btnRezolvaProblema.Image = global::InfoCenter.Properties.Resources.imgOptiuni;
     this.btnRezolvaProblema.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnRezolvaProblema.Name = "btnRezolvaProblema";
     this.btnRezolvaProblema.Padding = new System.Windows.Forms.Padding(0, 5, 0, 5);
     this.btnRezolvaProblema.Text = "Rezolvă problema";
     this.btnRezolvaProblema.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnRezolvaProblema.ToolTipText = "Compilează codul sursă al problemei selectate şi afişează rezultatul compilării.";
     this.btnRezolvaProblema.Click += new System.EventHandler(this.btnRezolvaProblema_Click);
     //
     // ribbonTabProbleme
     //
     this.ribbonTabProbleme.CanFocus = true;
     this.ribbonTabProbleme.Class = "TabItem";
     //
     // ribbonTabProbleme.ContentPanel
     //
     this.ribbonTabProbleme.ContentPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ribbonTabProbleme.ContentPanel.CausesValidation = true;
     this.ribbonTabProbleme.KeyTip = " ";
     this.ribbonTabProbleme.Name = "ribbonTabProbleme";
     this.ribbonTabProbleme.Text = "Probleme";
     this.ribbonTabProbleme.ToolTipText = null;
     this.ribbonTabProbleme.Click += new System.EventHandler(this.ribbonTabProbleme_Click);
     //
     // radChunkInformatiiTest
     //
     this.radChunkInformatiiTest.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radGroup2});
     this.radChunkInformatiiTest.Name = "radChunkInformatiiTest";
     this.radChunkInformatiiTest.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radChunkInformatiiTest.Text = "Informaţii Test";
     this.radChunkInformatiiTest.ToolTipText = null;
     //
     // radGroup2
     //
     this.radGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.btnLblNivelTest,
     this.lblPunctaj,
     this.lblTimpScurs});
     this.radGroup2.Margin = new System.Windows.Forms.Padding(0, 5, 0, 0);
     this.radGroup2.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup2.Name = "radGroup2";
     this.radGroup2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroup2.Padding = new System.Windows.Forms.Padding(1);
     this.radGroup2.ShowBackColor = false;
     this.radGroup2.ShowBorder = false;
     this.radGroup2.Text = "radGroup2";
     this.radGroup2.ToolTipText = null;
     //
     // btnLblNivelTest
     //
     this.btnLblNivelTest.CanFocus = true;
     this.btnLblNivelTest.Class = "RibbonBarButtonElement";
     this.btnLblNivelTest.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(130)))), ((int)(((byte)(130)))));
     this.btnLblNivelTest.Image = global::InfoCenter.Properties.Resources._0_star_rating;
     this.btnLblNivelTest.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnLblNivelTest.Name = "btnLblNivelTest";
     this.btnLblNivelTest.Padding = new System.Windows.Forms.Padding(0, 20, 0, 0);
     this.btnLblNivelTest.Text = "Nivel test";
     this.btnLblNivelTest.TextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.btnLblNivelTest.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnLblNivelTest.ToolTipText = "Afişează nivelul necesar pentru rezolvarea testului selectat (1 stea - începător;" +
         " 2 stele - mediu; 3 stele - avansat).";
     //
     // lblPunctaj
     //
     this.lblPunctaj.CanFocus = true;
     this.lblPunctaj.Class = "RibbonBarButtonElement";
     this.lblPunctaj.Enabled = false;
     this.lblPunctaj.Image = global::InfoCenter.Properties.Resources.imgPunctaj32;
     this.lblPunctaj.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblPunctaj.Name = "lblPunctaj";
     this.lblPunctaj.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
     this.lblPunctaj.Text = "Punctaj: -";
     this.lblPunctaj.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.lblPunctaj.ToolTipText = "Afişează punctajul primit pentru rezolvarea testului.";
     //
     // lblTimpScurs
     //
     this.lblTimpScurs.CanFocus = true;
     this.lblTimpScurs.Class = "RibbonBarButtonElement";
     this.lblTimpScurs.Enabled = false;
     this.lblTimpScurs.Image = global::InfoCenter.Properties.Resources.imgClock32;
     this.lblTimpScurs.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblTimpScurs.Name = "lblTimpScurs";
     this.lblTimpScurs.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
     this.lblTimpScurs.Text = "Timp Scurs: -";
     this.lblTimpScurs.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblTimpScurs.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.lblTimpScurs.ToolTipText = "Afişează timpul scurs de la începerea testului.";
     //
     // radChunkActiuniTest
     //
     this.radChunkActiuniTest.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radGroup1});
     this.radChunkActiuniTest.Name = "radChunkActiuniTest";
     this.radChunkActiuniTest.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radChunkActiuniTest.Text = "Acţiuni test";
     this.radChunkActiuniTest.ToolTipText = null;
     //
     // radGroup1
     //
     this.radGroup1.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.btnIncepeTest,
     this.btnResetTest,
     this.btnCorecteazaTest});
     this.radGroup1.Margin = new System.Windows.Forms.Padding(0, 6, 0, 0);
     this.radGroup1.MinSize = new System.Drawing.Size(22, 22);
     this.radGroup1.Name = "radGroup1";
     this.radGroup1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroup1.Padding = new System.Windows.Forms.Padding(1);
     this.radGroup1.ShowBackColor = false;
     this.radGroup1.ShowBorder = false;
     this.radGroup1.Text = "radGroup1";
     this.radGroup1.ToolTipText = null;
     //
     // btnIncepeTest
     //
     this.btnIncepeTest.CanFocus = true;
     this.btnIncepeTest.Class = "RibbonBarButtonElement";
     this.btnIncepeTest.Image = global::InfoCenter.Properties.Resources.imgPlay32;
     this.btnIncepeTest.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnIncepeTest.Name = "btnIncepeTest";
     this.btnIncepeTest.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
     this.btnIncepeTest.Text = "Începe testul";
     this.btnIncepeTest.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnIncepeTest.ToolTipText = "Începe rezolvarea testului selectat.";
     this.btnIncepeTest.Click += new System.EventHandler(this.btnIncepeTest_Click);
     //
     // btnResetTest
     //
     this.btnResetTest.CanFocus = true;
     this.btnResetTest.Class = "RibbonBarButtonElement";
     this.btnResetTest.Image = global::InfoCenter.Properties.Resources.imgRefresh32;
     this.btnResetTest.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnResetTest.Name = "btnResetTest";
     this.btnResetTest.Padding = new System.Windows.Forms.Padding(0, 4, 0, 0);
     this.btnResetTest.Text = "Reîncepe testul";
     this.btnResetTest.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnResetTest.ToolTipText = "Resetează testul fără a verifica corectitudinea răspunsurilor.";
     this.btnResetTest.Click += new System.EventHandler(this.btnResetTest_Click);
     //
     // btnCorecteazaTest
     //
     this.btnCorecteazaTest.CanFocus = true;
     this.btnCorecteazaTest.Class = "RibbonBarButtonElement";
     this.btnCorecteazaTest.Image = global::InfoCenter.Properties.Resources.imgSetariImprimanta;
     this.btnCorecteazaTest.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnCorecteazaTest.Name = "btnCorecteazaTest";
     this.btnCorecteazaTest.Text = "Corectează testul";
     this.btnCorecteazaTest.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnCorecteazaTest.ToolTipText = "Opreşte testul, verifică corectitudinea răspunsurilor şi afişează punctajul obţin" +
         "ut.";
     this.btnCorecteazaTest.Click += new System.EventHandler(this.btnCorecteazaTest_Click);
     //
     // ribbonTabTeste
     //
     this.ribbonTabTeste.CanFocus = true;
     this.ribbonTabTeste.Class = "TabItem";
     //
     // ribbonTabTeste.ContentPanel
     //
     this.ribbonTabTeste.ContentPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ribbonTabTeste.ContentPanel.CausesValidation = true;
     this.ribbonTabTeste.KeyTip = " ";
     this.ribbonTabTeste.Name = "ribbonTabTeste";
     this.ribbonTabTeste.Text = "Teste";
     this.ribbonTabTeste.ToolTipText = null;
     this.ribbonTabTeste.Click += new System.EventHandler(this.ribbonTabTeste_Click);
     //
     // radChunkActiuniCompilator
     //
     this.radChunkActiuniCompilator.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radRibbonBarButtonGroup1});
     this.radChunkActiuniCompilator.Name = "radChunkActiuniCompilator";
     this.radChunkActiuniCompilator.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radChunkActiuniCompilator.Text = "Acţiuni compilator";
     this.radChunkActiuniCompilator.ToolTipText = null;
     //
     // radRibbonBarButtonGroup1
     //
     this.radRibbonBarButtonGroup1.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.btnExecuta,
     this.btnTestareProgram,
     this.btnTestareAutomaticaProgram,
     this.btnSaveCodSursa,
     this.btnFragmenteDeCod});
     this.radRibbonBarButtonGroup1.MinSize = new System.Drawing.Size(22, 22);
     this.radRibbonBarButtonGroup1.Name = "radRibbonBarButtonGroup1";
     this.radRibbonBarButtonGroup1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radRibbonBarButtonGroup1.Padding = new System.Windows.Forms.Padding(1);
     this.radRibbonBarButtonGroup1.ShowBackColor = false;
     this.radRibbonBarButtonGroup1.ShowBorder = false;
     this.radRibbonBarButtonGroup1.Text = "radRibbonBarButtonGroup1";
     this.radRibbonBarButtonGroup1.ToolTipText = null;
     //
     // btnExecuta
     //
     this.btnExecuta.CanFocus = true;
     this.btnExecuta.Class = "RibbonBarButtonElement";
     this.btnExecuta.Image = global::InfoCenter.Properties.Resources.imgRun1;
     this.btnExecuta.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnExecuta.Name = "btnExecuta";
     this.btnExecuta.Padding = new System.Windows.Forms.Padding(0, 8, 0, 0);
     this.btnExecuta.Text = "Execută programul";
     this.btnExecuta.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnExecuta.Click += new System.EventHandler(this.btnExecuta_Click);
     //
     // btnTestareProgram
     //
     this.btnTestareProgram.CanFocus = true;
     this.btnTestareProgram.Class = "RibbonBarButtonElement";
     this.btnTestareProgram.Image = ((System.Drawing.Image)(resources.GetObject("btnTestareProgram.Image")));
     this.btnTestareProgram.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnTestareProgram.Name = "btnTestareProgram";
     this.btnTestareProgram.Padding = new System.Windows.Forms.Padding(0, 8, 0, 0);
     this.btnTestareProgram.Text = "Date de intrare";
     this.btnTestareProgram.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnTestareProgram.ToolTipText = "Testează codul sursă din compilator cu date de la tastatură.";
     this.btnTestareProgram.Click += new System.EventHandler(this.btnTestareProgram_Click);
     //
     // btnTestareAutomaticaProgram
     //
     this.btnTestareAutomaticaProgram.CanFocus = true;
     this.btnTestareAutomaticaProgram.Class = "RibbonBarButtonElement";
     this.btnTestareAutomaticaProgram.Image = ((System.Drawing.Image)(resources.GetObject("btnTestareAutomaticaProgram.Image")));
     this.btnTestareAutomaticaProgram.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnTestareAutomaticaProgram.Name = "btnTestareAutomaticaProgram";
     this.btnTestareAutomaticaProgram.Padding = new System.Windows.Forms.Padding(0, 8, 0, 0);
     this.btnTestareAutomaticaProgram.Text = "Teste automate";
     this.btnTestareAutomaticaProgram.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnTestareAutomaticaProgram.ToolTipText = "Testează codul sursă din compilator cu date predefinite.";
     this.btnTestareAutomaticaProgram.Click += new System.EventHandler(this.btnTestareAutomaticaProgram_Click);
     //
     // btnSaveCodSursa
     //
     this.btnSaveCodSursa.CanFocus = true;
     this.btnSaveCodSursa.Class = "RibbonBarButtonElement";
     this.btnSaveCodSursa.Image = global::InfoCenter.Properties.Resources.imgSave32;
     this.btnSaveCodSursa.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnSaveCodSursa.Name = "btnSaveCodSursa";
     this.btnSaveCodSursa.Padding = new System.Windows.Forms.Padding(0, 12, 0, 0);
     this.btnSaveCodSursa.Text = "Salvează codul sursă";
     this.btnSaveCodSursa.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnSaveCodSursa.ToolTipText = "Salvează codul sursă scris în compilator (CTRL+S)";
     this.btnSaveCodSursa.Click += new System.EventHandler(this.btnSaveCodSursa_Click);
     //
     // btnFragmenteDeCod
     //
     this.btnFragmenteDeCod.CanFocus = true;
     this.btnFragmenteDeCod.Class = "RibbonBarButtonElement";
     this.btnFragmenteDeCod.Image = global::InfoCenter.Properties.Resources.codesnippet32;
     this.btnFragmenteDeCod.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnFragmenteDeCod.Name = "btnFragmenteDeCod";
     this.btnFragmenteDeCod.Padding = new System.Windows.Forms.Padding(0, 12, 0, 0);
     this.btnFragmenteDeCod.Text = "Fragmente de cod";
     this.btnFragmenteDeCod.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnFragmenteDeCod.Click += new System.EventHandler(this.btnFragmenteDeCod_Click);
     //
     // radRibbonBarChunk1
     //
     this.radRibbonBarChunk1.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radRibbonBarButtonGroup2});
     this.radRibbonBarChunk1.Name = "radRibbonBarChunk1";
     this.radRibbonBarChunk1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radRibbonBarChunk1.Text = "Font cod sursă";
     this.radRibbonBarChunk1.ToolTipText = null;
     //
     // radRibbonBarButtonGroup2
     //
     this.radRibbonBarButtonGroup2.Alignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.radRibbonBarButtonGroup2.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radRibbonBarButtonGroup3,
     this.radRibbonBarButtonGroup4});
     this.radRibbonBarButtonGroup2.MinSize = new System.Drawing.Size(22, 22);
     this.radRibbonBarButtonGroup2.Name = "radRibbonBarButtonGroup2";
     this.radRibbonBarButtonGroup2.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup2.Padding = new System.Windows.Forms.Padding(0, 11, 0, 0);
     this.radRibbonBarButtonGroup2.ShowBackColor = false;
     this.radRibbonBarButtonGroup2.ShowBorder = false;
     this.radRibbonBarButtonGroup2.Text = "radRibbonBarButtonGroup2";
     this.radRibbonBarButtonGroup2.ToolTipText = null;
     //
     // radRibbonBarButtonGroup3
     //
     this.radRibbonBarButtonGroup3.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.comboFont2,
     this.radRibbonBarButtonGroup9});
     this.radRibbonBarButtonGroup3.Name = "radRibbonBarButtonGroup3";
     this.radRibbonBarButtonGroup3.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.radRibbonBarButtonGroup3.ShowBackColor = false;
     this.radRibbonBarButtonGroup3.ShowBorder = true;
     this.radRibbonBarButtonGroup3.Text = "radRibbonBarButtonGroup3";
     this.radRibbonBarButtonGroup3.ToolTipText = null;
     //
     // comboFont2
     //
     this.comboFont2.ArrowButtonMinWidth = 16;
     this.comboFont2.AutoSize = false;
     this.comboFont2.Bounds = new System.Drawing.Rectangle(0, 0, 146, 21);
     this.comboFont2.DefaultValue = null;
     this.comboFont2.DropDownSizingMode = ((Telerik.WinControls.UI.SizingMode)((Telerik.WinControls.UI.SizingMode.RightBottom | Telerik.WinControls.UI.SizingMode.UpDown)));
     this.comboFont2.EditorElement = this.comboFont2;
     this.comboFont2.Focusable = true;
     this.comboFont2.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radComboBoxItem12,
     this.radComboBoxItem13,
     this.radComboBoxItem14,
     this.radComboBoxItem15,
     this.radComboBoxItem16,
     this.radComboBoxItem17,
     this.radComboBoxItem18});
     this.comboFont2.MaxSize = new System.Drawing.Size(140, 0);
     this.comboFont2.MaxValue = null;
     this.comboFont2.MinSize = new System.Drawing.Size(140, 0);
     this.comboFont2.MinValue = null;
     this.comboFont2.Name = "comboFont2";
     this.comboFont2.NullValue = null;
     this.comboFont2.OwnerOffset = 0;
     this.comboFont2.ReadOnly = false;
     this.comboFont2.Text = "(Font)";
     this.comboFont2.ToolTipText = null;
     this.comboFont2.Value = null;
     this.comboFont2.TextChanged += new System.EventHandler(this.comboFont2_TextChanged);
     //
     // radComboBoxItem12
     //
     this.radComboBoxItem12.Name = "radComboBoxItem12";
     this.radComboBoxItem12.Text = "Arial";
     this.radComboBoxItem12.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem12.ToolTipText = null;
     //
     // radComboBoxItem13
     //
     this.radComboBoxItem13.Name = "radComboBoxItem13";
     this.radComboBoxItem13.Text = "Comic Sans MS";
     this.radComboBoxItem13.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem13.ToolTipText = null;
     //
     // radComboBoxItem14
     //
     this.radComboBoxItem14.Name = "radComboBoxItem14";
     this.radComboBoxItem14.Text = "Courier New";
     this.radComboBoxItem14.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem14.ToolTipText = null;
     //
     // radComboBoxItem15
     //
     this.radComboBoxItem15.Name = "radComboBoxItem15";
     this.radComboBoxItem15.Text = "Georgia";
     this.radComboBoxItem15.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem15.ToolTipText = null;
     //
     // radComboBoxItem16
     //
     this.radComboBoxItem16.Name = "radComboBoxItem16";
     this.radComboBoxItem16.Text = "Tahoma";
     this.radComboBoxItem16.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem16.ToolTipText = null;
     //
     // radComboBoxItem17
     //
     this.radComboBoxItem17.Name = "radComboBoxItem17";
     this.radComboBoxItem17.Text = "Times New Roman";
     this.radComboBoxItem17.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem17.ToolTipText = null;
     //
     // radComboBoxItem18
     //
     this.radComboBoxItem18.Name = "radComboBoxItem18";
     this.radComboBoxItem18.Text = "Verdana";
     this.radComboBoxItem18.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem18.ToolTipText = null;
     //
     // radRibbonBarButtonGroup9
     //
     this.radRibbonBarButtonGroup9.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.comboFontSize2,
     this.btnFontDecrease2,
     this.btnFontIncrease2});
     this.radRibbonBarButtonGroup9.Name = "radRibbonBarButtonGroup9";
     this.radRibbonBarButtonGroup9.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radRibbonBarButtonGroup9.ShowBackColor = true;
     this.radRibbonBarButtonGroup9.ShowBorder = true;
     this.radRibbonBarButtonGroup9.Text = "radRibbonBarButtonGroup9";
     //
     // comboFontSize2
     //
     this.comboFontSize2.ArrowButtonMinWidth = 16;
     this.comboFontSize2.AutoSize = false;
     this.comboFontSize2.Bounds = new System.Drawing.Rectangle(0, 0, 50, 21);
     this.comboFontSize2.DefaultValue = null;
     this.comboFontSize2.DropDownSizingMode = ((Telerik.WinControls.UI.SizingMode)((Telerik.WinControls.UI.SizingMode.RightBottom | Telerik.WinControls.UI.SizingMode.UpDown)));
     this.comboFontSize2.EditorElement = this.comboFontSize2;
     this.comboFontSize2.Focusable = true;
     this.comboFontSize2.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radComboBoxItem25,
     this.radComboBoxItem26,
     this.radComboBoxItem27,
     this.radComboBoxItem28});
     this.comboFontSize2.MaxSize = new System.Drawing.Size(140, 0);
     this.comboFontSize2.MaxValue = null;
     this.comboFontSize2.MinSize = new System.Drawing.Size(140, 0);
     this.comboFontSize2.MinValue = null;
     this.comboFontSize2.Name = "comboFontSize2";
     this.comboFontSize2.NullValue = null;
     this.comboFontSize2.OwnerOffset = 0;
     this.comboFontSize2.Padding = new System.Windows.Forms.Padding(1);
     this.comboFontSize2.ReadOnly = false;
     this.comboFontSize2.Text = "10";
     this.comboFontSize2.ToolTipText = null;
     this.comboFontSize2.Value = null;
     this.comboFontSize2.TextChanged += new System.EventHandler(this.comboFontSize2_TextChanged);
     //
     // radComboBoxItem25
     //
     this.radComboBoxItem25.Name = "radComboBoxItem25";
     this.radComboBoxItem25.Text = "8";
     this.radComboBoxItem25.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem25.ToolTipText = null;
     //
     // radComboBoxItem26
     //
     this.radComboBoxItem26.Name = "radComboBoxItem26";
     this.radComboBoxItem26.Text = "10";
     this.radComboBoxItem26.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem26.ToolTipText = null;
     //
     // radComboBoxItem27
     //
     this.radComboBoxItem27.Name = "radComboBoxItem27";
     this.radComboBoxItem27.Text = "13";
     this.radComboBoxItem27.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem27.ToolTipText = null;
     //
     // radComboBoxItem28
     //
     this.radComboBoxItem28.Name = "radComboBoxItem28";
     this.radComboBoxItem28.Text = "18";
     this.radComboBoxItem28.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem28.ToolTipText = null;
     //
     // btnFontDecrease2
     //
     this.btnFontDecrease2.CanFocus = true;
     this.btnFontDecrease2.Class = "ButtonElement";
     this.btnFontDecrease2.Image = global::InfoCenter.Properties.Resources.imgDecreaseFont16;
     this.btnFontDecrease2.Margin = new System.Windows.Forms.Padding(2);
     this.btnFontDecrease2.Name = "btnFontDecrease2";
     this.btnFontDecrease2.Padding = new System.Windows.Forms.Padding(2);
     this.btnFontDecrease2.ShowBorder = false;
     this.btnFontDecrease2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnFontDecrease2.ToolTipText = null;
     this.btnFontDecrease2.Click += new System.EventHandler(this.btnFontDecrease2_Click);
     //
     // btnFontIncrease2
     //
     this.btnFontIncrease2.CanFocus = true;
     this.btnFontIncrease2.Class = "ButtonElement";
     this.btnFontIncrease2.DisplayStyle = Telerik.WinControls.DisplayStyle.Image;
     this.btnFontIncrease2.Image = global::InfoCenter.Properties.Resources.imgIncreaseFont16;
     this.btnFontIncrease2.Margin = new System.Windows.Forms.Padding(2);
     this.btnFontIncrease2.Name = "btnFontIncrease2";
     this.btnFontIncrease2.Padding = new System.Windows.Forms.Padding(2);
     this.btnFontIncrease2.ShowBorder = false;
     this.btnFontIncrease2.Text = "radButtonElement3";
     this.btnFontIncrease2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnFontIncrease2.ToolTipText = null;
     this.btnFontIncrease2.Click += new System.EventHandler(this.btnFontIncrease2_Click);
     //
     // radRibbonBarButtonGroup4
     //
     this.radRibbonBarButtonGroup4.Alignment = System.Drawing.ContentAlignment.BottomLeft;
     this.radRibbonBarButtonGroup4.Name = "radRibbonBarButtonGroup4";
     this.radRibbonBarButtonGroup4.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.radRibbonBarButtonGroup4.Padding = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.radRibbonBarButtonGroup4.ShowBackColor = true;
     this.radRibbonBarButtonGroup4.ShowBorder = true;
     this.radRibbonBarButtonGroup4.Text = "radRibbonBarButtonGroup4";
     this.radRibbonBarButtonGroup4.ToolTipText = null;
     //
     // ribbonTabCompilator
     //
     this.ribbonTabCompilator.CanFocus = true;
     this.ribbonTabCompilator.Class = "TabItem";
     //
     // ribbonTabCompilator.ContentPanel
     //
     this.ribbonTabCompilator.ContentPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.ribbonTabCompilator.ContentPanel.CausesValidation = true;
     this.ribbonTabCompilator.IsSelected = true;
     this.ribbonTabCompilator.KeyTip = " ";
     this.ribbonTabCompilator.Name = "ribbonTabCompilator";
     this.ribbonTabCompilator.Text = "Rezolvă";
     this.ribbonTabCompilator.ToolTipText = null;
     this.ribbonTabCompilator.Click += new System.EventHandler(this.ribbonTabCompilator_Click);
     //
     // radComboBoxItem6
     //
     this.radComboBoxItem6.Name = "radComboBoxItem6";
     this.radComboBoxItem6.Text = "8";
     this.radComboBoxItem6.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem6.ToolTipText = null;
     //
     // radComboBoxItem7
     //
     this.radComboBoxItem7.Name = "radComboBoxItem7";
     this.radComboBoxItem7.Text = "9";
     this.radComboBoxItem7.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem7.ToolTipText = null;
     //
     // radComboBoxItem8
     //
     this.radComboBoxItem8.Name = "radComboBoxItem8";
     this.radComboBoxItem8.Text = "10";
     this.radComboBoxItem8.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem8.ToolTipText = null;
     //
     // radComboBoxItem9
     //
     this.radComboBoxItem9.Name = "radComboBoxItem9";
     this.radComboBoxItem9.Text = "13";
     this.radComboBoxItem9.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem9.ToolTipText = null;
     //
     // radComboBoxItem10
     //
     this.radComboBoxItem10.Name = "radComboBoxItem10";
     this.radComboBoxItem10.Text = "20";
     this.radComboBoxItem10.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem10.ToolTipText = null;
     //
     // radComboBoxItem11
     //
     this.radComboBoxItem11.Name = "radComboBoxItem11";
     this.radComboBoxItem11.Text = "25";
     this.radComboBoxItem11.TextSeparatorVisibility = Telerik.WinControls.ElementVisibility.Visible;
     this.radComboBoxItem11.ToolTipText = null;
     //
     // tabControlMain
     //
     this.tabControlMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControlMain.Controls.Add(this.tabPageStart);
     this.tabControlMain.Controls.Add(this.tabPageLectii);
     this.tabControlMain.Controls.Add(this.tabPageProbleme);
     this.tabControlMain.Controls.Add(this.tabPageTeste);
     this.tabControlMain.Controls.Add(this.tabPageCompilator);
     this.tabControlMain.Location = new System.Drawing.Point(0, 118);
     this.tabControlMain.Name = "tabControlMain";
     this.tabControlMain.SelectedIndex = 0;
     this.tabControlMain.Size = new System.Drawing.Size(951, 509);
     this.tabControlMain.TabIndex = 0;
     //
     // tabPageStart
     //
     this.tabPageStart.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageStart.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabPageStart.BackgroundImage")));
     this.tabPageStart.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.tabPageStart.Controls.Add(this.label10);
     this.tabPageStart.Controls.Add(this.label9);
     this.tabPageStart.Controls.Add(this.label4);
     this.tabPageStart.Controls.Add(this.label3);
     this.tabPageStart.Controls.Add(this.lblLinkCompilator);
     this.tabPageStart.Controls.Add(this.lblAutentificareProfesor);
     this.tabPageStart.Controls.Add(this.lblLinkTeste);
     this.tabPageStart.Controls.Add(this.lblLinkProbleme);
     this.tabPageStart.Controls.Add(this.lblLinkLectii);
     this.tabPageStart.Controls.Add(this.label2);
     this.tabPageStart.ForeColor = System.Drawing.Color.White;
     this.tabPageStart.Location = new System.Drawing.Point(4, 22);
     this.tabPageStart.Name = "tabPageStart";
     this.tabPageStart.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageStart.Size = new System.Drawing.Size(943, 483);
     this.tabPageStart.TabIndex = 4;
     this.tabPageStart.Text = "Pagina de start";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(132, 136);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(148, 18);
     this.label10.TabIndex = 12;
     this.label10.Text = "Aici este locul perfect!";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(315, 91);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(103, 18);
     this.label9.TabIndex = 11;
     this.label9.Text = "şi programare,";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(147, 77);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(162, 37);
     this.label4.TabIndex = 10;
     this.label4.Text = "înveţi C++";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(38, 91);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(114, 18);
     this.label3.TabIndex = 9;
     this.label3.Text = "Dacă doreşti să ";
     //
     // lblLinkCompilator
     //
     this.lblLinkCompilator.AutoSize = true;
     this.lblLinkCompilator.BackColor = System.Drawing.Color.Transparent;
     this.lblLinkCompilator.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLinkCompilator.ForeColor = System.Drawing.Color.White;
     this.lblLinkCompilator.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.lblLinkCompilator.Location = new System.Drawing.Point(38, 287);
     this.lblLinkCompilator.Name = "lblLinkCompilator";
     this.lblLinkCompilator.Size = new System.Drawing.Size(63, 19);
     this.lblLinkCompilator.TabIndex = 8;
     this.lblLinkCompilator.TabStop = true;
     this.lblLinkCompilator.Text = "Rezolvă";
     this.lblLinkCompilator.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblLinkCompilator_LinkClicked);
     //
     // lblAutentificareProfesor
     //
     this.lblAutentificareProfesor.AutoSize = true;
     this.lblAutentificareProfesor.BackColor = System.Drawing.Color.Transparent;
     this.lblAutentificareProfesor.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAutentificareProfesor.ForeColor = System.Drawing.Color.White;
     this.lblAutentificareProfesor.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.lblAutentificareProfesor.Location = new System.Drawing.Point(12, 416);
     this.lblAutentificareProfesor.Name = "lblAutentificareProfesor";
     this.lblAutentificareProfesor.Size = new System.Drawing.Size(454, 16);
     this.lblAutentificareProfesor.TabIndex = 6;
     this.lblAutentificareProfesor.TabStop = true;
     this.lblAutentificareProfesor.Text = "> Dacă sunteţi profesor şi vreţi să modificaţi conţinutul aplicaţiei daţi click a" +
         "ici.";
     this.lblAutentificareProfesor.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblAutentificareProfesor_LinkClicked);
     //
     // lblLinkTeste
     //
     this.lblLinkTeste.AutoSize = true;
     this.lblLinkTeste.BackColor = System.Drawing.Color.Transparent;
     this.lblLinkTeste.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLinkTeste.ForeColor = System.Drawing.Color.White;
     this.lblLinkTeste.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.lblLinkTeste.Location = new System.Drawing.Point(38, 252);
     this.lblLinkTeste.Name = "lblLinkTeste";
     this.lblLinkTeste.Size = new System.Drawing.Size(47, 19);
     this.lblLinkTeste.TabIndex = 5;
     this.lblLinkTeste.TabStop = true;
     this.lblLinkTeste.Text = "Teste";
     this.lblLinkTeste.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblLinkTest_LinkClicked);
     //
     // lblLinkProbleme
     //
     this.lblLinkProbleme.AutoSize = true;
     this.lblLinkProbleme.BackColor = System.Drawing.Color.Transparent;
     this.lblLinkProbleme.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLinkProbleme.ForeColor = System.Drawing.Color.White;
     this.lblLinkProbleme.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.lblLinkProbleme.Location = new System.Drawing.Point(38, 218);
     this.lblLinkProbleme.Name = "lblLinkProbleme";
     this.lblLinkProbleme.Size = new System.Drawing.Size(76, 19);
     this.lblLinkProbleme.TabIndex = 4;
     this.lblLinkProbleme.TabStop = true;
     this.lblLinkProbleme.Text = "Probleme";
     this.lblLinkProbleme.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblLinkProbleme_LinkClicked);
     //
     // lblLinkLectii
     //
     this.lblLinkLectii.AutoSize = true;
     this.lblLinkLectii.BackColor = System.Drawing.Color.Transparent;
     this.lblLinkLectii.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLinkLectii.ForeColor = System.Drawing.Color.White;
     this.lblLinkLectii.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.lblLinkLectii.Location = new System.Drawing.Point(38, 185);
     this.lblLinkLectii.Name = "lblLinkLectii";
     this.lblLinkLectii.Size = new System.Drawing.Size(45, 19);
     this.lblLinkLectii.TabIndex = 3;
     this.lblLinkLectii.TabStop = true;
     this.lblLinkLectii.Text = "Lecţii";
     this.lblLinkLectii.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblLinkLectii_LinkClicked);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.MidnightBlue;
     this.label2.Location = new System.Drawing.Point(338, 29);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(267, 25);
     this.label2.TabIndex = 0;
     this.label2.Text = "Bun venit la Info Center!";
     //
     // tabPageLectii
     //
     this.tabPageLectii.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageLectii.Controls.Add(this.splitContainer3);
     this.tabPageLectii.Location = new System.Drawing.Point(4, 22);
     this.tabPageLectii.Name = "tabPageLectii";
     this.tabPageLectii.Size = new System.Drawing.Size(943, 483);
     this.tabPageLectii.TabIndex = 0;
     this.tabPageLectii.Text = "Lecţii";
     this.tabPageLectii.UseVisualStyleBackColor = true;
     //
     // splitContainer3
     //
     this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location = new System.Drawing.Point(0, 0);
     this.splitContainer3.Name = "splitContainer3";
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.gBoxListaLectii);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.gBoxContinutLectie);
     this.splitContainer3.Size = new System.Drawing.Size(943, 483);
     this.splitContainer3.SplitterDistance = 222;
     this.splitContainer3.TabIndex = 2;
     //
     // gBoxListaLectii
     //
     this.gBoxListaLectii.Controls.Add(this.cuprinsLectii);
     this.gBoxListaLectii.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gBoxListaLectii.Location = new System.Drawing.Point(0, 0);
     this.gBoxListaLectii.Name = "gBoxListaLectii";
     this.gBoxListaLectii.Size = new System.Drawing.Size(222, 483);
     this.gBoxListaLectii.TabIndex = 1;
     this.gBoxListaLectii.TabStop = false;
     this.gBoxListaLectii.Text = "Listă lecţii";
     //
     // cuprinsLectii
     //
     this.cuprinsLectii.BackColor = System.Drawing.Color.White;
     this.cuprinsLectii.Dock = System.Windows.Forms.DockStyle.Fill;
     this.cuprinsLectii.Font = new System.Drawing.Font("Tahoma", 8.6F);
     this.cuprinsLectii.Location = new System.Drawing.Point(3, 16);
     this.cuprinsLectii.Name = "cuprinsLectii";
     this.cuprinsLectii.Size = new System.Drawing.Size(216, 464);
     this.cuprinsLectii.TabIndex = 0;
     this.cuprinsLectii.Selected += new System.EventHandler(this.cuprinsLectii_Selected);
     //
     // gBoxContinutLectie
     //
     this.gBoxContinutLectie.Controls.Add(this.lblStartLectie);
     this.gBoxContinutLectie.Controls.Add(this.navigatorLectii);
     this.gBoxContinutLectie.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gBoxContinutLectie.Location = new System.Drawing.Point(0, 0);
     this.gBoxContinutLectie.Name = "gBoxContinutLectie";
     this.gBoxContinutLectie.Size = new System.Drawing.Size(717, 483);
     this.gBoxContinutLectie.TabIndex = 1;
     this.gBoxContinutLectie.TabStop = false;
     this.gBoxContinutLectie.Text = "Conţinutul lecţiei";
     //
     // lblStartLectie
     //
     this.lblStartLectie.AutoSize = true;
     this.lblStartLectie.BackColor = System.Drawing.Color.White;
     this.lblStartLectie.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblStartLectie.ForeColor = System.Drawing.Color.Black;
     this.lblStartLectie.Location = new System.Drawing.Point(138, 193);
     this.lblStartLectie.Name = "lblStartLectie";
     this.lblStartLectie.Size = new System.Drawing.Size(428, 23);
     this.lblStartLectie.TabIndex = 1;
     this.lblStartLectie.Text = "Pentru a începe alege o lecţie din lista din stânga.";
     //
     // navigatorLectii
     //
     this.navigatorLectii.Dock = System.Windows.Forms.DockStyle.Fill;
     this.navigatorLectii.Location = new System.Drawing.Point(3, 16);
     this.navigatorLectii.Margin = new System.Windows.Forms.Padding(0);
     this.navigatorLectii.MinimumSize = new System.Drawing.Size(20, 20);
     this.navigatorLectii.Name = "navigatorLectii";
     this.navigatorLectii.Size = new System.Drawing.Size(711, 464);
     this.navigatorLectii.TabIndex = 0;
     this.navigatorLectii.Url = new System.Uri("", System.UriKind.Relative);
     //
     // tabPageProbleme
     //
     this.tabPageProbleme.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageProbleme.Controls.Add(this.splitContainer1);
     this.tabPageProbleme.Location = new System.Drawing.Point(4, 22);
     this.tabPageProbleme.Name = "tabPageProbleme";
     this.tabPageProbleme.Size = new System.Drawing.Size(943, 483);
     this.tabPageProbleme.TabIndex = 1;
     this.tabPageProbleme.Text = "Probleme";
     this.tabPageProbleme.UseVisualStyleBackColor = true;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.tabControlSubProbleme);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.splitContainer4);
     this.splitContainer1.Size = new System.Drawing.Size(943, 483);
     this.splitContainer1.SplitterDistance = 259;
     this.splitContainer1.TabIndex = 3;
     //
     // tabControlSubProbleme
     //
     this.tabControlSubProbleme.Controls.Add(this.tabPageListaProbleme);
     this.tabControlSubProbleme.Controls.Add(this.tabPageCuvinteCheie);
     this.tabControlSubProbleme.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlSubProbleme.Location = new System.Drawing.Point(0, 0);
     this.tabControlSubProbleme.Margin = new System.Windows.Forms.Padding(0);
     this.tabControlSubProbleme.Name = "tabControlSubProbleme";
     this.tabControlSubProbleme.SelectedIndex = 0;
     this.tabControlSubProbleme.Size = new System.Drawing.Size(259, 483);
     this.tabControlSubProbleme.TabIndex = 2;
     //
     // tabPageListaProbleme
     //
     this.tabPageListaProbleme.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageListaProbleme.Controls.Add(this.listaProbleme);
     this.tabPageListaProbleme.Location = new System.Drawing.Point(4, 22);
     this.tabPageListaProbleme.Name = "tabPageListaProbleme";
     this.tabPageListaProbleme.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageListaProbleme.Size = new System.Drawing.Size(251, 457);
     this.tabPageListaProbleme.TabIndex = 1;
     this.tabPageListaProbleme.Text = "Probleme";
     //
     // listaProbleme
     //
     this.listaProbleme.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.listaProbleme.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colHeaderTitluProblema});
     this.listaProbleme.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listaProbleme.GridLines = true;
     listViewGroup1.Header = "(General)";
     listViewGroup1.Name = "groupGeneral";
     this.listaProbleme.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
     listViewGroup1});
     this.listaProbleme.Location = new System.Drawing.Point(3, 3);
     this.listaProbleme.Name = "listaProbleme";
     this.listaProbleme.Size = new System.Drawing.Size(245, 451);
     this.listaProbleme.TabIndex = 2;
     this.listaProbleme.UseCompatibleStateImageBehavior = false;
     this.listaProbleme.View = System.Windows.Forms.View.Details;
     this.listaProbleme.SelectedIndexChanged += new System.EventHandler(this.listaProbleme_SelectedIndexChanged);
     //
     // colHeaderTitluProblema
     //
     this.colHeaderTitluProblema.Text = "Titlu problema";
     this.colHeaderTitluProblema.Width = 225;
     //
     // tabPageCuvinteCheie
     //
     this.tabPageCuvinteCheie.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageCuvinteCheie.Controls.Add(this.splitContainerCuvinteCheie);
     this.tabPageCuvinteCheie.Location = new System.Drawing.Point(4, 22);
     this.tabPageCuvinteCheie.Name = "tabPageCuvinteCheie";
     this.tabPageCuvinteCheie.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageCuvinteCheie.Size = new System.Drawing.Size(251, 457);
     this.tabPageCuvinteCheie.TabIndex = 0;
     this.tabPageCuvinteCheie.Text = "Cuvinte Cheie";
     //
     // splitContainerCuvinteCheie
     //
     this.splitContainerCuvinteCheie.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerCuvinteCheie.Location = new System.Drawing.Point(3, 3);
     this.splitContainerCuvinteCheie.Name = "splitContainerCuvinteCheie";
     this.splitContainerCuvinteCheie.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainerCuvinteCheie.Panel1
     //
     this.splitContainerCuvinteCheie.Panel1.Controls.Add(this.listaCuvinteCheie);
     //
     // splitContainerCuvinteCheie.Panel2
     //
     this.splitContainerCuvinteCheie.Panel2.Controls.Add(this.gBoxRezCautareCuvinte);
     this.splitContainerCuvinteCheie.Panel2Collapsed = true;
     this.splitContainerCuvinteCheie.Size = new System.Drawing.Size(245, 451);
     this.splitContainerCuvinteCheie.SplitterDistance = 220;
     this.splitContainerCuvinteCheie.SplitterWidth = 5;
     this.splitContainerCuvinteCheie.TabIndex = 0;
     //
     // listaCuvinteCheie
     //
     this.listaCuvinteCheie.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.listaCuvinteCheie.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listaCuvinteCheie.Font = new System.Drawing.Font("Tahoma", 8.6F);
     this.listaCuvinteCheie.Location = new System.Drawing.Point(0, 0);
     this.listaCuvinteCheie.Name = "listaCuvinteCheie";
     this.listaCuvinteCheie.Size = new System.Drawing.Size(245, 451);
     this.listaCuvinteCheie.TabIndex = 2;
     this.listaCuvinteCheie.ThemeName = "ControlDefault";
     this.listaCuvinteCheie.Selected += new System.EventHandler(this.listaCuvinteCheie_Selected);
     //
     // gBoxRezCautareCuvinte
     //
     this.gBoxRezCautareCuvinte.Controls.Add(this.listaRezultateCautareProbleme);
     this.gBoxRezCautareCuvinte.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gBoxRezCautareCuvinte.Location = new System.Drawing.Point(0, 0);
     this.gBoxRezCautareCuvinte.Name = "gBoxRezCautareCuvinte";
     this.gBoxRezCautareCuvinte.Size = new System.Drawing.Size(150, 46);
     this.gBoxRezCautareCuvinte.TabIndex = 0;
     this.gBoxRezCautareCuvinte.TabStop = false;
     this.gBoxRezCautareCuvinte.Text = "Rezultate căutare:";
     //
     // listaRezultateCautareProbleme
     //
     this.listaRezultateCautareProbleme.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.listaRezultateCautareProbleme.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader2});
     this.listaRezultateCautareProbleme.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listaRezultateCautareProbleme.GridLines = true;
     listViewGroup2.Header = "(General)";
     listViewGroup2.Name = "groupGeneral";
     this.listaRezultateCautareProbleme.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
     listViewGroup2});
     this.listaRezultateCautareProbleme.Location = new System.Drawing.Point(3, 16);
     this.listaRezultateCautareProbleme.Name = "listaRezultateCautareProbleme";
     this.listaRezultateCautareProbleme.ShowGroups = false;
     this.listaRezultateCautareProbleme.Size = new System.Drawing.Size(144, 27);
     this.listaRezultateCautareProbleme.TabIndex = 3;
     this.listaRezultateCautareProbleme.UseCompatibleStateImageBehavior = false;
     this.listaRezultateCautareProbleme.View = System.Windows.Forms.View.Details;
     this.listaRezultateCautareProbleme.SelectedIndexChanged += new System.EventHandler(this.listaRezultateCautareProbleme_SelectedIndexChanged);
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Titlu problema";
     this.columnHeader2.Width = 225;
     //
     // splitContainer4
     //
     this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer4.Location = new System.Drawing.Point(0, 0);
     this.splitContainer4.Name = "splitContainer4";
     this.splitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer4.Panel1
     //
     this.splitContainer4.Panel1.Controls.Add(this.gBoxCerinta);
     //
     // splitContainer4.Panel2
     //
     this.splitContainer4.Panel2.Controls.Add(this.gBoxSursa);
     this.splitContainer4.Size = new System.Drawing.Size(680, 483);
     this.splitContainer4.SplitterDistance = 71;
     this.splitContainer4.TabIndex = 3;
     //
     // gBoxCerinta
     //
     this.gBoxCerinta.Controls.Add(this.txtCerintaProblema);
     this.gBoxCerinta.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gBoxCerinta.Location = new System.Drawing.Point(0, 0);
     this.gBoxCerinta.Name = "gBoxCerinta";
     this.gBoxCerinta.Size = new System.Drawing.Size(680, 71);
     this.gBoxCerinta.TabIndex = 4;
     this.gBoxCerinta.TabStop = false;
     this.gBoxCerinta.Text = "Cerinţa";
     //
     // txtCerintaProblema
     //
     this.txtCerintaProblema.BackColor = System.Drawing.Color.White;
     this.txtCerintaProblema.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtCerintaProblema.Location = new System.Drawing.Point(3, 16);
     this.txtCerintaProblema.Name = "txtCerintaProblema";
     this.txtCerintaProblema.ReadOnly = true;
     this.txtCerintaProblema.Size = new System.Drawing.Size(674, 52);
     this.txtCerintaProblema.TabIndex = 0;
     this.txtCerintaProblema.Text = "(cerinţă problemă)";
     //
     // gBoxSursa
     //
     this.gBoxSursa.Controls.Add(this.txtSursaProblema);
     this.gBoxSursa.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gBoxSursa.Location = new System.Drawing.Point(0, 0);
     this.gBoxSursa.Name = "gBoxSursa";
     this.gBoxSursa.Size = new System.Drawing.Size(680, 408);
     this.gBoxSursa.TabIndex = 2;
     this.gBoxSursa.TabStop = false;
     this.gBoxSursa.Text = "Codul sursă:";
     //
     // txtSursaProblema
     //
     this.txtSursaProblema.AutoSize = true;
     this.txtSursaProblema.BackColor = System.Drawing.Color.White;
     this.txtSursaProblema.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtSursaProblema.Location = new System.Drawing.Point(3, 16);
     this.txtSursaProblema.Name = "txtSursaProblema";
     this.txtSursaProblema.Size = new System.Drawing.Size(674, 389);
     this.txtSursaProblema.TabIndex = 0;
     //
     // tabPageTeste
     //
     this.tabPageTeste.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageTeste.Controls.Add(this.splitContainer6);
     this.tabPageTeste.Location = new System.Drawing.Point(4, 22);
     this.tabPageTeste.Name = "tabPageTeste";
     this.tabPageTeste.Size = new System.Drawing.Size(943, 483);
     this.tabPageTeste.TabIndex = 2;
     this.tabPageTeste.Text = "Teste";
     this.tabPageTeste.UseVisualStyleBackColor = true;
     //
     // splitContainer6
     //
     this.splitContainer6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer6.Location = new System.Drawing.Point(0, 0);
     this.splitContainer6.Name = "splitContainer6";
     //
     // splitContainer6.Panel1
     //
     this.splitContainer6.Panel1.Controls.Add(this.gBoxListaTeste);
     //
     // splitContainer6.Panel2
     //
     this.splitContainer6.Panel2.Controls.Add(this.tabControlSubTeste);
     this.splitContainer6.Size = new System.Drawing.Size(943, 483);
     this.splitContainer6.SplitterDistance = 212;
     this.splitContainer6.TabIndex = 3;
     //
     // gBoxListaTeste
     //
     this.gBoxListaTeste.Controls.Add(this.listaTeste);
     this.gBoxListaTeste.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gBoxListaTeste.Location = new System.Drawing.Point(0, 0);
     this.gBoxListaTeste.Name = "gBoxListaTeste";
     this.gBoxListaTeste.Size = new System.Drawing.Size(212, 483);
     this.gBoxListaTeste.TabIndex = 2;
     this.gBoxListaTeste.TabStop = false;
     this.gBoxListaTeste.Text = "Listă Teste:";
     //
     // listaTeste
     //
     this.listaTeste.BackColor = System.Drawing.Color.White;
     this.listaTeste.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listaTeste.Font = new System.Drawing.Font("Tahoma", 8.6F);
     this.listaTeste.Location = new System.Drawing.Point(3, 16);
     this.listaTeste.Name = "listaTeste";
     this.listaTeste.Size = new System.Drawing.Size(206, 464);
     this.listaTeste.TabIndex = 0;
     this.listaTeste.Selected += new System.EventHandler(this.listaTeste_Selected);
     //
     // tabControlSubTeste
     //
     this.tabControlSubTeste.Controls.Add(this.tabPageSubiectTest);
     this.tabControlSubTeste.Controls.Add(this.tabPageCorectareTest);
     this.tabControlSubTeste.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlSubTeste.Location = new System.Drawing.Point(0, 0);
     this.tabControlSubTeste.Name = "tabControlSubTeste";
     this.tabControlSubTeste.SelectedIndex = 0;
     this.tabControlSubTeste.Size = new System.Drawing.Size(727, 483);
     this.tabControlSubTeste.TabIndex = 4;
     //
     // tabPageSubiectTest
     //
     this.tabPageSubiectTest.AutoScroll = true;
     this.tabPageSubiectTest.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageSubiectTest.Controls.Add(this.btnIntrebareUrmatoare);
     this.tabPageSubiectTest.Controls.Add(this.btnIntrebareAnterioara);
     this.tabPageSubiectTest.Controls.Add(this.lblTitluTest);
     this.tabPageSubiectTest.Controls.Add(this.panelTestFinish);
     this.tabPageSubiectTest.Controls.Add(this.panelWelcomeTest);
     this.tabPageSubiectTest.Location = new System.Drawing.Point(4, 22);
     this.tabPageSubiectTest.Name = "tabPageSubiectTest";
     this.tabPageSubiectTest.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageSubiectTest.Size = new System.Drawing.Size(719, 457);
     this.tabPageSubiectTest.TabIndex = 0;
     this.tabPageSubiectTest.Text = "Subiect";
     //
     // btnIntrebareUrmatoare
     //
     this.btnIntrebareUrmatoare.Location = new System.Drawing.Point(559, 218);
     this.btnIntrebareUrmatoare.Name = "btnIntrebareUrmatoare";
     this.btnIntrebareUrmatoare.Size = new System.Drawing.Size(138, 23);
     this.btnIntrebareUrmatoare.TabIndex = 1;
     this.btnIntrebareUrmatoare.Text = "Următoarea întrebare >";
     this.btnIntrebareUrmatoare.Visible = false;
     this.btnIntrebareUrmatoare.Click += new System.EventHandler(this.btnIntrebareUrmatoare_Click);
     //
     // btnIntrebareAnterioara
     //
     this.btnIntrebareAnterioara.Location = new System.Drawing.Point(30, 218);
     this.btnIntrebareAnterioara.Name = "btnIntrebareAnterioara";
     this.btnIntrebareAnterioara.Size = new System.Drawing.Size(138, 23);
     this.btnIntrebareAnterioara.TabIndex = 1;
     this.btnIntrebareAnterioara.Text = "< Întrebarea anterioară";
     this.btnIntrebareAnterioara.Visible = false;
     this.btnIntrebareAnterioara.Click += new System.EventHandler(this.btnIntrebareInainte_Click);
     //
     // lblTitluTest
     //
     this.lblTitluTest.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblTitluTest.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitluTest.Location = new System.Drawing.Point(3, 3);
     this.lblTitluTest.Name = "lblTitluTest";
     this.lblTitluTest.Size = new System.Drawing.Size(713, 30);
     this.lblTitluTest.TabIndex = 0;
     this.lblTitluTest.Text = "-Titlu-";
     this.lblTitluTest.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.lblTitluTest.Visible = false;
     //
     // panelTestFinish
     //
     this.panelTestFinish.Controls.Add(this.radLabel5);
     this.panelTestFinish.Controls.Add(this.lblTestTerminat);
     this.panelTestFinish.Location = new System.Drawing.Point(68, 68);
     this.panelTestFinish.Name = "panelTestFinish";
     this.panelTestFinish.Size = new System.Drawing.Size(567, 305);
     this.panelTestFinish.TabIndex = 7;
     this.panelTestFinish.Visible = false;
     //
     // radLabel5
     //
     this.radLabel5.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.radLabel5.Location = new System.Drawing.Point(74, 164);
     this.radLabel5.Name = "radLabel5";
     this.radLabel5.Size = new System.Drawing.Size(392, 20);
     this.radLabel5.TabIndex = 6;
     this.radLabel5.Text = "<html>Dacă doreşti să vezi ce ai greşit intră la tabul <b>\"Corectare\"</b>";
     //
     // lblTestTerminat
     //
     this.lblTestTerminat.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.lblTestTerminat.Location = new System.Drawing.Point(74, 100);
     this.lblTestTerminat.Name = "lblTestTerminat";
     this.lblTestTerminat.Size = new System.Drawing.Size(405, 44);
     this.lblTestTerminat.TabIndex = 5;
     this.lblTestTerminat.Text = "<html>Ai terminat testul cu un punctaj de: {0} din {1} (total:{3}%)<br>          " +
         "                            Felicitări!<br><br>";
     this.lblTestTerminat.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panelWelcomeTest
     //
     this.panelWelcomeTest.Controls.Add(this.label8);
     this.panelWelcomeTest.Controls.Add(this.radLabel3);
     this.panelWelcomeTest.Controls.Add(this.radLabel2);
     this.panelWelcomeTest.Controls.Add(this.radLabel1);
     this.panelWelcomeTest.Location = new System.Drawing.Point(68, 76);
     this.panelWelcomeTest.Name = "panelWelcomeTest";
     this.panelWelcomeTest.Size = new System.Drawing.Size(567, 305);
     this.panelWelcomeTest.TabIndex = 2;
     this.panelWelcomeTest.Visible = false;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Tahoma", 13F);
     this.label8.Location = new System.Drawing.Point(231, 247);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(57, 22);
     this.label8.TabIndex = 6;
     this.label8.Text = "Baftă!";
     //
     // radLabel3
     //
     this.radLabel3.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.radLabel3.Location = new System.Drawing.Point(20, 80);
     this.radLabel3.Name = "radLabel3";
     this.radLabel3.Size = new System.Drawing.Size(524, 20);
     this.radLabel3.TabIndex = 5;
     this.radLabel3.Text = "<html>Pentru a începe testul apasă butonul <b>\"Începe testul\"</b> din meniul de d" +
         "easupra";
     this.radLabel3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // radLabel2
     //
     this.radLabel2.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.radLabel2.Location = new System.Drawing.Point(60, 130);
     this.radLabel2.Name = "radLabel2";
     this.radLabel2.Size = new System.Drawing.Size(440, 20);
     this.radLabel2.TabIndex = 4;
     this.radLabel2.Text = "<html>Dacă vrei să reîncepi testul foloseşte butonul <b>\"Reîncepe testul\"</b>.";
     this.radLabel2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // radLabel1
     //
     this.radLabel1.AutoSize = false;
     this.radLabel1.Font = new System.Drawing.Font("Tahoma", 11.25F);
     this.radLabel1.Location = new System.Drawing.Point(3, 165);
     this.radLabel1.Name = "radLabel1";
     //
     //
     //
     this.radLabel1.RootElement.StretchHorizontally = true;
     this.radLabel1.RootElement.StretchVertically = true;
     this.radLabel1.Size = new System.Drawing.Size(532, 66);
     this.radLabel1.TabIndex = 3;
     this.radLabel1.Text = "<html>Când ai terminat de completat testul poţi apăsa butonul <b>\"Corectează test" +
         "ul\"</b><br>pentru a vedea rezultatele.";
     this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.radLabel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     //
     // tabPageCorectareTest
     //
     this.tabPageCorectareTest.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageCorectareTest.Controls.Add(this.listaCorectareTest);
     this.tabPageCorectareTest.Location = new System.Drawing.Point(4, 22);
     this.tabPageCorectareTest.Name = "tabPageCorectareTest";
     this.tabPageCorectareTest.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageCorectareTest.Size = new System.Drawing.Size(719, 457);
     this.tabPageCorectareTest.TabIndex = 1;
     this.tabPageCorectareTest.Text = "Corectare";
     //
     // listaCorectareTest
     //
     this.listaCorectareTest.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colHeaderNrCrt,
     this.colHeaderRaspAles,
     this.colHeaderRaspCorect,
     this.colHeaderPunctaj});
     this.listaCorectareTest.Dock = System.Windows.Forms.DockStyle.Left;
     this.listaCorectareTest.GridLines = true;
     listViewGroup3.Header = "lstGrupRaspunsuri";
     listViewGroup3.Name = "Raspunsuri";
     listViewGroup4.Header = "lstGrupTotal";
     listViewGroup4.Name = "Punctaj Total";
     this.listaCorectareTest.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
     listViewGroup3,
     listViewGroup4});
     this.listaCorectareTest.Location = new System.Drawing.Point(3, 3);
     this.listaCorectareTest.MultiSelect = false;
     this.listaCorectareTest.Name = "listaCorectareTest";
     this.listaCorectareTest.ShowGroups = false;
     this.listaCorectareTest.Size = new System.Drawing.Size(608, 451);
     this.listaCorectareTest.Sorting = System.Windows.Forms.SortOrder.Ascending;
     this.listaCorectareTest.TabIndex = 0;
     this.listaCorectareTest.UseCompatibleStateImageBehavior = false;
     this.listaCorectareTest.View = System.Windows.Forms.View.Details;
     //
     // colHeaderNrCrt
     //
     this.colHeaderNrCrt.Text = "Nr. Crt";
     //
     // colHeaderRaspAles
     //
     this.colHeaderRaspAles.Text = "Raspuns utilizator";
     this.colHeaderRaspAles.Width = 220;
     //
     // colHeaderRaspCorect
     //
     this.colHeaderRaspCorect.Text = "Raspuns Corect";
     this.colHeaderRaspCorect.Width = 220;
     //
     // colHeaderPunctaj
     //
     this.colHeaderPunctaj.Text = "Punctaj Acordat";
     this.colHeaderPunctaj.Width = 100;
     //
     // tabPageCompilator
     //
     this.tabPageCompilator.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageCompilator.Controls.Add(this.splitContainer2);
     this.tabPageCompilator.Location = new System.Drawing.Point(4, 22);
     this.tabPageCompilator.Name = "tabPageCompilator";
     this.tabPageCompilator.Size = new System.Drawing.Size(943, 483);
     this.tabPageCompilator.TabIndex = 3;
     this.tabPageCompilator.Text = "Compilator";
     this.tabPageCompilator.UseVisualStyleBackColor = true;
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(0, 0);
     this.splitContainer2.Name = "splitContainer2";
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.panel1);
     this.splitContainer2.Panel1.Controls.Add(this.txtCodSursa);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.tabControlSubCompilator);
     this.splitContainer2.Panel2.Padding = new System.Windows.Forms.Padding(5);
     this.splitContainer2.Size = new System.Drawing.Size(943, 483);
     this.splitContainer2.SplitterDistance = 545;
     this.splitContainer2.TabIndex = 0;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.lblLinkProgramNou);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.lblCodSursa);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(545, 36);
     this.panel1.TabIndex = 2;
     //
     // lblLinkProgramNou
     //
     this.lblLinkProgramNou.AutoSize = true;
     this.lblLinkProgramNou.Location = new System.Drawing.Point(5, 4);
     this.lblLinkProgramNou.Name = "lblLinkProgramNou";
     this.lblLinkProgramNou.Size = new System.Drawing.Size(67, 13);
     this.lblLinkProgramNou.TabIndex = 3;
     this.lblLinkProgramNou.TabStop = true;
     this.lblLinkProgramNou.Text = "Program nou";
     this.lblLinkProgramNou.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblLinkProgramNou_LinkClicked);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Red;
     this.label1.Location = new System.Drawing.Point(317, 10);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(225, 13);
     this.label1.TabIndex = 2;
     this.label1.Text = "(Folosiţi *.in -> intrare; *.out -> ieşire)";
     //
     // lblCodSursa
     //
     this.lblCodSursa.Location = new System.Drawing.Point(5, 19);
     this.lblCodSursa.Margin = new System.Windows.Forms.Padding(0);
     this.lblCodSursa.Name = "lblCodSursa";
     this.lblCodSursa.Size = new System.Drawing.Size(69, 15);
     this.lblCodSursa.TabIndex = 0;
     this.lblCodSursa.Text = "Cod sursă:";
     //
     // txtCodSursa
     //
     this.txtCodSursa.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCodSursa.AutoSize = true;
     this.txtCodSursa.Location = new System.Drawing.Point(0, 42);
     this.txtCodSursa.Name = "txtCodSursa";
     this.txtCodSursa.Size = new System.Drawing.Size(542, 438);
     this.txtCodSursa.TabIndex = 1;
     //
     // tabControlSubCompilator
     //
     this.tabControlSubCompilator.Controls.Add(this.tabPageRezultatCompilare);
     this.tabControlSubCompilator.Controls.Add(this.tabPageTestareProgram);
     this.tabControlSubCompilator.Controls.Add(this.tabPageTestareAutomata);
     this.tabControlSubCompilator.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlSubCompilator.Location = new System.Drawing.Point(5, 5);
     this.tabControlSubCompilator.Name = "tabControlSubCompilator";
     this.tabControlSubCompilator.SelectedIndex = 0;
     this.tabControlSubCompilator.Size = new System.Drawing.Size(384, 473);
     this.tabControlSubCompilator.TabIndex = 0;
     //
     // tabPageRezultatCompilare
     //
     this.tabPageRezultatCompilare.Controls.Add(this.txtRezultatCompilare);
     this.tabPageRezultatCompilare.Location = new System.Drawing.Point(4, 22);
     this.tabPageRezultatCompilare.Name = "tabPageRezultatCompilare";
     this.tabPageRezultatCompilare.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageRezultatCompilare.Size = new System.Drawing.Size(376, 447);
     this.tabPageRezultatCompilare.TabIndex = 0;
     this.tabPageRezultatCompilare.Text = "Rezultat compilator";
     this.tabPageRezultatCompilare.UseVisualStyleBackColor = true;
     //
     // txtRezultatCompilare
     //
     this.txtRezultatCompilare.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.txtRezultatCompilare.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtRezultatCompilare.Location = new System.Drawing.Point(3, 3);
     this.txtRezultatCompilare.Multiline = true;
     this.txtRezultatCompilare.Name = "txtRezultatCompilare";
     this.txtRezultatCompilare.ReadOnly = true;
     this.txtRezultatCompilare.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtRezultatCompilare.Size = new System.Drawing.Size(370, 441);
     this.txtRezultatCompilare.TabIndex = 0;
     this.txtRezultatCompilare.Click += new System.EventHandler(this.txtRezultatCompilare_Click);
     //
     // tabPageTestareProgram
     //
     this.tabPageTestareProgram.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(214)))), ((int)(((byte)(247)))));
     this.tabPageTestareProgram.Controls.Add(this.splitContainer5);
     this.tabPageTestareProgram.Location = new System.Drawing.Point(4, 22);
     this.tabPageTestareProgram.Name = "tabPageTestareProgram";
     this.tabPageTestareProgram.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageTestareProgram.Size = new System.Drawing.Size(376, 447);
     this.tabPageTestareProgram.TabIndex = 1;
     this.tabPageTestareProgram.Text = "Testare manuală";
     this.tabPageTestareProgram.UseVisualStyleBackColor = true;
     //
     // splitContainer5
     //
     this.splitContainer5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer5.Location = new System.Drawing.Point(3, 3);
     this.splitContainer5.Name = "splitContainer5";
     this.splitContainer5.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer5.Panel1
     //
     this.splitContainer5.Panel1.Controls.Add(this.groupBox1);
     //
     // splitContainer5.Panel2
     //
     this.splitContainer5.Panel2.Controls.Add(this.groupBox2);
     this.splitContainer5.Size = new System.Drawing.Size(370, 441);
     this.splitContainer5.SplitterDistance = 192;
     this.splitContainer5.TabIndex = 2;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.tabControlDateIntrare);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(370, 192);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Date de intrare:";
     //
     // tabControlDateIntrare
     //
     this.tabControlDateIntrare.Controls.Add(this.tabcin);
     this.tabControlDateIntrare.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlDateIntrare.Location = new System.Drawing.Point(3, 16);
     this.tabControlDateIntrare.Name = "tabControlDateIntrare";
     this.tabControlDateIntrare.SelectedIndex = 0;
     this.tabControlDateIntrare.Size = new System.Drawing.Size(364, 173);
     this.tabControlDateIntrare.TabIndex = 1;
     //
     // tabcin
     //
     this.tabcin.Controls.Add(this.txtDateIntrareProgram);
     this.tabcin.Location = new System.Drawing.Point(4, 22);
     this.tabcin.Name = "tabcin";
     this.tabcin.Padding = new System.Windows.Forms.Padding(3);
     this.tabcin.Size = new System.Drawing.Size(356, 147);
     this.tabcin.TabIndex = 1;
     this.tabcin.Text = "Console In";
     this.tabcin.UseVisualStyleBackColor = true;
     //
     // txtDateIntrareProgram
     //
     this.txtDateIntrareProgram.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtDateIntrareProgram.Location = new System.Drawing.Point(3, 3);
     this.txtDateIntrareProgram.Multiline = true;
     this.txtDateIntrareProgram.Name = "txtDateIntrareProgram";
     this.txtDateIntrareProgram.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtDateIntrareProgram.Size = new System.Drawing.Size(350, 141);
     this.txtDateIntrareProgram.TabIndex = 2;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.tabControlDateIesire);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(0, 0);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(370, 245);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Rezultat:";
     //
     // tabControlDateIesire
     //
     this.tabControlDateIesire.Controls.Add(this.tabcout);
     this.tabControlDateIesire.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlDateIesire.Location = new System.Drawing.Point(3, 16);
     this.tabControlDateIesire.Name = "tabControlDateIesire";
     this.tabControlDateIesire.SelectedIndex = 0;
     this.tabControlDateIesire.Size = new System.Drawing.Size(364, 226);
     this.tabControlDateIesire.TabIndex = 0;
     //
     // tabcout
     //
     this.tabcout.Controls.Add(this.txtRezultatProgram);
     this.tabcout.Location = new System.Drawing.Point(4, 22);
     this.tabcout.Name = "tabcout";
     this.tabcout.Padding = new System.Windows.Forms.Padding(3);
     this.tabcout.Size = new System.Drawing.Size(356, 200);
     this.tabcout.TabIndex = 0;
     this.tabcout.Text = "Console Out";
     this.tabcout.UseVisualStyleBackColor = true;
     //
     // txtRezultatProgram
     //
     this.txtRezultatProgram.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.txtRezultatProgram.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtRezultatProgram.Location = new System.Drawing.Point(3, 3);
     this.txtRezultatProgram.Multiline = true;
     this.txtRezultatProgram.Name = "txtRezultatProgram";
     this.txtRezultatProgram.ReadOnly = true;
     this.txtRezultatProgram.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtRezultatProgram.Size = new System.Drawing.Size(350, 194);
     this.txtRezultatProgram.TabIndex = 1;
     //
     // tabPageTestareAutomata
     //
     this.tabPageTestareAutomata.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabPageTestareAutomata.Controls.Add(this.btnAdaugaTestare);
     this.tabPageTestareAutomata.Controls.Add(this.btnVerifica);
     this.tabPageTestareAutomata.Controls.Add(this.gridVerificare);
     this.tabPageTestareAutomata.Controls.Add(this.lblNoTest);
     this.tabPageTestareAutomata.Location = new System.Drawing.Point(4, 22);
     this.tabPageTestareAutomata.Name = "tabPageTestareAutomata";
     this.tabPageTestareAutomata.Padding = new System.Windows.Forms.Padding(3);
     this.tabPageTestareAutomata.Size = new System.Drawing.Size(376, 447);
     this.tabPageTestareAutomata.TabIndex = 2;
     this.tabPageTestareAutomata.Text = "Testare predefinită";
     this.tabPageTestareAutomata.UseVisualStyleBackColor = true;
     //
     // btnAdaugaTestare
     //
     this.btnAdaugaTestare.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.btnAdaugaTestare.Location = new System.Drawing.Point(195, 412);
     this.btnAdaugaTestare.Name = "btnAdaugaTestare";
     this.btnAdaugaTestare.Size = new System.Drawing.Size(175, 23);
     this.btnAdaugaTestare.TabIndex = 2;
     this.btnAdaugaTestare.Text = "Adaugă un test nou";
     this.btnAdaugaTestare.Click += new System.EventHandler(this.btnAdaugaTestare_Click);
     //
     // btnVerifica
     //
     this.btnVerifica.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.btnVerifica.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radMenuSelectate,
     this.radMenuToate});
     this.btnVerifica.Location = new System.Drawing.Point(6, 412);
     this.btnVerifica.Name = "btnVerifica";
     this.btnVerifica.Size = new System.Drawing.Size(176, 23);
     this.btnVerifica.TabIndex = 1;
     this.btnVerifica.Text = "Verifică testele";
     //
     // radMenuSelectate
     //
     this.radMenuSelectate.Name = "radMenuSelectate";
     this.radMenuSelectate.Text = "Testele bifate";
     this.radMenuSelectate.Click += new System.EventHandler(this.radMenuSelectate_Click);
     //
     // radMenuToate
     //
     this.radMenuToate.Name = "radMenuToate";
     this.radMenuToate.Text = "Toate testele";
     this.radMenuToate.Click += new System.EventHandler(this.radMenuToate_Click);
     //
     // gridVerificare
     //
     this.gridVerificare.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridVerificare.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.gridVerificare.Cursor = System.Windows.Forms.Cursors.Default;
     this.gridVerificare.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.gridVerificare.ForeColor = System.Drawing.SystemColors.ControlText;
     this.gridVerificare.GroupExpandAnimationType = Telerik.WinControls.UI.GridExpandAnimationType.Slide;
     this.gridVerificare.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.gridVerificare.Location = new System.Drawing.Point(3, 3);
     //
     //
     //
     this.gridVerificare.MasterGridViewTemplate.AddNewRowPosition = Telerik.WinControls.UI.PinnedRowPosition.Bottom;
     this.gridVerificare.MasterGridViewTemplate.AllowAddNewRow = false;
     this.gridVerificare.MasterGridViewTemplate.AllowDeleteRow = false;
     customGridViewTextBoxColumn_11.CustomStruct = null;
     customGridViewTextBoxColumn_11.DataType = typeof(InfoCenter.Classes.UnitateTestare);
     customGridViewTextBoxColumn_11.FieldAlias = "column1";
     customGridViewTextBoxColumn_11.HeaderText = "Nume test";
     customGridViewTextBoxColumn_11.ReadOnly = true;
     customGridViewTextBoxColumn_11.UniqueName = "colNume";
     customGridViewTextBoxColumn_11.Width = 232;
     gridViewCheckBoxColumn1.DataType = typeof(bool);
     gridViewCheckBoxColumn1.FieldAlias = "column2";
     gridViewCheckBoxColumn1.HeaderText = " ";
     gridViewCheckBoxColumn1.UniqueName = "colVerifica";
     gridViewCheckBoxColumn1.Width = 27;
     customGridViewCommandColumn1.DataType = typeof(System.Drawing.Image);
     customGridViewCommandColumn1.DefaultText = " ";
     customGridViewCommandColumn1.FieldAlias = "column3";
     customGridViewCommandColumn1.HeaderText = "Verifică";
     customGridViewCommandColumn1.UniqueName = "colVerific";
     customGridViewCommandColumn1.UseDefaultText = true;
     customGridViewCommandColumn1.Width = 58;
     gridViewImageColumn1.DataType = typeof(System.Drawing.Image);
     gridViewImageColumn1.FieldAlias = "column1";
     gridViewImageColumn1.HeaderText = "Rezultat";
     gridViewImageColumn1.ImageLayout = System.Windows.Forms.ImageLayout.Center;
     gridViewImageColumn1.UniqueName = "colRezultat";
     gridViewImageColumn1.Width = 63;
     this.gridVerificare.MasterGridViewTemplate.Columns.Add(customGridViewTextBoxColumn_11);
     this.gridVerificare.MasterGridViewTemplate.Columns.Add(gridViewCheckBoxColumn1);
     this.gridVerificare.MasterGridViewTemplate.Columns.Add(customGridViewCommandColumn1);
     this.gridVerificare.MasterGridViewTemplate.Columns.Add(gridViewImageColumn1);
     this.gridVerificare.MasterGridViewTemplate.EnableSorting = false;
     this.gridVerificare.MasterGridViewTemplate.ShowRowHeaderColumn = false;
     this.gridVerificare.Name = "gridVerificare";
     this.gridVerificare.NewRowEnterKeyMode = Telerik.WinControls.UI.RadGridViewNewRowEnterKeyMode.None;
     this.gridVerificare.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.gridVerificare.ShowGroupPanel = false;
     this.gridVerificare.Size = new System.Drawing.Size(528, 403);
     this.gridVerificare.TabIndex = 0;
     this.gridVerificare.Text = "radGridViewPreview";
     this.gridVerificare.Visible = false;
     this.gridVerificare.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.gridVerificare_CellDoubleClick);
     this.gridVerificare.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.gridVerificare_CellFormatting);
     this.gridVerificare.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.gridVerificare_CommandCellClick);
     //
     // lblNoTest
     //
     this.lblNoTest.BackColor = System.Drawing.Color.Transparent;
     this.lblNoTest.Location = new System.Drawing.Point(93, 130);
     this.lblNoTest.Name = "lblNoTest";
     this.lblNoTest.Size = new System.Drawing.Size(215, 38);
     this.lblNoTest.TabIndex = 0;
     this.lblNoTest.Text = "Nu există nici un test asociat problemei selectate sau creat de utilizator";
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Titlu";
     this.columnHeader1.Width = 178;
     //
     // saveFileDialog
     //
     this.saveFileDialog.Title = "Salvează codul sursă";
     //
     // ribbonBar
     //
     this.ribbonBar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     radRibbonBarCommandTab1.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radRibbonBarChunk2,
     this.radRibbonBarChunk3});
     radRibbonBarCommandTab1.Tab = this.ribbonTabStart;
     radRibbonBarCommandTab2.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radChunkInfLectie});
     radRibbonBarCommandTab2.Tab = this.ribbonTabLectii;
     radRibbonBarCommandTab3.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radChunkInfoProblema,
     this.radChunkCautareProbleme,
     this.radChunkActiuniProblema});
     radRibbonBarCommandTab3.Tab = this.ribbonTabProbleme;
     radRibbonBarCommandTab4.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radChunkInformatiiTest,
     this.radChunkActiuniTest});
     radRibbonBarCommandTab4.Tab = this.ribbonTabTeste;
     radRibbonBarCommandTab5.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.radChunkActiuniCompilator,
     this.radRibbonBarChunk1});
     radRibbonBarCommandTab5.Tab = this.ribbonTabCompilator;
     this.ribbonBar.CommandTabs.AddRange(new Telerik.WinControls.UI.RadRibbonBarCommandTab[] {
     radRibbonBarCommandTab1,
     radRibbonBarCommandTab2,
     radRibbonBarCommandTab3,
     radRibbonBarCommandTab4,
     radRibbonBarCommandTab5});
     this.ribbonBar.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonBar.EnableKeyMap = true;
     //
     //
     //
     //
     //
     //
     this.ribbonBar.ExitButton.ButtonElement.Class = "RadMenuButtonElement";
     this.ribbonBar.ExitButton.ButtonElement.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.ribbonBar.ExitButton.Image = global::InfoCenter.Properties.Resources.imgClose32;
     this.ribbonBar.ExitButton.Text = "Închide Info Center";
     this.ribbonBar.ExitButton.Click += new System.EventHandler(this.radMenuIesire_Click);
     this.ribbonBar.Location = new System.Drawing.Point(0, 0);
     this.ribbonBar.MinimumSize = new System.Drawing.Size(0, 141);
     this.ribbonBar.Name = "ribbonBar";
     //
     //
     //
     //
     //
     //
     this.ribbonBar.OptionsButton.ButtonElement.Class = "RadMenuButtonElement";
     this.ribbonBar.OptionsButton.ButtonElement.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.ribbonBar.OptionsButton.Image = global::InfoCenter.Properties.Resources.imgOptiuni;
     this.ribbonBar.OptionsButton.Text = "Opţiuni";
     this.ribbonBar.OptionsButton.Click += new System.EventHandler(this.radMenuOptiuni_Click);
     this.ribbonBar.QuickAccessToolbarBelowRibbon = false;
     //
     //
     //
     this.ribbonBar.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.ribbonBar.RootElement.MinSize = new System.Drawing.Size(0, 141);
     this.ribbonBar.RootElement.ToolTipText = null;
     this.ribbonBar.Size = new System.Drawing.Size(950, 141);
     this.ribbonBar.StartButtonImage = global::InfoCenter.Properties.Resources.logoRibbon;
     this.ribbonBar.StartMenuItems.AddRange(new Telerik.WinControls.RadItem[] {
     this.radMenuReloadInfo,
     this.radMenuUpdateApplication});
     this.ribbonBar.StartMenuWidth = 400;
     this.ribbonBar.TabIndex = 1;
     this.ribbonBar.Text = "Info Center";
     this.ribbonBar.ThemeName = "ControlDefault";
     //
     // radMenuReloadInfo
     //
     this.radMenuReloadInfo.Image = global::InfoCenter.Properties.Resources.imgRefresh32;
     this.radMenuReloadInfo.Name = "radMenuReloadInfo";
     this.radMenuReloadInfo.Text = "Re-încară informaţiile";
     this.radMenuReloadInfo.Click += new System.EventHandler(this.radMenuReloadInfo_Click);
     //
     // radMenuUpdateApplication
     //
     this.radMenuUpdateApplication.Image = global::InfoCenter.Properties.Resources.imgBacup;
     this.radMenuUpdateApplication.Name = "radMenuUpdateApplication";
     this.radMenuUpdateApplication.Text = "Actualizează aplicaţia";
     this.radMenuUpdateApplication.Click += new System.EventHandler(this.radMenuUpdateApplication_Click);
     //
     // statusStrip
     //
     this.statusStrip.AutoSize = true;
     this.statusStrip.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.toolStripStatus,
     this.toolStripProgressBar,
     this.radLabelCopyright,
     this.toolStripConnectedMode,
     this.toolStripDataOra});
     this.statusStrip.LayoutStyle = Telerik.WinControls.UI.RadStatusBarLayoutStyle.Overflow;
     this.statusStrip.Location = new System.Drawing.Point(0, 625);
     this.statusStrip.Name = "statusStrip";
     this.statusStrip.Size = new System.Drawing.Size(950, 25);
     this.statusStrip.SizingGrip = false;
     this.statusStrip.TabIndex = 2;
     this.statusStrip.Text = "radStatusStrip1";
     //
     // toolStripStatus
     //
     this.toolStripStatus.Alignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.toolStripStatus.Margin = new System.Windows.Forms.Padding(1);
     this.toolStripStatus.Name = "toolStripStatus";
     this.statusStrip.SetSpring(this.toolStripStatus, false);
     this.toolStripStatus.Text = "Stare program";
     this.toolStripStatus.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.toolStripStatus.Click += new System.EventHandler(this.toolStripStatus_Click);
     //
     // toolStripProgressBar
     //
     this.toolStripProgressBar.Alignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolStripProgressBar.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.Auto;
     this.toolStripProgressBar.ClipDrawing = true;
     this.toolStripProgressBar.DefaultSize = new System.Drawing.Size(130, 16);
     this.toolStripProgressBar.Margin = new System.Windows.Forms.Padding(1);
     this.toolStripProgressBar.Name = "toolStripProgressBar";
     this.toolStripProgressBar.ShowProgressIndicator = true;
     this.statusStrip.SetSpring(this.toolStripProgressBar, false);
     this.toolStripProgressBar.Text = "0%";
     this.toolStripProgressBar.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolStripProgressBar.Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     //
     // radLabelCopyright
     //
     this.radLabelCopyright.Alignment = System.Drawing.ContentAlignment.MiddleRight;
     this.radLabelCopyright.AutoSize = false;
     this.radLabelCopyright.Bounds = new System.Drawing.Rectangle(0, 0, 380, 19);
     this.radLabelCopyright.Margin = new System.Windows.Forms.Padding(1);
     this.radLabelCopyright.Name = "radLabelCopyright";
     this.statusStrip.SetSpring(this.radLabelCopyright, false);
     this.radLabelCopyright.Text = "                          | Copyright 2008-2009 © Timotei Dolean |";
     this.radLabelCopyright.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.radLabelCopyright.TextImageRelation = System.Windows.Forms.TextImageRelation.TextBeforeImage;
     this.radLabelCopyright.Click += new System.EventHandler(this.toolStripLabelCopyright_Click);
     //
     // toolStripConnectedMode
     //
     this.toolStripConnectedMode.Alignment = System.Drawing.ContentAlignment.TopCenter;
     this.toolStripConnectedMode.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.toolStripConnectedMode.Margin = new System.Windows.Forms.Padding(1);
     this.toolStripConnectedMode.Name = "toolStripConnectedMode";
     this.statusStrip.SetSpring(this.toolStripConnectedMode, false);
     this.toolStripConnectedMode.Text = "Mod neconectat";
     this.toolStripConnectedMode.Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     //
     // toolStripDataOra
     //
     this.toolStripDataOra.Alignment = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripDataOra.Margin = new System.Windows.Forms.Padding(1);
     this.toolStripDataOra.Name = "toolStripDataOra";
     this.statusStrip.SetSpring(this.toolStripDataOra, false);
     this.toolStripDataOra.Text = "Data curentă:";
     this.toolStripDataOra.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnFontItalic2
     //
     this.btnFontItalic2.CanFocus = true;
     this.btnFontItalic2.Class = "ButtonElement";
     this.btnFontItalic2.DisplayStyle = Telerik.WinControls.DisplayStyle.Image;
     this.btnFontItalic2.Image = global::InfoCenter.Properties.Resources.imgItalic16;
     this.btnFontItalic2.IsChecked = false;
     this.btnFontItalic2.Margin = new System.Windows.Forms.Padding(2);
     this.btnFontItalic2.Name = "btnFontItalic2";
     this.btnFontItalic2.Padding = new System.Windows.Forms.Padding(2);
     this.btnFontItalic2.ShowBorder = false;
     this.btnFontItalic2.Text = "radButtonElement4";
     this.btnFontItalic2.ToolTipText = null;
     //
     // btnFontBold2
     //
     this.btnFontBold2.CanFocus = true;
     this.btnFontBold2.Class = "ButtonElement";
     this.btnFontBold2.DisplayStyle = Telerik.WinControls.DisplayStyle.Image;
     this.btnFontBold2.Image = global::InfoCenter.Properties.Resources.imgBold16;
     this.btnFontBold2.IsChecked = false;
     this.btnFontBold2.Margin = new System.Windows.Forms.Padding(2);
     this.btnFontBold2.Name = "btnFontBold2";
     this.btnFontBold2.Padding = new System.Windows.Forms.Padding(2);
     this.btnFontBold2.ShowBorder = false;
     this.btnFontBold2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnFontBold2.ToolTipText = null;
     //
     // radMenuButtonItem1
     //
     //
     //
     //
     this.radMenuButtonItem1.ButtonElement.Class = "RadMenuButtonElement";
     this.radMenuButtonItem1.ButtonElement.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.radMenuButtonItem1.Name = "radMenuButtonItem1";
     this.radMenuButtonItem1.Text = "Re-încarcă informaţiile";
     this.radMenuButtonItem1.Visibility = Telerik.WinControls.ElementVisibility.Hidden;
     ((Telerik.WinControls.UI.RadButtonElement)(this.radMenuButtonItem1.GetChildAt(2))).TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     ((Telerik.WinControls.UI.RadButtonElement)(this.radMenuButtonItem1.GetChildAt(2))).Class = "RadMenuButtonElement";
     //
     // testTimer
     //
     this.testTimer._started = false;
     this.testTimer.Hours = 0;
     this.testTimer.Interval = 1000;
     this.testTimer.Minutes = 0;
     this.testTimer.Seconds = 0;
     this.testTimer.Tick += new System.EventHandler(this.testTimer_Tick);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.ClientSize = new System.Drawing.Size(950, 650);
     this.Controls.Add(this.statusStrip);
     this.Controls.Add(this.ribbonBar);
     this.Controls.Add(this.tabControlMain);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = global::InfoCenter.Properties.Resources.iconInfoCenter;
     this.Name = "MainForm";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Info Center";
     this.SizeChanged += new System.EventHandler(this.MainForm_SizeChanged);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     ((System.ComponentModel.ISupportInitialize)(this.comboCautaProblema)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboCautaCuvantCheie)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboFont2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboFontSize2)).EndInit();
     this.tabControlMain.ResumeLayout(false);
     this.tabPageStart.ResumeLayout(false);
     this.tabPageStart.PerformLayout();
     this.tabPageLectii.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.ResumeLayout(false);
     this.gBoxListaLectii.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cuprinsLectii)).EndInit();
     this.gBoxContinutLectie.ResumeLayout(false);
     this.gBoxContinutLectie.PerformLayout();
     this.tabPageProbleme.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.tabControlSubProbleme.ResumeLayout(false);
     this.tabPageListaProbleme.ResumeLayout(false);
     this.tabPageCuvinteCheie.ResumeLayout(false);
     this.splitContainerCuvinteCheie.Panel1.ResumeLayout(false);
     this.splitContainerCuvinteCheie.Panel2.ResumeLayout(false);
     this.splitContainerCuvinteCheie.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.listaCuvinteCheie)).EndInit();
     this.gBoxRezCautareCuvinte.ResumeLayout(false);
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     this.splitContainer4.ResumeLayout(false);
     this.gBoxCerinta.ResumeLayout(false);
     this.gBoxSursa.ResumeLayout(false);
     this.gBoxSursa.PerformLayout();
     this.tabPageTeste.ResumeLayout(false);
     this.splitContainer6.Panel1.ResumeLayout(false);
     this.splitContainer6.Panel2.ResumeLayout(false);
     this.splitContainer6.ResumeLayout(false);
     this.gBoxListaTeste.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.listaTeste)).EndInit();
     this.tabControlSubTeste.ResumeLayout(false);
     this.tabPageSubiectTest.ResumeLayout(false);
     this.tabPageSubiectTest.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnIntrebareUrmatoare)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnIntrebareAnterioara)).EndInit();
     this.panelTestFinish.ResumeLayout(false);
     this.panelTestFinish.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblTestTerminat)).EndInit();
     this.panelWelcomeTest.ResumeLayout(false);
     this.panelWelcomeTest.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     this.tabPageCorectareTest.ResumeLayout(false);
     this.tabPageCompilator.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.tabControlSubCompilator.ResumeLayout(false);
     this.tabPageRezultatCompilare.ResumeLayout(false);
     this.tabPageRezultatCompilare.PerformLayout();
     this.tabPageTestareProgram.ResumeLayout(false);
     this.splitContainer5.Panel1.ResumeLayout(false);
     this.splitContainer5.Panel2.ResumeLayout(false);
     this.splitContainer5.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.tabControlDateIntrare.ResumeLayout(false);
     this.tabcin.ResumeLayout(false);
     this.tabcin.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.tabControlDateIesire.ResumeLayout(false);
     this.tabcout.ResumeLayout(false);
     this.tabcout.PerformLayout();
     this.tabPageTestareAutomata.ResumeLayout(false);
     this.tabPageTestareAutomata.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdaugaTestare)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnVerifica)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridVerificare.MasterGridViewTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridVerificare)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ribbonBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusStrip)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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);
 }
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()
 {
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.radGroupBox5 = new Telerik.WinControls.UI.RadGroupBox();
     this.radLabel18 = new Telerik.WinControls.UI.RadLabel();
     this.gridUsers = new System.Windows.Forms.DataGridView();
     this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
     this.txtUserID = new Telerik.WinControls.UI.RadTextBox();
     this.radGroupBox4 = new Telerik.WinControls.UI.RadGroupBox();
     this.button4 = new System.Windows.Forms.Button();
     this.picUser = new System.Windows.Forms.PictureBox();
     this.btnUpdate = new Telerik.WinControls.UI.RadButton();
     this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.lblTime = new Telerik.WinControls.UI.RadLabel();
     this.lblUserLevel = new Telerik.WinControls.UI.RadLabel();
     this.lblTitle = new Telerik.WinControls.UI.RadLabel();
     this.lblDate = new Telerik.WinControls.UI.RadLabel();
     this.lblUserID = new Telerik.WinControls.UI.RadLabel();
     this.radLabel17 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.txtPassword = new Telerik.WinControls.UI.RadTextBox();
     this.txtUserName = new Telerik.WinControls.UI.RadTextBox();
     this.txtLastName = new Telerik.WinControls.UI.RadTextBox();
     this.txtEmailAdd = new Telerik.WinControls.UI.RadTextBox();
     this.TxtConfPass = new Telerik.WinControls.UI.RadTextBox();
     this.txtFirstName = new Telerik.WinControls.UI.RadTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox5)).BeginInit();
     this.radGroupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridUsers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUserID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).BeginInit();
     this.radGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picUser)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnUpdate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblTime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblUserLevel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblTitle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblUserID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUserName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmailAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtConfPass)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirstName)).BeginInit();
     this.SuspendLayout();
     //
     // radGroupBox1
     //
     this.radGroupBox1.BackColor = System.Drawing.Color.Transparent;
     this.radGroupBox1.Controls.Add(this.radGroupBox5);
     this.radGroupBox1.Controls.Add(this.radGroupBox4);
     this.radGroupBox1.Controls.Add(this.btnUpdate);
     this.radGroupBox1.Controls.Add(this.radLabel10);
     this.radGroupBox1.Controls.Add(this.radLabel4);
     this.radGroupBox1.Controls.Add(this.radLabel9);
     this.radGroupBox1.Controls.Add(this.radLabel8);
     this.radGroupBox1.Controls.Add(this.radLabel7);
     this.radGroupBox1.Controls.Add(this.radLabel6);
     this.radGroupBox1.Controls.Add(this.radLabel5);
     this.radGroupBox1.Controls.Add(this.radLabel3);
     this.radGroupBox1.Controls.Add(this.radLabel2);
     this.radGroupBox1.Controls.Add(this.lblTime);
     this.radGroupBox1.Controls.Add(this.lblUserLevel);
     this.radGroupBox1.Controls.Add(this.lblTitle);
     this.radGroupBox1.Controls.Add(this.lblDate);
     this.radGroupBox1.Controls.Add(this.lblUserID);
     this.radGroupBox1.Controls.Add(this.radLabel17);
     this.radGroupBox1.Controls.Add(this.radLabel1);
     this.radGroupBox1.Controls.Add(this.txtPassword);
     this.radGroupBox1.Controls.Add(this.txtUserName);
     this.radGroupBox1.Controls.Add(this.txtLastName);
     this.radGroupBox1.Controls.Add(this.txtEmailAdd);
     this.radGroupBox1.Controls.Add(this.TxtConfPass);
     this.radGroupBox1.Controls.Add(this.txtFirstName);
     this.radGroupBox1.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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 = "Edit User information";
     this.radGroupBox1.Location = new System.Drawing.Point(4, 4);
     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(784, 550);
     this.radGroupBox1.TabIndex = 9;
     this.radGroupBox1.Text = "Edit User information";
     this.radGroupBox1.ThemeName = "BreezeExtended";
     //
     // radGroupBox5
     //
     this.radGroupBox5.Controls.Add(this.radLabel18);
     this.radGroupBox5.Controls.Add(this.gridUsers);
     this.radGroupBox5.Controls.Add(this.radLabel12);
     this.radGroupBox5.Controls.Add(this.txtUserID);
     this.radGroupBox5.FooterImageIndex = -1;
     this.radGroupBox5.FooterImageKey = "";
     this.radGroupBox5.HeaderImageIndex = -1;
     this.radGroupBox5.HeaderImageKey = "";
     this.radGroupBox5.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox5.HeaderText = "Search";
     this.radGroupBox5.Location = new System.Drawing.Point(26, 31);
     this.radGroupBox5.Name = "radGroupBox5";
     this.radGroupBox5.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     //
     //
     //
     this.radGroupBox5.RootElement.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     this.radGroupBox5.Size = new System.Drawing.Size(734, 170);
     this.radGroupBox5.TabIndex = 10;
     this.radGroupBox5.Text = "Search";
     this.radGroupBox5.ThemeName = "BreezeExtended";
     //
     // radLabel18
     //
     this.radLabel18.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel18.ForeColor = System.Drawing.Color.DarkOrange;
     this.radLabel18.Location = new System.Drawing.Point(370, 28);
     this.radLabel18.Name = "radLabel18";
     //
     //
     //
     this.radLabel18.RootElement.ForeColor = System.Drawing.Color.DarkOrange;
     this.radLabel18.Size = new System.Drawing.Size(240, 17);
     this.radLabel18.TabIndex = 9;
     this.radLabel18.Text = "Please enter USER ID to search the details";
     this.radLabel18.ThemeName = "Office2007Black";
     //
     // gridUsers
     //
     this.gridUsers.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
     this.gridUsers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.gridUsers.GridColor = System.Drawing.SystemColors.ButtonHighlight;
     this.gridUsers.Location = new System.Drawing.Point(13, 58);
     this.gridUsers.Name = "gridUsers";
     this.gridUsers.ReadOnly = true;
     this.gridUsers.RowTemplate.Height = 24;
     this.gridUsers.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.gridUsers.Size = new System.Drawing.Size(709, 99);
     this.gridUsers.TabIndex = 4;
     this.gridUsers.RowHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.gridUsers_RowHeaderMouseClick);
     //
     // radLabel12
     //
     this.radLabel12.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel12.Location = new System.Drawing.Point(25, 23);
     this.radLabel12.Name = "radLabel12";
     this.radLabel12.Size = new System.Drawing.Size(54, 17);
     this.radLabel12.TabIndex = 3;
     this.radLabel12.Text = "User ID :";
     this.radLabel12.ThemeName = "Office2007Black";
     //
     // txtUserID
     //
     this.txtUserID.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtUserID.Location = new System.Drawing.Point(117, 23);
     this.txtUserID.Name = "txtUserID";
     this.txtUserID.Size = new System.Drawing.Size(247, 22);
     this.txtUserID.TabIndex = 2;
     this.txtUserID.TabStop = false;
     this.txtUserID.Tag = "";
     this.txtUserID.ThemeName = "BreezeExtended";
     this.txtUserID.TextChanged += new System.EventHandler(this.txtUserID_TextChanged);
     //
     // radGroupBox4
     //
     this.radGroupBox4.Controls.Add(this.button4);
     this.radGroupBox4.Controls.Add(this.picUser);
     this.radGroupBox4.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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 = "Photograph";
     this.radGroupBox4.Location = new System.Drawing.Point(524, 212);
     this.radGroupBox4.Name = "radGroupBox4";
     this.radGroupBox4.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     //
     //
     //
     this.radGroupBox4.RootElement.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     this.radGroupBox4.Size = new System.Drawing.Size(236, 196);
     this.radGroupBox4.TabIndex = 8;
     this.radGroupBox4.Text = "Photograph";
     this.radGroupBox4.ThemeName = "BreezeExtended";
     //
     // button4
     //
     this.button4.FlatAppearance.BorderSize = 0;
     this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button4.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button4.Location = new System.Drawing.Point(47, 172);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(141, 21);
     this.button4.TabIndex = 1;
     this.button4.Text = "Browse";
     this.button4.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.button4.UseVisualStyleBackColor = true;
     //
     // picUser
     //
     this.picUser.BackgroundImage = global::AEIS.Properties.Resources.avatar;
     this.picUser.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.picUser.Location = new System.Drawing.Point(11, 23);
     this.picUser.Name = "picUser";
     this.picUser.Size = new System.Drawing.Size(213, 146);
     this.picUser.TabIndex = 0;
     this.picUser.TabStop = false;
     //
     // btnUpdate
     //
     this.btnUpdate.Font = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnUpdate.Location = new System.Drawing.Point(627, 501);
     this.btnUpdate.Name = "btnUpdate";
     this.btnUpdate.Size = new System.Drawing.Size(133, 25);
     this.btnUpdate.TabIndex = 5;
     this.btnUpdate.Text = "Save &Modification";
     this.btnUpdate.ThemeName = "Office2010";
     this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
     //
     // radLabel10
     //
     this.radLabel10.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel10.Location = new System.Drawing.Point(26, 501);
     this.radLabel10.Name = "radLabel10";
     this.radLabel10.Size = new System.Drawing.Size(120, 17);
     this.radLabel10.TabIndex = 1;
     this.radLabel10.Text = "User Created Date  :";
     this.radLabel10.ThemeName = "Office2007Black";
     //
     // radLabel4
     //
     this.radLabel4.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.Location = new System.Drawing.Point(26, 478);
     this.radLabel4.Name = "radLabel4";
     this.radLabel4.Size = new System.Drawing.Size(122, 17);
     this.radLabel4.TabIndex = 1;
     this.radLabel4.Text = "User Created Time  :";
     this.radLabel4.ThemeName = "Office2007Black";
     //
     // radLabel9
     //
     this.radLabel9.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel9.Location = new System.Drawing.Point(26, 430);
     this.radLabel9.Name = "radLabel9";
     this.radLabel9.Size = new System.Drawing.Size(100, 17);
     this.radLabel9.TabIndex = 1;
     this.radLabel9.Text = "E-mail Address  :";
     this.radLabel9.ThemeName = "Office2007Black";
     //
     // radLabel8
     //
     this.radLabel8.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel8.Location = new System.Drawing.Point(26, 402);
     this.radLabel8.Name = "radLabel8";
     this.radLabel8.Size = new System.Drawing.Size(121, 17);
     this.radLabel8.TabIndex = 1;
     this.radLabel8.Text = "Confirm Password   :"******"Office2007Black";
     //
     // radLabel7
     //
     this.radLabel7.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel7.Location = new System.Drawing.Point(26, 374);
     this.radLabel7.Name = "radLabel7";
     this.radLabel7.Size = new System.Drawing.Size(69, 17);
     this.radLabel7.TabIndex = 1;
     this.radLabel7.Text = "Password  :"******"Office2007Black";
     //
     // radLabel6
     //
     this.radLabel6.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel6.Location = new System.Drawing.Point(26, 346);
     this.radLabel6.Name = "radLabel6";
     this.radLabel6.Size = new System.Drawing.Size(78, 17);
     this.radLabel6.TabIndex = 1;
     this.radLabel6.Text = "User Name  :";
     this.radLabel6.ThemeName = "Office2007Black";
     //
     // radLabel5
     //
     this.radLabel5.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel5.Location = new System.Drawing.Point(26, 319);
     this.radLabel5.Name = "radLabel5";
     this.radLabel5.Size = new System.Drawing.Size(74, 17);
     this.radLabel5.TabIndex = 1;
     this.radLabel5.Text = "User level  :";
     this.radLabel5.ThemeName = "Office2007Black";
     //
     // radLabel3
     //
     this.radLabel3.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel3.Location = new System.Drawing.Point(26, 291);
     this.radLabel3.Name = "radLabel3";
     this.radLabel3.Size = new System.Drawing.Size(41, 17);
     this.radLabel3.TabIndex = 1;
     this.radLabel3.Text = "Title :";
     this.radLabel3.ThemeName = "Office2007Black";
     //
     // radLabel2
     //
     this.radLabel2.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel2.Location = new System.Drawing.Point(26, 263);
     this.radLabel2.Name = "radLabel2";
     this.radLabel2.Size = new System.Drawing.Size(73, 17);
     this.radLabel2.TabIndex = 1;
     this.radLabel2.Text = "Last Name :";
     this.radLabel2.ThemeName = "Office2007Black";
     //
     // lblTime
     //
     this.lblTime.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTime.Location = new System.Drawing.Point(192, 501);
     this.lblTime.Name = "lblTime";
     this.lblTime.Size = new System.Drawing.Size(20, 17);
     this.lblTime.TabIndex = 1;
     this.lblTime.Text = "---";
     this.lblTime.ThemeName = "Office2007Black";
     //
     // lblUserLevel
     //
     this.lblUserLevel.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblUserLevel.Location = new System.Drawing.Point(192, 319);
     this.lblUserLevel.Name = "lblUserLevel";
     this.lblUserLevel.Size = new System.Drawing.Size(20, 17);
     this.lblUserLevel.TabIndex = 1;
     this.lblUserLevel.Text = "---";
     this.lblUserLevel.ThemeName = "Office2007Black";
     //
     // lblTitle
     //
     this.lblTitle.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.Location = new System.Drawing.Point(192, 291);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(20, 17);
     this.lblTitle.TabIndex = 1;
     this.lblTitle.Text = "---";
     this.lblTitle.ThemeName = "Office2007Black";
     //
     // lblDate
     //
     this.lblDate.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDate.Location = new System.Drawing.Point(192, 478);
     this.lblDate.Name = "lblDate";
     this.lblDate.Size = new System.Drawing.Size(20, 17);
     this.lblDate.TabIndex = 1;
     this.lblDate.Text = "---";
     this.lblDate.ThemeName = "Office2007Black";
     //
     // lblUserID
     //
     this.lblUserID.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblUserID.Location = new System.Drawing.Point(192, 212);
     this.lblUserID.Name = "lblUserID";
     this.lblUserID.Size = new System.Drawing.Size(20, 17);
     this.lblUserID.TabIndex = 1;
     this.lblUserID.Text = "---";
     this.lblUserID.ThemeName = "Office2007Black";
     //
     // radLabel17
     //
     this.radLabel17.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel17.Location = new System.Drawing.Point(26, 207);
     this.radLabel17.Name = "radLabel17";
     this.radLabel17.Size = new System.Drawing.Size(54, 17);
     this.radLabel17.TabIndex = 1;
     this.radLabel17.Text = "User ID :";
     this.radLabel17.ThemeName = "Office2007Black";
     //
     // radLabel1
     //
     this.radLabel1.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel1.Location = new System.Drawing.Point(26, 235);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.Size = new System.Drawing.Size(75, 17);
     this.radLabel1.TabIndex = 1;
     this.radLabel1.Text = "First Name :";
     this.radLabel1.ThemeName = "Office2007Black";
     //
     // txtPassword
     //
     this.txtPassword.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPassword.Location = new System.Drawing.Point(192, 374);
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.PasswordChar = '*';
     this.txtPassword.Size = new System.Drawing.Size(304, 22);
     this.txtPassword.TabIndex = 0;
     this.txtPassword.TabStop = false;
     this.txtPassword.ThemeName = "BreezeExtended";
     //
     // txtUserName
     //
     this.txtUserName.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtUserName.Location = new System.Drawing.Point(192, 346);
     this.txtUserName.Name = "txtUserName";
     this.txtUserName.Size = new System.Drawing.Size(304, 22);
     this.txtUserName.TabIndex = 0;
     this.txtUserName.TabStop = false;
     this.txtUserName.ThemeName = "BreezeExtended";
     //
     // txtLastName
     //
     this.txtLastName.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtLastName.Location = new System.Drawing.Point(192, 263);
     this.txtLastName.Name = "txtLastName";
     this.txtLastName.Size = new System.Drawing.Size(304, 22);
     this.txtLastName.TabIndex = 0;
     this.txtLastName.TabStop = false;
     this.txtLastName.ThemeName = "BreezeExtended";
     //
     // txtEmailAdd
     //
     this.txtEmailAdd.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtEmailAdd.Location = new System.Drawing.Point(192, 430);
     this.txtEmailAdd.Name = "txtEmailAdd";
     this.txtEmailAdd.Size = new System.Drawing.Size(304, 22);
     this.txtEmailAdd.TabIndex = 0;
     this.txtEmailAdd.TabStop = false;
     this.txtEmailAdd.ThemeName = "BreezeExtended";
     //
     // TxtConfPass
     //
     this.TxtConfPass.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtConfPass.Location = new System.Drawing.Point(192, 402);
     this.TxtConfPass.Name = "TxtConfPass";
     this.TxtConfPass.PasswordChar = '*';
     this.TxtConfPass.Size = new System.Drawing.Size(304, 22);
     this.TxtConfPass.TabIndex = 0;
     this.TxtConfPass.TabStop = false;
     this.TxtConfPass.ThemeName = "BreezeExtended";
     //
     // txtFirstName
     //
     this.txtFirstName.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFirstName.Location = new System.Drawing.Point(192, 235);
     this.txtFirstName.Name = "txtFirstName";
     this.txtFirstName.Size = new System.Drawing.Size(304, 22);
     this.txtFirstName.TabIndex = 0;
     this.txtFirstName.TabStop = false;
     this.txtFirstName.ThemeName = "BreezeExtended";
     //
     // UserEdit
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.radGroupBox1);
     this.Name = "UserEdit";
     this.Size = new System.Drawing.Size(807, 558);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox5)).EndInit();
     this.radGroupBox5.ResumeLayout(false);
     this.radGroupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridUsers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUserID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).EndInit();
     this.radGroupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.picUser)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnUpdate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblTime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblUserLevel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblTitle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblUserID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUserName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmailAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtConfPass)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirstName)).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.radLabel7 = new Telerik.WinControls.UI.RadLabel();
     this.dtp_new_stock = new Telerik.WinControls.UI.RadDateTimePicker();
     this.radButton2 = new Telerik.WinControls.UI.RadButton();
     this.radButton1 = new Telerik.WinControls.UI.RadButton();
     this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
     this.gridViewTemplate1 = new Telerik.WinControls.UI.GridViewTemplate();
     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.radLabel8 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
     this.radButton3 = new Telerik.WinControls.UI.RadButton();
     this.radButton9 = new Telerik.WinControls.UI.RadButton();
     this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
     this.radio_tubeless = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_tube = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_non_trail = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_trail = new Telerik.WinControls.UI.RadRadioButton();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.check_rear = new Telerik.WinControls.UI.RadCheckBox();
     this.check_front = new Telerik.WinControls.UI.RadCheckBox();
     this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
     this.com_brand = new Telerik.WinControls.UI.RadComboBox();
     this.com_ply_rate = new Telerik.WinControls.UI.RadComboBox();
     this.com_made = new Telerik.WinControls.UI.RadComboBox();
     this.com_t_pattern = new Telerik.WinControls.UI.RadComboBox();
     this.radGridView2 = new Telerik.WinControls.UI.RadGridView();
     this.txt_size = new Telerik.WinControls.UI.RadTextBox();
     this.radButton10 = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtp_new_stock)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).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.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_tubeless)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_tube)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_non_trail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_trail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.check_rear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.check_front)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_made)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_t_pattern)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radLabel7
     //
     this.radLabel7.BackColor = System.Drawing.Color.Transparent;
     this.radLabel7.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel7.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel7.Location = new System.Drawing.Point(22, 75);
     this.radLabel7.Name = "radLabel7";
     //
     //
     //
     this.radLabel7.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel7.Size = new System.Drawing.Size(101, 21);
     this.radLabel7.TabIndex = 18;
     this.radLabel7.Text = "New Stock Date";
     //
     // dtp_new_stock
     //
     this.dtp_new_stock.Format = System.Windows.Forms.DateTimePickerFormat.Long;
     this.dtp_new_stock.Location = new System.Drawing.Point(125, 75);
     this.dtp_new_stock.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.dtp_new_stock.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
     this.dtp_new_stock.Name = "dtp_new_stock";
     this.dtp_new_stock.NullDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
     this.dtp_new_stock.Size = new System.Drawing.Size(129, 20);
     this.dtp_new_stock.TabIndex = 0;
     this.dtp_new_stock.TabStop = false;
     this.dtp_new_stock.Text = "radDateTimePicker1";
     this.dtp_new_stock.Value = new System.DateTime(2011, 1, 28, 23, 50, 44, 910);
     this.dtp_new_stock.ValueChanged += new System.EventHandler(this.dtp_new_stock_ValueChanged);
     //
     // radButton2
     //
     this.radButton2.Location = new System.Drawing.Point(125, 430);
     this.radButton2.Name = "radButton2";
     this.radButton2.Size = new System.Drawing.Size(50, 15);
     this.radButton2.TabIndex = 15;
     this.radButton2.Text = "Reset";
     this.radButton2.ThemeName = "Breeze";
     this.radButton2.Click += new System.EventHandler(this.radButton2_Click);
     //
     // radButton1
     //
     this.radButton1.Location = new System.Drawing.Point(606, 431);
     this.radButton1.Name = "radButton1";
     this.radButton1.Size = new System.Drawing.Size(94, 24);
     this.radButton1.TabIndex = 12;
     this.radButton1.Text = "Add";
     this.radButton1.ThemeName = "Breeze";
     this.radButton1.Click += new System.EventHandler(this.radButton1_Click);
     //
     // radLabel6
     //
     this.radLabel6.BackColor = System.Drawing.Color.Transparent;
     this.radLabel6.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel6.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel6.Location = new System.Drawing.Point(23, 373);
     this.radLabel6.Name = "radLabel6";
     //
     //
     //
     this.radLabel6.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel6.Size = new System.Drawing.Size(94, 21);
     this.radLabel6.TabIndex = 29;
     this.radLabel6.Text = "Thread pattern";
     //
     // gridViewTemplate1
     //
     this.gridViewTemplate1.EnableAlternatingRowColor = true;
     //
     // radLabel5
     //
     this.radLabel5.BackColor = System.Drawing.Color.Transparent;
     this.radLabel5.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel5.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel5.Location = new System.Drawing.Point(26, 342);
     this.radLabel5.Name = "radLabel5";
     //
     //
     //
     this.radLabel5.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel5.Size = new System.Drawing.Size(54, 21);
     this.radLabel5.TabIndex = 27;
     this.radLabel5.Text = "Make in";
     //
     // radLabel4
     //
     this.radLabel4.BackColor = System.Drawing.Color.Transparent;
     this.radLabel4.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel4.Location = new System.Drawing.Point(26, 310);
     this.radLabel4.Name = "radLabel4";
     //
     //
     //
     this.radLabel4.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel4.Size = new System.Drawing.Size(54, 21);
     this.radLabel4.TabIndex = 25;
     this.radLabel4.Text = "Ply Rate";
     //
     // radLabel3
     //
     this.radLabel3.BackColor = System.Drawing.Color.Transparent;
     this.radLabel3.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel3.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel3.Location = new System.Drawing.Point(26, 280);
     this.radLabel3.Name = "radLabel3";
     //
     //
     //
     this.radLabel3.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel3.Size = new System.Drawing.Size(30, 21);
     this.radLabel3.TabIndex = 23;
     this.radLabel3.Text = "Size";
     //
     // radLabel2
     //
     this.radLabel2.BackColor = System.Drawing.Color.Transparent;
     this.radLabel2.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel2.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel2.Location = new System.Drawing.Point(26, 251);
     this.radLabel2.Name = "radLabel2";
     //
     //
     //
     this.radLabel2.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel2.Size = new System.Drawing.Size(41, 21);
     this.radLabel2.TabIndex = 19;
     this.radLabel2.Text = "Brand";
     //
     // radLabel8
     //
     this.radLabel8.BackColor = System.Drawing.Color.Transparent;
     this.radLabel8.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel8.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel8.Location = new System.Drawing.Point(23, 200);
     this.radLabel8.Name = "radLabel8";
     //
     //
     //
     this.radLabel8.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel8.Size = new System.Drawing.Size(61, 21);
     this.radLabel8.TabIndex = 20;
     this.radLabel8.Text = "Tyre Side";
     //
     // radLabel9
     //
     this.radLabel9.BackColor = System.Drawing.Color.Transparent;
     this.radLabel9.Font = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Bold);
     this.radLabel9.ForeColor = System.Drawing.Color.Gold;
     this.radLabel9.Location = new System.Drawing.Point(23, 12);
     this.radLabel9.Name = "radLabel9";
     //
     //
     //
     this.radLabel9.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.radLabel9.Size = new System.Drawing.Size(350, 41);
     this.radLabel9.TabIndex = 36;
     this.radLabel9.Text = "MOTORCYCLE  CATEGORY";
     //
     // radButton3
     //
     this.radButton3.Location = new System.Drawing.Point(746, 431);
     this.radButton3.Name = "radButton3";
     this.radButton3.Size = new System.Drawing.Size(90, 25);
     this.radButton3.TabIndex = 13;
     this.radButton3.Text = "Update";
     this.radButton3.ThemeName = "Breeze";
     this.radButton3.Click += new System.EventHandler(this.radButton3_Click);
     //
     // radButton9
     //
     this.radButton9.Location = new System.Drawing.Point(873, 430);
     this.radButton9.Name = "radButton9";
     this.radButton9.Size = new System.Drawing.Size(90, 25);
     this.radButton9.TabIndex = 14;
     this.radButton9.Text = "Delete";
     this.radButton9.ThemeName = "Breeze";
     this.radButton9.Click += new System.EventHandler(this.radButton9_Click);
     //
     // radLabel10
     //
     this.radLabel10.BackColor = System.Drawing.Color.Transparent;
     this.radLabel10.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel10.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel10.Location = new System.Drawing.Point(23, 156);
     this.radLabel10.Name = "radLabel10";
     //
     //
     //
     this.radLabel10.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel10.Size = new System.Drawing.Size(65, 21);
     this.radLabel10.TabIndex = 20;
     this.radLabel10.Text = "Tyre Tube";
     //
     // radio_tubeless
     //
     this.radio_tubeless.BackColor = System.Drawing.Color.Transparent;
     this.radio_tubeless.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_tubeless.Location = new System.Drawing.Point(53, 9);
     this.radio_tubeless.Name = "radio_tubeless";
     //
     //
     //
     this.radio_tubeless.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_tubeless.Size = new System.Drawing.Size(61, 18);
     this.radio_tubeless.TabIndex = 4;
     this.radio_tubeless.Text = "Tubeless";
     //
     // radio_tube
     //
     this.radio_tube.BackColor = System.Drawing.Color.Transparent;
     this.radio_tube.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_tube.Location = new System.Drawing.Point(2, 10);
     this.radio_tube.Name = "radio_tube";
     //
     //
     //
     this.radio_tube.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_tube.Size = new System.Drawing.Size(51, 18);
     this.radio_tube.TabIndex = 3;
     this.radio_tube.Text = "Tube";
     //
     // radio_non_trail
     //
     this.radio_non_trail.BackColor = System.Drawing.Color.Transparent;
     this.radio_non_trail.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_non_trail.Location = new System.Drawing.Point(52, 11);
     this.radio_non_trail.Name = "radio_non_trail";
     //
     //
     //
     this.radio_non_trail.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_non_trail.Size = new System.Drawing.Size(83, 18);
     this.radio_non_trail.TabIndex = 2;
     this.radio_non_trail.Text = "Non Trail";
     //
     // radio_trail
     //
     this.radio_trail.BackColor = System.Drawing.Color.Transparent;
     this.radio_trail.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_trail.Location = new System.Drawing.Point(2, 11);
     this.radio_trail.Name = "radio_trail";
     //
     //
     //
     this.radio_trail.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_trail.Size = new System.Drawing.Size(51, 18);
     this.radio_trail.TabIndex = 1;
     this.radio_trail.Text = "Trail";
     //
     // radLabel1
     //
     this.radLabel1.BackColor = System.Drawing.Color.Transparent;
     this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel1.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel1.Location = new System.Drawing.Point(23, 114);
     this.radLabel1.Name = "radLabel1";
     //
     //
     //
     this.radLabel1.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel1.Size = new System.Drawing.Size(85, 21);
     this.radLabel1.TabIndex = 44;
     this.radLabel1.Text = "Trail/Nontrail";
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.radio_trail);
     this.groupBox1.Controls.Add(this.radio_non_trail);
     this.groupBox1.Location = new System.Drawing.Point(122, 102);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(132, 36);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.radio_tube);
     this.groupBox2.Controls.Add(this.radio_tubeless);
     this.groupBox2.Location = new System.Drawing.Point(122, 148);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(132, 36);
     this.groupBox2.TabIndex = 3;
     this.groupBox2.TabStop = false;
     //
     // groupBox3
     //
     this.groupBox3.BackColor = System.Drawing.Color.Transparent;
     this.groupBox3.Controls.Add(this.check_rear);
     this.groupBox3.Controls.Add(this.check_front);
     this.groupBox3.Location = new System.Drawing.Point(122, 190);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(132, 42);
     this.groupBox3.TabIndex = 5;
     this.groupBox3.TabStop = false;
     //
     // check_rear
     //
     this.check_rear.ForeColor = System.Drawing.Color.White;
     this.check_rear.Location = new System.Drawing.Point(53, 15);
     this.check_rear.Name = "check_rear";
     //
     //
     //
     this.check_rear.RootElement.ForeColor = System.Drawing.Color.White;
     this.check_rear.Size = new System.Drawing.Size(43, 18);
     this.check_rear.TabIndex = 6;
     this.check_rear.Text = "Rear";
     //
     // check_front
     //
     this.check_front.ForeColor = System.Drawing.Color.White;
     this.check_front.Location = new System.Drawing.Point(2, 15);
     this.check_front.Name = "check_front";
     //
     //
     //
     this.check_front.RootElement.ForeColor = System.Drawing.Color.White;
     this.check_front.Size = new System.Drawing.Size(47, 18);
     this.check_front.TabIndex = 5;
     this.check_front.Text = "Front";
     //
     // radGridView1
     //
     this.radGridView1.Location = new System.Drawing.Point(266, 75);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow = false;
     this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView1.Name = "radGridView1";
     this.radGridView1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.ReadOnly = true;
     //
     //
     //
     this.radGridView1.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.Size = new System.Drawing.Size(697, 320);
     this.radGridView1.TabIndex = 16;
     this.radGridView1.Text = "radGridView1";
     this.radGridView1.SelectionChanged += new System.EventHandler(this.radGridView1_SelectionChanged);
     this.radGridView1.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     this.radGridView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.radGridView1_KeyDown);
     //
     // com_brand
     //
     this.com_brand.Location = new System.Drawing.Point(124, 251);
     this.com_brand.Name = "com_brand";
     //
     //
     //
     this.com_brand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_brand.Size = new System.Drawing.Size(130, 20);
     this.com_brand.TabIndex = 7;
     this.com_brand.TabStop = false;
     this.com_brand.SelectedIndexChanged += new System.EventHandler(this.com_brand_SelectedIndexChanged);
     this.com_brand.Enter += new System.EventHandler(this.com_brand_Enter);
     this.com_brand.KeyDown += new System.Windows.Forms.KeyEventHandler(this.com_brand_KeyDown);
     //
     // com_ply_rate
     //
     this.com_ply_rate.Location = new System.Drawing.Point(124, 310);
     this.com_ply_rate.Name = "com_ply_rate";
     //
     //
     //
     this.com_ply_rate.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_ply_rate.Size = new System.Drawing.Size(130, 20);
     this.com_ply_rate.TabIndex = 9;
     this.com_ply_rate.TabStop = false;
     this.com_ply_rate.Enter += new System.EventHandler(this.com_ply_rate_Enter);
     this.com_ply_rate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.com_ply_rate_KeyDown);
     //
     // com_made
     //
     this.com_made.Location = new System.Drawing.Point(124, 342);
     this.com_made.Name = "com_made";
     //
     //
     //
     this.com_made.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_made.Size = new System.Drawing.Size(130, 20);
     this.com_made.TabIndex = 10;
     this.com_made.TabStop = false;
     this.com_made.Enter += new System.EventHandler(this.com_made_Enter);
     this.com_made.KeyDown += new System.Windows.Forms.KeyEventHandler(this.com_made_KeyDown);
     //
     // com_t_pattern
     //
     this.com_t_pattern.Location = new System.Drawing.Point(124, 373);
     this.com_t_pattern.Name = "com_t_pattern";
     //
     //
     //
     this.com_t_pattern.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_t_pattern.Size = new System.Drawing.Size(130, 20);
     this.com_t_pattern.TabIndex = 11;
     this.com_t_pattern.TabStop = false;
     this.com_t_pattern.Enter += new System.EventHandler(this.com_t_pattern_Enter);
     this.com_t_pattern.KeyDown += new System.Windows.Forms.KeyEventHandler(this.com_t_pattern_KeyDown);
     //
     // radGridView2
     //
     this.radGridView2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     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(281, 401);
     //
     // radGridView2
     //
     this.radGridView2.MasterTemplate.AllowAddNewRow = false;
     this.radGridView2.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView2.MasterTemplate.EnableGrouping = false;
     this.radGridView2.MasterTemplate.ShowColumnHeaders = false;
     this.radGridView2.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView2.Name = "radGridView2";
     this.radGridView2.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.ReadOnly = true;
     this.radGridView2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView2.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView2.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.ShowGroupPanel = false;
     this.radGridView2.Size = new System.Drawing.Size(130, 111);
     this.radGridView2.TabIndex = 46;
     this.radGridView2.Text = "radGridView2";
     this.radGridView2.SelectionChanged += new System.EventHandler(this.radGridView2_SelectionChanged);
     this.radGridView2.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView2_CellClick);
     this.radGridView2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.radGridView2_KeyDown);
     //
     // txt_size
     //
     this.txt_size.Location = new System.Drawing.Point(124, 280);
     this.txt_size.Name = "txt_size";
     this.txt_size.Size = new System.Drawing.Size(130, 20);
     this.txt_size.TabIndex = 45;
     this.txt_size.TabStop = false;
     this.txt_size.TextChanged += new System.EventHandler(this.txt_size_TextChanged);
     this.txt_size.Enter += new System.EventHandler(this.txt_size_Enter);
     this.txt_size.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_size_KeyDown);
     //
     // radButton10
     //
     this.radButton10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.radButton10.Font = new System.Drawing.Font("Verdana", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton10.ForeColor = System.Drawing.Color.Crimson;
     this.radButton10.Location = new System.Drawing.Point(943, 12);
     this.radButton10.Name = "radButton10";
     //
     //
     //
     this.radButton10.RootElement.ForeColor = System.Drawing.Color.Crimson;
     this.radButton10.Size = new System.Drawing.Size(40, 40);
     this.radButton10.TabIndex = 89;
     this.radButton10.Text = "X";
     this.radButton10.ThemeName = "Breeze";
     this.radButton10.Click += new System.EventHandler(this.radButton10_Click);
     ((Telerik.WinControls.UI.RadButtonElement)(this.radButton10.GetChildAt(0))).Text = "X";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton10.GetChildAt(0).GetChildAt(0))).BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(166)))), ((int)(((byte)(91)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton10.GetChildAt(0).GetChildAt(0))).BackColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(109)))), ((int)(((byte)(60)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton10.GetChildAt(0).GetChildAt(0))).BackColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(29)))), ((int)(((byte)(29)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton10.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(220)))), ((int)(((byte)(159)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton10.GetChildAt(0).GetChildAt(2))).ForeColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton10.GetChildAt(0).GetChildAt(2))).ForeColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton10.GetChildAt(0).GetChildAt(2))).ForeColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton10.GetChildAt(0).GetChildAt(2))).InnerColor = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(254)))), ((int)(((byte)(143)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton10.GetChildAt(0).GetChildAt(2))).InnerColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(247)))), ((int)(((byte)(91)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton10.GetChildAt(0).GetChildAt(2))).InnerColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(236)))), ((int)(((byte)(78)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton10.GetChildAt(0).GetChildAt(2))).InnerColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(242)))), ((int)(((byte)(14)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton10.GetChildAt(0).GetChildAt(2))).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     //
     // AddMoterCycleTyre
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.ClientSize = new System.Drawing.Size(1012, 602);
     this.Controls.Add(this.radButton10);
     this.Controls.Add(this.radGridView2);
     this.Controls.Add(this.txt_size);
     this.Controls.Add(this.com_t_pattern);
     this.Controls.Add(this.com_made);
     this.Controls.Add(this.com_ply_rate);
     this.Controls.Add(this.com_brand);
     this.Controls.Add(this.radGridView1);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.radLabel1);
     this.Controls.Add(this.radButton3);
     this.Controls.Add(this.radButton9);
     this.Controls.Add(this.radLabel9);
     this.Controls.Add(this.radLabel10);
     this.Controls.Add(this.radLabel8);
     this.Controls.Add(this.radLabel7);
     this.Controls.Add(this.dtp_new_stock);
     this.Controls.Add(this.radButton2);
     this.Controls.Add(this.radButton1);
     this.Controls.Add(this.radLabel6);
     this.Controls.Add(this.radLabel5);
     this.Controls.Add(this.radLabel4);
     this.Controls.Add(this.radLabel3);
     this.Controls.Add(this.radLabel2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "AddMoterCycleTyre";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "AddMoterCycleTyre";
     this.ThemeName = "ControlDefault";
     this.Load += new System.EventHandler(this.AddMoterCycleTyre_Load);
     this.Click += new System.EventHandler(this.AddMoterCycleTyre_Click);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.AddMoterCycleTyre_MouseDown);
     this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.AddMoterCycleTyre_MouseMove);
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtp_new_stock)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).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.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_tubeless)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_tube)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_non_trail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_trail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.check_rear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.check_front)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_made)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_t_pattern)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Photos));
     this.roundRectShapeForm = new Telerik.WinControls.RoundRectShape(this.components);
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox4 = new Telerik.WinControls.UI.RadGroupBox();
     this.ImgFour = new Emgu.CV.UI.ImageBox();
     this.ImgTwo = new Emgu.CV.UI.ImageBox();
     this.ImgThree = new Emgu.CV.UI.ImageBox();
     this.ImgOne = new Emgu.CV.UI.ImageBox();
     this.imgCameraView = new Emgu.CV.UI.ImageBox();
     this.label1 = new System.Windows.Forms.Label();
     this.btnCapture4 = new Telerik.WinControls.UI.RadButton();
     this.btnCapture3 = new Telerik.WinControls.UI.RadButton();
     this.btnCapture2 = new Telerik.WinControls.UI.RadButton();
     this.btnCapture1 = new Telerik.WinControls.UI.RadButton();
     this.btnSaveImages = new Telerik.WinControls.UI.RadButton();
     this.office2010Theme1 = new Telerik.WinControls.Themes.Office2010Theme();
     this.label2 = new System.Windows.Forms.Label();
     this.lblCanddate = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).BeginInit();
     this.radGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ImgFour)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImgTwo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImgThree)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImgOne)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgCameraView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCapture4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCapture3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCapture2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCapture1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSaveImages)).BeginInit();
     this.SuspendLayout();
     //
     // radLabel4
     //
     this.radLabel4.Font = new System.Drawing.Font("Trebuchet MS", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.radLabel4.Location = new System.Drawing.Point(46, 16);
     this.radLabel4.Name = "radLabel4";
     //
     //
     //
     this.radLabel4.RootElement.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.radLabel4.Size = new System.Drawing.Size(303, 23);
     this.radLabel4.TabIndex = 16;
     this.radLabel4.Text = "Candidate Photograph Capturing Center";
     this.radLabel4.ThemeName = "Office2007Black";
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(661, 418);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(85, 24);
     this.btnCancel.TabIndex = 17;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.ThemeName = "Office2010";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // radGroupBox4
     //
     this.radGroupBox4.Controls.Add(this.ImgFour);
     this.radGroupBox4.Controls.Add(this.ImgTwo);
     this.radGroupBox4.Controls.Add(this.ImgThree);
     this.radGroupBox4.Controls.Add(this.ImgOne);
     this.radGroupBox4.Controls.Add(this.imgCameraView);
     this.radGroupBox4.Controls.Add(this.label1);
     this.radGroupBox4.Controls.Add(this.btnCapture4);
     this.radGroupBox4.Controls.Add(this.btnCapture3);
     this.radGroupBox4.Controls.Add(this.btnCapture2);
     this.radGroupBox4.Controls.Add(this.btnCapture1);
     this.radGroupBox4.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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 = "Camera View";
     this.radGroupBox4.Location = new System.Drawing.Point(46, 45);
     this.radGroupBox4.Name = "radGroupBox4";
     this.radGroupBox4.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     //
     //
     //
     this.radGroupBox4.RootElement.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     this.radGroupBox4.Size = new System.Drawing.Size(700, 367);
     this.radGroupBox4.TabIndex = 15;
     this.radGroupBox4.Text = "Camera View";
     this.radGroupBox4.ThemeName = "BreezeExtended";
     this.radGroupBox4.Click += new System.EventHandler(this.radGroupBox4_Click);
     //
     // ImgFour
     //
     this.ImgFour.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ImgFour.BackgroundImage")));
     this.ImgFour.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.ImgFour.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ImgFour.InitialImage = ((System.Drawing.Image)(resources.GetObject("ImgFour.InitialImage")));
     this.ImgFour.Location = new System.Drawing.Point(533, 169);
     this.ImgFour.Name = "ImgFour";
     this.ImgFour.Size = new System.Drawing.Size(140, 140);
     this.ImgFour.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.ImgFour.TabIndex = 17;
     this.ImgFour.TabStop = false;
     //
     // ImgTwo
     //
     this.ImgTwo.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ImgTwo.BackgroundImage")));
     this.ImgTwo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.ImgTwo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ImgTwo.InitialImage = ((System.Drawing.Image)(resources.GetObject("ImgTwo.InitialImage")));
     this.ImgTwo.Location = new System.Drawing.Point(533, 23);
     this.ImgTwo.Name = "ImgTwo";
     this.ImgTwo.Size = new System.Drawing.Size(140, 140);
     this.ImgTwo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.ImgTwo.TabIndex = 17;
     this.ImgTwo.TabStop = false;
     //
     // ImgThree
     //
     this.ImgThree.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ImgThree.BackgroundImage")));
     this.ImgThree.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.ImgThree.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ImgThree.InitialImage = ((System.Drawing.Image)(resources.GetObject("ImgThree.InitialImage")));
     this.ImgThree.Location = new System.Drawing.Point(387, 169);
     this.ImgThree.Name = "ImgThree";
     this.ImgThree.Size = new System.Drawing.Size(140, 140);
     this.ImgThree.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.ImgThree.TabIndex = 17;
     this.ImgThree.TabStop = false;
     //
     // ImgOne
     //
     this.ImgOne.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ImgOne.BackgroundImage")));
     this.ImgOne.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.ImgOne.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ImgOne.InitialImage = ((System.Drawing.Image)(resources.GetObject("ImgOne.InitialImage")));
     this.ImgOne.Location = new System.Drawing.Point(387, 23);
     this.ImgOne.Name = "ImgOne";
     this.ImgOne.Size = new System.Drawing.Size(140, 140);
     this.ImgOne.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.ImgOne.TabIndex = 17;
     this.ImgOne.TabStop = false;
     //
     // imgCameraView
     //
     this.imgCameraView.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.imgCameraView.Location = new System.Drawing.Point(27, 23);
     this.imgCameraView.Name = "imgCameraView";
     this.imgCameraView.Size = new System.Drawing.Size(335, 234);
     this.imgCameraView.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.imgCameraView.TabIndex = 16;
     this.imgCameraView.TabStop = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label1.Location = new System.Drawing.Point(28, 285);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(338, 72);
     this.label1.TabIndex = 15;
     this.label1.Text = "Capture photographs for candidates is handling here. User \r\nshould capture four i" +
         "mages from the camera view. \r\nNote : Incomplete numbers of photos are not suffic" +
         "ient \r\nfor candidate registration.\r\n";
     //
     // btnCapture4
     //
     this.btnCapture4.Location = new System.Drawing.Point(582, 330);
     this.btnCapture4.Name = "btnCapture4";
     this.btnCapture4.Size = new System.Drawing.Size(59, 24);
     this.btnCapture4.TabIndex = 14;
     this.btnCapture4.Text = "4";
     this.btnCapture4.ThemeName = "Office2010";
     this.btnCapture4.Click += new System.EventHandler(this.btnCapture4_Click);
     //
     // btnCapture3
     //
     this.btnCapture3.Location = new System.Drawing.Point(517, 330);
     this.btnCapture3.Name = "btnCapture3";
     this.btnCapture3.Size = new System.Drawing.Size(59, 24);
     this.btnCapture3.TabIndex = 14;
     this.btnCapture3.Text = "3";
     this.btnCapture3.ThemeName = "Office2010";
     this.btnCapture3.Click += new System.EventHandler(this.btnCapture3_Click);
     //
     // btnCapture2
     //
     this.btnCapture2.Location = new System.Drawing.Point(452, 330);
     this.btnCapture2.Name = "btnCapture2";
     this.btnCapture2.Size = new System.Drawing.Size(59, 24);
     this.btnCapture2.TabIndex = 14;
     this.btnCapture2.Text = "2";
     this.btnCapture2.ThemeName = "Office2010";
     this.btnCapture2.Click += new System.EventHandler(this.btnCapture2_Click);
     //
     // btnCapture1
     //
     this.btnCapture1.Location = new System.Drawing.Point(387, 330);
     this.btnCapture1.Name = "btnCapture1";
     this.btnCapture1.Size = new System.Drawing.Size(59, 24);
     this.btnCapture1.TabIndex = 14;
     this.btnCapture1.Text = "1";
     this.btnCapture1.ThemeName = "Office2010";
     this.btnCapture1.Click += new System.EventHandler(this.btnCapture1_Click);
     //
     // btnSaveImages
     //
     this.btnSaveImages.Location = new System.Drawing.Point(570, 418);
     this.btnSaveImages.Name = "btnSaveImages";
     this.btnSaveImages.Size = new System.Drawing.Size(85, 24);
     this.btnSaveImages.TabIndex = 18;
     this.btnSaveImages.Text = "&Save Images";
     this.btnSaveImages.ThemeName = "Office2010";
     this.btnSaveImages.Click += new System.EventHandler(this.btnSaveImages_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.ForeColor = System.Drawing.Color.Orange;
     this.label2.Location = new System.Drawing.Point(430, 26);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(75, 13);
     this.label2.TabIndex = 19;
     this.label2.Text = "Candidate ID :";
     //
     // lblCanddate
     //
     this.lblCanddate.AutoSize = true;
     this.lblCanddate.ForeColor = System.Drawing.Color.Blue;
     this.lblCanddate.Location = new System.Drawing.Point(512, 26);
     this.lblCanddate.Name = "lblCanddate";
     this.lblCanddate.Size = new System.Drawing.Size(35, 13);
     this.lblCanddate.TabIndex = 20;
     this.lblCanddate.Text = "label3";
     //
     // Photos
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.BorderColor = System.Drawing.Color.Silver;
     this.BorderWidth = 5;
     this.ClientSize = new System.Drawing.Size(797, 454);
     this.Controls.Add(this.lblCanddate);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.radLabel4);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.radGroupBox4);
     this.Controls.Add(this.btnSaveImages);
     this.Name = "Photos";
     this.Shape = this.roundRectShapeForm;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Photos";
     this.Load += new System.EventHandler(this.Photos_Load);
     this.Leave += new System.EventHandler(this.Photos_Leave);
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).EndInit();
     this.radGroupBox4.ResumeLayout(false);
     this.radGroupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ImgFour)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImgTwo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImgThree)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImgOne)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgCameraView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCapture4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCapture3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCapture2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCapture1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSaveImages)).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();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.cmbRegion = new Telerik.WinControls.UI.RadDropDownList();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.txtIncharge = new Telerik.WinControls.UI.RadTextBox();
     this.txtEmailId = new Telerik.WinControls.UI.RadTextBox();
     this.txtMobileNo = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
     this.txtPhoneNo = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.txtAddress = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.txtDealerName = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.radDesktopAlert1 = new Telerik.WinControls.UI.RadDesktopAlert(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbRegion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIncharge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmailId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMobileNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhoneNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDealerName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.cmbRegion);
     this.radGroupBox1.Controls.Add(this.btnCancel);
     this.radGroupBox1.Controls.Add(this.btnAdd);
     this.radGroupBox1.Controls.Add(this.txtIncharge);
     this.radGroupBox1.Controls.Add(this.txtEmailId);
     this.radGroupBox1.Controls.Add(this.txtMobileNo);
     this.radGroupBox1.Controls.Add(this.radLabel7);
     this.radGroupBox1.Controls.Add(this.radLabel6);
     this.radGroupBox1.Controls.Add(this.txtPhoneNo);
     this.radGroupBox1.Controls.Add(this.radLabel5);
     this.radGroupBox1.Controls.Add(this.txtAddress);
     this.radGroupBox1.Controls.Add(this.radLabel3);
     this.radGroupBox1.Controls.Add(this.txtDealerName);
     this.radGroupBox1.Controls.Add(this.radLabel2);
     this.radGroupBox1.Controls.Add(this.radLabel4);
     this.radGroupBox1.Controls.Add(this.radLabel1);
     this.radGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radGroupBox1.HeaderText = "";
     this.radGroupBox1.Location = new System.Drawing.Point(3, 3);
     this.radGroupBox1.Name = "radGroupBox1";
     this.radGroupBox1.Size = new System.Drawing.Size(273, 219);
     this.radGroupBox1.TabIndex = 0;
     this.radGroupBox1.ThemeName = "TelerikMetroBlue";
     //
     // cmbRegion
     //
     this.cmbRegion.AllowShowFocusCues = false;
     this.cmbRegion.AutoCompleteDisplayMember = null;
     this.cmbRegion.AutoCompleteValueMember = null;
     this.cmbRegion.DisplayMember = "1";
     this.cmbRegion.Location = new System.Drawing.Point(92, 135);
     this.cmbRegion.Name = "cmbRegion";
     this.cmbRegion.Size = new System.Drawing.Size(176, 20);
     this.cmbRegion.TabIndex = 0;
     this.cmbRegion.Text = "radDropDownList1";
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnCancel.Location = new System.Drawing.Point(185, 190);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(80, 24);
     this.btnCancel.TabIndex = 5;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnCancel.ThemeName = "TelerikMetroBlue";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnAdd.Location = new System.Drawing.Point(99, 190);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(80, 24);
     this.btnAdd.TabIndex = 4;
     this.btnAdd.Text = "&Add";
     this.btnAdd.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnAdd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnAdd.ThemeName = "TelerikMetroBlue";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // txtIncharge
     //
     this.txtIncharge.Location = new System.Drawing.Point(92, 161);
     this.txtIncharge.Name = "txtIncharge";
     this.txtIncharge.Size = new System.Drawing.Size(176, 20);
     this.txtIncharge.TabIndex = 3;
     this.txtIncharge.ThemeName = "Breeze";
     this.txtIncharge.Enter += new System.EventHandler(this.txtDealerName_Enter);
     this.txtIncharge.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtDealerName_KeyDown);
     //
     // txtEmailId
     //
     this.txtEmailId.Location = new System.Drawing.Point(92, 109);
     this.txtEmailId.Name = "txtEmailId";
     this.txtEmailId.Size = new System.Drawing.Size(176, 20);
     this.txtEmailId.TabIndex = 0;
     this.txtEmailId.ThemeName = "Breeze";
     this.txtEmailId.Enter += new System.EventHandler(this.txtDealerName_Enter);
     this.txtEmailId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtDealerName_KeyDown);
     //
     // txtMobileNo
     //
     this.txtMobileNo.Location = new System.Drawing.Point(92, 83);
     this.txtMobileNo.Name = "txtMobileNo";
     this.txtMobileNo.Size = new System.Drawing.Size(176, 20);
     this.txtMobileNo.TabIndex = 0;
     this.txtMobileNo.ThemeName = "Breeze";
     this.txtMobileNo.Enter += new System.EventHandler(this.txtDealerName_Enter);
     this.txtMobileNo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtDealerName_KeyDown);
     //
     // radLabel7
     //
     this.radLabel7.Location = new System.Drawing.Point(11, 133);
     this.radLabel7.Name = "radLabel7";
     this.radLabel7.Size = new System.Drawing.Size(41, 18);
     this.radLabel7.TabIndex = 2;
     this.radLabel7.Text = "Region";
     this.radLabel7.ThemeName = "ControlDefault";
     //
     // radLabel6
     //
     this.radLabel6.Location = new System.Drawing.Point(11, 109);
     this.radLabel6.Name = "radLabel6";
     this.radLabel6.Size = new System.Drawing.Size(47, 18);
     this.radLabel6.TabIndex = 2;
     this.radLabel6.Text = "Email ID";
     this.radLabel6.ThemeName = "ControlDefault";
     //
     // txtPhoneNo
     //
     this.txtPhoneNo.Location = new System.Drawing.Point(89, 57);
     this.txtPhoneNo.Name = "txtPhoneNo";
     this.txtPhoneNo.Size = new System.Drawing.Size(176, 20);
     this.txtPhoneNo.TabIndex = 0;
     this.txtPhoneNo.ThemeName = "Breeze";
     this.txtPhoneNo.Enter += new System.EventHandler(this.txtDealerName_Enter);
     this.txtPhoneNo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtDealerName_KeyDown);
     //
     // radLabel5
     //
     this.radLabel5.Location = new System.Drawing.Point(11, 83);
     this.radLabel5.Name = "radLabel5";
     this.radLabel5.Size = new System.Drawing.Size(62, 18);
     this.radLabel5.TabIndex = 2;
     this.radLabel5.Text = "Mobile No.";
     this.radLabel5.ThemeName = "ControlDefault";
     //
     // txtAddress
     //
     this.txtAddress.Location = new System.Drawing.Point(89, 31);
     this.txtAddress.Name = "txtAddress";
     this.txtAddress.Size = new System.Drawing.Size(176, 20);
     this.txtAddress.TabIndex = 0;
     this.txtAddress.ThemeName = "Breeze";
     this.txtAddress.Enter += new System.EventHandler(this.txtDealerName_Enter);
     this.txtAddress.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtDealerName_KeyDown);
     //
     // radLabel3
     //
     this.radLabel3.Location = new System.Drawing.Point(8, 57);
     this.radLabel3.Name = "radLabel3";
     this.radLabel3.Size = new System.Drawing.Size(59, 18);
     this.radLabel3.TabIndex = 2;
     this.radLabel3.Text = "Phone No.";
     this.radLabel3.ThemeName = "ControlDefault";
     //
     // txtDealerName
     //
     this.txtDealerName.Location = new System.Drawing.Point(89, 5);
     this.txtDealerName.Name = "txtDealerName";
     this.txtDealerName.Size = new System.Drawing.Size(176, 20);
     this.txtDealerName.TabIndex = 0;
     this.txtDealerName.ThemeName = "Breeze";
     this.txtDealerName.Enter += new System.EventHandler(this.txtDealerName_Enter);
     this.txtDealerName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtDealerName_KeyDown);
     //
     // radLabel2
     //
     this.radLabel2.Location = new System.Drawing.Point(8, 31);
     this.radLabel2.Name = "radLabel2";
     this.radLabel2.Size = new System.Drawing.Size(46, 18);
     this.radLabel2.TabIndex = 2;
     this.radLabel2.Text = "Address";
     this.radLabel2.ThemeName = "ControlDefault";
     //
     // radLabel4
     //
     this.radLabel4.Location = new System.Drawing.Point(11, 162);
     this.radLabel4.Name = "radLabel4";
     this.radLabel4.Size = new System.Drawing.Size(50, 18);
     this.radLabel4.TabIndex = 2;
     this.radLabel4.Text = "Incharge";
     //
     // radLabel1
     //
     this.radLabel1.Location = new System.Drawing.Point(8, 5);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.Size = new System.Drawing.Size(75, 18);
     this.radLabel1.TabIndex = 2;
     this.radLabel1.Text = "Dealer Name ";
     this.radLabel1.ThemeName = "ControlDefault";
     //
     // FrmDealerEntry
     //
     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(279, 225);
     this.Controls.Add(this.radGroupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmDealerEntry";
     this.Padding = new System.Windows.Forms.Padding(3);
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Dealer Entry";
     this.ThemeName = "TelerikMetroBlue";
     this.Load += new System.EventHandler(this.FrmDealerEntry_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbRegion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIncharge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmailId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMobileNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhoneNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDealerName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
Example #13
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Telerik.WinControls.UI.RadListDataItem radListDataItem1 = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem radListDataItem2 = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem radListDataItem3 = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem radListDataItem4 = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem radListDataItem5 = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem radListDataItem6 = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem radListDataItem7 = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem radListDataItem8 = new Telerik.WinControls.UI.RadListDataItem();
     Telerik.WinControls.UI.RadListDataItem radListDataItem9 = new Telerik.WinControls.UI.RadListDataItem();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.lblCreatedDate = new Telerik.WinControls.UI.RadDateTimePicker();
     this.lstTitle = new Telerik.WinControls.UI.RadDropDownList();
     this.lstUserLevels = new Telerik.WinControls.UI.RadDropDownList();
     this.radGroupBox4 = new Telerik.WinControls.UI.RadGroupBox();
     this.button4 = new System.Windows.Forms.Button();
     this.picUser = new System.Windows.Forms.PictureBox();
     this.radLabel18 = new Telerik.WinControls.UI.RadLabel();
     this.btnReset = new Telerik.WinControls.UI.RadButton();
     this.radButton2 = new Telerik.WinControls.UI.RadButton();
     this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.lblCreatedTime = new Telerik.WinControls.UI.RadLabel();
     this.lblUserID = new Telerik.WinControls.UI.RadLabel();
     this.radLabel17 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.txtPassword = new Telerik.WinControls.UI.RadTextBox();
     this.txtUsername = new Telerik.WinControls.UI.RadTextBox();
     this.txtLastName = new Telerik.WinControls.UI.RadTextBox();
     this.txtEmail = new Telerik.WinControls.UI.RadTextBox();
     this.txtConPassword = new Telerik.WinControls.UI.RadTextBox();
     this.txtFirstName = new Telerik.WinControls.UI.RadTextBox();
     this.usersBindingSource = new System.Windows.Forms.BindingSource(this.components);
      //   this.aEISDataSet = new AEIS.AEISDataSet();
     //this.usersTableAdapter = new AEIS.AEISDataSetTableAdapters.UsersTableAdapter();
      //   this.tableAdapterManager = new AEIS.AEISDataSetTableAdapters.TableAdapterManager();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lblCreatedDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstTitle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstUserLevels)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).BeginInit();
     this.radGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picUser)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnReset)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblCreatedTime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblUserID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUsername)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConPassword)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirstName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).BeginInit();
      //   ((System.ComponentModel.ISupportInitialize)(this.aEISDataSet)).BeginInit();
     this.SuspendLayout();
     //
     // radGroupBox1
     //
     this.radGroupBox1.BackColor = System.Drawing.Color.Transparent;
     this.radGroupBox1.Controls.Add(this.lblCreatedDate);
     this.radGroupBox1.Controls.Add(this.lstTitle);
     this.radGroupBox1.Controls.Add(this.lstUserLevels);
     this.radGroupBox1.Controls.Add(this.radGroupBox4);
     this.radGroupBox1.Controls.Add(this.radLabel18);
     this.radGroupBox1.Controls.Add(this.btnReset);
     this.radGroupBox1.Controls.Add(this.radButton2);
     this.radGroupBox1.Controls.Add(this.radLabel10);
     this.radGroupBox1.Controls.Add(this.radLabel4);
     this.radGroupBox1.Controls.Add(this.radLabel9);
     this.radGroupBox1.Controls.Add(this.radLabel8);
     this.radGroupBox1.Controls.Add(this.radLabel7);
     this.radGroupBox1.Controls.Add(this.radLabel6);
     this.radGroupBox1.Controls.Add(this.radLabel5);
     this.radGroupBox1.Controls.Add(this.radLabel3);
     this.radGroupBox1.Controls.Add(this.radLabel2);
     this.radGroupBox1.Controls.Add(this.lblCreatedTime);
     this.radGroupBox1.Controls.Add(this.lblUserID);
     this.radGroupBox1.Controls.Add(this.radLabel17);
     this.radGroupBox1.Controls.Add(this.radLabel1);
     this.radGroupBox1.Controls.Add(this.txtPassword);
     this.radGroupBox1.Controls.Add(this.txtUsername);
     this.radGroupBox1.Controls.Add(this.txtLastName);
     this.radGroupBox1.Controls.Add(this.txtEmail);
     this.radGroupBox1.Controls.Add(this.txtConPassword);
     this.radGroupBox1.Controls.Add(this.txtFirstName);
     this.radGroupBox1.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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 = "New User Registration Form";
     this.radGroupBox1.Location = new System.Drawing.Point(4, 4);
     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(784, 705);
     this.radGroupBox1.TabIndex = 8;
     this.radGroupBox1.Text = "New User Registration Form";
     this.radGroupBox1.ThemeName = "BreezeExtended";
     this.radGroupBox1.Click += new System.EventHandler(this.radGroupBox1_Click);
     //
     // lblCreatedDate
     //
     this.lblCreatedDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.lblCreatedDate.Location = new System.Drawing.Point(192, 349);
     this.lblCreatedDate.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.lblCreatedDate.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
     this.lblCreatedDate.Name = "lblCreatedDate";
     this.lblCreatedDate.NullDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
     this.lblCreatedDate.Size = new System.Drawing.Size(150, 20);
     this.lblCreatedDate.TabIndex = 27;
     this.lblCreatedDate.TabStop = false;
     this.lblCreatedDate.Text = "radDateTimePicker1";
     this.lblCreatedDate.Value = new System.DateTime(2013, 6, 1, 18, 4, 2, 209);
     //
     // lstTitle
     //
     this.lstTitle.FilterExpression = null;
     this.lstTitle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     radListDataItem1.Selected = true;
     radListDataItem1.Text = "Mr.";
     radListDataItem2.Text = "Mrs.";
     radListDataItem3.Text = "Master.";
     radListDataItem4.Text = "Miss.";
     radListDataItem5.Text = "Ms.";
     this.lstTitle.Items.Add(radListDataItem1);
     this.lstTitle.Items.Add(radListDataItem2);
     this.lstTitle.Items.Add(radListDataItem3);
     this.lstTitle.Items.Add(radListDataItem4);
     this.lstTitle.Items.Add(radListDataItem5);
     this.lstTitle.Location = new System.Drawing.Point(192, 164);
     this.lstTitle.Name = "lstTitle";
     this.lstTitle.Size = new System.Drawing.Size(83, 20);
     this.lstTitle.TabIndex = 9;
     this.lstTitle.Text = "Mr.";
     this.lstTitle.ThemeName = "BreezeExtended";
     //
     // lstUserLevels
     //
     this.lstUserLevels.FilterExpression = null;
     this.lstUserLevels.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     radListDataItem6.Selected = true;
     radListDataItem6.Text = "Higher Administrator";
     radListDataItem7.Text = "Administrator";
     radListDataItem8.Text = "Staff";
     radListDataItem9.Text = "Student";
     this.lstUserLevels.Items.Add(radListDataItem6);
     this.lstUserLevels.Items.Add(radListDataItem7);
     this.lstUserLevels.Items.Add(radListDataItem8);
     this.lstUserLevels.Items.Add(radListDataItem9);
     this.lstUserLevels.Location = new System.Drawing.Point(192, 191);
     this.lstUserLevels.Name = "lstUserLevels";
     this.lstUserLevels.Size = new System.Drawing.Size(233, 20);
     this.lstUserLevels.TabIndex = 9;
     this.lstUserLevels.Text = "Higher Administrator";
     this.lstUserLevels.ThemeName = "BreezeExtended";
     //
     // radGroupBox4
     //
     this.radGroupBox4.Controls.Add(this.button4);
     this.radGroupBox4.Controls.Add(this.picUser);
     this.radGroupBox4.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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 = "Photograph";
     this.radGroupBox4.Location = new System.Drawing.Point(524, 84);
     this.radGroupBox4.Name = "radGroupBox4";
     this.radGroupBox4.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     //
     //
     //
     this.radGroupBox4.RootElement.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     this.radGroupBox4.Size = new System.Drawing.Size(236, 196);
     this.radGroupBox4.TabIndex = 8;
     this.radGroupBox4.Text = "Photograph";
     this.radGroupBox4.ThemeName = "BreezeExtended";
     //
     // button4
     //
     this.button4.FlatAppearance.BorderSize = 0;
     this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button4.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button4.Location = new System.Drawing.Point(47, 172);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(141, 21);
     this.button4.TabIndex = 1;
     this.button4.Text = "Browse";
     this.button4.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.button4.UseVisualStyleBackColor = true;
     //
     // picUser
     //
     this.picUser.BackgroundImage = global::AEIS.Properties.Resources.avatar;
     this.picUser.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.picUser.Location = new System.Drawing.Point(11, 23);
     this.picUser.Name = "picUser";
     this.picUser.Size = new System.Drawing.Size(213, 146);
     this.picUser.TabIndex = 0;
     this.picUser.TabStop = false;
     //
     // radLabel18
     //
     this.radLabel18.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel18.ForeColor = System.Drawing.Color.DarkOrange;
     this.radLabel18.Location = new System.Drawing.Point(52, 34);
     this.radLabel18.Name = "radLabel18";
     //
     //
     //
     this.radLabel18.RootElement.ForeColor = System.Drawing.Color.DarkOrange;
     this.radLabel18.Size = new System.Drawing.Size(685, 17);
     this.radLabel18.TabIndex = 2;
     this.radLabel18.Text = "CAUSION : Please be kind to fill out the all field which given below. Keeping emp" +
         "ty field may occur for warning messages.";
     this.radLabel18.ThemeName = "Office2007Black";
     //
     // btnReset
     //
     this.btnReset.Font = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnReset.Location = new System.Drawing.Point(535, 373);
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(100, 25);
     this.btnReset.TabIndex = 5;
     this.btnReset.Text = "&Reset";
     this.btnReset.ThemeName = "Office2010";
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // radButton2
     //
     this.radButton2.Font = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton2.Location = new System.Drawing.Point(660, 373);
     this.radButton2.Name = "radButton2";
     this.radButton2.Size = new System.Drawing.Size(100, 25);
     this.radButton2.TabIndex = 5;
     this.radButton2.Text = "&Add User";
     this.radButton2.ThemeName = "Office2010";
     this.radButton2.Click += new System.EventHandler(this.radButton2_Click);
     //
     // radLabel10
     //
     this.radLabel10.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel10.Location = new System.Drawing.Point(26, 373);
     this.radLabel10.Name = "radLabel10";
     this.radLabel10.Size = new System.Drawing.Size(122, 17);
     this.radLabel10.TabIndex = 1;
     this.radLabel10.Text = "User Created Time  :";
     this.radLabel10.ThemeName = "Office2007Black";
     //
     // radLabel4
     //
     this.radLabel4.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.Location = new System.Drawing.Point(26, 350);
     this.radLabel4.Name = "radLabel4";
     this.radLabel4.Size = new System.Drawing.Size(120, 17);
     this.radLabel4.TabIndex = 1;
     this.radLabel4.Text = "User Created Date  :";
     this.radLabel4.ThemeName = "Office2007Black";
     //
     // radLabel9
     //
     this.radLabel9.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel9.Location = new System.Drawing.Point(26, 302);
     this.radLabel9.Name = "radLabel9";
     this.radLabel9.Size = new System.Drawing.Size(100, 17);
     this.radLabel9.TabIndex = 1;
     this.radLabel9.Text = "E-mail Address  :";
     this.radLabel9.ThemeName = "Office2007Black";
     //
     // radLabel8
     //
     this.radLabel8.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel8.Location = new System.Drawing.Point(26, 274);
     this.radLabel8.Name = "radLabel8";
     this.radLabel8.Size = new System.Drawing.Size(121, 17);
     this.radLabel8.TabIndex = 1;
     this.radLabel8.Text = "Confirm Password   :"******"Office2007Black";
     //
     // radLabel7
     //
     this.radLabel7.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel7.Location = new System.Drawing.Point(26, 246);
     this.radLabel7.Name = "radLabel7";
     this.radLabel7.Size = new System.Drawing.Size(69, 17);
     this.radLabel7.TabIndex = 1;
     this.radLabel7.Text = "Password  :"******"Office2007Black";
     //
     // radLabel6
     //
     this.radLabel6.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel6.Location = new System.Drawing.Point(26, 218);
     this.radLabel6.Name = "radLabel6";
     this.radLabel6.Size = new System.Drawing.Size(78, 17);
     this.radLabel6.TabIndex = 1;
     this.radLabel6.Text = "User Name  :";
     this.radLabel6.ThemeName = "Office2007Black";
     //
     // radLabel5
     //
     this.radLabel5.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel5.Location = new System.Drawing.Point(26, 191);
     this.radLabel5.Name = "radLabel5";
     this.radLabel5.Size = new System.Drawing.Size(74, 17);
     this.radLabel5.TabIndex = 1;
     this.radLabel5.Text = "User level  :";
     this.radLabel5.ThemeName = "Office2007Black";
     //
     // radLabel3
     //
     this.radLabel3.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel3.Location = new System.Drawing.Point(26, 163);
     this.radLabel3.Name = "radLabel3";
     this.radLabel3.Size = new System.Drawing.Size(41, 17);
     this.radLabel3.TabIndex = 1;
     this.radLabel3.Text = "Title :";
     this.radLabel3.ThemeName = "Office2007Black";
     //
     // radLabel2
     //
     this.radLabel2.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel2.Location = new System.Drawing.Point(26, 135);
     this.radLabel2.Name = "radLabel2";
     this.radLabel2.Size = new System.Drawing.Size(73, 17);
     this.radLabel2.TabIndex = 1;
     this.radLabel2.Text = "Last Name :";
     this.radLabel2.ThemeName = "Office2007Black";
     //
     // lblCreatedTime
     //
     this.lblCreatedTime.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCreatedTime.Location = new System.Drawing.Point(192, 373);
     this.lblCreatedTime.Name = "lblCreatedTime";
     this.lblCreatedTime.Size = new System.Drawing.Size(37, 17);
     this.lblCreatedTime.TabIndex = 1;
     this.lblCreatedTime.Text = "14:30";
     this.lblCreatedTime.ThemeName = "Office2007Black";
     //
     // lblUserID
     //
     this.lblUserID.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblUserID.Location = new System.Drawing.Point(192, 84);
     this.lblUserID.Name = "lblUserID";
     this.lblUserID.Size = new System.Drawing.Size(138, 17);
     this.lblUserID.TabIndex = 1;
     this.lblUserID.Text = "13/02/13/14/30/admin";
     this.lblUserID.ThemeName = "Office2007Black";
     //
     // radLabel17
     //
     this.radLabel17.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel17.Location = new System.Drawing.Point(26, 79);
     this.radLabel17.Name = "radLabel17";
     this.radLabel17.Size = new System.Drawing.Size(54, 17);
     this.radLabel17.TabIndex = 1;
     this.radLabel17.Text = "User ID :";
     this.radLabel17.ThemeName = "Office2007Black";
     //
     // radLabel1
     //
     this.radLabel1.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel1.Location = new System.Drawing.Point(26, 107);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.Size = new System.Drawing.Size(75, 17);
     this.radLabel1.TabIndex = 1;
     this.radLabel1.Text = "First Name :";
     this.radLabel1.ThemeName = "Office2007Black";
     //
     // txtPassword
     //
     this.txtPassword.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPassword.Location = new System.Drawing.Point(192, 246);
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.Size = new System.Drawing.Size(304, 22);
     this.txtPassword.TabIndex = 0;
     this.txtPassword.TabStop = false;
     this.txtPassword.ThemeName = "BreezeExtended";
     //
     // txtUsername
     //
     this.txtUsername.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtUsername.Location = new System.Drawing.Point(192, 218);
     this.txtUsername.Name = "txtUsername";
     this.txtUsername.Size = new System.Drawing.Size(304, 22);
     this.txtUsername.TabIndex = 0;
     this.txtUsername.TabStop = false;
     this.txtUsername.ThemeName = "BreezeExtended";
     //
     // txtLastName
     //
     this.txtLastName.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtLastName.Location = new System.Drawing.Point(192, 135);
     this.txtLastName.Name = "txtLastName";
     this.txtLastName.Size = new System.Drawing.Size(304, 22);
     this.txtLastName.TabIndex = 0;
     this.txtLastName.TabStop = false;
     this.txtLastName.ThemeName = "BreezeExtended";
     //
     // txtEmail
     //
     this.txtEmail.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtEmail.Location = new System.Drawing.Point(192, 302);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Size = new System.Drawing.Size(304, 22);
     this.txtEmail.TabIndex = 0;
     this.txtEmail.TabStop = false;
     this.txtEmail.ThemeName = "BreezeExtended";
     //
     // txtConPassword
     //
     this.txtConPassword.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtConPassword.Location = new System.Drawing.Point(192, 274);
     this.txtConPassword.Name = "txtConPassword";
     this.txtConPassword.Size = new System.Drawing.Size(304, 22);
     this.txtConPassword.TabIndex = 0;
     this.txtConPassword.TabStop = false;
     this.txtConPassword.ThemeName = "BreezeExtended";
     //
     // txtFirstName
     //
     this.txtFirstName.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFirstName.Location = new System.Drawing.Point(192, 107);
     this.txtFirstName.Name = "txtFirstName";
     this.txtFirstName.Size = new System.Drawing.Size(304, 22);
     this.txtFirstName.TabIndex = 0;
     this.txtFirstName.TabStop = false;
     this.txtFirstName.ThemeName = "BreezeExtended";
     //
     // usersBindingSource
     //
     this.usersBindingSource.DataMember = "Users";
     //this.usersBindingSource.DataSource = this.aEISDataSet;
     //
     // aEISDataSet
     //
     //this.aEISDataSet.DataSetName = "AEISDataSet";
     //this.aEISDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // usersTableAdapter
     //
     //this.usersTableAdapter.ClearBeforeFill = true;
     //
     // tableAdapterManager
     //
     //this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
     //this.tableAdapterManager.Login_TrackerTableAdapter = null;
     //this.tableAdapterManager.UpdateOrder = AEIS.AEISDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
     //this.tableAdapterManager.UsersTableAdapter = this.usersTableAdapter;
     //
     // UserAddNew
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.radGroupBox1);
     this.Name = "UserAddNew";
     this.Size = new System.Drawing.Size(807, 709);
     this.Load += new System.EventHandler(this.UserAddNew_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lblCreatedDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstTitle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstUserLevels)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).EndInit();
     this.radGroupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.picUser)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnReset)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblCreatedTime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblUserID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUsername)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConPassword)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirstName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).EndInit();
     //((System.ComponentModel.ISupportInitialize)(this.aEISDataSet)).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.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.Data.SortDescriptor sortDescriptor3 = new Telerik.WinControls.Data.SortDescriptor();
     this.gridViewTemplate1 = new Telerik.WinControls.UI.GridViewTemplate();
     this.panel_batary_stock = new System.Windows.Forms.Panel();
     this.chk_brandd = new Telerik.WinControls.UI.RadCheckBox();
     this.com_amp = new Telerik.WinControls.UI.RadComboBox();
     this.chk_amp = new Telerik.WinControls.UI.RadCheckBox();
     this.lbl_search_qty = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.lbl_tot_qty = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.chk_din_battery = new Telerik.WinControls.UI.RadCheckBox();
     this.radGridView5 = new Telerik.WinControls.UI.RadGridView();
     this.txt_search_size = new Telerik.WinControls.UI.RadTextBox();
     this.grdBattry = new Telerik.WinControls.UI.RadGridView();
     this.radButton4 = new Telerik.WinControls.UI.RadButton();
     this.radButton5 = new Telerik.WinControls.UI.RadButton();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.rad_MF = new System.Windows.Forms.RadioButton();
     this.rad_M = new System.Windows.Forms.RadioButton();
     this.com_search_brand = new Telerik.WinControls.UI.RadComboBox();
     this.chk_type = new Telerik.WinControls.UI.RadCheckBox();
     this.chk_size_batery = new Telerik.WinControls.UI.RadCheckBox();
     this.lblBilling = new Telerik.WinControls.UI.RadLabel();
     this.aquaTheme2 = new Telerik.WinControls.Themes.AquaTheme();
     this.DesktopAlertQty = new Telerik.WinControls.UI.RadDesktopAlert(this.components);
     this.breezeTheme1 = new Telerik.WinControls.Themes.BreezeTheme();
     this.miscellaneousTheme1 = new Telerik.WinControls.Themes.MiscellaneousTheme();
     this.radButton3 = new Telerik.WinControls.UI.RadButton();
     this.btnTyreSearch = new Telerik.WinControls.UI.RadButton();
     this.radButton7 = new Telerik.WinControls.UI.RadButton();
     this.panel_other_search = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.grdOther = new Telerik.WinControls.UI.RadGridView();
     this.btnRefreshOher = new Telerik.WinControls.UI.RadButton();
     this.btnSearch = new Telerik.WinControls.UI.RadButton();
     this.cmdSearchCat = new Telerik.WinControls.UI.RadComboBox();
     this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
     this.radGridView2 = new Telerik.WinControls.UI.RadGridView();
     this.radButton1 = new Telerik.WinControls.UI.RadButton();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.check_rear = new Telerik.WinControls.UI.RadCheckBox();
     this.check_front = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.panal_cycle = new Telerik.WinControls.UI.RadPanel();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.radio_non_trial = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_trial = new Telerik.WinControls.UI.RadRadioButton();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.com_brand = new Telerik.WinControls.UI.RadComboBox();
     this.chk_size = new Telerik.WinControls.UI.RadCheckBox();
     this.com_ply_rate = new Telerik.WinControls.UI.RadComboBox();
     this.chk_t_pattern = new Telerik.WinControls.UI.RadCheckBox();
     this.com_t_pattern = new Telerik.WinControls.UI.RadComboBox();
     this.chk_make = new Telerik.WinControls.UI.RadCheckBox();
     this.com_made = new Telerik.WinControls.UI.RadComboBox();
     this.chk_ply_rate = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.chk_brand = new Telerik.WinControls.UI.RadCheckBox();
     this.grp_tyre_type = new System.Windows.Forms.GroupBox();
     this.radio_canvas = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_radial = new Telerik.WinControls.UI.RadRadioButton();
     this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
     this.radGridView3 = new Telerik.WinControls.UI.RadGridView();
     this.txt_size = new Telerik.WinControls.UI.RadTextBox();
     this.radButton2 = new Telerik.WinControls.UI.RadButton();
     this.lbl_tot = new System.Windows.Forms.Label();
     this.chk_cycle_search = new Telerik.WinControls.UI.RadCheckBox();
     this.lbl_sh_qty = new System.Windows.Forms.Label();
     this.radThemeManager1 = new Telerik.WinControls.RadThemeManager();
     this.pnlTyre = new System.Windows.Forms.Panel();
     this.radButton6 = new Telerik.WinControls.UI.RadButton();
     this.grdBill = new Telerik.WinControls.UI.RadGridView();
     this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel11 = new Telerik.WinControls.UI.RadLabel();
     this.txtBillNo = new Telerik.WinControls.UI.RadTextBox();
     this.dtpBillingDate = new Telerik.WinControls.UI.RadDateTimePicker();
     this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel13 = new Telerik.WinControls.UI.RadLabel();
     this.txtBillNote = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel14 = new Telerik.WinControls.UI.RadLabel();
     this.txtSalesRef = new Telerik.WinControls.UI.RadTextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.btnClear = new Telerik.WinControls.UI.RadButton();
     this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
     this.radButton9 = new Telerik.WinControls.UI.RadButton();
     this.radButton8 = new Telerik.WinControls.UI.RadButton();
     this.pnlTube = new System.Windows.Forms.Panel();
     this.grdTubeSize = new Telerik.WinControls.UI.RadGridView();
     this.txtTubeSize = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.chk_din_tube = new Telerik.WinControls.UI.RadCheckBox();
     this.chkTubeBrand = new Telerik.WinControls.UI.RadCheckBox();
     this.comTubeMake = new Telerik.WinControls.UI.RadComboBox();
     this.chkTubeSize = new Telerik.WinControls.UI.RadCheckBox();
     this.chkTubeMake = new Telerik.WinControls.UI.RadCheckBox();
     this.chkTubeType = new Telerik.WinControls.UI.RadCheckBox();
     this.comTubeBrand = new Telerik.WinControls.UI.RadComboBox();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.rad_tube_c = new System.Windows.Forms.RadioButton();
     this.rad_tube_v = new System.Windows.Forms.RadioButton();
     this.label1 = new System.Windows.Forms.Label();
     this.radButton10 = new Telerik.WinControls.UI.RadButton();
     this.radButton11 = new Telerik.WinControls.UI.RadButton();
     this.txt_barcode = new System.Windows.Forms.TextBox();
     this.grdTubesearch = new Telerik.WinControls.UI.RadGridView();
     this.txtTotal = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.txtFinalTotal = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.txtDiscount = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).BeginInit();
     this.panel_batary_stock.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brandd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_amp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_amp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_battery)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_search_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdBattry)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton5)).BeginInit();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.com_search_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size_batery)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblBilling)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnTyreSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton7)).BeginInit();
     this.panel_other_search.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdOther)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRefreshOher)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdSearchCat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.check_rear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.check_front)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panal_cycle)).BeginInit();
     this.panal_cycle.SuspendLayout();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radio_non_trial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_trial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_t_pattern)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_t_pattern)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_make)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_made)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ply_rate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brand)).BeginInit();
     this.grp_tyre_type.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radio_canvas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_radial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
     this.radPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_cycle_search)).BeginInit();
     this.pnlTyre.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdBill)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBillNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpBillingDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBillNote)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSalesRef)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnClear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton8)).BeginInit();
     this.pnlTube.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubeSize)).BeginInit();
     this.panel2.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_tube)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeBrand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeMake)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeSize)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeMake)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeBrand)).BeginInit();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubesearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTotal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFinalTotal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // gridViewTemplate1
     //
     this.gridViewTemplate1.EnableAlternatingRowColor = true;
     //
     // panel_batary_stock
     //
     this.panel_batary_stock.BackColor = System.Drawing.Color.Transparent;
     this.panel_batary_stock.Controls.Add(this.chk_brandd);
     this.panel_batary_stock.Controls.Add(this.com_amp);
     this.panel_batary_stock.Controls.Add(this.chk_amp);
     this.panel_batary_stock.Controls.Add(this.lbl_search_qty);
     this.panel_batary_stock.Controls.Add(this.label6);
     this.panel_batary_stock.Controls.Add(this.lbl_tot_qty);
     this.panel_batary_stock.Controls.Add(this.label5);
     this.panel_batary_stock.Controls.Add(this.chk_din_battery);
     this.panel_batary_stock.Controls.Add(this.radGridView5);
     this.panel_batary_stock.Controls.Add(this.txt_search_size);
     this.panel_batary_stock.Controls.Add(this.grdBattry);
     this.panel_batary_stock.Controls.Add(this.radButton4);
     this.panel_batary_stock.Controls.Add(this.radButton5);
     this.panel_batary_stock.Controls.Add(this.groupBox3);
     this.panel_batary_stock.Controls.Add(this.com_search_brand);
     this.panel_batary_stock.Controls.Add(this.chk_type);
     this.panel_batary_stock.Controls.Add(this.chk_size_batery);
     this.panel_batary_stock.ForeColor = System.Drawing.Color.Black;
     this.panel_batary_stock.Location = new System.Drawing.Point(28, 58);
     this.panel_batary_stock.Name = "panel_batary_stock";
     this.panel_batary_stock.Size = new System.Drawing.Size(1031, 341);
     this.panel_batary_stock.TabIndex = 110;
     this.panel_batary_stock.Click += new System.EventHandler(this.panel_batary_stock_Click);
     //
     // chk_brandd
     //
     this.chk_brandd.BackColor = System.Drawing.Color.Transparent;
     this.chk_brandd.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_brandd.ForeColor = System.Drawing.Color.White;
     this.chk_brandd.Location = new System.Drawing.Point(4, 10);
     this.chk_brandd.Name = "chk_brandd";
     //
     //
     //
     this.chk_brandd.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_brandd.Size = new System.Drawing.Size(55, 21);
     this.chk_brandd.TabIndex = 79;
     this.chk_brandd.Text = "Brand";
     this.chk_brandd.Click += new System.EventHandler(this.chk_brandd_Click_1);
     //
     // com_amp
     //
     this.com_amp.Location = new System.Drawing.Point(64, 50);
     this.com_amp.Name = "com_amp";
     //
     //
     //
     this.com_amp.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_amp.Size = new System.Drawing.Size(136, 20);
     this.com_amp.TabIndex = 78;
     this.com_amp.TabStop = false;
     //
     // chk_amp
     //
     this.chk_amp.BackColor = System.Drawing.Color.Transparent;
     this.chk_amp.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_amp.ForeColor = System.Drawing.Color.White;
     this.chk_amp.Location = new System.Drawing.Point(3, 49);
     this.chk_amp.Name = "chk_amp";
     //
     //
     //
     this.chk_amp.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_amp.Size = new System.Drawing.Size(49, 21);
     this.chk_amp.TabIndex = 77;
     this.chk_amp.Text = "AMP";
     this.chk_amp.Click += new System.EventHandler(this.chk_amp_Click_1);
     //
     // lbl_search_qty
     //
     this.lbl_search_qty.AutoSize = true;
     this.lbl_search_qty.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_search_qty.ForeColor = System.Drawing.Color.White;
     this.lbl_search_qty.Location = new System.Drawing.Point(661, 353);
     this.lbl_search_qty.Name = "lbl_search_qty";
     this.lbl_search_qty.Size = new System.Drawing.Size(0, 13);
     this.lbl_search_qty.TabIndex = 76;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.White;
     this.label6.Location = new System.Drawing.Point(573, 353);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(94, 13);
     this.label6.TabIndex = 75;
     this.label6.Text = "Searched qty : ";
     //
     // lbl_tot_qty
     //
     this.lbl_tot_qty.AutoSize = true;
     this.lbl_tot_qty.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_tot_qty.ForeColor = System.Drawing.Color.White;
     this.lbl_tot_qty.Location = new System.Drawing.Point(85, 352);
     this.lbl_tot_qty.Name = "lbl_tot_qty";
     this.lbl_tot_qty.Size = new System.Drawing.Size(0, 13);
     this.lbl_tot_qty.TabIndex = 74;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.White;
     this.label5.Location = new System.Drawing.Point(10, 352);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(69, 13);
     this.label5.TabIndex = 73;
     this.label5.Text = "Total qty : ";
     //
     // chk_din_battery
     //
     this.chk_din_battery.BackColor = System.Drawing.Color.Transparent;
     this.chk_din_battery.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_din_battery.ForeColor = System.Drawing.Color.White;
     this.chk_din_battery.Location = new System.Drawing.Point(3, 83);
     this.chk_din_battery.Name = "chk_din_battery";
     //
     //
     //
     this.chk_din_battery.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_din_battery.Size = new System.Drawing.Size(44, 21);
     this.chk_din_battery.TabIndex = 65;
     this.chk_din_battery.Text = "DIN";
     this.chk_din_battery.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.chk_din_battery_ToggleStateChanged);
     this.chk_din_battery.Click += new System.EventHandler(this.chk_din_battery_Click);
     //
     // radGridView5
     //
     this.radGridView5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.radGridView5.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView5.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.radGridView5.ForeColor = System.Drawing.Color.Black;
     this.radGridView5.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView5.Location = new System.Drawing.Point(302, 33);
     //
     // radGridView5
     //
     this.radGridView5.MasterTemplate.AllowAddNewRow = false;
     this.radGridView5.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView5.MasterTemplate.EnableGrouping = false;
     this.radGridView5.MasterTemplate.ShowColumnHeaders = false;
     this.radGridView5.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView5.Name = "radGridView5";
     this.radGridView5.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView5.ReadOnly = true;
     this.radGridView5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView5.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView5.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView5.ShowGroupPanel = false;
     this.radGridView5.Size = new System.Drawing.Size(136, 72);
     this.radGridView5.TabIndex = 72;
     this.radGridView5.Text = "radGridView5";
     this.radGridView5.SelectionChanged += new System.EventHandler(this.radGridView5_SelectionChanged);
     this.radGridView5.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView5_CellClick);
     //
     // txt_search_size
     //
     this.txt_search_size.Location = new System.Drawing.Point(302, 12);
     this.txt_search_size.Name = "txt_search_size";
     this.txt_search_size.Size = new System.Drawing.Size(136, 20);
     this.txt_search_size.TabIndex = 71;
     this.txt_search_size.TabStop = false;
     this.txt_search_size.Click += new System.EventHandler(this.txt_search_size_Click);
     this.txt_search_size.Enter += new System.EventHandler(this.txt_search_size_Enter);
     //
     // grdBattry
     //
     this.grdBattry.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdBattry.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdBattry.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdBattry.ForeColor = System.Drawing.Color.Black;
     this.grdBattry.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdBattry.Location = new System.Drawing.Point(3, 111);
     //
     // grdBattry
     //
     this.grdBattry.MasterTemplate.AllowAddNewRow = false;
     this.grdBattry.MasterTemplate.AllowColumnChooser = false;
     this.grdBattry.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdBattry.Name = "grdBattry";
     this.grdBattry.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdBattry.ReadOnly = true;
     this.grdBattry.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdBattry.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdBattry.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdBattry.Size = new System.Drawing.Size(1015, 220);
     this.grdBattry.TabIndex = 70;
     this.grdBattry.Text = "grdBattry";
     this.grdBattry.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView4_CellClick);
     //
     // radButton4
     //
     this.radButton4.Location = new System.Drawing.Point(972, 89);
     this.radButton4.Name = "radButton4";
     this.radButton4.Size = new System.Drawing.Size(46, 15);
     this.radButton4.TabIndex = 69;
     this.radButton4.Text = "Refresh";
     this.radButton4.ThemeName = "Breeze";
     this.radButton4.Click += new System.EventHandler(this.radButton4_Click);
     //
     // radButton5
     //
     this.radButton5.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton5.Location = new System.Drawing.Point(553, 55);
     this.radButton5.Name = "radButton5";
     this.radButton5.Size = new System.Drawing.Size(115, 50);
     this.radButton5.TabIndex = 68;
     this.radButton5.Text = "Search";
     this.radButton5.ThemeName = "Breeze";
     this.radButton5.Click += new System.EventHandler(this.radButton5_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.rad_MF);
     this.groupBox3.Controls.Add(this.rad_M);
     this.groupBox3.Location = new System.Drawing.Point(553, 4);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(124, 27);
     this.groupBox3.TabIndex = 67;
     this.groupBox3.TabStop = false;
     //
     // rad_MF
     //
     this.rad_MF.AutoSize = true;
     this.rad_MF.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_MF.ForeColor = System.Drawing.Color.White;
     this.rad_MF.Location = new System.Drawing.Point(63, 8);
     this.rad_MF.Name = "rad_MF";
     this.rad_MF.Size = new System.Drawing.Size(42, 17);
     this.rad_MF.TabIndex = 1;
     this.rad_MF.TabStop = true;
     this.rad_MF.Text = "MF";
     this.rad_MF.UseVisualStyleBackColor = true;
     this.rad_MF.CheckedChanged += new System.EventHandler(this.rad_MF_CheckedChanged);
     //
     // rad_M
     //
     this.rad_M.AutoSize = true;
     this.rad_M.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_M.ForeColor = System.Drawing.Color.White;
     this.rad_M.Location = new System.Drawing.Point(6, 8);
     this.rad_M.Name = "rad_M";
     this.rad_M.Size = new System.Drawing.Size(35, 17);
     this.rad_M.TabIndex = 0;
     this.rad_M.TabStop = true;
     this.rad_M.Text = "M";
     this.rad_M.UseVisualStyleBackColor = true;
     this.rad_M.CheckedChanged += new System.EventHandler(this.rad_M_CheckedChanged);
     //
     // com_search_brand
     //
     this.com_search_brand.Location = new System.Drawing.Point(64, 10);
     this.com_search_brand.Name = "com_search_brand";
     //
     //
     //
     this.com_search_brand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_search_brand.Size = new System.Drawing.Size(136, 20);
     this.com_search_brand.TabIndex = 65;
     this.com_search_brand.TabStop = false;
     //
     // chk_type
     //
     this.chk_type.BackColor = System.Drawing.Color.Transparent;
     this.chk_type.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_type.ForeColor = System.Drawing.Color.White;
     this.chk_type.Location = new System.Drawing.Point(489, 11);
     this.chk_type.Name = "chk_type";
     //
     //
     //
     this.chk_type.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_type.Size = new System.Drawing.Size(49, 21);
     this.chk_type.TabIndex = 64;
     this.chk_type.Text = "Type";
     this.chk_type.Click += new System.EventHandler(this.chk_type_Click);
     //
     // chk_size_batery
     //
     this.chk_size_batery.BackColor = System.Drawing.Color.Transparent;
     this.chk_size_batery.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_size_batery.ForeColor = System.Drawing.Color.White;
     this.chk_size_batery.Location = new System.Drawing.Point(242, 10);
     this.chk_size_batery.Name = "chk_size_batery";
     //
     //
     //
     this.chk_size_batery.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_size_batery.Size = new System.Drawing.Size(44, 21);
     this.chk_size_batery.TabIndex = 62;
     this.chk_size_batery.Text = "Size";
     this.chk_size_batery.Click += new System.EventHandler(this.chk_size_batery_Click);
     //
     // lblBilling
     //
     this.lblBilling.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.lblBilling.Font = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Bold);
     this.lblBilling.ForeColor = System.Drawing.Color.Gold;
     this.lblBilling.Location = new System.Drawing.Point(28, 12);
     this.lblBilling.Name = "lblBilling";
     //
     //
     //
     this.lblBilling.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.lblBilling.Size = new System.Drawing.Size(94, 41);
     this.lblBilling.TabIndex = 68;
     this.lblBilling.Text = "Billing";
     //
     // DesktopAlertQty
     //
     this.DesktopAlertQty.ContentImage = null;
     this.DesktopAlertQty.PlaySound = false;
     this.DesktopAlertQty.SoundToPlay = null;
     this.DesktopAlertQty.ThemeName = null;
     //
     // radButton3
     //
     this.radButton3.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton3.Location = new System.Drawing.Point(676, 25);
     this.radButton3.Name = "radButton3";
     this.radButton3.Size = new System.Drawing.Size(120, 28);
     this.radButton3.TabIndex = 111;
     this.radButton3.Text = "Batery Search";
     this.radButton3.Click += new System.EventHandler(this.radButton3_Click_1);
     //
     // btnTyreSearch
     //
     this.btnTyreSearch.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnTyreSearch.Location = new System.Drawing.Point(550, 25);
     this.btnTyreSearch.Name = "btnTyreSearch";
     this.btnTyreSearch.Size = new System.Drawing.Size(120, 28);
     this.btnTyreSearch.TabIndex = 112;
     this.btnTyreSearch.Text = "Tyre Search";
     this.btnTyreSearch.Click += new System.EventHandler(this.radButton6_Click);
     //
     // radButton7
     //
     this.radButton7.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton7.Location = new System.Drawing.Point(928, 25);
     this.radButton7.Name = "radButton7";
     this.radButton7.Size = new System.Drawing.Size(120, 28);
     this.radButton7.TabIndex = 113;
     this.radButton7.Text = "Other Search";
     this.radButton7.Click += new System.EventHandler(this.radButton7_Click);
     //
     // panel_other_search
     //
     this.panel_other_search.BackColor = System.Drawing.Color.Transparent;
     this.panel_other_search.Controls.Add(this.label11);
     this.panel_other_search.Controls.Add(this.label7);
     this.panel_other_search.Controls.Add(this.grdOther);
     this.panel_other_search.Controls.Add(this.btnRefreshOher);
     this.panel_other_search.Controls.Add(this.btnSearch);
     this.panel_other_search.Controls.Add(this.cmdSearchCat);
     this.panel_other_search.Location = new System.Drawing.Point(28, 58);
     this.panel_other_search.Name = "panel_other_search";
     this.panel_other_search.Size = new System.Drawing.Size(1031, 341);
     this.panel_other_search.TabIndex = 81;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.White;
     this.label11.Location = new System.Drawing.Point(0, 18);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(84, 14);
     this.label11.TabIndex = 77;
     this.label11.Text = "Item Catagory";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.White;
     this.label7.Location = new System.Drawing.Point(647, 333);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(0, 13);
     this.label7.TabIndex = 76;
     //
     // grdOther
     //
     this.grdOther.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdOther.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdOther.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdOther.ForeColor = System.Drawing.Color.Black;
     this.grdOther.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdOther.Location = new System.Drawing.Point(3, 81);
     //
     // grdOther
     //
     this.grdOther.MasterTemplate.AllowAddNewRow = false;
     this.grdOther.MasterTemplate.AllowColumnChooser = false;
     this.grdOther.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdOther.Name = "grdOther";
     this.grdOther.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdOther.ReadOnly = true;
     this.grdOther.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdOther.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdOther.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdOther.Size = new System.Drawing.Size(1015, 217);
     this.grdOther.TabIndex = 70;
     this.grdOther.Text = "radGridView1";
     this.grdOther.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdOther_CellClick);
     //
     // btnRefreshOher
     //
     this.btnRefreshOher.Location = new System.Drawing.Point(650, 82);
     this.btnRefreshOher.Name = "btnRefreshOher";
     this.btnRefreshOher.Size = new System.Drawing.Size(48, 18);
     this.btnRefreshOher.TabIndex = 69;
     this.btnRefreshOher.Text = "Refresh";
     this.btnRefreshOher.ThemeName = "Breeze";
     //
     // btnSearch
     //
     this.btnSearch.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSearch.Location = new System.Drawing.Point(259, 16);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(115, 46);
     this.btnSearch.TabIndex = 68;
     this.btnSearch.Text = "Search";
     this.btnSearch.ThemeName = "Breeze";
     //
     // cmdSearchCat
     //
     this.cmdSearchCat.Location = new System.Drawing.Point(97, 16);
     this.cmdSearchCat.Name = "cmdSearchCat";
     //
     //
     //
     this.cmdSearchCat.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.cmdSearchCat.Size = new System.Drawing.Size(136, 20);
     this.cmdSearchCat.TabIndex = 65;
     this.cmdSearchCat.TabStop = false;
     //
     // radGridView1
     //
     this.radGridView1.ForeColor = System.Drawing.Color.Black;
     this.radGridView1.Location = new System.Drawing.Point(3, 172);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow = false;
     this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView1.Name = "radGridView1";
     this.radGridView1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.ReadOnly = true;
     //
     //
     //
     this.radGridView1.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView1.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.Size = new System.Drawing.Size(1015, 159);
     this.radGridView1.TabIndex = 56;
     this.radGridView1.Text = "radGridView1";
     this.radGridView1.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     //
     // radGridView2
     //
     this.radGridView2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     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(3, 172);
     //
     // radGridView2
     //
     this.radGridView2.MasterTemplate.AllowAddNewRow = false;
     this.radGridView2.MasterTemplate.AllowColumnChooser = false;
     this.radGridView2.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView2.Name = "radGridView2";
     this.radGridView2.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.ReadOnly = true;
     this.radGridView2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView2.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView2.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.Size = new System.Drawing.Size(1015, 159);
     this.radGridView2.TabIndex = 57;
     this.radGridView2.Text = "radGridView2";
     this.radGridView2.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView2_CellClick);
     //
     // radButton1
     //
     this.radButton1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton1.Location = new System.Drawing.Point(678, 114);
     this.radButton1.Name = "radButton1";
     this.radButton1.Size = new System.Drawing.Size(115, 50);
     this.radButton1.TabIndex = 29;
     this.radButton1.Text = "Search";
     this.radButton1.ThemeName = "Breeze";
     this.radButton1.Click += new System.EventHandler(this.radButton1_Click);
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.check_rear);
     this.groupBox1.Controls.Add(this.check_front);
     this.groupBox1.Location = new System.Drawing.Point(132, 2);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(156, 36);
     this.groupBox1.TabIndex = 54;
     this.groupBox1.TabStop = false;
     //
     // check_rear
     //
     this.check_rear.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.check_rear.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.check_rear.ForeColor = System.Drawing.Color.White;
     this.check_rear.Location = new System.Drawing.Point(82, 12);
     this.check_rear.Name = "check_rear";
     //
     //
     //
     this.check_rear.RootElement.ForeColor = System.Drawing.Color.White;
     this.check_rear.RootElement.StretchHorizontally = true;
     this.check_rear.RootElement.StretchVertically = true;
     this.check_rear.Size = new System.Drawing.Size(45, 19);
     this.check_rear.TabIndex = 65;
     this.check_rear.Text = "Rear";
     //
     // check_front
     //
     this.check_front.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.check_front.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.check_front.ForeColor = System.Drawing.Color.White;
     this.check_front.Location = new System.Drawing.Point(15, 12);
     this.check_front.Name = "check_front";
     //
     //
     //
     this.check_front.RootElement.ForeColor = System.Drawing.Color.White;
     this.check_front.RootElement.StretchHorizontally = true;
     this.check_front.RootElement.StretchVertically = true;
     this.check_front.Size = new System.Drawing.Size(49, 19);
     this.check_front.TabIndex = 64;
     this.check_front.Text = "Front";
     //
     // radLabel3
     //
     this.radLabel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.radLabel3.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel3.ForeColor = System.Drawing.Color.White;
     this.radLabel3.Location = new System.Drawing.Point(40, 48);
     this.radLabel3.Name = "radLabel3";
     //
     //
     //
     this.radLabel3.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel3.Size = new System.Drawing.Size(85, 21);
     this.radLabel3.TabIndex = 53;
     this.radLabel3.Text = "Trail/Nontrail";
     //
     // panal_cycle
     //
     this.panal_cycle.BackColor = System.Drawing.Color.Transparent;
     this.panal_cycle.Controls.Add(this.groupBox4);
     this.panal_cycle.Controls.Add(this.radLabel2);
     this.panal_cycle.Controls.Add(this.radLabel3);
     this.panal_cycle.Controls.Add(this.groupBox1);
     this.panal_cycle.Location = new System.Drawing.Point(678, 27);
     this.panal_cycle.Name = "panal_cycle";
     //
     //
     //
     this.panal_cycle.RootElement.Opacity = 5D;
     this.panal_cycle.Size = new System.Drawing.Size(340, 84);
     this.panal_cycle.TabIndex = 59;
     //
     // groupBox4
     //
     this.groupBox4.BackColor = System.Drawing.Color.Transparent;
     this.groupBox4.Controls.Add(this.radio_non_trial);
     this.groupBox4.Controls.Add(this.radio_trial);
     this.groupBox4.ForeColor = System.Drawing.Color.White;
     this.groupBox4.Location = new System.Drawing.Point(132, 38);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(156, 36);
     this.groupBox4.TabIndex = 117;
     this.groupBox4.TabStop = false;
     //
     // radio_non_trial
     //
     this.radio_non_trial.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.radio_non_trial.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radio_non_trial.ForeColor = System.Drawing.Color.White;
     this.radio_non_trial.Location = new System.Drawing.Point(83, 9);
     this.radio_non_trial.Name = "radio_non_trial";
     //
     //
     //
     this.radio_non_trial.RootElement.ForeColor = System.Drawing.Color.White;
     this.radio_non_trial.Size = new System.Drawing.Size(72, 23);
     this.radio_non_trial.TabIndex = 14;
     this.radio_non_trial.Text = "Nontrail";
     //
     // radio_trial
     //
     this.radio_trial.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.radio_trial.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radio_trial.ForeColor = System.Drawing.Color.White;
     this.radio_trial.Location = new System.Drawing.Point(16, 12);
     this.radio_trial.Name = "radio_trial";
     //
     //
     //
     this.radio_trial.RootElement.ForeColor = System.Drawing.Color.White;
     this.radio_trial.Size = new System.Drawing.Size(61, 18);
     this.radio_trial.TabIndex = 28;
     this.radio_trial.Text = "Trail";
     //
     // radLabel2
     //
     this.radLabel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.radLabel2.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel2.ForeColor = System.Drawing.Color.White;
     this.radLabel2.Location = new System.Drawing.Point(40, 15);
     this.radLabel2.Name = "radLabel2";
     //
     //
     //
     this.radLabel2.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel2.Size = new System.Drawing.Size(71, 21);
     this.radLabel2.TabIndex = 31;
     this.radLabel2.Text = "Front/Rear";
     //
     // com_brand
     //
     this.com_brand.Location = new System.Drawing.Point(95, 8);
     this.com_brand.Name = "com_brand";
     //
     //
     //
     this.com_brand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_brand.RootElement.StretchVertically = true;
     this.com_brand.Size = new System.Drawing.Size(158, 20);
     this.com_brand.TabIndex = 57;
     this.com_brand.TabStop = false;
     this.com_brand.SelectedIndexChanged += new System.EventHandler(this.com_brand_SelectedIndexChanged);
     //
     // chk_size
     //
     this.chk_size.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.chk_size.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_size.ForeColor = System.Drawing.Color.White;
     this.chk_size.Location = new System.Drawing.Point(20, 34);
     this.chk_size.Name = "chk_size";
     //
     //
     //
     this.chk_size.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_size.RootElement.StretchHorizontally = true;
     this.chk_size.RootElement.StretchVertically = true;
     this.chk_size.Size = new System.Drawing.Size(44, 21);
     this.chk_size.TabIndex = 19;
     this.chk_size.Text = "Size";
     this.chk_size.Click += new System.EventHandler(this.chk_size_Click);
     //
     // com_ply_rate
     //
     this.com_ply_rate.Location = new System.Drawing.Point(95, 61);
     this.com_ply_rate.Name = "com_ply_rate";
     //
     //
     //
     this.com_ply_rate.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_ply_rate.RootElement.StretchVertically = true;
     this.com_ply_rate.Size = new System.Drawing.Size(158, 20);
     this.com_ply_rate.TabIndex = 58;
     this.com_ply_rate.TabStop = false;
     //
     // chk_t_pattern
     //
     this.chk_t_pattern.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.chk_t_pattern.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_t_pattern.ForeColor = System.Drawing.Color.White;
     this.chk_t_pattern.Location = new System.Drawing.Point(292, 8);
     this.chk_t_pattern.Name = "chk_t_pattern";
     //
     //
     //
     this.chk_t_pattern.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_t_pattern.RootElement.StretchHorizontally = true;
     this.chk_t_pattern.RootElement.StretchVertically = true;
     this.chk_t_pattern.Size = new System.Drawing.Size(108, 21);
     this.chk_t_pattern.TabIndex = 26;
     this.chk_t_pattern.Text = "Thread Pattern";
     this.chk_t_pattern.Click += new System.EventHandler(this.chk_t_pattern_Click);
     //
     // com_t_pattern
     //
     this.com_t_pattern.Location = new System.Drawing.Point(414, 7);
     this.com_t_pattern.Name = "com_t_pattern";
     //
     //
     //
     this.com_t_pattern.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_t_pattern.RootElement.StretchVertically = true;
     this.com_t_pattern.Size = new System.Drawing.Size(155, 20);
     this.com_t_pattern.TabIndex = 58;
     this.com_t_pattern.TabStop = false;
     //
     // chk_make
     //
     this.chk_make.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.chk_make.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_make.ForeColor = System.Drawing.Color.White;
     this.chk_make.Location = new System.Drawing.Point(293, 33);
     this.chk_make.Name = "chk_make";
     //
     //
     //
     this.chk_make.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_make.RootElement.StretchHorizontally = true;
     this.chk_make.RootElement.StretchVertically = true;
     this.chk_make.Size = new System.Drawing.Size(53, 21);
     this.chk_make.TabIndex = 24;
     this.chk_make.Text = "Make";
     this.chk_make.Click += new System.EventHandler(this.chk_make_Click);
     //
     // com_made
     //
     this.com_made.Location = new System.Drawing.Point(414, 33);
     this.com_made.Name = "com_made";
     //
     //
     //
     this.com_made.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_made.RootElement.StretchVertically = true;
     this.com_made.Size = new System.Drawing.Size(155, 20);
     this.com_made.TabIndex = 58;
     this.com_made.TabStop = false;
     //
     // chk_ply_rate
     //
     this.chk_ply_rate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.chk_ply_rate.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_ply_rate.ForeColor = System.Drawing.Color.White;
     this.chk_ply_rate.Location = new System.Drawing.Point(20, 61);
     this.chk_ply_rate.Name = "chk_ply_rate";
     //
     //
     //
     this.chk_ply_rate.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_ply_rate.RootElement.StretchHorizontally = true;
     this.chk_ply_rate.RootElement.StretchVertically = true;
     this.chk_ply_rate.Size = new System.Drawing.Size(68, 21);
     this.chk_ply_rate.TabIndex = 22;
     this.chk_ply_rate.Text = "Ply Rate";
     this.chk_ply_rate.Click += new System.EventHandler(this.chk_ply_rate_Click);
     //
     // radLabel4
     //
     this.radLabel4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.radLabel4.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.ForeColor = System.Drawing.Color.White;
     this.radLabel4.Location = new System.Drawing.Point(293, 67);
     this.radLabel4.Name = "radLabel4";
     //
     //
     //
     this.radLabel4.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel4.Size = new System.Drawing.Size(64, 21);
     this.radLabel4.TabIndex = 61;
     this.radLabel4.Text = "Tyre Type";
     //
     // chk_brand
     //
     this.chk_brand.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.chk_brand.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_brand.ForeColor = System.Drawing.Color.White;
     this.chk_brand.Location = new System.Drawing.Point(21, 7);
     this.chk_brand.Name = "chk_brand";
     //
     //
     //
     this.chk_brand.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_brand.RootElement.StretchHorizontally = true;
     this.chk_brand.RootElement.StretchVertically = true;
     this.chk_brand.Size = new System.Drawing.Size(55, 21);
     this.chk_brand.TabIndex = 20;
     this.chk_brand.Text = "Brand";
     this.chk_brand.Click += new System.EventHandler(this.radCheckBox2_Click);
     //
     // grp_tyre_type
     //
     this.grp_tyre_type.BackColor = System.Drawing.Color.Transparent;
     this.grp_tyre_type.Controls.Add(this.radio_canvas);
     this.grp_tyre_type.Controls.Add(this.radio_radial);
     this.grp_tyre_type.Location = new System.Drawing.Point(413, 58);
     this.grp_tyre_type.Name = "grp_tyre_type";
     this.grp_tyre_type.Size = new System.Drawing.Size(156, 36);
     this.grp_tyre_type.TabIndex = 62;
     this.grp_tyre_type.TabStop = false;
     //
     // radio_canvas
     //
     this.radio_canvas.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.radio_canvas.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radio_canvas.ForeColor = System.Drawing.Color.White;
     this.radio_canvas.Location = new System.Drawing.Point(77, 9);
     this.radio_canvas.Name = "radio_canvas";
     //
     //
     //
     this.radio_canvas.RootElement.ForeColor = System.Drawing.Color.White;
     this.radio_canvas.Size = new System.Drawing.Size(63, 23);
     this.radio_canvas.TabIndex = 14;
     this.radio_canvas.Text = "Canvas";
     //
     // radio_radial
     //
     this.radio_radial.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.radio_radial.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radio_radial.ForeColor = System.Drawing.Color.White;
     this.radio_radial.Location = new System.Drawing.Point(10, 10);
     this.radio_radial.Name = "radio_radial";
     //
     //
     //
     this.radio_radial.RootElement.ForeColor = System.Drawing.Color.White;
     this.radio_radial.Size = new System.Drawing.Size(61, 18);
     this.radio_radial.TabIndex = 28;
     this.radio_radial.Text = "Radial";
     //
     // radPanel2
     //
     this.radPanel2.BackColor = System.Drawing.Color.Transparent;
     this.radPanel2.Controls.Add(this.radGridView3);
     this.radPanel2.Controls.Add(this.grp_tyre_type);
     this.radPanel2.Controls.Add(this.txt_size);
     this.radPanel2.Controls.Add(this.chk_brand);
     this.radPanel2.Controls.Add(this.radLabel4);
     this.radPanel2.Controls.Add(this.chk_ply_rate);
     this.radPanel2.Controls.Add(this.com_made);
     this.radPanel2.Controls.Add(this.chk_make);
     this.radPanel2.Controls.Add(this.com_t_pattern);
     this.radPanel2.Controls.Add(this.chk_t_pattern);
     this.radPanel2.Controls.Add(this.com_ply_rate);
     this.radPanel2.Controls.Add(this.chk_size);
     this.radPanel2.Controls.Add(this.com_brand);
     this.radPanel2.ForeColor = System.Drawing.Color.White;
     this.radPanel2.Location = new System.Drawing.Point(3, 20);
     this.radPanel2.Name = "radPanel2";
     //
     //
     //
     this.radPanel2.RootElement.ForeColor = System.Drawing.Color.White;
     this.radPanel2.Size = new System.Drawing.Size(601, 142);
     this.radPanel2.TabIndex = 60;
     this.radPanel2.Click += new System.EventHandler(this.radPanel2_Click);
     //
     // radGridView3
     //
     this.radGridView3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     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(95, 55);
     //
     // radGridView3
     //
     this.radGridView3.MasterTemplate.AllowAddNewRow = false;
     this.radGridView3.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView3.MasterTemplate.EnableGrouping = false;
     this.radGridView3.MasterTemplate.ShowColumnHeaders = false;
     this.radGridView3.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView3.Name = "radGridView3";
     this.radGridView3.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView3.ReadOnly = true;
     this.radGridView3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView3.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView3.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView3.ShowGroupPanel = false;
     this.radGridView3.Size = new System.Drawing.Size(158, 81);
     this.radGridView3.TabIndex = 65;
     this.radGridView3.Text = "radGridView3";
     this.radGridView3.SelectionChanged += new System.EventHandler(this.radGridView3_SelectionChanged);
     this.radGridView3.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView3_CellClick);
     //
     // txt_size
     //
     this.txt_size.Location = new System.Drawing.Point(95, 35);
     this.txt_size.Name = "txt_size";
     this.txt_size.Size = new System.Drawing.Size(158, 20);
     this.txt_size.TabIndex = 64;
     this.txt_size.TabStop = false;
     this.txt_size.TextChanged += new System.EventHandler(this.txt_size_TextChanged);
     this.txt_size.Click += new System.EventHandler(this.txt_size_Click);
     this.txt_size.Enter += new System.EventHandler(this.txt_size_Enter);
     //
     // radButton2
     //
     this.radButton2.Location = new System.Drawing.Point(972, 149);
     this.radButton2.Name = "radButton2";
     this.radButton2.Size = new System.Drawing.Size(46, 15);
     this.radButton2.TabIndex = 30;
     this.radButton2.Tag = " ";
     this.radButton2.Text = "Refresh";
     this.radButton2.ThemeName = "Breeze";
     this.radButton2.Click += new System.EventHandler(this.radButton2_Click);
     //
     // lbl_tot
     //
     this.lbl_tot.AutoSize = true;
     this.lbl_tot.BackColor = System.Drawing.Color.Transparent;
     this.lbl_tot.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.lbl_tot.ForeColor = System.Drawing.Color.White;
     this.lbl_tot.Location = new System.Drawing.Point(885, 43);
     this.lbl_tot.Name = "lbl_tot";
     this.lbl_tot.Size = new System.Drawing.Size(0, 13);
     this.lbl_tot.TabIndex = 65;
     //
     // chk_cycle_search
     //
     this.chk_cycle_search.BackColor = System.Drawing.Color.Transparent;
     this.chk_cycle_search.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.chk_cycle_search.ForeColor = System.Drawing.Color.White;
     this.chk_cycle_search.Location = new System.Drawing.Point(678, 5);
     this.chk_cycle_search.Name = "chk_cycle_search";
     //
     //
     //
     this.chk_cycle_search.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_cycle_search.Size = new System.Drawing.Size(85, 18);
     this.chk_cycle_search.TabIndex = 61;
     this.chk_cycle_search.Text = "Motor Cycle";
     this.chk_cycle_search.Click += new System.EventHandler(this.chk_cycle_search_Click);
     //
     // lbl_sh_qty
     //
     this.lbl_sh_qty.AutoSize = true;
     this.lbl_sh_qty.BackColor = System.Drawing.Color.Transparent;
     this.lbl_sh_qty.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.lbl_sh_qty.ForeColor = System.Drawing.Color.White;
     this.lbl_sh_qty.Location = new System.Drawing.Point(784, 150);
     this.lbl_sh_qty.Name = "lbl_sh_qty";
     this.lbl_sh_qty.Size = new System.Drawing.Size(0, 13);
     this.lbl_sh_qty.TabIndex = 67;
     //
     // pnlTyre
     //
     this.pnlTyre.BackColor = System.Drawing.Color.Transparent;
     this.pnlTyre.Controls.Add(this.radPanel2);
     this.pnlTyre.Controls.Add(this.chk_cycle_search);
     this.pnlTyre.Controls.Add(this.radButton1);
     this.pnlTyre.Controls.Add(this.panal_cycle);
     this.pnlTyre.Controls.Add(this.radButton2);
     this.pnlTyre.Controls.Add(this.lbl_tot);
     this.pnlTyre.Controls.Add(this.lbl_sh_qty);
     this.pnlTyre.Controls.Add(this.radGridView1);
     this.pnlTyre.Controls.Add(this.radGridView2);
     this.pnlTyre.Location = new System.Drawing.Point(28, 58);
     this.pnlTyre.Name = "pnlTyre";
     this.pnlTyre.Size = new System.Drawing.Size(1031, 341);
     this.pnlTyre.TabIndex = 114;
     //
     // radButton6
     //
     this.radButton6.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton6.Location = new System.Drawing.Point(802, 25);
     this.radButton6.Name = "radButton6";
     this.radButton6.Size = new System.Drawing.Size(120, 28);
     this.radButton6.TabIndex = 114;
     this.radButton6.Text = "Tube Search";
     this.radButton6.Click += new System.EventHandler(this.radButton6_Click_1);
     //
     // grdBill
     //
     this.grdBill.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdBill.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdBill.EnableHotTracking = false;
     this.grdBill.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdBill.ForeColor = System.Drawing.Color.Black;
     this.grdBill.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdBill.Location = new System.Drawing.Point(347, 445);
     //
     // grdBill
     //
     this.grdBill.MasterTemplate.AllowAddNewRow = false;
     this.grdBill.MasterTemplate.AllowColumnReorder = false;
     this.grdBill.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn13.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn13.HeaderText = "Item No";
     gridViewTextBoxColumn13.Name = "itemNo";
     gridViewTextBoxColumn13.ReadOnly = true;
     gridViewTextBoxColumn13.Width = 93;
     gridViewTextBoxColumn14.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn14.HeaderText = "Item Name";
     gridViewTextBoxColumn14.Name = "brand";
     gridViewTextBoxColumn14.ReadOnly = true;
     gridViewTextBoxColumn14.Width = 208;
     gridViewTextBoxColumn15.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn15.HeaderText = "Quntity";
     gridViewTextBoxColumn15.Name = "Qty";
     gridViewTextBoxColumn15.ReadOnly = true;
     gridViewTextBoxColumn15.Width = 93;
     gridViewTextBoxColumn16.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn16.HeaderText = "Unit Price";
     gridViewTextBoxColumn16.Name = "unitPrice";
     gridViewTextBoxColumn16.ReadOnly = true;
     gridViewTextBoxColumn16.Width = 115;
     gridViewTextBoxColumn17.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn17.HeaderText = "Price";
     gridViewTextBoxColumn17.Name = "Price";
     gridViewTextBoxColumn17.ReadOnly = true;
     gridViewTextBoxColumn17.Width = 104;
     gridViewTextBoxColumn18.HeaderText = "Item Cat";
     gridViewTextBoxColumn18.Name = "itemCat";
     gridViewTextBoxColumn18.Width = 69;
     this.grdBill.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn13,
     gridViewTextBoxColumn14,
     gridViewTextBoxColumn15,
     gridViewTextBoxColumn16,
     gridViewTextBoxColumn17,
     gridViewTextBoxColumn18});
     this.grdBill.MasterTemplate.EnableGrouping = false;
     this.grdBill.MasterTemplate.EnableSorting = false;
     sortDescriptor3.PropertyName = "itemNo";
     this.grdBill.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
     sortDescriptor3});
     this.grdBill.Name = "grdBill";
     this.grdBill.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdBill.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdBill.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdBill.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdBill.ShowGroupPanel = false;
     this.grdBill.Size = new System.Drawing.Size(699, 146);
     this.grdBill.TabIndex = 73;
     this.grdBill.Text = "radGridView4";
     this.grdBill.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdBill_CellDoubleClick);
     //
     // radLabel8
     //
     this.radLabel8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.radLabel8.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel8.ForeColor = System.Drawing.Color.Gold;
     this.radLabel8.Location = new System.Drawing.Point(347, 406);
     this.radLabel8.Name = "radLabel8";
     //
     //
     //
     this.radLabel8.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.radLabel8.Size = new System.Drawing.Size(38, 30);
     this.radLabel8.TabIndex = 82;
     this.radLabel8.Text = "Bill";
     //
     // radLabel10
     //
     this.radLabel10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.radLabel10.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel10.ForeColor = System.Drawing.Color.Gold;
     this.radLabel10.Location = new System.Drawing.Point(28, 406);
     this.radLabel10.Name = "radLabel10";
     //
     //
     //
     this.radLabel10.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.radLabel10.Size = new System.Drawing.Size(106, 30);
     this.radLabel10.TabIndex = 83;
     this.radLabel10.Text = "Bill Details";
     //
     // radLabel11
     //
     this.radLabel11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.radLabel11.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel11.ForeColor = System.Drawing.Color.White;
     this.radLabel11.Location = new System.Drawing.Point(28, 443);
     this.radLabel11.Name = "radLabel11";
     //
     //
     //
     this.radLabel11.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel11.Size = new System.Drawing.Size(46, 21);
     this.radLabel11.TabIndex = 98;
     this.radLabel11.Text = "Bill No";
     //
     // txtBillNo
     //
     this.txtBillNo.Location = new System.Drawing.Point(141, 445);
     this.txtBillNo.Name = "txtBillNo";
     this.txtBillNo.Size = new System.Drawing.Size(192, 20);
     this.txtBillNo.TabIndex = 100;
     this.txtBillNo.TabStop = false;
     //
     // dtpBillingDate
     //
     this.dtpBillingDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpBillingDate.Location = new System.Drawing.Point(141, 473);
     this.dtpBillingDate.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.dtpBillingDate.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
     this.dtpBillingDate.Name = "dtpBillingDate";
     this.dtpBillingDate.NullDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
     this.dtpBillingDate.Size = new System.Drawing.Size(192, 20);
     this.dtpBillingDate.TabIndex = 102;
     this.dtpBillingDate.TabStop = false;
     this.dtpBillingDate.Text = "dtpInvoiceDate";
     this.dtpBillingDate.Value = new System.DateTime(2011, 12, 22, 21, 23, 53, 749);
     //
     // radLabel12
     //
     this.radLabel12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.radLabel12.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel12.ForeColor = System.Drawing.Color.White;
     this.radLabel12.Location = new System.Drawing.Point(28, 472);
     this.radLabel12.Name = "radLabel12";
     //
     //
     //
     this.radLabel12.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel12.Size = new System.Drawing.Size(56, 21);
     this.radLabel12.TabIndex = 99;
     this.radLabel12.Text = "Bill Date";
     //
     // radLabel13
     //
     this.radLabel13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.radLabel13.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel13.ForeColor = System.Drawing.Color.White;
     this.radLabel13.Location = new System.Drawing.Point(28, 500);
     this.radLabel13.Name = "radLabel13";
     //
     //
     //
     this.radLabel13.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel13.Size = new System.Drawing.Size(57, 21);
     this.radLabel13.TabIndex = 103;
     this.radLabel13.Text = "Bill Note";
     //
     // txtBillNote
     //
     this.txtBillNote.Location = new System.Drawing.Point(141, 500);
     this.txtBillNote.Multiline = true;
     this.txtBillNote.Name = "txtBillNote";
     //
     //
     //
     this.txtBillNote.RootElement.StretchVertically = true;
     this.txtBillNote.Size = new System.Drawing.Size(192, 65);
     this.txtBillNote.TabIndex = 104;
     this.txtBillNote.TabStop = false;
     //
     // radLabel14
     //
     this.radLabel14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.radLabel14.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel14.ForeColor = System.Drawing.Color.White;
     this.radLabel14.Location = new System.Drawing.Point(28, 570);
     this.radLabel14.Name = "radLabel14";
     //
     //
     //
     this.radLabel14.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel14.Size = new System.Drawing.Size(62, 21);
     this.radLabel14.TabIndex = 105;
     this.radLabel14.Text = "Sales Ref.";
     //
     // txtSalesRef
     //
     this.txtSalesRef.Location = new System.Drawing.Point(141, 571);
     this.txtSalesRef.Name = "txtSalesRef";
     this.txtSalesRef.Size = new System.Drawing.Size(192, 20);
     this.txtSalesRef.TabIndex = 101;
     this.txtSalesRef.TabStop = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(585, 768);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(0, 13);
     this.label4.TabIndex = 106;
     //
     // btnAdd
     //
     this.btnAdd.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAdd.Location = new System.Drawing.Point(705, 600);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(104, 37);
     this.btnAdd.TabIndex = 107;
     this.btnAdd.Text = "Add";
     this.btnAdd.ThemeName = "Breeze";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnClear
     //
     this.btnClear.Location = new System.Drawing.Point(347, 600);
     this.btnClear.Name = "btnClear";
     this.btnClear.Size = new System.Drawing.Size(104, 37);
     this.btnClear.TabIndex = 108;
     this.btnClear.Text = "Clear";
     this.btnClear.ThemeName = "Breeze";
     this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
     //
     // radPanel1
     //
     this.radPanel1.BackColor = System.Drawing.Color.LemonChiffon;
     this.radPanel1.Location = new System.Drawing.Point(28, 402);
     this.radPanel1.Name = "radPanel1";
     this.radPanel1.Size = new System.Drawing.Size(1031, 2);
     this.radPanel1.TabIndex = 115;
     //
     // radButton9
     //
     this.radButton9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.radButton9.Font = new System.Drawing.Font("Verdana", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton9.ForeColor = System.Drawing.Color.Crimson;
     this.radButton9.Location = new System.Drawing.Point(1065, 6);
     this.radButton9.Name = "radButton9";
     //
     //
     //
     this.radButton9.RootElement.ForeColor = System.Drawing.Color.Crimson;
     this.radButton9.Size = new System.Drawing.Size(27, 29);
     this.radButton9.TabIndex = 121;
     this.radButton9.Text = "X";
     this.radButton9.ThemeName = "Breeze";
     this.radButton9.Click += new System.EventHandler(this.radButton9_Click);
     ((Telerik.WinControls.UI.RadButtonElement)(this.radButton9.GetChildAt(0))).Text = "X";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton9.GetChildAt(0).GetChildAt(0))).BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(166)))), ((int)(((byte)(91)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton9.GetChildAt(0).GetChildAt(0))).BackColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(109)))), ((int)(((byte)(60)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton9.GetChildAt(0).GetChildAt(0))).BackColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(29)))), ((int)(((byte)(29)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton9.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(220)))), ((int)(((byte)(159)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton9.GetChildAt(0).GetChildAt(2))).ForeColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton9.GetChildAt(0).GetChildAt(2))).ForeColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton9.GetChildAt(0).GetChildAt(2))).ForeColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton9.GetChildAt(0).GetChildAt(2))).InnerColor = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(254)))), ((int)(((byte)(143)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton9.GetChildAt(0).GetChildAt(2))).InnerColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(247)))), ((int)(((byte)(91)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton9.GetChildAt(0).GetChildAt(2))).InnerColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(236)))), ((int)(((byte)(78)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton9.GetChildAt(0).GetChildAt(2))).InnerColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(242)))), ((int)(((byte)(14)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton9.GetChildAt(0).GetChildAt(2))).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     //
     // radButton8
     //
     this.radButton8.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton8.Location = new System.Drawing.Point(466, 601);
     this.radButton8.Name = "radButton8";
     this.radButton8.Size = new System.Drawing.Size(104, 37);
     this.radButton8.TabIndex = 108;
     this.radButton8.Text = "Print Bill";
     this.radButton8.ThemeName = "Breeze";
     //
     // pnlTube
     //
     this.pnlTube.BackColor = System.Drawing.Color.Transparent;
     this.pnlTube.Controls.Add(this.panel2);
     this.pnlTube.Controls.Add(this.label1);
     this.pnlTube.Controls.Add(this.radButton10);
     this.pnlTube.Controls.Add(this.radButton11);
     this.pnlTube.Controls.Add(this.txt_barcode);
     this.pnlTube.Controls.Add(this.grdTubesearch);
     this.pnlTube.Location = new System.Drawing.Point(28, 58);
     this.pnlTube.Name = "pnlTube";
     this.pnlTube.Size = new System.Drawing.Size(1031, 341);
     this.pnlTube.TabIndex = 122;
     //
     // grdTubeSize
     //
     this.grdTubeSize.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdTubeSize.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdTubeSize.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdTubeSize.ForeColor = System.Drawing.Color.Black;
     this.grdTubeSize.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdTubeSize.Location = new System.Drawing.Point(364, 37);
     //
     // grdTubeSize
     //
     this.grdTubeSize.MasterTemplate.AllowAddNewRow = false;
     this.grdTubeSize.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdTubeSize.MasterTemplate.EnableGrouping = false;
     this.grdTubeSize.MasterTemplate.ShowColumnHeaders = false;
     this.grdTubeSize.MasterTemplate.ShowRowHeaderColumn = false;
     this.grdTubeSize.Name = "grdTubeSize";
     this.grdTubeSize.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubeSize.ReadOnly = true;
     this.grdTubeSize.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdTubeSize.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdTubeSize.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubeSize.ShowGroupPanel = false;
     this.grdTubeSize.Size = new System.Drawing.Size(187, 72);
     this.grdTubeSize.TabIndex = 82;
     this.grdTubeSize.Text = "radGridView4";
     this.grdTubeSize.SelectionChanged += new System.EventHandler(this.grdTubeSize_SelectionChanged);
     this.grdTubeSize.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdTubeSize_CellClick);
     //
     // txtTubeSize
     //
     this.txtTubeSize.Enabled = false;
     this.txtTubeSize.Location = new System.Drawing.Point(364, 16);
     this.txtTubeSize.Name = "txtTubeSize";
     this.txtTubeSize.Size = new System.Drawing.Size(187, 20);
     this.txtTubeSize.TabIndex = 80;
     this.txtTubeSize.Click += new System.EventHandler(this.txtTubeSize_Click);
     this.txtTubeSize.TextChanged += new System.EventHandler(this.txtTubeSize_TextChanged);
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.grdTubeSize);
     this.panel2.Controls.Add(this.txtTubeSize);
     this.panel2.Controls.Add(this.groupBox2);
     this.panel2.Controls.Add(this.chkTubeBrand);
     this.panel2.Controls.Add(this.comTubeMake);
     this.panel2.Controls.Add(this.chkTubeSize);
     this.panel2.Controls.Add(this.chkTubeMake);
     this.panel2.Controls.Add(this.chkTubeType);
     this.panel2.Controls.Add(this.comTubeBrand);
     this.panel2.Controls.Add(this.groupBox5);
     this.panel2.Location = new System.Drawing.Point(5, 45);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(858, 121);
     this.panel2.TabIndex = 88;
     this.panel2.Click += new System.EventHandler(this.panel2_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.chk_din_tube);
     this.groupBox2.Location = new System.Drawing.Point(744, 88);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(79, 37);
     this.groupBox2.TabIndex = 79;
     this.groupBox2.TabStop = false;
     this.groupBox2.Visible = false;
     //
     // chk_din_tube
     //
     this.chk_din_tube.BackColor = System.Drawing.Color.Transparent;
     this.chk_din_tube.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_din_tube.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_din_tube.Location = new System.Drawing.Point(19, 15);
     this.chk_din_tube.Name = "chk_din_tube";
     //
     //
     //
     this.chk_din_tube.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_din_tube.Size = new System.Drawing.Size(44, 21);
     this.chk_din_tube.TabIndex = 65;
     this.chk_din_tube.Text = "DIN";
     //
     // chkTubeBrand
     //
     this.chkTubeBrand.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeBrand.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeBrand.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeBrand.Location = new System.Drawing.Point(15, 15);
     this.chkTubeBrand.Name = "chkTubeBrand";
     //
     //
     //
     this.chkTubeBrand.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeBrand.Size = new System.Drawing.Size(55, 21);
     this.chkTubeBrand.TabIndex = 63;
     this.chkTubeBrand.Text = "Brand";
     this.chkTubeBrand.Click += new System.EventHandler(this.chkTubeBrand_Click);
     //
     // comTubeMake
     //
     this.comTubeMake.Enabled = false;
     this.comTubeMake.Location = new System.Drawing.Point(76, 56);
     this.comTubeMake.Name = "comTubeMake";
     //
     //
     //
     this.comTubeMake.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.comTubeMake.Size = new System.Drawing.Size(181, 20);
     this.comTubeMake.TabIndex = 78;
     this.comTubeMake.TabStop = false;
     //
     // chkTubeSize
     //
     this.chkTubeSize.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeSize.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeSize.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeSize.Location = new System.Drawing.Point(315, 15);
     this.chkTubeSize.Name = "chkTubeSize";
     //
     //
     //
     this.chkTubeSize.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeSize.Size = new System.Drawing.Size(44, 21);
     this.chkTubeSize.TabIndex = 62;
     this.chkTubeSize.Text = "Size";
     this.chkTubeSize.Click += new System.EventHandler(this.chkTubeSize_Click);
     //
     // chkTubeMake
     //
     this.chkTubeMake.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeMake.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeMake.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeMake.Location = new System.Drawing.Point(15, 55);
     this.chkTubeMake.Name = "chkTubeMake";
     //
     //
     //
     this.chkTubeMake.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeMake.Size = new System.Drawing.Size(53, 21);
     this.chkTubeMake.TabIndex = 77;
     this.chkTubeMake.Text = "Make";
     this.chkTubeMake.Click += new System.EventHandler(this.chkTubeMake_Click);
     //
     // chkTubeType
     //
     this.chkTubeType.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeType.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeType.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeType.Location = new System.Drawing.Point(611, 15);
     this.chkTubeType.Name = "chkTubeType";
     //
     //
     //
     this.chkTubeType.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeType.Size = new System.Drawing.Size(49, 21);
     this.chkTubeType.TabIndex = 64;
     this.chkTubeType.Text = "Type";
     this.chkTubeType.Click += new System.EventHandler(this.chkTubeType_Click);
     //
     // comTubeBrand
     //
     this.comTubeBrand.Enabled = false;
     this.comTubeBrand.Location = new System.Drawing.Point(76, 16);
     this.comTubeBrand.Name = "comTubeBrand";
     //
     //
     //
     this.comTubeBrand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.comTubeBrand.Size = new System.Drawing.Size(181, 20);
     this.comTubeBrand.TabIndex = 65;
     this.comTubeBrand.TabStop = false;
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.rad_tube_c);
     this.groupBox5.Controls.Add(this.rad_tube_v);
     this.groupBox5.Enabled = false;
     this.groupBox5.Location = new System.Drawing.Point(675, 8);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(148, 27);
     this.groupBox5.TabIndex = 67;
     this.groupBox5.TabStop = false;
     //
     // rad_tube_c
     //
     this.rad_tube_c.AutoSize = true;
     this.rad_tube_c.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_tube_c.ForeColor = System.Drawing.Color.White;
     this.rad_tube_c.Location = new System.Drawing.Point(80, 8);
     this.rad_tube_c.Name = "rad_tube_c";
     this.rad_tube_c.Size = new System.Drawing.Size(56, 17);
     this.rad_tube_c.TabIndex = 1;
     this.rad_tube_c.TabStop = true;
     this.rad_tube_c.Text = "Cycle";
     this.rad_tube_c.UseVisualStyleBackColor = true;
     this.rad_tube_c.CheckedChanged += new System.EventHandler(this.rad_tube_c_CheckedChanged);
     //
     // rad_tube_v
     //
     this.rad_tube_v.AutoSize = true;
     this.rad_tube_v.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_tube_v.ForeColor = System.Drawing.Color.White;
     this.rad_tube_v.Location = new System.Drawing.Point(6, 8);
     this.rad_tube_v.Name = "rad_tube_v";
     this.rad_tube_v.Size = new System.Drawing.Size(67, 17);
     this.rad_tube_v.TabIndex = 0;
     this.rad_tube_v.TabStop = true;
     this.rad_tube_v.Text = "Vehicle";
     this.rad_tube_v.UseVisualStyleBackColor = true;
     this.rad_tube_v.CheckedChanged += new System.EventHandler(this.rad_tube_v_CheckedChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Lime;
     this.label1.Location = new System.Drawing.Point(5, 13);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(66, 13);
     this.label1.TabIndex = 87;
     this.label1.Text = "BARCODE";
     //
     // radButton10
     //
     this.radButton10.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton10.Location = new System.Drawing.Point(918, 35);
     this.radButton10.Name = "radButton10";
     this.radButton10.Size = new System.Drawing.Size(107, 52);
     this.radButton10.TabIndex = 84;
     this.radButton10.Text = "Search";
     this.radButton10.ThemeName = "Breeze";
     this.radButton10.Click += new System.EventHandler(this.radButton10_Click_1);
     //
     // radButton11
     //
     this.radButton11.Location = new System.Drawing.Point(966, 152);
     this.radButton11.Name = "radButton11";
     this.radButton11.Size = new System.Drawing.Size(57, 20);
     this.radButton11.TabIndex = 85;
     this.radButton11.Text = "Refresh";
     this.radButton11.ThemeName = "Breeze";
     this.radButton11.Click += new System.EventHandler(this.radButton11_Click);
     //
     // txt_barcode
     //
     this.txt_barcode.Location = new System.Drawing.Point(82, 10);
     this.txt_barcode.Name = "txt_barcode";
     this.txt_barcode.Size = new System.Drawing.Size(181, 20);
     this.txt_barcode.TabIndex = 89;
     this.txt_barcode.TextChanged += new System.EventHandler(this.txt_barcode_TextChanged);
     //
     // grdTubesearch
     //
     this.grdTubesearch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdTubesearch.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdTubesearch.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdTubesearch.ForeColor = System.Drawing.Color.Black;
     this.grdTubesearch.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdTubesearch.Location = new System.Drawing.Point(5, 177);
     //
     // grdTubesearch
     //
     this.grdTubesearch.MasterTemplate.AllowAddNewRow = false;
     this.grdTubesearch.MasterTemplate.AllowColumnChooser = false;
     this.grdTubesearch.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdTubesearch.Name = "grdTubesearch";
     this.grdTubesearch.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubesearch.ReadOnly = true;
     this.grdTubesearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdTubesearch.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdTubesearch.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubesearch.Size = new System.Drawing.Size(1018, 154);
     this.grdTubesearch.TabIndex = 86;
     this.grdTubesearch.Text = "radGridView6";
     this.grdTubesearch.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdTubesearch_CellClick);
     //
     // txtTotal
     //
     this.txtTotal.Location = new System.Drawing.Point(909, 593);
     this.txtTotal.Name = "txtTotal";
     this.txtTotal.Size = new System.Drawing.Size(137, 20);
     this.txtTotal.TabIndex = 82;
     this.txtTotal.TabStop = false;
     this.txtTotal.Text = "0";
     this.txtTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtTotal.TextChanged += new System.EventHandler(this.txtTotal_TextChanged);
     //
     // radLabel1
     //
     this.radLabel1.BackColor = System.Drawing.Color.Transparent;
     this.radLabel1.ForeColor = System.Drawing.Color.White;
     this.radLabel1.Location = new System.Drawing.Point(815, 597);
     this.radLabel1.Name = "radLabel1";
     //
     //
     //
     this.radLabel1.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel1.Size = new System.Drawing.Size(58, 18);
     this.radLabel1.TabIndex = 81;
     this.radLabel1.Text = "Total Price";
     //
     // txtFinalTotal
     //
     this.txtFinalTotal.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFinalTotal.ForeColor = System.Drawing.Color.DodgerBlue;
     this.txtFinalTotal.Location = new System.Drawing.Point(909, 637);
     this.txtFinalTotal.Name = "txtFinalTotal";
     //
     //
     //
     this.txtFinalTotal.RootElement.ForeColor = System.Drawing.Color.DodgerBlue;
     this.txtFinalTotal.Size = new System.Drawing.Size(137, 27);
     this.txtFinalTotal.TabIndex = 85;
     this.txtFinalTotal.TabStop = false;
     this.txtFinalTotal.Text = "0";
     this.txtFinalTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // radLabel5
     //
     this.radLabel5.BackColor = System.Drawing.Color.Transparent;
     this.radLabel5.ForeColor = System.Drawing.Color.White;
     this.radLabel5.Location = new System.Drawing.Point(816, 646);
     this.radLabel5.Name = "radLabel5";
     //
     //
     //
     this.radLabel5.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel5.Size = new System.Drawing.Size(57, 18);
     this.radLabel5.TabIndex = 83;
     this.radLabel5.Text = "Final Total";
     //
     // txtDiscount
     //
     this.txtDiscount.Location = new System.Drawing.Point(909, 615);
     this.txtDiscount.Name = "txtDiscount";
     this.txtDiscount.Size = new System.Drawing.Size(137, 20);
     this.txtDiscount.TabIndex = 86;
     this.txtDiscount.TabStop = false;
     this.txtDiscount.Text = "0";
     this.txtDiscount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtDiscount.TextChanged += new System.EventHandler(this.txtDiscount_TextChanged);
     //
     // radLabel6
     //
     this.radLabel6.BackColor = System.Drawing.Color.Transparent;
     this.radLabel6.ForeColor = System.Drawing.Color.White;
     this.radLabel6.Location = new System.Drawing.Point(816, 617);
     this.radLabel6.Name = "radLabel6";
     //
     //
     //
     this.radLabel6.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel6.Size = new System.Drawing.Size(50, 18);
     this.radLabel6.TabIndex = 84;
     this.radLabel6.Text = "Discount";
     //
     // Billing
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(1239, 788);
     this.Controls.Add(this.txtTotal);
     this.Controls.Add(this.radButton7);
     this.Controls.Add(this.radLabel1);
     this.Controls.Add(this.txtFinalTotal);
     this.Controls.Add(this.radButton8);
     this.Controls.Add(this.radButton9);
     this.Controls.Add(this.radLabel5);
     this.Controls.Add(this.radPanel1);
     this.Controls.Add(this.radButton6);
     this.Controls.Add(this.txtDiscount);
     this.Controls.Add(this.btnClear);
     this.Controls.Add(this.btnTyreSearch);
     this.Controls.Add(this.radLabel6);
     this.Controls.Add(this.radButton3);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.txtSalesRef);
     this.Controls.Add(this.radLabel14);
     this.Controls.Add(this.txtBillNote);
     this.Controls.Add(this.radLabel13);
     this.Controls.Add(this.radLabel12);
     this.Controls.Add(this.dtpBillingDate);
     this.Controls.Add(this.txtBillNo);
     this.Controls.Add(this.radLabel11);
     this.Controls.Add(this.radLabel10);
     this.Controls.Add(this.radLabel8);
     this.Controls.Add(this.grdBill);
     this.Controls.Add(this.lblBilling);
     this.Controls.Add(this.pnlTyre);
     this.Controls.Add(this.panel_batary_stock);
     this.Controls.Add(this.panel_other_search);
     this.Controls.Add(this.pnlTube);
     this.ForeColor = System.Drawing.Color.White;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "Billing";
     this.Opacity = 0.95D;
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.RootElement.ForeColor = System.Drawing.Color.White;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Billing";
     this.ThemeName = "ControlDefault";
     this.Load += new System.EventHandler(this.AdvancedSearch_Load);
     this.EnabledChanged += new System.EventHandler(this.AdvancedSearch_EnabledChanged);
     this.Click += new System.EventHandler(this.AdvancedSearch_Click);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.AdvancedSearch_MouseDown);
     this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.AdvancedSearch_MouseMove);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).EndInit();
     this.panel_batary_stock.ResumeLayout(false);
     this.panel_batary_stock.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brandd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_amp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_amp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_battery)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_search_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdBattry)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton5)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.com_search_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size_batery)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblBilling)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnTyreSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton7)).EndInit();
     this.panel_other_search.ResumeLayout(false);
     this.panel_other_search.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdOther)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRefreshOher)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdSearchCat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.check_rear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.check_front)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panal_cycle)).EndInit();
     this.panal_cycle.ResumeLayout(false);
     this.panal_cycle.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radio_non_trial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_trial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_t_pattern)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_t_pattern)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_make)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_made)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ply_rate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brand)).EndInit();
     this.grp_tyre_type.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radio_canvas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_radial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
     this.radPanel2.ResumeLayout(false);
     this.radPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_cycle_search)).EndInit();
     this.pnlTyre.ResumeLayout(false);
     this.pnlTyre.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdBill)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBillNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpBillingDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBillNote)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSalesRef)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnClear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton8)).EndInit();
     this.pnlTube.ResumeLayout(false);
     this.pnlTube.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubeSize)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_tube)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeBrand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeMake)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeSize)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeMake)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeBrand)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubesearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTotal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFinalTotal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmRun));
     this.lbTieuDe = new DevComponents.DotNetBar.Controls.ReflectionLabel();
     this._txtScript = new System.Windows.Forms.TextBox();
     this._cboData = new System.Windows.Forms.ComboBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.radRadioFireFox = new Telerik.WinControls.UI.RadRadioButton();
     this.radRadioIE = new Telerik.WinControls.UI.RadRadioButton();
     this.radRadioChrome = new Telerik.WinControls.UI.RadRadioButton();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.btRun = new Telerik.WinControls.UI.RadButton();
     this.btCancel = new Telerik.WinControls.UI.RadButton();
     this.radThemeManager1 = new Telerik.WinControls.RadThemeManager();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radRadioFireFox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radRadioIE)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radRadioChrome)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btRun)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // lbTieuDe
     //
     //
     //
     //
     this.lbTieuDe.BackgroundStyle.Class = "";
     this.lbTieuDe.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbTieuDe.Location = new System.Drawing.Point(103, 13);
     this.lbTieuDe.Margin = new System.Windows.Forms.Padding(4);
     this.lbTieuDe.Name = "lbTieuDe";
     this.lbTieuDe.Size = new System.Drawing.Size(360, 68);
     this.lbTieuDe.TabIndex = 40;
     this.lbTieuDe.Text = "<b><font size=\'26\' color=\'#00B7EF\'>Run Test Automation\r\n</font></b>";
     //
     // _txtScript
     //
     this._txtScript.BackColor = System.Drawing.SystemColors.Window;
     this._txtScript.Enabled = false;
     this._txtScript.Location = new System.Drawing.Point(208, 121);
     this._txtScript.Name = "_txtScript";
     this._txtScript.Size = new System.Drawing.Size(139, 20);
     this._txtScript.TabIndex = 45;
     //
     // _cboData
     //
     this._cboData.FormattingEnabled = true;
     this._cboData.Items.AddRange(new object[] {
     "None"});
     this._cboData.Location = new System.Drawing.Point(208, 160);
     this._cboData.Name = "_cboData";
     this._cboData.Size = new System.Drawing.Size(139, 21);
     this._cboData.TabIndex = 47;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.radRadioFireFox);
     this.groupBox1.Controls.Add(this.radRadioIE);
     this.groupBox1.Controls.Add(this.radRadioChrome);
     this.groupBox1.Location = new System.Drawing.Point(364, 111);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(199, 132);
     this.groupBox1.TabIndex = 49;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Choose Browser";
     //
     // radRadioFireFox
     //
     this.radRadioFireFox.Image = ((System.Drawing.Image)(resources.GetObject("radRadioFireFox.Image")));
     this.radRadioFireFox.Location = new System.Drawing.Point(21, 54);
     this.radRadioFireFox.Name = "radRadioFireFox";
     this.radRadioFireFox.Size = new System.Drawing.Size(130, 36);
     this.radRadioFireFox.TabIndex = 1;
     this.radRadioFireFox.Text = "FireFox";
     this.radRadioFireFox.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.radRadioFireFox.ThemeName = "Desert";
     //
     // radRadioIE
     //
     this.radRadioIE.Image = ((System.Drawing.Image)(resources.GetObject("radRadioIE.Image")));
     this.radRadioIE.Location = new System.Drawing.Point(21, 83);
     this.radRadioIE.Name = "radRadioIE";
     this.radRadioIE.Size = new System.Drawing.Size(172, 43);
     this.radRadioIE.TabIndex = 1;
     this.radRadioIE.Text = "Internet Explore";
     this.radRadioIE.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.radRadioIE.ThemeName = "Desert";
     //
     // radRadioChrome
     //
     this.radRadioChrome.Image = ((System.Drawing.Image)(resources.GetObject("radRadioChrome.Image")));
     this.radRadioChrome.ImageScalingSize = new System.Drawing.Size(10, 10);
     this.radRadioChrome.Location = new System.Drawing.Point(21, 16);
     this.radRadioChrome.Name = "radRadioChrome";
     this.radRadioChrome.Size = new System.Drawing.Size(130, 34);
     this.radRadioChrome.TabIndex = 0;
     this.radRadioChrome.TabStop = true;
     this.radRadioChrome.Text = "Chrome";
     this.radRadioChrome.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.radRadioChrome.ThemeName = "Desert";
     this.radRadioChrome.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;
     //
     // pictureBox1
     //
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(12, 111);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(116, 110);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 50;
     this.pictureBox1.TabStop = false;
     //
     // btRun
     //
     this.btRun.BackColor = System.Drawing.Color.Transparent;
     this.btRun.Image = ((System.Drawing.Image)(resources.GetObject("btRun.Image")));
     this.btRun.Location = new System.Drawing.Point(174, 213);
     this.btRun.Name = "btRun";
     this.btRun.Size = new System.Drawing.Size(75, 24);
     this.btRun.TabIndex = 51;
     this.btRun.Text = "Run";
     this.btRun.ThemeName = "Aqua";
     this.btRun.Click += new System.EventHandler(this.btRun_Click);
     //
     // btCancel
     //
     this.btCancel.Image = ((System.Drawing.Image)(resources.GetObject("btCancel.Image")));
     this.btCancel.Location = new System.Drawing.Point(265, 213);
     this.btCancel.Name = "btCancel";
     this.btCancel.Size = new System.Drawing.Size(82, 24);
     this.btCancel.TabIndex = 52;
     this.btCancel.Text = "Cancel";
     this.btCancel.ThemeName = "Aqua";
     this.btCancel.Click += new System.EventHandler(this.btCancel_Click);
     //
     // radLabel1
     //
     this.radLabel1.Location = new System.Drawing.Point(152, 121);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.Size = new System.Drawing.Size(35, 18);
     this.radLabel1.TabIndex = 53;
     this.radLabel1.Text = "Script";
     this.radLabel1.ThemeName = "ControlDefault";
     //
     // radLabel2
     //
     this.radLabel2.Location = new System.Drawing.Point(152, 160);
     this.radLabel2.Name = "radLabel2";
     this.radLabel2.Size = new System.Drawing.Size(33, 17);
     this.radLabel2.TabIndex = 54;
     this.radLabel2.Text = "Data";
     this.radLabel2.ThemeName = "Aqua";
     //
     // frmRun
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.ClientSize = new System.Drawing.Size(582, 260);
     this.Controls.Add(this.radLabel2);
     this.Controls.Add(this.radLabel1);
     this.Controls.Add(this.btCancel);
     this.Controls.Add(this.btRun);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this._cboData);
     this.Controls.Add(this._txtScript);
     this.Controls.Add(this.lbTieuDe);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmRun";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Run";
     this.ThemeName = "Aqua";
     this.Load += new System.EventHandler(this.frmRun_Load);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radRadioFireFox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radRadioIE)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radRadioChrome)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btRun)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).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.GridViewImageColumn gridViewImageColumn1 = new Telerik.WinControls.UI.GridViewImageColumn();
     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();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.grdList = new Telerik.WinControls.UI.RadGridView();
     this.lblRunning = new System.Windows.Forms.Label();
     this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
     this.lblAccount = new Telerik.WinControls.UI.RadLabel();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.btnSend = new Telerik.WinControls.UI.RadButton();
     this.lblSmsNum = new Telerik.WinControls.UI.RadLabel();
     this.lblCharNum = new Telerik.WinControls.UI.RadLabel();
     this.lblLang = new Telerik.WinControls.UI.RadLabel();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.txtText = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblAccount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSend)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblSmsNum)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblCharNum)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblLang)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtText)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.radGroupBox1.Controls.Add(this.radLabel5);
     this.radGroupBox1.Controls.Add(this.grdList);
     this.radGroupBox1.Controls.Add(this.lblRunning);
     this.radGroupBox1.Controls.Add(this.radLabel6);
     this.radGroupBox1.Controls.Add(this.lblAccount);
     this.radGroupBox1.Controls.Add(this.radLabel4);
     this.radGroupBox1.Controls.Add(this.btnSend);
     this.radGroupBox1.Controls.Add(this.lblSmsNum);
     this.radGroupBox1.Controls.Add(this.lblCharNum);
     this.radGroupBox1.Controls.Add(this.lblLang);
     this.radGroupBox1.Controls.Add(this.radLabel3);
     this.radGroupBox1.Controls.Add(this.radLabel2);
     this.radGroupBox1.Controls.Add(this.radLabel1);
     this.radGroupBox1.Controls.Add(this.txtText);
     this.radGroupBox1.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radGroupBox1.FooterImageIndex = -1;
     this.radGroupBox1.FooterImageKey = "";
     this.radGroupBox1.HeaderImageIndex = -1;
     this.radGroupBox1.HeaderImageKey = "";
     this.radGroupBox1.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox1.HeaderText = "ارسال پیامک";
     this.radGroupBox1.Location = new System.Drawing.Point(12, 12);
     this.radGroupBox1.Name = "radGroupBox1";
     this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     this.radGroupBox1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.radGroupBox1.RootElement.MinSize = new System.Drawing.Size(0, 0);
     this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     this.radGroupBox1.Size = new System.Drawing.Size(575, 392);
     this.radGroupBox1.TabIndex = 17;
     this.radGroupBox1.Text = "ارسال پیامک";
     //
     // grdList
     //
     this.grdList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.grdList.EnableCustomDrawing = true;
     this.grdList.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.grdList.Location = new System.Drawing.Point(5, 146);
     //
     // grdList
     //
     this.grdList.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.grdList.MasterTemplate.AllowAddNewRow = false;
     this.grdList.MasterTemplate.AllowCellContextMenu = false;
     this.grdList.MasterTemplate.AllowColumnChooser = false;
     this.grdList.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grdList.MasterTemplate.AllowDeleteRow = false;
     this.grdList.MasterTemplate.AllowDragToGroup = false;
     this.grdList.MasterTemplate.AllowRowResize = false;
     this.grdList.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewImageColumn1.HeaderText = "وضعیت";
     gridViewImageColumn1.Name = "status";
     gridViewImageColumn1.Width = 54;
     gridViewTextBoxColumn1.Expression = "FirstName + \" \" + LastName";
     gridViewTextBoxColumn1.FormatString = "";
     gridViewTextBoxColumn1.HeaderText = "نام";
     gridViewTextBoxColumn1.Name = "name";
     gridViewTextBoxColumn1.Width = 212;
     gridViewTextBoxColumn2.FieldName = "CellNumber";
     gridViewTextBoxColumn2.FormatString = "";
     gridViewTextBoxColumn2.HeaderText = "شماره";
     gridViewTextBoxColumn2.Name = "phone";
     gridViewTextBoxColumn2.ReadOnly = true;
     gridViewTextBoxColumn2.Width = 212;
     gridViewCheckBoxColumn1.AllowSort = false;
     gridViewCheckBoxColumn1.FormatString = "";
     gridViewCheckBoxColumn1.HeaderText = "";
     gridViewCheckBoxColumn1.Name = "send";
     gridViewCheckBoxColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCheckBoxColumn1.Width = 89;
     gridViewTextBoxColumn3.HeaderText = "column1";
     gridViewTextBoxColumn3.IsVisible = false;
     gridViewTextBoxColumn3.Name = "statusNo";
     gridViewTextBoxColumn3.Width = 46;
     gridViewTextBoxColumn4.FieldName = "FirstName";
     gridViewTextBoxColumn4.HeaderText = "column1";
     gridViewTextBoxColumn4.IsVisible = false;
     gridViewTextBoxColumn4.Name = "FirstName";
     gridViewTextBoxColumn4.Width = 42;
     gridViewTextBoxColumn5.FieldName = "LastName";
     gridViewTextBoxColumn5.HeaderText = "column1";
     gridViewTextBoxColumn5.IsVisible = false;
     gridViewTextBoxColumn5.Name = "LastName";
     this.grdList.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewImageColumn1,
     gridViewTextBoxColumn1,
     gridViewTextBoxColumn2,
     gridViewCheckBoxColumn1,
     gridViewTextBoxColumn3,
     gridViewTextBoxColumn4,
     gridViewTextBoxColumn5});
     this.grdList.MasterTemplate.ShowRowHeaderColumn = false;
     this.grdList.Name = "grdList";
     this.grdList.ShowGroupPanel = false;
     this.grdList.Size = new System.Drawing.Size(565, 197);
     this.grdList.TabIndex = 8;
     this.grdList.Text = "radGridView1";
     this.grdList.CellPaint += new Telerik.WinControls.UI.GridViewCellPaintEventHandler(this.grdList_CellPaint);
     this.grdList.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grdList_CellFormatting);
     this.grdList.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdList_CellClick);
     //
     // lblRunning
     //
     this.lblRunning.AutoSize = true;
     this.lblRunning.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold);
     this.lblRunning.Location = new System.Drawing.Point(140, 360);
     this.lblRunning.Name = "lblRunning";
     this.lblRunning.Size = new System.Drawing.Size(136, 23);
     this.lblRunning.TabIndex = 7;
     this.lblRunning.Text = "در حال اجرای درخواست...";
     this.lblRunning.Visible = false;
     //
     // radLabel6
     //
     this.radLabel6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel6.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel6.Location = new System.Drawing.Point(449, 360);
     this.radLabel6.Name = "radLabel6";
     this.radLabel6.Size = new System.Drawing.Size(25, 23);
     this.radLabel6.TabIndex = 6;
     this.radLabel6.Text = "ریال";
     this.radLabel6.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // lblAccount
     //
     this.lblAccount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.lblAccount.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lblAccount.Location = new System.Drawing.Point(483, 360);
     this.lblAccount.Name = "lblAccount";
     this.lblAccount.Size = new System.Drawing.Size(11, 23);
     this.lblAccount.TabIndex = 5;
     this.lblAccount.Text = "0";
     this.lblAccount.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel4
     //
     this.radLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel4.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel4.Location = new System.Drawing.Point(536, 360);
     this.radLabel4.Name = "radLabel4";
     this.radLabel4.Size = new System.Drawing.Size(34, 23);
     this.radLabel4.TabIndex = 4;
     this.radLabel4.Text = "اعتبار:";
     this.radLabel4.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // btnSend
     //
     this.btnSend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSend.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnSend.Location = new System.Drawing.Point(5, 348);
     this.btnSend.Name = "btnSend";
     this.btnSend.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnSend.Size = new System.Drawing.Size(130, 35);
     this.btnSend.TabIndex = 2;
     this.btnSend.Text = "ارسال   ";
     this.btnSend.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
     //
     // lblSmsNum
     //
     this.lblSmsNum.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.lblSmsNum.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lblSmsNum.Location = new System.Drawing.Point(18, 54);
     this.lblSmsNum.Name = "lblSmsNum";
     this.lblSmsNum.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblSmsNum.Size = new System.Drawing.Size(11, 23);
     this.lblSmsNum.TabIndex = 5;
     this.lblSmsNum.Text = "0";
     this.lblSmsNum.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblCharNum
     //
     this.lblCharNum.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.lblCharNum.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lblCharNum.Location = new System.Drawing.Point(18, 29);
     this.lblCharNum.Name = "lblCharNum";
     this.lblCharNum.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblCharNum.Size = new System.Drawing.Size(11, 23);
     this.lblCharNum.TabIndex = 4;
     this.lblCharNum.Text = "0";
     this.lblCharNum.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblLang
     //
     this.lblLang.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.lblLang.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lblLang.Location = new System.Drawing.Point(59, 114);
     this.lblLang.Name = "lblLang";
     this.lblLang.Size = new System.Drawing.Size(43, 23);
     this.lblLang.TabIndex = 3;
     this.lblLang.Text = "انگلیسی";
     this.lblLang.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel3
     //
     this.radLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.radLabel3.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel3.Location = new System.Drawing.Point(73, 54);
     this.radLabel3.Name = "radLabel3";
     this.radLabel3.Size = new System.Drawing.Size(62, 23);
     this.radLabel3.TabIndex = 3;
     this.radLabel3.Text = "تعداد پیامک:";
     this.radLabel3.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel2
     //
     this.radLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.radLabel2.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel2.Location = new System.Drawing.Point(71, 29);
     this.radLabel2.Name = "radLabel2";
     this.radLabel2.Size = new System.Drawing.Size(64, 23);
     this.radLabel2.TabIndex = 3;
     this.radLabel2.Text = "تعداد کاراکتر:";
     this.radLabel2.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel1
     //
     this.radLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel1.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel1.Location = new System.Drawing.Point(514, 29);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.Size = new System.Drawing.Size(56, 23);
     this.radLabel1.TabIndex = 2;
     this.radLabel1.Text = "متن پیامک:";
     this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtText
     //
     this.txtText.AcceptsReturn = true;
     this.txtText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtText.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtText.Location = new System.Drawing.Point(140, 29);
     this.txtText.Multiline = true;
     this.txtText.Name = "txtText";
     //
     //
     //
     this.txtText.RootElement.StretchVertically = true;
     this.txtText.Size = new System.Drawing.Size(354, 111);
     this.txtText.TabIndex = 0;
     this.txtText.TabStop = false;
     this.txtText.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtText_TextChanging);
     this.txtText.TextChanged += new System.EventHandler(this.txtText_TextChanged);
     //
     // radLabel5
     //
     this.radLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.radLabel5.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel5.Location = new System.Drawing.Point(108, 114);
     this.radLabel5.Name = "radLabel5";
     this.radLabel5.Size = new System.Drawing.Size(27, 23);
     this.radLabel5.TabIndex = 4;
     this.radLabel5.Text = "زبان:";
     this.radLabel5.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     //
     // FormSmsSending
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(598, 412);
     this.Controls.Add(this.radGroupBox1);
     this.Name = "FormSmsSending";
     this.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "ارسال پیامک";
     this.ThemeName = "ControlDefault";
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblAccount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSend)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblSmsNum)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblCharNum)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblLang)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtText)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
Example #17
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     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.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.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn6 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn7 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     this.btnSave = new Telerik.WinControls.UI.RadButton();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     this.grvItems = new Telerik.WinControls.UI.RadGridView();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.btnAllAccess = new Telerik.WinControls.UI.RadButton();
     this.btnNoAccess = new Telerik.WinControls.UI.RadButton();
     this.tabAccess = new Telerik.WinControls.UI.RadPageView();
     this.radPageViewPage1 = new Telerik.WinControls.UI.RadPageViewPage();
     this.rgvAccessTask = new Telerik.WinControls.UI.RadGridView();
     this.radPageViewPage2 = new Telerik.WinControls.UI.RadPageViewPage();
     this.rgvAccessSetings = new Telerik.WinControls.UI.RadGridView();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.btnNew = new Telerik.WinControls.UI.RadButton();
     this.roleTitleLabel = new Telerik.WinControls.UI.RadLabel();
     this.txtName = new Telerik.WinControls.UI.RadTextBox();
     this.srcItem = new System.Windows.Forms.BindingSource(this.components);
     this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
     this.ucFilter1 = new ShayanDental.UserControls.UCFilter();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAllAccess)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNoAccess)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabAccess)).BeginInit();
     this.tabAccess.SuspendLayout();
     this.radPageViewPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rgvAccessTask)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgvAccessTask.MasterTemplate)).BeginInit();
     this.radPageViewPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rgvAccessSetings)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgvAccessSetings.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.roleTitleLabel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // 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, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnSave.Location = new System.Drawing.Point(750, 567);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(98, 35);
     this.btnSave.TabIndex = 11;
     this.btnSave.Text = "ذخیره";
     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, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnCancel.Location = new System.Drawing.Point(646, 567);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(98, 35);
     this.btnCancel.TabIndex = 12;
     this.btnCancel.Text = "انصراف";
     this.btnCancel.Click += new System.EventHandler(this.roleNewButton_Click);
     //
     // grvItems
     //
     this.grvItems.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.grvItems.AutoScroll = true;
     this.grvItems.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.grvItems.Location = new System.Drawing.Point(5, 71);
     //
     // grvItems
     //
     this.grvItems.MasterTemplate.AllowAddNewRow = false;
     this.grvItems.MasterTemplate.AllowCellContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnChooser = false;
     this.grvItems.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnReorder = false;
     this.grvItems.MasterTemplate.AllowDeleteRow = false;
     this.grvItems.MasterTemplate.AllowDragToGroup = false;
     this.grvItems.MasterTemplate.AllowEditRow = false;
     this.grvItems.MasterTemplate.AllowRowResize = false;
     this.grvItems.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName = "Title";
     gridViewTextBoxColumn1.HeaderText = "عنوان سمت";
     gridViewTextBoxColumn1.Name = "column1";
     gridViewTextBoxColumn1.Width = 393;
     gridViewCommandColumn1.AllowHide = false;
     gridViewCommandColumn1.AllowReorder = false;
     gridViewCommandColumn1.AllowResize = false;
     gridViewCommandColumn1.AllowSort = false;
     gridViewCommandColumn1.HeaderText = "حذف";
     gridViewCommandColumn1.Name = "column3";
     gridViewCommandColumn1.Width = 30;
     this.grvItems.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn1,
     gridViewCommandColumn1});
     this.grvItems.MasterTemplate.EnableFiltering = true;
     this.grvItems.MasterTemplate.EnableGrouping = false;
     this.grvItems.MasterTemplate.ShowFilteringRow = false;
     this.grvItems.Name = "grvItems";
     this.grvItems.ReadOnly = true;
     this.grvItems.Size = new System.Drawing.Size(443, 474);
     this.grvItems.TabIndex = 10;
     this.grvItems.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grvItems_CellFormatting);
     this.grvItems.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grvItems_CurrentRowChanging);
     this.grvItems.SelectionChanged += new System.EventHandler(this.grvItems_SelectionChanged);
     this.grvItems.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grvItems_CommandCellClick);
     this.grvItems.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grvItems_KeyDown);
     //
     // 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.btnAllAccess);
     this.radGroupBox1.Controls.Add(this.btnNoAccess);
     this.radGroupBox1.Controls.Add(this.tabAccess);
     this.radGroupBox1.Controls.Add(this.btnAdd);
     this.radGroupBox1.Controls.Add(this.btnNew);
     this.radGroupBox1.Controls.Add(this.roleTitleLabel);
     this.radGroupBox1.Controls.Add(this.txtName);
     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(462, 7);
     this.radGroupBox1.Name = "radGroupBox1";
     this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     //
     //
     //
     this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     this.radGroupBox1.Size = new System.Drawing.Size(397, 555);
     this.radGroupBox1.TabIndex = 9;
     this.radGroupBox1.Text = "تعریف سمت";
     //
     // btnAllAccess
     //
     this.btnAllAccess.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAllAccess.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnAllAccess.Location = new System.Drawing.Point(201, 75);
     this.btnAllAccess.Name = "btnAllAccess";
     this.btnAllAccess.Size = new System.Drawing.Size(190, 35);
     this.btnAllAccess.TabIndex = 18;
     this.btnAllAccess.Text = "همه دسترسی ها";
     this.btnAllAccess.Click += new System.EventHandler(this.btnAllAccess_Click);
     //
     // btnNoAccess
     //
     this.btnNoAccess.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNoAccess.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnNoAccess.Location = new System.Drawing.Point(5, 75);
     this.btnNoAccess.Name = "btnNoAccess";
     this.btnNoAccess.Size = new System.Drawing.Size(190, 35);
     this.btnNoAccess.TabIndex = 17;
     this.btnNoAccess.Text = "هیچ کدام از دسترسی";
     this.btnNoAccess.Click += new System.EventHandler(this.btnNoAccess_Click);
     //
     // tabAccess
     //
     this.tabAccess.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tabAccess.Controls.Add(this.radPageViewPage1);
     this.tabAccess.Controls.Add(this.radPageViewPage2);
     this.tabAccess.Font = new System.Drawing.Font("B Nazanin", 9.3F, System.Drawing.FontStyle.Bold);
     this.tabAccess.Location = new System.Drawing.Point(5, 116);
     this.tabAccess.Name = "tabAccess";
     this.tabAccess.SelectedPage = this.radPageViewPage1;
     this.tabAccess.Size = new System.Drawing.Size(386, 392);
     this.tabAccess.TabIndex = 16;
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.tabAccess.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.tabAccess.GetChildAt(0))).ItemAlignment = Telerik.WinControls.UI.StripViewItemAlignment.Near;
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.tabAccess.GetChildAt(0))).ItemFitMode = Telerik.WinControls.UI.StripViewItemFitMode.Fill;
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.tabAccess.GetChildAt(0))).StripAlignment = Telerik.WinControls.UI.StripViewAlignment.Top;
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.tabAccess.GetChildAt(0))).ItemDragMode = Telerik.WinControls.UI.PageViewItemDragMode.None;
     //
     // radPageViewPage1
     //
     this.radPageViewPage1.Controls.Add(this.rgvAccessTask);
     this.radPageViewPage1.Font = new System.Drawing.Font("B Nazanin", 9.3F, System.Drawing.FontStyle.Bold);
     this.radPageViewPage1.Location = new System.Drawing.Point(10, 42);
     this.radPageViewPage1.Name = "radPageViewPage1";
     this.radPageViewPage1.Size = new System.Drawing.Size(365, 339);
     this.radPageViewPage1.Text = "وظایف";
     //
     // rgvAccessTask
     //
     this.rgvAccessTask.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.rgvAccessTask.EnableHotTracking = false;
     this.rgvAccessTask.Font = new System.Drawing.Font("B Nazanin", 9F);
     this.rgvAccessTask.Location = new System.Drawing.Point(3, 5);
     //
     // rgvAccessTask
     //
     this.rgvAccessTask.MasterTemplate.AllowAddNewRow = false;
     this.rgvAccessTask.MasterTemplate.AllowCellContextMenu = false;
     this.rgvAccessTask.MasterTemplate.AllowColumnChooser = false;
     this.rgvAccessTask.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.rgvAccessTask.MasterTemplate.AllowColumnReorder = false;
     this.rgvAccessTask.MasterTemplate.AllowColumnResize = false;
     this.rgvAccessTask.MasterTemplate.AllowDeleteRow = false;
     this.rgvAccessTask.MasterTemplate.AllowDragToGroup = false;
     this.rgvAccessTask.MasterTemplate.AllowRowResize = false;
     this.rgvAccessTask.MasterTemplate.AutoGenerateColumns = false;
     gridViewTextBoxColumn2.FieldName = "Name";
     gridViewTextBoxColumn2.FormatString = "";
     gridViewTextBoxColumn2.HeaderText = "نام دسترسی";
     gridViewTextBoxColumn2.Name = "column1";
     gridViewTextBoxColumn2.Width = 90;
     gridViewCheckBoxColumn1.FieldName = "AccessObserve";
     gridViewCheckBoxColumn1.FormatString = "";
     gridViewCheckBoxColumn1.HeaderText = "مشاهده";
     gridViewCheckBoxColumn1.Name = "column3";
     gridViewCheckBoxColumn2.FieldName = "AccessChange";
     gridViewCheckBoxColumn2.FormatString = "";
     gridViewCheckBoxColumn2.HeaderText = "اعمال تغییرات";
     gridViewCheckBoxColumn2.Name = "column4";
     gridViewCheckBoxColumn2.Width = 70;
     gridViewCheckBoxColumn3.FieldName = "AccessInsert";
     gridViewCheckBoxColumn3.FormatString = "";
     gridViewCheckBoxColumn3.HeaderText = "افزودن";
     gridViewCheckBoxColumn3.Name = "column5";
     gridViewCheckBoxColumn4.FieldName = "AccessRemove";
     gridViewCheckBoxColumn4.FormatString = "";
     gridViewCheckBoxColumn4.HeaderText = "حذف";
     gridViewCheckBoxColumn4.Name = "column6";
     gridViewCheckBoxColumn5.FieldName = "AccessPrint";
     gridViewCheckBoxColumn5.FormatString = "";
     gridViewCheckBoxColumn5.HeaderText = "پرینت";
     gridViewCheckBoxColumn5.Name = "column7";
     this.rgvAccessTask.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn2,
     gridViewCheckBoxColumn1,
     gridViewCheckBoxColumn2,
     gridViewCheckBoxColumn3,
     gridViewCheckBoxColumn4,
     gridViewCheckBoxColumn5});
     this.rgvAccessTask.MasterTemplate.EnableGrouping = false;
     this.rgvAccessTask.MasterTemplate.EnableSorting = false;
     this.rgvAccessTask.MasterTemplate.ShowFilteringRow = false;
     this.rgvAccessTask.MasterTemplate.ShowRowHeaderColumn = false;
     this.rgvAccessTask.Name = "rgvAccessTask";
     this.rgvAccessTask.ShowCellErrors = false;
     this.rgvAccessTask.ShowGroupPanel = false;
     this.rgvAccessTask.ShowNoDataText = false;
     this.rgvAccessTask.ShowRowErrors = false;
     this.rgvAccessTask.Size = new System.Drawing.Size(360, 331);
     this.rgvAccessTask.TabIndex = 15;
     this.rgvAccessTask.Text = "radGridView1";
     //
     // radPageViewPage2
     //
     this.radPageViewPage2.Controls.Add(this.rgvAccessSetings);
     this.radPageViewPage2.Font = new System.Drawing.Font("B Nazanin", 9.3F, System.Drawing.FontStyle.Bold);
     this.radPageViewPage2.Location = new System.Drawing.Point(10, 42);
     this.radPageViewPage2.Name = "radPageViewPage2";
     this.radPageViewPage2.Size = new System.Drawing.Size(365, 339);
     this.radPageViewPage2.Text = "نتظیمات";
     //
     // rgvAccessSetings
     //
     this.rgvAccessSetings.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.rgvAccessSetings.EnableHotTracking = false;
     this.rgvAccessSetings.Font = new System.Drawing.Font("B Nazanin", 9F);
     this.rgvAccessSetings.Location = new System.Drawing.Point(3, 4);
     //
     // rgvAccessSetings
     //
     this.rgvAccessSetings.MasterTemplate.AllowAddNewRow = false;
     this.rgvAccessSetings.MasterTemplate.AllowCellContextMenu = false;
     this.rgvAccessSetings.MasterTemplate.AllowColumnChooser = false;
     this.rgvAccessSetings.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.rgvAccessSetings.MasterTemplate.AllowColumnReorder = false;
     this.rgvAccessSetings.MasterTemplate.AllowDeleteRow = false;
     this.rgvAccessSetings.MasterTemplate.AllowDragToGroup = false;
     this.rgvAccessSetings.MasterTemplate.AllowRowResize = false;
     this.rgvAccessSetings.MasterTemplate.AutoGenerateColumns = false;
     gridViewTextBoxColumn3.FieldName = "Name";
     gridViewTextBoxColumn3.FormatString = "";
     gridViewTextBoxColumn3.HeaderText = "نام دسترسی";
     gridViewTextBoxColumn3.Name = "column1";
     gridViewTextBoxColumn3.Width = 150;
     gridViewCheckBoxColumn6.FieldName = "AccessObserve";
     gridViewCheckBoxColumn6.FormatString = "";
     gridViewCheckBoxColumn6.HeaderText = "مشاهده";
     gridViewCheckBoxColumn6.Name = "column3";
     gridViewCheckBoxColumn6.Width = 110;
     gridViewCheckBoxColumn7.FieldName = "AccessChange";
     gridViewCheckBoxColumn7.FormatString = "";
     gridViewCheckBoxColumn7.HeaderText = "اعمال تغییرات";
     gridViewCheckBoxColumn7.Name = "column4";
     gridViewCheckBoxColumn7.Width = 100;
     this.rgvAccessSetings.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn3,
     gridViewCheckBoxColumn6,
     gridViewCheckBoxColumn7});
     this.rgvAccessSetings.MasterTemplate.EnableGrouping = false;
     this.rgvAccessSetings.MasterTemplate.EnableSorting = false;
     this.rgvAccessSetings.MasterTemplate.ShowFilteringRow = false;
     this.rgvAccessSetings.MasterTemplate.ShowRowHeaderColumn = false;
     this.rgvAccessSetings.Name = "rgvAccessSetings";
     this.rgvAccessSetings.ShowCellErrors = false;
     this.rgvAccessSetings.ShowGroupPanel = false;
     this.rgvAccessSetings.ShowNoDataText = false;
     this.rgvAccessSetings.ShowRowErrors = false;
     this.rgvAccessSetings.Size = new System.Drawing.Size(359, 335);
     this.rgvAccessSetings.TabIndex = 16;
     this.rgvAccessSetings.Text = "radGridView2";
     //
     // 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, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnAdd.Location = new System.Drawing.Point(288, 515);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(98, 35);
     this.btnAdd.TabIndex = 14;
     this.btnAdd.Text = "افزودن";
     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, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnNew.Location = new System.Drawing.Point(184, 515);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(98, 35);
     this.btnNew.TabIndex = 13;
     this.btnNew.Text = "جدید";
     this.btnNew.Click += new System.EventHandler(this.btnNew_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(355, 34);
     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;
     //
     // txtName
     //
     this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Title", true));
     this.txtName.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtName.Location = new System.Drawing.Point(5, 32);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(347, 25);
     this.txtName.TabIndex = 1;
     this.txtName.TabStop = false;
     this.txtName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtName_TextChanging);
     this.txtName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // srcItem
     //
     this.srcItem.DataSource = typeof(Shayan.Data.Role);
     //
     // 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.ucFilter1);
     this.radGroupBox2.Controls.Add(this.grvItems);
     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, 7);
     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(453, 555);
     this.radGroupBox2.TabIndex = 14;
     this.radGroupBox2.Text = "سمت های ذخیره شده";
     //
     // ucFilter1
     //
     this.ucFilter1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.ucFilter1.Location = new System.Drawing.Point(6, 32);
     this.ucFilter1.Margin = new System.Windows.Forms.Padding(4);
     this.ucFilter1.Name = "ucFilter1";
     this.ucFilter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ucFilter1.Size = new System.Drawing.Size(441, 24);
     this.ucFilter1.TabIndex = 11;
     //
     // UCDefineRole
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 19F);
     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.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold);
     this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.Name = "UCDefineRole";
     this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.Size = new System.Drawing.Size(874, 608);
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAllAccess)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNoAccess)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabAccess)).EndInit();
     this.tabAccess.ResumeLayout(false);
     this.radPageViewPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.rgvAccessTask.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgvAccessTask)).EndInit();
     this.radPageViewPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.rgvAccessSetings.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgvAccessSetings)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.roleTitleLabel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.cmbUnit = new Telerik.WinControls.UI.RadDropDownList();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.txtDesc = new Telerik.WinControls.UI.RadTextBox();
     this.txtType = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.txtName = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.radDesktopAlert1 = new Telerik.WinControls.UI.RadDesktopAlert(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbUnit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDesc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.cmbUnit);
     this.radGroupBox1.Controls.Add(this.btnCancel);
     this.radGroupBox1.Controls.Add(this.btnAdd);
     this.radGroupBox1.Controls.Add(this.txtDesc);
     this.radGroupBox1.Controls.Add(this.txtType);
     this.radGroupBox1.Controls.Add(this.radLabel5);
     this.radGroupBox1.Controls.Add(this.radLabel3);
     this.radGroupBox1.Controls.Add(this.txtName);
     this.radGroupBox1.Controls.Add(this.radLabel2);
     this.radGroupBox1.Controls.Add(this.radLabel1);
     this.radGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radGroupBox1.HeaderText = "";
     this.radGroupBox1.Location = new System.Drawing.Point(3, 3);
     this.radGroupBox1.Name = "radGroupBox1";
     this.radGroupBox1.Size = new System.Drawing.Size(273, 143);
     this.radGroupBox1.TabIndex = 0;
     this.radGroupBox1.ThemeName = "TelerikMetroBlue";
     //
     // cmbUnit
     //
     this.cmbUnit.AllowShowFocusCues = false;
     this.cmbUnit.AutoCompleteDisplayMember = null;
     this.cmbUnit.AutoCompleteValueMember = null;
     this.cmbUnit.DisplayMember = "1";
     this.cmbUnit.Location = new System.Drawing.Point(89, 31);
     this.cmbUnit.Name = "cmbUnit";
     this.cmbUnit.Size = new System.Drawing.Size(176, 20);
     this.cmbUnit.TabIndex = 0;
     this.cmbUnit.Text = "radDropDownList1";
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnCancel.Location = new System.Drawing.Point(185, 114);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(80, 24);
     this.btnCancel.TabIndex = 5;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnCancel.ThemeName = "TelerikMetroBlue";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnAdd.Location = new System.Drawing.Point(99, 114);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(80, 24);
     this.btnAdd.TabIndex = 4;
     this.btnAdd.Text = "&Add";
     this.btnAdd.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnAdd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnAdd.ThemeName = "TelerikMetroBlue";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // txtDesc
     //
     this.txtDesc.Location = new System.Drawing.Point(89, 83);
     this.txtDesc.Name = "txtDesc";
     this.txtDesc.Size = new System.Drawing.Size(176, 20);
     this.txtDesc.TabIndex = 0;
     this.txtDesc.ThemeName = "Breeze";
     this.txtDesc.Enter += new System.EventHandler(this.txtProductionMaterialName_Enter);
     this.txtDesc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtProductionMaterialName_KeyDown);
     //
     // txtType
     //
     this.txtType.Location = new System.Drawing.Point(89, 57);
     this.txtType.Name = "txtType";
     this.txtType.Size = new System.Drawing.Size(176, 20);
     this.txtType.TabIndex = 0;
     this.txtType.ThemeName = "Breeze";
     this.txtType.Enter += new System.EventHandler(this.txtProductionMaterialName_Enter);
     this.txtType.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtProductionMaterialName_KeyDown);
     //
     // radLabel5
     //
     this.radLabel5.Location = new System.Drawing.Point(11, 83);
     this.radLabel5.Name = "radLabel5";
     this.radLabel5.Size = new System.Drawing.Size(63, 18);
     this.radLabel5.TabIndex = 2;
     this.radLabel5.Text = "Description";
     this.radLabel5.ThemeName = "ControlDefault";
     //
     // radLabel3
     //
     this.radLabel3.Location = new System.Drawing.Point(8, 57);
     this.radLabel3.Name = "radLabel3";
     this.radLabel3.Size = new System.Drawing.Size(30, 18);
     this.radLabel3.TabIndex = 2;
     this.radLabel3.Text = "Type";
     this.radLabel3.ThemeName = "ControlDefault";
     //
     // txtName
     //
     this.txtName.Location = new System.Drawing.Point(89, 5);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(176, 20);
     this.txtName.TabIndex = 0;
     this.txtName.ThemeName = "Breeze";
     this.txtName.Enter += new System.EventHandler(this.txtProductionMaterialName_Enter);
     this.txtName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtProductionMaterialName_KeyDown);
     //
     // radLabel2
     //
     this.radLabel2.Location = new System.Drawing.Point(8, 31);
     this.radLabel2.Name = "radLabel2";
     this.radLabel2.Size = new System.Drawing.Size(27, 18);
     this.radLabel2.TabIndex = 2;
     this.radLabel2.Text = "Unit";
     this.radLabel2.ThemeName = "ControlDefault";
     this.radLabel2.Click += new System.EventHandler(this.radLabel2_Click);
     //
     // radLabel1
     //
     this.radLabel1.Location = new System.Drawing.Point(8, 5);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.Size = new System.Drawing.Size(36, 18);
     this.radLabel1.TabIndex = 2;
     this.radLabel1.Text = "Name";
     this.radLabel1.ThemeName = "ControlDefault";
     //
     // FrmProductionMaterialEntry
     //
     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(279, 149);
     this.Controls.Add(this.radGroupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmProductionMaterialEntry";
     this.Padding = new System.Windows.Forms.Padding(3);
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Production Material Entry";
     this.ThemeName = "TelerikMetroBlue";
     this.Load += new System.EventHandler(this.FrmProductionMaterialEntry_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbUnit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDesc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).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.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn7 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
     Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     this.patientListGroupBox = new Telerik.WinControls.UI.RadGroupBox();
     this.filteringPanel = new Telerik.WinControls.UI.RadPanel();
     this.ucFilter1 = new ShayanDental.UserControls.UCFilter();
     this.grdPatient = new Telerik.WinControls.UI.RadGridView();
     this.btnSave = new Telerik.WinControls.UI.RadButton();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     this.lstIns = new Telerik.WinControls.UI.RadGridView();
     this.radLabel11 = new Telerik.WinControls.UI.RadLabel();
     this.dpBirthDate = new FarsiLibrary.Win.Controls.FADatePicker();
     this.patientBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.txtPhone1 = new Telerik.WinControls.UI.RadTextBox();
     this.txtPhone2 = new Telerik.WinControls.UI.RadTextBox();
     this.txtAge = new Telerik.WinControls.UI.RadMaskedEditBox();
     this.lblAge = new Telerik.WinControls.UI.RadLabel();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.btnNew = new Telerik.WinControls.UI.RadButton();
     this.txtCode = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.radCheckBox1 = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel13 = new Telerik.WinControls.UI.RadLabel();
     this.radCheckBox12 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox11 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox13 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox8 = new Telerik.WinControls.UI.RadCheckBox();
     this.radTextBox4 = new Telerik.WinControls.UI.RadTextBox();
     this.radCheckBox5 = new Telerik.WinControls.UI.RadCheckBox();
     this.radTextBox5 = new Telerik.WinControls.UI.RadTextBox();
     this.radCheckBox7 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox3 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox4 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox9 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox10 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox6 = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox2 = new Telerik.WinControls.UI.RadCheckBox();
     this.patientHepatitCheckBox = new Telerik.WinControls.UI.RadCheckBox();
     this.patientPregnancyCheckBox = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
     this.txtLastName = new Telerik.WinControls.UI.RadTextBox();
     this.txtFirstName = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.txtDescription = new Telerik.WinControls.UI.RadTextBox();
     this.txtAddress = new Telerik.WinControls.UI.RadTextBox();
     this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
     this.btnHistory = new Telerik.WinControls.UI.RadButton();
     this.btnDocs = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox3 = new Telerik.WinControls.UI.RadGroupBox();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.radCheckBox14 = new Telerik.WinControls.UI.RadCheckBox();
     this.radTextBox2 = new Telerik.WinControls.UI.RadTextBox();
     this.radTextBox1 = new Telerik.WinControls.UI.RadTextBox();
     this.radTextBox3 = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     ((System.ComponentModel.ISupportInitialize)(this.patientListGroupBox)).BeginInit();
     this.patientListGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.filteringPanel)).BeginInit();
     this.filteringPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdPatient)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPatient.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIns)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIns.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblAge)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientHepatitCheckBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientPregnancyCheckBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirstName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescription)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnHistory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDocs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).BeginInit();
     this.radGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // patientListGroupBox
     //
     this.patientListGroupBox.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.patientListGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.patientListGroupBox.Controls.Add(this.filteringPanel);
     this.patientListGroupBox.Controls.Add(this.grdPatient);
     this.patientListGroupBox.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.patientListGroupBox.FooterImageIndex = -1;
     this.patientListGroupBox.FooterImageKey = "";
     this.patientListGroupBox.HeaderImageIndex = -1;
     this.patientListGroupBox.HeaderImageKey = "";
     this.patientListGroupBox.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.patientListGroupBox.HeaderText = "پرونده های ذخیره شده";
     this.patientListGroupBox.Location = new System.Drawing.Point(13, 0);
     this.patientListGroupBox.Name = "patientListGroupBox";
     this.patientListGroupBox.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     this.patientListGroupBox.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.patientListGroupBox.RootElement.Padding = new System.Windows.Forms.Padding(2, 17, 2, 2);
     this.patientListGroupBox.Size = new System.Drawing.Size(249, 610);
     this.patientListGroupBox.TabIndex = 1;
     this.patientListGroupBox.Text = "پرونده های ذخیره شده";
     //
     // filteringPanel
     //
     this.filteringPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.filteringPanel.Controls.Add(this.ucFilter1);
     this.filteringPanel.Location = new System.Drawing.Point(5, 25);
     this.filteringPanel.Name = "filteringPanel";
     this.filteringPanel.Size = new System.Drawing.Size(239, 32);
     this.filteringPanel.TabIndex = 0;
     //
     // ucFilter1
     //
     this.ucFilter1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucFilter1.Location = new System.Drawing.Point(0, 0);
     this.ucFilter1.Margin = new System.Windows.Forms.Padding(4);
     this.ucFilter1.Name = "ucFilter1";
     this.ucFilter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ucFilter1.Size = new System.Drawing.Size(239, 32);
     this.ucFilter1.TabIndex = 0;
     //
     // grdPatient
     //
     this.grdPatient.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.grdPatient.EnableHotTracking = false;
     this.grdPatient.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.grdPatient.Location = new System.Drawing.Point(5, 66);
     //
     // grdPatient
     //
     this.grdPatient.MasterTemplate.AllowAddNewRow = false;
     this.grdPatient.MasterTemplate.AllowCellContextMenu = false;
     this.grdPatient.MasterTemplate.AllowColumnChooser = false;
     this.grdPatient.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grdPatient.MasterTemplate.AllowDeleteRow = false;
     this.grdPatient.MasterTemplate.AllowDragToGroup = false;
     this.grdPatient.MasterTemplate.AllowEditRow = false;
     this.grdPatient.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn5.FieldName = "FirstName";
     gridViewTextBoxColumn5.HeaderText = "نام";
     gridViewTextBoxColumn5.Name = "FirstName";
     gridViewTextBoxColumn5.Width = 57;
     gridViewTextBoxColumn6.FieldName = "LastName";
     gridViewTextBoxColumn6.HeaderText = "نام خانوادگی";
     gridViewTextBoxColumn6.Name = "LastName";
     gridViewTextBoxColumn6.Width = 84;
     gridViewTextBoxColumn7.FieldName = "AccountantCode";
     gridViewTextBoxColumn7.HeaderText = "شماره پرونده";
     gridViewTextBoxColumn7.Name = "Code";
     gridViewTextBoxColumn7.Width = 69;
     gridViewCommandColumn2.AllowResize = false;
     gridViewCommandColumn2.HeaderText = "حذف";
     gridViewCommandColumn2.ImageLayout = System.Windows.Forms.ImageLayout.Center;
     gridViewCommandColumn2.Name = "column1";
     gridViewCommandColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewCommandColumn2.Width = 30;
     this.grdPatient.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn5,
     gridViewTextBoxColumn6,
     gridViewTextBoxColumn7,
     gridViewCommandColumn2});
     this.grdPatient.MasterTemplate.EnableGrouping = false;
     this.grdPatient.MasterTemplate.ShowFilteringRow = false;
     this.grdPatient.MasterTemplate.ShowRowHeaderColumn = false;
     this.grdPatient.Name = "grdPatient";
     this.grdPatient.ReadOnly = true;
     this.grdPatient.Size = new System.Drawing.Size(239, 539);
     this.grdPatient.TabIndex = 0;
     this.grdPatient.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grdPatient_CellFormatting);
     this.grdPatient.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grdPatient_CurrentRowChanging);
     this.grdPatient.SelectionChanged += new System.EventHandler(this.grdPatient_SelectionChanged);
     this.grdPatient.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grdPatient_CommandCellClick);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnSave.Location = new System.Drawing.Point(877, 577);
     this.btnSave.Name = "btnSave";
     this.btnSave.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnSave.Size = new System.Drawing.Size(110, 35);
     this.btnSave.TabIndex = 2;
     this.btnSave.Text = "ذخیره   ";
     this.btnSave.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnCancel.Location = new System.Drawing.Point(761, 577);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnCancel.Size = new System.Drawing.Size(110, 35);
     this.btnCancel.TabIndex = 3;
     this.btnCancel.Text = "انصراف   ";
     this.btnCancel.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // lstIns
     //
     this.lstIns.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.lstIns.AutoScroll = true;
     this.lstIns.EnableHotTracking = false;
     this.lstIns.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lstIns.Location = new System.Drawing.Point(5, 217);
     //
     // lstIns
     //
     this.lstIns.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.lstIns.MasterTemplate.AllowAddNewRow = false;
     this.lstIns.MasterTemplate.AllowCellContextMenu = false;
     this.lstIns.MasterTemplate.AllowColumnChooser = false;
     this.lstIns.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.lstIns.MasterTemplate.AllowColumnReorder = false;
     this.lstIns.MasterTemplate.AllowColumnResize = false;
     this.lstIns.MasterTemplate.AllowDeleteRow = false;
     this.lstIns.MasterTemplate.AllowDragToGroup = false;
     this.lstIns.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewCheckBoxColumn2.FormatString = "";
     gridViewCheckBoxColumn2.HeaderText = "";
     gridViewCheckBoxColumn2.Name = "chkBox";
     gridViewCheckBoxColumn2.Width = 31;
     gridViewTextBoxColumn8.FieldName = "Title";
     gridViewTextBoxColumn8.HeaderText = "عنوان بیمه";
     gridViewTextBoxColumn8.Name = "Title";
     gridViewTextBoxColumn8.ReadOnly = true;
     gridViewTextBoxColumn8.Width = 212;
     this.lstIns.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewCheckBoxColumn2,
     gridViewTextBoxColumn8});
     this.lstIns.MasterTemplate.EnableGrouping = false;
     this.lstIns.MasterTemplate.EnableSorting = false;
     this.lstIns.MasterTemplate.ShowRowHeaderColumn = false;
     this.lstIns.Name = "lstIns";
     this.lstIns.ShowGroupPanel = false;
     this.lstIns.Size = new System.Drawing.Size(243, 208);
     this.lstIns.TabIndex = 5;
     this.lstIns.Text = "radGridView1";
     this.lstIns.CellValueChanged += new Telerik.WinControls.UI.GridViewCellEventHandler(this.lstIns_CellValueChanged);
     //
     // radLabel11
     //
     this.radLabel11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel11.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel11.Location = new System.Drawing.Point(635, 11);
     this.radLabel11.Name = "radLabel11";
     this.radLabel11.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radLabel11.Size = new System.Drawing.Size(83, 30);
     this.radLabel11.TabIndex = 48;
     this.radLabel11.Text = "شماره پرونده :";
     this.radLabel11.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // dpBirthDate
     //
     this.dpBirthDate.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.dpBirthDate.DataBindings.Add(new System.Windows.Forms.Binding("SelectedDateTime", this.patientBindingSource, "BirthDate", true));
     this.dpBirthDate.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.dpBirthDate.Location = new System.Drawing.Point(483, 121);
     this.dpBirthDate.Multiline = true;
     this.dpBirthDate.Name = "dpBirthDate";
     this.dpBirthDate.Size = new System.Drawing.Size(162, 27);
     this.dpBirthDate.TabIndex = 8;
     this.dpBirthDate.SelectedDateTimeChanged += new System.EventHandler(this.dpBirthDate_SelectedDateTimeChanged);
     //
     // patientBindingSource
     //
     this.patientBindingSource.DataSource = typeof(Shayan.Data.Patient);
     //
     // txtPhone1
     //
     this.txtPhone1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtPhone1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "HomeNumber", true));
     this.txtPhone1.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtPhone1.Location = new System.Drawing.Point(10, 25);
     this.txtPhone1.MaxLength = 15;
     this.txtPhone1.Name = "txtPhone1";
     this.txtPhone1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.txtPhone1.Size = new System.Drawing.Size(166, 28);
     this.txtPhone1.TabIndex = 5;
     this.txtPhone1.TabStop = false;
     this.txtPhone1.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtPhone1_TextChanging);
     //
     // txtPhone2
     //
     this.txtPhone2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtPhone2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "CellNumber", true));
     this.txtPhone2.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtPhone2.Location = new System.Drawing.Point(10, 57);
     this.txtPhone2.MaxLength = 15;
     this.txtPhone2.Name = "txtPhone2";
     this.txtPhone2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.txtPhone2.Size = new System.Drawing.Size(166, 28);
     this.txtPhone2.TabIndex = 6;
     this.txtPhone2.TabStop = false;
     this.txtPhone2.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtPhone1_TextChanging);
     //
     // txtAge
     //
     this.txtAge.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtAge.AutoSize = true;
     this.txtAge.Enabled = false;
     this.txtAge.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtAge.Location = new System.Drawing.Point(388, 122);
     this.txtAge.MaxLength = 3;
     this.txtAge.Name = "txtAge";
     this.txtAge.Size = new System.Drawing.Size(26, 28);
     this.txtAge.TabIndex = 9;
     this.txtAge.TabStop = false;
     //
     // lblAge
     //
     this.lblAge.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.lblAge.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.lblAge.Location = new System.Drawing.Point(418, 121);
     this.lblAge.Name = "lblAge";
     this.lblAge.Size = new System.Drawing.Size(33, 30);
     this.lblAge.TabIndex = 6;
     this.lblAge.Text = "سن :";
     this.lblAge.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnAdd.Location = new System.Drawing.Point(609, 524);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnAdd.Size = new System.Drawing.Size(110, 35);
     this.btnAdd.TabIndex = 7;
     this.btnAdd.Text = "افزودن   ";
     this.btnAdd.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnNew
     //
     this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNew.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnNew.Location = new System.Drawing.Point(493, 524);
     this.btnNew.Name = "btnNew";
     this.btnNew.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnNew.Size = new System.Drawing.Size(110, 35);
     this.btnNew.TabIndex = 8;
     this.btnNew.Text = "جدید   ";
     this.btnNew.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // txtCode
     //
     this.txtCode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCode.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "AccountantCode", true));
     this.txtCode.Enabled = false;
     this.txtCode.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtCode.Location = new System.Drawing.Point(489, 13);
     this.txtCode.Name = "txtCode";
     this.txtCode.NullText = "-بعد از ذخیره اختصاص می یابد-";
     this.txtCode.Size = new System.Drawing.Size(141, 25);
     this.txtCode.TabIndex = 0;
     this.txtCode.TabStop = false;
     //
     // radLabel12
     //
     this.radLabel12.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel12.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel12.Location = new System.Drawing.Point(650, 25);
     this.radLabel12.Name = "radLabel12";
     this.radLabel12.Size = new System.Drawing.Size(28, 30);
     this.radLabel12.TabIndex = 41;
     this.radLabel12.Text = "نام :";
     this.radLabel12.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.radGroupBox1.Controls.Add(this.radCheckBox1);
     this.radGroupBox1.Controls.Add(this.radLabel6);
     this.radGroupBox1.Controls.Add(this.radLabel13);
     this.radGroupBox1.Controls.Add(this.radCheckBox12);
     this.radGroupBox1.Controls.Add(this.radCheckBox11);
     this.radGroupBox1.Controls.Add(this.radCheckBox13);
     this.radGroupBox1.Controls.Add(this.radCheckBox8);
     this.radGroupBox1.Controls.Add(this.radTextBox4);
     this.radGroupBox1.Controls.Add(this.radCheckBox5);
     this.radGroupBox1.Controls.Add(this.radTextBox5);
     this.radGroupBox1.Controls.Add(this.radCheckBox7);
     this.radGroupBox1.Controls.Add(this.radCheckBox3);
     this.radGroupBox1.Controls.Add(this.radCheckBox4);
     this.radGroupBox1.Controls.Add(this.radCheckBox9);
     this.radGroupBox1.Controls.Add(this.radCheckBox10);
     this.radGroupBox1.Controls.Add(this.radCheckBox6);
     this.radGroupBox1.Controls.Add(this.radCheckBox2);
     this.radGroupBox1.Controls.Add(this.patientHepatitCheckBox);
     this.radGroupBox1.Controls.Add(this.patientPregnancyCheckBox);
     this.radGroupBox1.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radGroupBox1.FooterImageIndex = -1;
     this.radGroupBox1.FooterImageKey = "";
     this.radGroupBox1.HeaderImageIndex = -1;
     this.radGroupBox1.HeaderImageKey = "";
     this.radGroupBox1.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox1.HeaderText = "شرایط ویژه:";
     this.radGroupBox1.Location = new System.Drawing.Point(254, 207);
     this.radGroupBox1.Name = "radGroupBox1";
     this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.radGroupBox1.RootElement.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox1.Size = new System.Drawing.Size(466, 218);
     this.radGroupBox1.TabIndex = 4;
     this.radGroupBox1.Text = "شرایط ویژه:";
     //
     // radCheckBox1
     //
     this.radCheckBox1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox1.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "Alergy", true));
     this.radCheckBox1.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox1.Location = new System.Drawing.Point(403, 84);
     this.radCheckBox1.Name = "radCheckBox1";
     this.radCheckBox1.Size = new System.Drawing.Size(55, 30);
     this.radCheckBox1.TabIndex = 8;
     this.radCheckBox1.Text = "آلرژی";
     //
     // radLabel6
     //
     this.radLabel6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel6.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel6.Location = new System.Drawing.Point(231, 178);
     this.radLabel6.Name = "radLabel6";
     this.radLabel6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radLabel6.Size = new System.Drawing.Size(229, 30);
     this.radLabel6.TabIndex = 56;
     this.radLabel6.Text = "آیا در مراجعات قبلی مشکل خاصی داشتید؟";
     this.radLabel6.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel13
     //
     this.radLabel13.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel13.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel13.Location = new System.Drawing.Point(260, 150);
     this.radLabel13.Name = "radLabel13";
     this.radLabel13.Size = new System.Drawing.Size(209, 30);
     this.radLabel13.TabIndex = 54;
     this.radLabel13.Text = "آیا در حال حاضر دارو مصرف می کنید؟";
     this.radLabel13.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radCheckBox12
     //
     this.radCheckBox12.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox12.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "SingcobAfterInjection", true));
     this.radCheckBox12.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox12.Location = new System.Drawing.Point(70, 111);
     this.radCheckBox12.Name = "radCheckBox12";
     this.radCheckBox12.Size = new System.Drawing.Size(116, 30);
     this.radCheckBox12.TabIndex = 13;
     this.radCheckBox12.Text = "غش پس از تزریق";
     //
     // radCheckBox11
     //
     this.radCheckBox11.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox11.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "KidneyDesease", true));
     this.radCheckBox11.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox11.Location = new System.Drawing.Point(95, 84);
     this.radCheckBox11.Name = "radCheckBox11";
     this.radCheckBox11.Size = new System.Drawing.Size(91, 30);
     this.radCheckBox11.TabIndex = 11;
     this.radCheckBox11.Text = "بیماری کلیوی";
     //
     // radCheckBox13
     //
     this.radCheckBox13.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox13.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "AsthmaAfterInjection", true));
     this.radCheckBox13.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox13.Location = new System.Drawing.Point(245, 111);
     this.radCheckBox13.Name = "radCheckBox13";
     this.radCheckBox13.Size = new System.Drawing.Size(147, 30);
     this.radCheckBox13.TabIndex = 14;
     this.radCheckBox13.Text = "تنگی نفس پس از تزریق";
     //
     // radCheckBox8
     //
     this.radCheckBox8.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox8.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "BloodPresure", true));
     this.radCheckBox8.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox8.Location = new System.Drawing.Point(319, 84);
     this.radCheckBox8.Name = "radCheckBox8";
     this.radCheckBox8.Size = new System.Drawing.Size(73, 30);
     this.radCheckBox8.TabIndex = 9;
     this.radCheckBox8.Text = "فشار خون";
     //
     // radTextBox4
     //
     this.radTextBox4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox4.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "VisitProblemsDescription", true));
     this.radTextBox4.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox4.Location = new System.Drawing.Point(4, 180);
     this.radTextBox4.Name = "radTextBox4";
     this.radTextBox4.Size = new System.Drawing.Size(221, 28);
     this.radTextBox4.TabIndex = 16;
     this.radTextBox4.TabStop = false;
     this.radTextBox4.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtAddress_TextChanging);
     //
     // radCheckBox5
     //
     this.radCheckBox5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox5.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "TiroeedDesease", true));
     this.radCheckBox5.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox5.Location = new System.Drawing.Point(198, 84);
     this.radCheckBox5.Name = "radCheckBox5";
     this.radCheckBox5.Size = new System.Drawing.Size(98, 30);
     this.radCheckBox5.TabIndex = 10;
     this.radCheckBox5.Text = "بیماری تیروئید";
     //
     // radTextBox5
     //
     this.radTextBox5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox5.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "DrugDiscription", true));
     this.radTextBox5.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox5.Location = new System.Drawing.Point(4, 151);
     this.radTextBox5.Name = "radTextBox5";
     this.radTextBox5.Size = new System.Drawing.Size(221, 28);
     this.radTextBox5.TabIndex = 15;
     this.radTextBox5.TabStop = false;
     this.radTextBox5.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtAddress_TextChanging);
     //
     // radCheckBox7
     //
     this.radCheckBox7.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox7.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "Diabetic", true));
     this.radCheckBox7.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox7.Location = new System.Drawing.Point(406, 112);
     this.radCheckBox7.Name = "radCheckBox7";
     this.radCheckBox7.Size = new System.Drawing.Size(52, 30);
     this.radCheckBox7.TabIndex = 12;
     this.radCheckBox7.Text = "دیابت";
     //
     // radCheckBox3
     //
     this.radCheckBox3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox3.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "BloodDesease", true));
     this.radCheckBox3.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox3.Location = new System.Drawing.Point(96, 26);
     this.radCheckBox3.Name = "radCheckBox3";
     this.radCheckBox3.Size = new System.Drawing.Size(90, 30);
     this.radCheckBox3.TabIndex = 3;
     this.radCheckBox3.Text = "ناراحتی خونی";
     //
     // radCheckBox4
     //
     this.radCheckBox4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox4.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "RadioTeraphy", true));
     this.radCheckBox4.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox4.Location = new System.Drawing.Point(189, 55);
     this.radCheckBox4.Name = "radCheckBox4";
     this.radCheckBox4.Size = new System.Drawing.Size(107, 30);
     this.radCheckBox4.TabIndex = 6;
     this.radCheckBox4.Text = "سابقه رادیوتراپی";
     //
     // radCheckBox9
     //
     this.radCheckBox9.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox9.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "Hepatit", true));
     this.radCheckBox9.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox9.Location = new System.Drawing.Point(400, 26);
     this.radCheckBox9.Name = "radCheckBox9";
     this.radCheckBox9.Size = new System.Drawing.Size(58, 30);
     this.radCheckBox9.TabIndex = 0;
     this.radCheckBox9.Text = "هپاتیت";
     //
     // radCheckBox10
     //
     this.radCheckBox10.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox10.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "ChemicalCure", true));
     this.radCheckBox10.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox10.Location = new System.Drawing.Point(98, 55);
     this.radCheckBox10.Name = "radCheckBox10";
     this.radCheckBox10.Size = new System.Drawing.Size(88, 30);
     this.radCheckBox10.TabIndex = 7;
     this.radCheckBox10.Text = "شیمی درمانی";
     //
     // radCheckBox6
     //
     this.radCheckBox6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox6.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "NeuroticDesease", true));
     this.radCheckBox6.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox6.Location = new System.Drawing.Point(299, 55);
     this.radCheckBox6.Name = "radCheckBox6";
     this.radCheckBox6.Size = new System.Drawing.Size(93, 30);
     this.radCheckBox6.TabIndex = 5;
     this.radCheckBox6.Text = "ناراحتی عصبی";
     //
     // radCheckBox2
     //
     this.radCheckBox2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox2.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "Pregnancy", true));
     this.radCheckBox2.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox2.Location = new System.Drawing.Point(397, 55);
     this.radCheckBox2.Name = "radCheckBox2";
     this.radCheckBox2.Size = new System.Drawing.Size(61, 30);
     this.radCheckBox2.TabIndex = 4;
     this.radCheckBox2.Text = "بارداری";
     //
     // patientHepatitCheckBox
     //
     this.patientHepatitCheckBox.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.patientHepatitCheckBox.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "BreathDesease", true));
     this.patientHepatitCheckBox.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.patientHepatitCheckBox.Location = new System.Drawing.Point(200, 26);
     this.patientHepatitCheckBox.Name = "patientHepatitCheckBox";
     this.patientHepatitCheckBox.Size = new System.Drawing.Size(96, 30);
     this.patientHepatitCheckBox.TabIndex = 2;
     this.patientHepatitCheckBox.Text = "ناراحتی تنفسی";
     //
     // patientPregnancyCheckBox
     //
     this.patientPregnancyCheckBox.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.patientPregnancyCheckBox.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "HeartDesease", true));
     this.patientPregnancyCheckBox.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.patientPregnancyCheckBox.Location = new System.Drawing.Point(307, 26);
     this.patientPregnancyCheckBox.Name = "patientPregnancyCheckBox";
     this.patientPregnancyCheckBox.Size = new System.Drawing.Size(85, 30);
     this.patientPregnancyCheckBox.TabIndex = 1;
     this.patientPregnancyCheckBox.Text = "ناراحتی قلبی";
     //
     // radLabel10
     //
     this.radLabel10.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel10.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel10.Location = new System.Drawing.Point(178, 26);
     this.radLabel10.Name = "radLabel10";
     this.radLabel10.Size = new System.Drawing.Size(67, 30);
     this.radLabel10.TabIndex = 42;
     this.radLabel10.Text = "تلفن منزل :";
     this.radLabel10.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel9
     //
     this.radLabel9.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel9.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel9.Location = new System.Drawing.Point(177, 57);
     this.radLabel9.Name = "radLabel9";
     this.radLabel9.Size = new System.Drawing.Size(71, 30);
     this.radLabel9.TabIndex = 43;
     this.radLabel9.Text = "تلفن همراه :";
     this.radLabel9.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel8
     //
     this.radLabel8.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel8.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel8.Location = new System.Drawing.Point(649, 88);
     this.radLabel8.Name = "radLabel8";
     this.radLabel8.Size = new System.Drawing.Size(48, 30);
     this.radLabel8.TabIndex = 44;
     this.radLabel8.Text = "آدرس :";
     this.radLabel8.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel2
     //
     this.radLabel2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel2.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel2.Location = new System.Drawing.Point(646, 119);
     this.radLabel2.Name = "radLabel2";
     this.radLabel2.Size = new System.Drawing.Size(67, 30);
     this.radLabel2.TabIndex = 55;
     this.radLabel2.Text = "تاریخ تولد :";
     this.radLabel2.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel7
     //
     this.radLabel7.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.radLabel7.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel7.Location = new System.Drawing.Point(655, 431);
     this.radLabel7.Name = "radLabel7";
     this.radLabel7.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radLabel7.Size = new System.Drawing.Size(65, 30);
     this.radLabel7.TabIndex = 45;
     this.radLabel7.Text = "توضیحات :";
     this.radLabel7.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtLastName
     //
     this.txtLastName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtLastName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "LastName", true));
     this.txtLastName.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtLastName.Location = new System.Drawing.Point(264, 25);
     this.txtLastName.Name = "txtLastName";
     this.txtLastName.Size = new System.Drawing.Size(150, 28);
     this.txtLastName.TabIndex = 1;
     this.txtLastName.TabStop = false;
     this.txtLastName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtFirstName_TextChanging);
     //
     // txtFirstName
     //
     this.txtFirstName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtFirstName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "FirstName", true));
     this.txtFirstName.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtFirstName.Location = new System.Drawing.Point(498, 25);
     this.txtFirstName.Name = "txtFirstName";
     this.txtFirstName.Size = new System.Drawing.Size(147, 28);
     this.txtFirstName.TabIndex = 0;
     this.txtFirstName.TabStop = false;
     this.txtFirstName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtFirstName_TextChanging);
     //
     // radLabel1
     //
     this.radLabel1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel1.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel1.Location = new System.Drawing.Point(417, 27);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.Size = new System.Drawing.Size(79, 30);
     this.radLabel1.TabIndex = 49;
     this.radLabel1.Text = "نام خانوادگی :";
     this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtDescription
     //
     this.txtDescription.AcceptsReturn = true;
     this.txtDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
     this.txtDescription.AutoScroll = true;
     this.txtDescription.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "Description", true));
     this.txtDescription.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtDescription.Location = new System.Drawing.Point(6, 431);
     this.txtDescription.Multiline = true;
     this.txtDescription.Name = "txtDescription";
     //
     //
     //
     this.txtDescription.RootElement.StretchVertically = true;
     this.txtDescription.Size = new System.Drawing.Size(648, 84);
     this.txtDescription.TabIndex = 6;
     this.txtDescription.TabStop = false;
     this.txtDescription.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtAddress_TextChanging);
     //
     // txtAddress
     //
     this.txtAddress.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtAddress.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "Address", true));
     this.txtAddress.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtAddress.Location = new System.Drawing.Point(262, 88);
     this.txtAddress.Multiline = true;
     this.txtAddress.Name = "txtAddress";
     //
     //
     //
     this.txtAddress.RootElement.StretchVertically = true;
     this.txtAddress.ScrollBars = System.Windows.Forms.ScrollBars.Horizontal;
     this.txtAddress.Size = new System.Drawing.Size(383, 30);
     this.txtAddress.TabIndex = 4;
     this.txtAddress.TabStop = false;
     this.txtAddress.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtAddress_TextChanging);
     //
     // radGroupBox2
     //
     this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.radGroupBox2.Controls.Add(this.btnHistory);
     this.radGroupBox2.Controls.Add(this.radLabel7);
     this.radGroupBox2.Controls.Add(this.btnDocs);
     this.radGroupBox2.Controls.Add(this.lstIns);
     this.radGroupBox2.Controls.Add(this.radGroupBox3);
     this.radGroupBox2.Controls.Add(this.btnAdd);
     this.radGroupBox2.Controls.Add(this.txtDescription);
     this.radGroupBox2.Controls.Add(this.btnNew);
     this.radGroupBox2.Controls.Add(this.radGroupBox1);
     this.radGroupBox2.Controls.Add(this.radLabel11);
     this.radGroupBox2.Controls.Add(this.txtCode);
     this.radGroupBox2.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radGroupBox2.FooterImageIndex = -1;
     this.radGroupBox2.FooterImageKey = "";
     this.radGroupBox2.HeaderImageIndex = -1;
     this.radGroupBox2.HeaderImageKey = "";
     this.radGroupBox2.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox2.HeaderText = "";
     this.radGroupBox2.Location = new System.Drawing.Point(268, 7);
     this.radGroupBox2.Name = "radGroupBox2";
     this.radGroupBox2.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox2.Size = new System.Drawing.Size(730, 564);
     this.radGroupBox2.TabIndex = 0;
     //
     // btnHistory
     //
     this.btnHistory.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnHistory.Location = new System.Drawing.Point(10, 11);
     this.btnHistory.Name = "btnHistory";
     this.btnHistory.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnHistory.Size = new System.Drawing.Size(110, 35);
     this.btnHistory.TabIndex = 2;
     this.btnHistory.Text = "سابقه بیمار   ";
     this.btnHistory.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnHistory.Click += new System.EventHandler(this.radButton2_Click);
     //
     // btnDocs
     //
     this.btnDocs.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnDocs.Location = new System.Drawing.Point(126, 11);
     this.btnDocs.Name = "btnDocs";
     this.btnDocs.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnDocs.Size = new System.Drawing.Size(110, 35);
     this.btnDocs.TabIndex = 1;
     this.btnDocs.Text = "اسناد بیمار   ";
     this.btnDocs.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.btnDocs.Click += new System.EventHandler(this.radButton1_Click);
     //
     // radGroupBox3
     //
     this.radGroupBox3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox3.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.radGroupBox3.Controls.Add(this.radLabel4);
     this.radGroupBox3.Controls.Add(this.radCheckBox14);
     this.radGroupBox3.Controls.Add(this.dpBirthDate);
     this.radGroupBox3.Controls.Add(this.radTextBox2);
     this.radGroupBox3.Controls.Add(this.radTextBox1);
     this.radGroupBox3.Controls.Add(this.txtFirstName);
     this.radGroupBox3.Controls.Add(this.radTextBox3);
     this.radGroupBox3.Controls.Add(this.radLabel5);
     this.radGroupBox3.Controls.Add(this.radLabel3);
     this.radGroupBox3.Controls.Add(this.txtAddress);
     this.radGroupBox3.Controls.Add(this.txtPhone1);
     this.radGroupBox3.Controls.Add(this.radLabel1);
     this.radGroupBox3.Controls.Add(this.txtPhone2);
     this.radGroupBox3.Controls.Add(this.txtLastName);
     this.radGroupBox3.Controls.Add(this.txtAge);
     this.radGroupBox3.Controls.Add(this.radLabel2);
     this.radGroupBox3.Controls.Add(this.lblAge);
     this.radGroupBox3.Controls.Add(this.radLabel8);
     this.radGroupBox3.Controls.Add(this.radLabel9);
     this.radGroupBox3.Controls.Add(this.radLabel10);
     this.radGroupBox3.Controls.Add(this.radLabel12);
     this.radGroupBox3.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radGroupBox3.FooterImageIndex = -1;
     this.radGroupBox3.FooterImageKey = "";
     this.radGroupBox3.HeaderImageIndex = -1;
     this.radGroupBox3.HeaderImageKey = "";
     this.radGroupBox3.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox3.HeaderText = "مشخصات بیمار";
     this.radGroupBox3.Location = new System.Drawing.Point(5, 42);
     this.radGroupBox3.Name = "radGroupBox3";
     this.radGroupBox3.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox3.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radGroupBox3.Size = new System.Drawing.Size(715, 159);
     this.radGroupBox3.TabIndex = 3;
     this.radGroupBox3.Text = "مشخصات بیمار";
     //
     // radLabel4
     //
     this.radLabel4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel4.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel4.Location = new System.Drawing.Point(417, 57);
     this.radLabel4.Name = "radLabel4";
     this.radLabel4.Size = new System.Drawing.Size(39, 30);
     this.radLabel4.TabIndex = 53;
     this.radLabel4.Text = "شغل :";
     this.radLabel4.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radCheckBox14
     //
     this.radCheckBox14.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radCheckBox14.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.patientBindingSource, "IsChild", true));
     this.radCheckBox14.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radCheckBox14.Location = new System.Drawing.Point(8, 122);
     this.radCheckBox14.Name = "radCheckBox14";
     this.radCheckBox14.Size = new System.Drawing.Size(168, 30);
     this.radCheckBox14.TabIndex = 9;
     this.radCheckBox14.Text = "بیمار در گروه اطفال می باشد";
     //
     // radTextBox2
     //
     this.radTextBox2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "Introducer", true));
     this.radTextBox2.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox2.Location = new System.Drawing.Point(498, 57);
     this.radTextBox2.Name = "radTextBox2";
     this.radTextBox2.Size = new System.Drawing.Size(147, 28);
     this.radTextBox2.TabIndex = 2;
     this.radTextBox2.TabStop = false;
     this.radTextBox2.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtFirstName_TextChanging);
     //
     // radTextBox1
     //
     this.radTextBox1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "WorkNumber", true));
     this.radTextBox1.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox1.Location = new System.Drawing.Point(10, 88);
     this.radTextBox1.MaxLength = 15;
     this.radTextBox1.Name = "radTextBox1";
     this.radTextBox1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.radTextBox1.Size = new System.Drawing.Size(166, 28);
     this.radTextBox1.TabIndex = 7;
     this.radTextBox1.TabStop = false;
     this.radTextBox1.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtPhone1_TextChanging);
     //
     // radTextBox3
     //
     this.radTextBox3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radTextBox3.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.patientBindingSource, "Job", true));
     this.radTextBox3.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox3.Location = new System.Drawing.Point(264, 57);
     this.radTextBox3.Name = "radTextBox3";
     this.radTextBox3.Size = new System.Drawing.Size(150, 28);
     this.radTextBox3.TabIndex = 3;
     this.radTextBox3.TabStop = false;
     this.radTextBox3.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtFirstName_TextChanging);
     //
     // radLabel5
     //
     this.radLabel5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel5.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel5.Location = new System.Drawing.Point(649, 57);
     this.radLabel5.Name = "radLabel5";
     this.radLabel5.Size = new System.Drawing.Size(46, 30);
     this.radLabel5.TabIndex = 52;
     this.radLabel5.Text = "معرف :";
     this.radLabel5.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel3
     //
     this.radLabel3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.radLabel3.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel3.Location = new System.Drawing.Point(177, 89);
     this.radLabel3.Name = "radLabel3";
     this.radLabel3.Size = new System.Drawing.Size(85, 30);
     this.radLabel3.TabIndex = 45;
     this.radLabel3.Text = "تلفن محل کار :";
     this.radLabel3.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // FormDefinePatient
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1000, 622);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.radGroupBox2);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.patientListGroupBox);
     this.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.MinimumSize = new System.Drawing.Size(1008, 540);
     this.Name = "FormDefinePatient";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "بیمار";
     this.ThemeName = "ControlDefault";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.patientListGroupBox)).EndInit();
     this.patientListGroupBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.filteringPanel)).EndInit();
     this.filteringPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdPatient.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPatient)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIns.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIns)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblAge)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientHepatitCheckBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.patientPregnancyCheckBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirstName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDescription)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAddress)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     this.radGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnHistory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDocs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).EndInit();
     this.radGroupBox3.ResumeLayout(false);
     this.radGroupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn6 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.btnSave = new Telerik.WinControls.UI.RadButton();
     this.btnNew = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox4 = new Telerik.WinControls.UI.RadGroupBox();
     this.chbDoctor = new Telerik.WinControls.UI.RadCheckBox();
     this.srcItem = new System.Windows.Forms.BindingSource(this.components);
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.radLabel23 = new Telerik.WinControls.UI.RadLabel();
     this.txtDoctorCode = new Telerik.WinControls.UI.RadTextBox();
     this.cmbSex = new System.Windows.Forms.ComboBox();
     this.chbIsUser = new Telerik.WinControls.UI.RadCheckBox();
     this.cmbRoles = new System.Windows.Forms.ComboBox();
     this.radLabel13 = new Telerik.WinControls.UI.RadLabel();
     this.txtPercent = new Telerik.WinControls.UI.RadTextBox();
     this.grbUser = new Telerik.WinControls.UI.RadGroupBox();
     this.radLabel14 = new Telerik.WinControls.UI.RadLabel();
     this.txtPassword = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel15 = new Telerik.WinControls.UI.RadLabel();
     this.txtUsername = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel16 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel17 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel18 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel19 = new Telerik.WinControls.UI.RadLabel();
     this.txtSalary = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel20 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel21 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel22 = new Telerik.WinControls.UI.RadLabel();
     this.txtCellPhone = new Telerik.WinControls.UI.RadTextBox();
     this.txtPhone = new Telerik.WinControls.UI.RadTextBox();
     this.txtFamily = new Telerik.WinControls.UI.RadTextBox();
     this.txtName = new Telerik.WinControls.UI.RadTextBox();
     this.radGroupBox6 = new Telerik.WinControls.UI.RadGroupBox();
     this.ucFilter1 = new ShayanDental.UserControls.UCFilter();
     this.grvItems = new Telerik.WinControls.UI.RadGridView();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).BeginInit();
     this.radGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chbDoctor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDoctorCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chbIsUser)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPercent)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grbUser)).BeginInit();
     this.grbUser.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUsername)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSalary)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCellPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFamily)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).BeginInit();
     this.radGroupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radLabel4
     //
     this.radLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel4.Location = new System.Drawing.Point(426, -59);
     this.radLabel4.Name = "radLabel4";
     this.radLabel4.Size = new System.Drawing.Size(88, 18);
     this.radLabel4.TabIndex = 14;
     this.radLabel4.Text = "سمت های ذخیره شده:";
     this.radLabel4.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // 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(668, 539);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(140, 35);
     this.btnSave.TabIndex = 15;
     this.btnSave.Text = "ذخیره";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnNew
     //
     this.btnNew.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnNew.Location = new System.Drawing.Point(5, 494);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(138, 35);
     this.btnNew.TabIndex = 14;
     this.btnNew.Text = "جدید";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // radGroupBox4
     //
     this.radGroupBox4.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radGroupBox4.Controls.Add(this.chbDoctor);
     this.radGroupBox4.Controls.Add(this.btnAdd);
     this.radGroupBox4.Controls.Add(this.radGroupBox1);
     this.radGroupBox4.Controls.Add(this.cmbSex);
     this.radGroupBox4.Controls.Add(this.btnNew);
     this.radGroupBox4.Controls.Add(this.chbIsUser);
     this.radGroupBox4.Controls.Add(this.cmbRoles);
     this.radGroupBox4.Controls.Add(this.radLabel13);
     this.radGroupBox4.Controls.Add(this.txtPercent);
     this.radGroupBox4.Controls.Add(this.grbUser);
     this.radGroupBox4.Controls.Add(this.radLabel16);
     this.radGroupBox4.Controls.Add(this.radLabel17);
     this.radGroupBox4.Controls.Add(this.radLabel18);
     this.radGroupBox4.Controls.Add(this.radLabel19);
     this.radGroupBox4.Controls.Add(this.txtSalary);
     this.radGroupBox4.Controls.Add(this.radLabel20);
     this.radGroupBox4.Controls.Add(this.radLabel21);
     this.radGroupBox4.Controls.Add(this.radLabel22);
     this.radGroupBox4.Controls.Add(this.txtCellPhone);
     this.radGroupBox4.Controls.Add(this.txtPhone);
     this.radGroupBox4.Controls.Add(this.txtFamily);
     this.radGroupBox4.Controls.Add(this.txtName);
     this.radGroupBox4.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     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(519, 0);
     this.radGroupBox4.Name = "radGroupBox4";
     this.radGroupBox4.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox4.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radGroupBox4.Size = new System.Drawing.Size(299, 534);
     this.radGroupBox4.TabIndex = 12;
     this.radGroupBox4.TabStop = false;
     this.radGroupBox4.Text = "تعریف";
     this.radGroupBox4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // chbDoctor
     //
     this.chbDoctor.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.srcItem, "IsDoctor", true));
     this.chbDoctor.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
     this.chbDoctor.Location = new System.Drawing.Point(194, 300);
     this.chbDoctor.Name = "chbDoctor";
     this.chbDoctor.Size = new System.Drawing.Size(90, 30);
     this.chbDoctor.TabIndex = 8;
     this.chbDoctor.Text = "دندان پزشک";
     this.chbDoctor.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;
     this.chbDoctor.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.chbDoctor_ToggleStateChanged);
     //
     // srcItem
     //
     this.srcItem.DataSource = typeof(Shayan.Data.Employee);
     //
     // btnAdd
     //
     this.btnAdd.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnAdd.Location = new System.Drawing.Point(149, 494);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(140, 35);
     this.btnAdd.TabIndex = 13;
     this.btnAdd.Text = "افزودن";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.radLabel23);
     this.radGroupBox1.Controls.Add(this.txtDoctorCode);
     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 = "radGroupBox1";
     this.radGroupBox1.Location = new System.Drawing.Point(5, 306);
     this.radGroupBox1.Name = "radGroupBox1";
     this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox1.Size = new System.Drawing.Size(284, 69);
     this.radGroupBox1.TabIndex = 11;
     this.radGroupBox1.Text = "radGroupBox1";
     //
     // radLabel23
     //
     this.radLabel23.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
     this.radLabel23.Location = new System.Drawing.Point(185, 29);
     this.radLabel23.Name = "radLabel23";
     this.radLabel23.Size = new System.Drawing.Size(95, 30);
     this.radLabel23.TabIndex = 15;
     this.radLabel23.Text = "کد نظام پزشکی :";
     this.radLabel23.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtDoctorCode
     //
     this.txtDoctorCode.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "DoctorCode", true));
     this.txtDoctorCode.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtDoctorCode.Location = new System.Drawing.Point(5, 31);
     this.txtDoctorCode.Name = "txtDoctorCode";
     this.txtDoctorCode.ReadOnly = true;
     this.txtDoctorCode.Size = new System.Drawing.Size(176, 28);
     this.txtDoctorCode.TabIndex = 9;
     this.txtDoctorCode.TabStop = false;
     this.txtDoctorCode.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtDoctorCode_TextChanging);
     //
     // cmbSex
     //
     this.cmbSex.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbSex.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.cmbSex.FormattingEnabled = true;
     this.cmbSex.Items.AddRange(new object[] {
     "مرد",
     "زن"});
     this.cmbSex.Location = new System.Drawing.Point(106, 159);
     this.cmbSex.Name = "cmbSex";
     this.cmbSex.Size = new System.Drawing.Size(108, 31);
     this.cmbSex.TabIndex = 4;
     this.cmbSex.SelectedIndexChanged += new System.EventHandler(this.cmbSex_SelectedIndexChanged);
     this.cmbSex.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // chbIsUser
     //
     this.chbIsUser.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.srcItem, "CanLogin", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.chbIsUser.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
     this.chbIsUser.Location = new System.Drawing.Point(154, 377);
     this.chbIsUser.Name = "chbIsUser";
     this.chbIsUser.Size = new System.Drawing.Size(129, 30);
     this.chbIsUser.TabIndex = 10;
     this.chbIsUser.Text = "اجازه ورود به سیستم";
     this.chbIsUser.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;
     this.chbIsUser.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.chbIsUser_ToggleStateChanged);
     this.chbIsUser.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // cmbRoles
     //
     this.cmbRoles.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.cmbRoles.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.cmbRoles.DataBindings.Add(new System.Windows.Forms.Binding("SelectedItem", this.srcItem, "Role", true));
     this.cmbRoles.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbRoles.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.cmbRoles.FormattingEnabled = true;
     this.cmbRoles.Location = new System.Drawing.Point(13, 196);
     this.cmbRoles.Name = "cmbRoles";
     this.cmbRoles.Size = new System.Drawing.Size(201, 31);
     this.cmbRoles.TabIndex = 5;
     this.cmbRoles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // radLabel13
     //
     this.radLabel13.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
     this.radLabel13.Location = new System.Drawing.Point(205, 270);
     this.radLabel13.Name = "radLabel13";
     this.radLabel13.Size = new System.Drawing.Size(91, 30);
     this.radLabel13.TabIndex = 15;
     this.radLabel13.Text = "درصد سرویس :";
     this.radLabel13.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtPercent
     //
     this.txtPercent.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "IncomePercentage", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.txtPercent.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtPercent.Location = new System.Drawing.Point(106, 269);
     this.txtPercent.Name = "txtPercent";
     this.txtPercent.Size = new System.Drawing.Size(90, 28);
     this.txtPercent.TabIndex = 7;
     this.txtPercent.TabStop = false;
     this.txtPercent.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtPercent_TextChanging);
     this.txtPercent.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // grbUser
     //
     this.grbUser.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.grbUser.Controls.Add(this.radLabel14);
     this.grbUser.Controls.Add(this.txtPassword);
     this.grbUser.Controls.Add(this.radLabel15);
     this.grbUser.Controls.Add(this.txtUsername);
     this.grbUser.FooterImageIndex = -1;
     this.grbUser.FooterImageKey = "";
     this.grbUser.HeaderImageIndex = -1;
     this.grbUser.HeaderImageKey = "";
     this.grbUser.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.grbUser.HeaderText = "grbUser";
     this.grbUser.Location = new System.Drawing.Point(5, 384);
     this.grbUser.Name = "grbUser";
     this.grbUser.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.grbUser.Size = new System.Drawing.Size(284, 104);
     this.grbUser.TabIndex = 9;
     this.grbUser.Text = "grbUser";
     //
     // radLabel14
     //
     this.radLabel14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel14.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
     this.radLabel14.Location = new System.Drawing.Point(211, 61);
     this.radLabel14.Name = "radLabel14";
     this.radLabel14.Size = new System.Drawing.Size(61, 30);
     this.radLabel14.TabIndex = 19;
     this.radLabel14.Text = "رمز عبور :";
     this.radLabel14.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtPassword
     //
     this.txtPassword.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPassword.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Password", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.txtPassword.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtPassword.Location = new System.Drawing.Point(8, 62);
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.PasswordChar = '*';
     this.txtPassword.Size = new System.Drawing.Size(201, 28);
     this.txtPassword.TabIndex = 12;
     this.txtPassword.TabStop = false;
     this.txtPassword.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // radLabel15
     //
     this.radLabel15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel15.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
     this.radLabel15.Location = new System.Drawing.Point(211, 25);
     this.radLabel15.Name = "radLabel15";
     this.radLabel15.Size = new System.Drawing.Size(69, 30);
     this.radLabel15.TabIndex = 17;
     this.radLabel15.Text = "نام کاربری :";
     this.radLabel15.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtUsername
     //
     this.txtUsername.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtUsername.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Username", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.txtUsername.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtUsername.Location = new System.Drawing.Point(8, 27);
     this.txtUsername.Name = "txtUsername";
     this.txtUsername.Size = new System.Drawing.Size(201, 28);
     this.txtUsername.TabIndex = 11;
     this.txtUsername.TabStop = false;
     this.txtUsername.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // radLabel16
     //
     this.radLabel16.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
     this.radLabel16.Location = new System.Drawing.Point(216, 197);
     this.radLabel16.Name = "radLabel16";
     this.radLabel16.Size = new System.Drawing.Size(42, 30);
     this.radLabel16.TabIndex = 15;
     this.radLabel16.Text = "سمت :";
     this.radLabel16.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel17
     //
     this.radLabel17.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
     this.radLabel17.Location = new System.Drawing.Point(216, 160);
     this.radLabel17.Name = "radLabel17";
     this.radLabel17.Size = new System.Drawing.Size(54, 30);
     this.radLabel17.TabIndex = 17;
     this.radLabel17.Text = "جنسیت :";
     this.radLabel17.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel18
     //
     this.radLabel18.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
     this.radLabel18.Location = new System.Drawing.Point(215, 235);
     this.radLabel18.Name = "radLabel18";
     this.radLabel18.Size = new System.Drawing.Size(66, 30);
     this.radLabel18.TabIndex = 13;
     this.radLabel18.Text = "پایه حقوق :";
     this.radLabel18.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel19
     //
     this.radLabel19.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
     this.radLabel19.Location = new System.Drawing.Point(216, 90);
     this.radLabel19.Name = "radLabel19";
     this.radLabel19.Size = new System.Drawing.Size(38, 30);
     this.radLabel19.TabIndex = 15;
     this.radLabel19.Text = "تلفن :";
     this.radLabel19.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtSalary
     //
     this.txtSalary.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "MonthlySalary", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, "{0:0,0}", "N0"));
     this.txtSalary.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtSalary.Location = new System.Drawing.Point(106, 235);
     this.txtSalary.Name = "txtSalary";
     this.txtSalary.Size = new System.Drawing.Size(108, 28);
     this.txtSalary.TabIndex = 6;
     this.txtSalary.TabStop = false;
     this.txtSalary.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtSalary_TextChanging);
     this.txtSalary.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // radLabel20
     //
     this.radLabel20.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
     this.radLabel20.Location = new System.Drawing.Point(217, 20);
     this.radLabel20.Name = "radLabel20";
     this.radLabel20.Size = new System.Drawing.Size(28, 30);
     this.radLabel20.TabIndex = 11;
     this.radLabel20.Text = "نام :";
     this.radLabel20.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel21
     //
     this.radLabel21.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
     this.radLabel21.Location = new System.Drawing.Point(214, 125);
     this.radLabel21.Name = "radLabel21";
     this.radLabel21.Size = new System.Drawing.Size(71, 30);
     this.radLabel21.TabIndex = 13;
     this.radLabel21.Text = "تلفن همراه :";
     this.radLabel21.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel22
     //
     this.radLabel22.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
     this.radLabel22.Location = new System.Drawing.Point(216, 55);
     this.radLabel22.Name = "radLabel22";
     this.radLabel22.Size = new System.Drawing.Size(79, 30);
     this.radLabel22.TabIndex = 9;
     this.radLabel22.Text = "نام خانوادگی :";
     this.radLabel22.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtCellPhone
     //
     this.txtCellPhone.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "CellPhone", true));
     this.txtCellPhone.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtCellPhone.Location = new System.Drawing.Point(106, 125);
     this.txtCellPhone.Name = "txtCellPhone";
     this.txtCellPhone.Size = new System.Drawing.Size(108, 28);
     this.txtCellPhone.TabIndex = 3;
     this.txtCellPhone.TabStop = false;
     this.txtCellPhone.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtCellPhone_TextChanging);
     this.txtCellPhone.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // txtPhone
     //
     this.txtPhone.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "HomeNumber", true));
     this.txtPhone.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtPhone.Location = new System.Drawing.Point(106, 90);
     this.txtPhone.Name = "txtPhone";
     this.txtPhone.Size = new System.Drawing.Size(108, 28);
     this.txtPhone.TabIndex = 2;
     this.txtPhone.TabStop = false;
     this.txtPhone.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtCellPhone_TextChanging);
     this.txtPhone.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // txtFamily
     //
     this.txtFamily.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "LastName", true));
     this.txtFamily.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtFamily.Location = new System.Drawing.Point(13, 56);
     this.txtFamily.Name = "txtFamily";
     this.txtFamily.Size = new System.Drawing.Size(201, 28);
     this.txtFamily.TabIndex = 1;
     this.txtFamily.TabStop = false;
     this.txtFamily.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtFamily_TextChanging);
     this.txtFamily.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // txtName
     //
     this.txtName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "FirstName", true));
     this.txtName.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtName.Location = new System.Drawing.Point(13, 22);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(201, 28);
     this.txtName.TabIndex = 0;
     this.txtName.TabStop = false;
     this.txtName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtName_TextChanging);
     this.txtName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // radGroupBox6
     //
     this.radGroupBox6.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox6.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.radGroupBox6.Controls.Add(this.ucFilter1);
     this.radGroupBox6.Controls.Add(this.grvItems);
     this.radGroupBox6.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     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(3, 0);
     this.radGroupBox6.Name = "radGroupBox6";
     this.radGroupBox6.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radGroupBox6.Size = new System.Drawing.Size(507, 575);
     this.radGroupBox6.TabIndex = 15;
     this.radGroupBox6.TabStop = false;
     this.radGroupBox6.Text = "کارمندان و دندان پزشکان";
     //
     // ucFilter1
     //
     this.ucFilter1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.ucFilter1.Location = new System.Drawing.Point(5, 26);
     this.ucFilter1.Name = "ucFilter1";
     this.ucFilter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ucFilter1.Size = new System.Drawing.Size(497, 28);
     this.ucFilter1.TabIndex = 16;
     //
     // grvItems
     //
     this.grvItems.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.grvItems.BackColor = System.Drawing.SystemColors.Control;
     this.grvItems.Cursor = System.Windows.Forms.Cursors.Default;
     this.grvItems.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.grvItems.ForeColor = System.Drawing.Color.Black;
     this.grvItems.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grvItems.Location = new System.Drawing.Point(5, 56);
     //
     // grvItems
     //
     this.grvItems.MasterTemplate.AllowAddNewRow = false;
     this.grvItems.MasterTemplate.AllowCellContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnChooser = false;
     this.grvItems.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnReorder = false;
     this.grvItems.MasterTemplate.AllowDeleteRow = false;
     this.grvItems.MasterTemplate.AllowDragToGroup = false;
     this.grvItems.MasterTemplate.AllowEditRow = false;
     this.grvItems.MasterTemplate.AllowRowResize = false;
     this.grvItems.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.EnableExpressionEditor = false;
     gridViewTextBoxColumn1.FieldName = "FirstName";
     gridViewTextBoxColumn1.HeaderText = "نام";
     gridViewTextBoxColumn1.Name = "column1";
     gridViewTextBoxColumn1.Width = 167;
     gridViewTextBoxColumn2.EnableExpressionEditor = false;
     gridViewTextBoxColumn2.FieldName = "LastName";
     gridViewTextBoxColumn2.HeaderText = "نام خانوادگی";
     gridViewTextBoxColumn2.Name = "column2";
     gridViewTextBoxColumn2.Width = 34;
     gridViewTextBoxColumn3.EnableExpressionEditor = false;
     gridViewTextBoxColumn3.FieldName = "DoctorCode";
     gridViewTextBoxColumn3.HeaderText = "کد نظام پزشکی";
     gridViewTextBoxColumn3.Name = "column6";
     gridViewTextBoxColumn3.Width = 72;
     gridViewTextBoxColumn4.EnableExpressionEditor = false;
     gridViewTextBoxColumn4.FieldName = "Username";
     gridViewTextBoxColumn4.HeaderText = "نام کاربری";
     gridViewTextBoxColumn4.Name = "column7";
     gridViewTextBoxColumn4.Width = 92;
     gridViewTextBoxColumn5.EnableExpressionEditor = false;
     gridViewTextBoxColumn5.FieldName = "CellPhone";
     gridViewTextBoxColumn5.HeaderText = "موبایل";
     gridViewTextBoxColumn5.Name = "column3";
     gridViewTextBoxColumn5.Width = 44;
     gridViewTextBoxColumn6.EnableExpressionEditor = false;
     gridViewTextBoxColumn6.FieldName = "HomeNumber";
     gridViewTextBoxColumn6.HeaderText = "تلفن";
     gridViewTextBoxColumn6.Name = "column5";
     gridViewTextBoxColumn6.Width = 62;
     gridViewCommandColumn1.AllowHide = false;
     gridViewCommandColumn1.AllowReorder = false;
     gridViewCommandColumn1.AllowResize = false;
     gridViewCommandColumn1.AllowSort = false;
     gridViewCommandColumn1.EnableExpressionEditor = false;
     gridViewCommandColumn1.HeaderText = "حذف";
     gridViewCommandColumn1.Name = "column4";
     gridViewCommandColumn1.Width = 30;
     this.grvItems.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn1,
     gridViewTextBoxColumn2,
     gridViewTextBoxColumn3,
     gridViewTextBoxColumn4,
     gridViewTextBoxColumn5,
     gridViewTextBoxColumn6,
     gridViewCommandColumn1});
     this.grvItems.MasterTemplate.EnableGrouping = false;
     this.grvItems.MasterTemplate.ShowRowHeaderColumn = false;
     this.grvItems.Name = "grvItems";
     this.grvItems.ReadOnly = true;
     this.grvItems.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.grvItems.Size = new System.Drawing.Size(497, 509);
     this.grvItems.TabIndex = 15;
     this.grvItems.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grvItems_CellFormatting);
     this.grvItems.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grvItems_CurrentRowChanging);
     this.grvItems.SelectionChanged += new System.EventHandler(this.grvItems_SelectionChanged);
     this.grvItems.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grvItems_CommandCellClick);
     this.grvItems.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grvItems_KeyDown);
     //
     // 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(524, 539);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(138, 35);
     this.btnCancel.TabIndex = 16;
     this.btnCancel.Text = "انصراف";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // FormDefineEmployee
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.ClientSize = new System.Drawing.Size(834, 587);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.radGroupBox6);
     this.Controls.Add(this.radLabel4);
     this.Controls.Add(this.radGroupBox4);
     this.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold);
     this.MinimumSize = new System.Drawing.Size(830, 600);
     this.Name = "FormDefineEmployee";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "مدیریت سیستم : تعریف کارمندان";
     this.ThemeName = "ControlDefault";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).EndInit();
     this.radGroupBox4.ResumeLayout(false);
     this.radGroupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chbDoctor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDoctorCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chbIsUser)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPercent)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grbUser)).EndInit();
     this.grbUser.ResumeLayout(false);
     this.grbUser.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtUsername)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSalary)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCellPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFamily)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).EndInit();
     this.radGroupBox6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSettings));
     this.radButton7 = new Telerik.WinControls.UI.RadButton();
     this.txt_ply_rate = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.radButton6 = new Telerik.WinControls.UI.RadButton();
     this.radButton11 = new Telerik.WinControls.UI.RadButton();
     this.radTabStrip1 = new Telerik.WinControls.UI.RadTabStrip();
     this.tabItem1 = new Telerik.WinControls.UI.TabItem();
     this.radGridView2 = new Telerik.WinControls.UI.RadGridView();
     this.txt_brand = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.btn_add_brand = new Telerik.WinControls.UI.RadButton();
     this.tabItem2 = new Telerik.WinControls.UI.TabItem();
     this.radButton12 = new Telerik.WinControls.UI.RadButton();
     this.btn_delete = new Telerik.WinControls.UI.RadButton();
     this.radGridView3 = new Telerik.WinControls.UI.RadGridView();
     this.txt_size = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.btn_size = new Telerik.WinControls.UI.RadButton();
     this.tabItem3 = new Telerik.WinControls.UI.TabItem();
     this.radButton3 = new Telerik.WinControls.UI.RadButton();
     this.radButton2 = new Telerik.WinControls.UI.RadButton();
     this.com_brand_name = new Telerik.WinControls.UI.RadComboBox();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.radGridView4 = new Telerik.WinControls.UI.RadGridView();
     this.txt_thread_pattern = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
     this.radButton13 = new Telerik.WinControls.UI.RadButton();
     this.tabItem4 = new Telerik.WinControls.UI.TabItem();
     this.radButton15 = new Telerik.WinControls.UI.RadButton();
     this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
     this.radButton5 = new Telerik.WinControls.UI.RadButton();
     this.tabItem5 = new Telerik.WinControls.UI.TabItem();
     this.radButton16 = new Telerik.WinControls.UI.RadButton();
     this.radButton4 = new Telerik.WinControls.UI.RadButton();
     this.radGridView5 = new Telerik.WinControls.UI.RadGridView();
     this.txt_make = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
     this.radButton14 = new Telerik.WinControls.UI.RadButton();
     this.tabItem6 = new Telerik.WinControls.UI.TabItem();
     this.radButton9 = new Telerik.WinControls.UI.RadButton();
     this.radButton8 = new Telerik.WinControls.UI.RadButton();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.radButton1 = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.radButton7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_ply_rate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTabStrip1)).BeginInit();
     this.radTabStrip1.SuspendLayout();
     this.tabItem1.ContentPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_add_brand)).BeginInit();
     this.tabItem2.ContentPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_delete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_size)).BeginInit();
     this.tabItem3.ContentPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand_name)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_thread_pattern)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton13)).BeginInit();
     this.tabItem4.ContentPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton5)).BeginInit();
     this.tabItem5.ContentPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_make)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton14)).BeginInit();
     this.tabItem6.ContentPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radButton7
     //
     this.radButton7.Location = new System.Drawing.Point(156, 59);
     this.radButton7.Name = "radButton7";
     this.radButton7.Size = new System.Drawing.Size(90, 25);
     this.radButton7.TabIndex = 2;
     this.radButton7.Text = "Add ";
     this.radButton7.ThemeName = "Breeze";
     this.radButton7.Click += new System.EventHandler(this.radButton7_Click);
     //
     // txt_ply_rate
     //
     this.txt_ply_rate.Location = new System.Drawing.Point(90, 22);
     this.txt_ply_rate.Name = "txt_ply_rate";
     this.txt_ply_rate.Size = new System.Drawing.Size(156, 20);
     this.txt_ply_rate.TabIndex = 1;
     this.txt_ply_rate.TabStop = false;
     this.txt_ply_rate.TextChanged += new System.EventHandler(this.txt_ply_rate_TextChanged);
     //
     // radLabel1
     //
     this.radLabel1.ForeColor = System.Drawing.Color.White;
     this.radLabel1.Location = new System.Drawing.Point(31, 22);
     this.radLabel1.Name = "radLabel1";
     //
     //
     //
     this.radLabel1.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel1.Size = new System.Drawing.Size(49, 16);
     this.radLabel1.TabIndex = 0;
     this.radLabel1.Text = "Ply Rate";
     //
     // radLabel2
     //
     this.radLabel2.BackColor = System.Drawing.Color.Transparent;
     this.radLabel2.Font = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Bold);
     this.radLabel2.ForeColor = System.Drawing.Color.White;
     this.radLabel2.Location = new System.Drawing.Point(17, 22);
     this.radLabel2.Name = "radLabel2";
     //
     //
     //
     this.radLabel2.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel2.Size = new System.Drawing.Size(139, 41);
     this.radLabel2.TabIndex = 7;
     this.radLabel2.Text = "SETTINGS";
     //
     // radButton6
     //
     this.radButton6.Location = new System.Drawing.Point(280, 48);
     this.radButton6.Name = "radButton6";
     this.radButton6.Size = new System.Drawing.Size(90, 25);
     this.radButton6.TabIndex = 3;
     this.radButton6.Text = "Update";
     this.radButton6.ThemeName = "Breeze";
     this.radButton6.Click += new System.EventHandler(this.radButton6_Click_1);
     //
     // radButton11
     //
     this.radButton11.Location = new System.Drawing.Point(399, 48);
     this.radButton11.Name = "radButton11";
     this.radButton11.Size = new System.Drawing.Size(90, 25);
     this.radButton11.TabIndex = 4;
     this.radButton11.Text = "Delete";
     this.radButton11.ThemeName = "Breeze";
     this.radButton11.Click += new System.EventHandler(this.radButton11_Click);
     //
     // radTabStrip1
     //
     this.radTabStrip1.AutoScrollMargin = new System.Drawing.Size(0, 0);
     this.radTabStrip1.AutoScrollMinSize = new System.Drawing.Size(0, 0);
     this.radTabStrip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(249)))), ((int)(((byte)(249)))));
     this.radTabStrip1.Items.AddRange(new Telerik.WinControls.RadItem[] {
     this.tabItem1,
     this.tabItem2,
     this.tabItem3,
     this.tabItem4,
     this.tabItem5,
     this.tabItem6});
     this.radTabStrip1.Location = new System.Drawing.Point(20, 80);
     this.radTabStrip1.Name = "radTabStrip1";
     this.radTabStrip1.ScrollOffsetStep = 5;
     this.radTabStrip1.Size = new System.Drawing.Size(597, 368);
     this.radTabStrip1.TabIndex = 9;
     this.radTabStrip1.TabScrollButtonsPosition = Telerik.WinControls.UI.TabScrollButtonsPosition.RightBottom;
     this.radTabStrip1.Text = "radTabStrip1";
     this.radTabStrip1.ThemeName = "Breeze";
     ((Telerik.WinControls.UI.RadTabStripElement)(this.radTabStrip1.GetChildAt(0))).SeparatorColor = System.Drawing.Color.DarkGray;
     ((Telerik.WinControls.UI.RadTabStripElement)(this.radTabStrip1.GetChildAt(0))).TabScrollButtonsPosition = Telerik.WinControls.UI.TabScrollButtonsPosition.RightBottom;
     ((Telerik.WinControls.UI.RadTabStripElement)(this.radTabStrip1.GetChildAt(0))).StretchBaseMode = Telerik.WinControls.UI.TabBaseStretchMode.StretchToRemainingSpace;
     ((Telerik.WinControls.UI.RadTabStripElement)(this.radTabStrip1.GetChildAt(0))).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(110)))), ((int)(((byte)(112)))));
     //
     // tabItem1
     //
     this.tabItem1.Alignment = System.Drawing.ContentAlignment.BottomLeft;
     //
     // tabItem1.ContentPanel
     //
     this.tabItem1.ContentPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(249)))), ((int)(((byte)(249)))));
     this.tabItem1.ContentPanel.CausesValidation = true;
     this.tabItem1.ContentPanel.Controls.Add(this.radGridView2);
     this.tabItem1.ContentPanel.Controls.Add(this.radButton6);
     this.tabItem1.ContentPanel.Controls.Add(this.radButton11);
     this.tabItem1.ContentPanel.Controls.Add(this.txt_brand);
     this.tabItem1.ContentPanel.Controls.Add(this.radLabel4);
     this.tabItem1.ContentPanel.Controls.Add(this.btn_add_brand);
     this.tabItem1.ContentPanel.Font = new System.Drawing.Font("Arial", 8.25F);
     this.tabItem1.ContentPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(110)))), ((int)(((byte)(112)))));
     this.tabItem1.ContentPanel.Location = new System.Drawing.Point(1, 37);
     this.tabItem1.ContentPanel.Size = new System.Drawing.Size(595, 330);
     this.tabItem1.ContentPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.tabItem1_ContentPanel_Paint);
     this.tabItem1.IsSelected = true;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.StretchHorizontally = false;
     this.tabItem1.Text = "Brand";
     this.tabItem1.Click += new System.EventHandler(this.tabItem1_Click);
     //
     // radGridView2
     //
     this.radGridView2.AutoScroll = true;
     this.radGridView2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(239)))), ((int)(((byte)(249)))));
     this.radGridView2.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView2.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.radGridView2.ForeColor = System.Drawing.Color.Black;
     this.radGridView2.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView2.Location = new System.Drawing.Point(160, 92);
     //
     // radGridView2
     //
     this.radGridView2.MasterTemplate.AllowAddNewRow = false;
     this.radGridView2.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView2.MasterTemplate.EnableGrouping = false;
     this.radGridView2.Name = "radGridView2";
     this.radGridView2.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.ReadOnly = true;
     this.radGridView2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView2.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView2.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.Size = new System.Drawing.Size(329, 236);
     this.radGridView2.TabIndex = 5;
     this.radGridView2.Text = "radGridView2";
     this.radGridView2.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView2_CellClick);
     //
     // txt_brand
     //
     this.txt_brand.Location = new System.Drawing.Point(160, 17);
     this.txt_brand.Name = "txt_brand";
     this.txt_brand.Size = new System.Drawing.Size(329, 20);
     this.txt_brand.TabIndex = 1;
     this.txt_brand.TabStop = false;
     this.txt_brand.TextChanged += new System.EventHandler(this.txt_brand_TextChanged);
     //
     // radLabel4
     //
     this.radLabel4.ForeColor = System.Drawing.Color.White;
     this.radLabel4.Location = new System.Drawing.Point(66, 19);
     this.radLabel4.Name = "radLabel4";
     //
     //
     //
     this.radLabel4.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel4.Size = new System.Drawing.Size(70, 16);
     this.radLabel4.TabIndex = 4;
     this.radLabel4.Text = "Brand Name";
     //
     // btn_add_brand
     //
     this.btn_add_brand.Location = new System.Drawing.Point(160, 48);
     this.btn_add_brand.Name = "btn_add_brand";
     this.btn_add_brand.Size = new System.Drawing.Size(90, 25);
     this.btn_add_brand.TabIndex = 2;
     this.btn_add_brand.Text = "Add ";
     this.btn_add_brand.ThemeName = "Breeze";
     this.btn_add_brand.Click += new System.EventHandler(this.btn_add_brand_Click);
     //
     // tabItem2
     //
     this.tabItem2.Alignment = System.Drawing.ContentAlignment.BottomLeft;
     //
     // tabItem2.ContentPanel
     //
     this.tabItem2.ContentPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(249)))), ((int)(((byte)(249)))));
     this.tabItem2.ContentPanel.CausesValidation = true;
     this.tabItem2.ContentPanel.Controls.Add(this.radButton12);
     this.tabItem2.ContentPanel.Controls.Add(this.btn_delete);
     this.tabItem2.ContentPanel.Controls.Add(this.radGridView3);
     this.tabItem2.ContentPanel.Controls.Add(this.txt_size);
     this.tabItem2.ContentPanel.Controls.Add(this.radLabel5);
     this.tabItem2.ContentPanel.Controls.Add(this.btn_size);
     this.tabItem2.ContentPanel.Font = new System.Drawing.Font("Arial", 8.25F);
     this.tabItem2.ContentPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(110)))), ((int)(((byte)(112)))));
     this.tabItem2.ContentPanel.Location = new System.Drawing.Point(1, 37);
     this.tabItem2.ContentPanel.Size = new System.Drawing.Size(595, 330);
     this.tabItem2.ContentPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.tabItem2_ContentPanel_Paint);
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.StretchHorizontally = false;
     this.tabItem2.Text = "Size";
     //
     // radButton12
     //
     this.radButton12.Location = new System.Drawing.Point(247, 74);
     this.radButton12.Name = "radButton12";
     this.radButton12.Size = new System.Drawing.Size(90, 25);
     this.radButton12.TabIndex = 3;
     this.radButton12.Text = "Update";
     this.radButton12.ThemeName = "Breeze";
     this.radButton12.Click += new System.EventHandler(this.radButton12_Click);
     //
     // btn_delete
     //
     this.btn_delete.Location = new System.Drawing.Point(374, 74);
     this.btn_delete.Name = "btn_delete";
     this.btn_delete.Size = new System.Drawing.Size(90, 25);
     this.btn_delete.TabIndex = 4;
     this.btn_delete.Text = "Delete";
     this.btn_delete.ThemeName = "Breeze";
     this.btn_delete.Click += new System.EventHandler(this.btn_delete_Click);
     //
     // radGridView3
     //
     this.radGridView3.AutoScroll = true;
     this.radGridView3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(239)))), ((int)(((byte)(249)))));
     this.radGridView3.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView3.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.radGridView3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(66)))), ((int)(((byte)(139)))));
     this.radGridView3.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView3.Location = new System.Drawing.Point(121, 133);
     //
     // radGridView3
     //
     this.radGridView3.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.radGridView3.MasterTemplate.AllowAddNewRow = false;
     this.radGridView3.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView3.MasterTemplate.EnableGrouping = false;
     this.radGridView3.Name = "radGridView3";
     this.radGridView3.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView3.ReadOnly = true;
     this.radGridView3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView3.RootElement.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(66)))), ((int)(((byte)(139)))));
     this.radGridView3.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView3.Size = new System.Drawing.Size(343, 188);
     this.radGridView3.TabIndex = 5;
     this.radGridView3.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView3_CellClick);
     //
     // txt_size
     //
     this.txt_size.Location = new System.Drawing.Point(121, 30);
     this.txt_size.Name = "txt_size";
     this.txt_size.Size = new System.Drawing.Size(207, 20);
     this.txt_size.TabIndex = 1;
     this.txt_size.TabStop = false;
     this.txt_size.TextChanged += new System.EventHandler(this.txt_size_TextChanged);
     //
     // radLabel5
     //
     this.radLabel5.ForeColor = System.Drawing.Color.White;
     this.radLabel5.Location = new System.Drawing.Point(52, 33);
     this.radLabel5.Name = "radLabel5";
     //
     //
     //
     this.radLabel5.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel5.Size = new System.Drawing.Size(28, 16);
     this.radLabel5.TabIndex = 4;
     this.radLabel5.Text = "Size";
     //
     // btn_size
     //
     this.btn_size.Location = new System.Drawing.Point(121, 74);
     this.btn_size.Name = "btn_size";
     this.btn_size.Size = new System.Drawing.Size(90, 25);
     this.btn_size.TabIndex = 2;
     this.btn_size.Text = "Add  Size";
     this.btn_size.ThemeName = "Breeze";
     this.btn_size.Click += new System.EventHandler(this.btn_size_Click);
     //
     // tabItem3
     //
     this.tabItem3.Alignment = System.Drawing.ContentAlignment.BottomLeft;
     //
     // tabItem3.ContentPanel
     //
     this.tabItem3.ContentPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(249)))), ((int)(((byte)(249)))));
     this.tabItem3.ContentPanel.CausesValidation = true;
     this.tabItem3.ContentPanel.Controls.Add(this.radButton3);
     this.tabItem3.ContentPanel.Controls.Add(this.radButton2);
     this.tabItem3.ContentPanel.Controls.Add(this.com_brand_name);
     this.tabItem3.ContentPanel.Controls.Add(this.radLabel3);
     this.tabItem3.ContentPanel.Controls.Add(this.radGridView4);
     this.tabItem3.ContentPanel.Controls.Add(this.txt_thread_pattern);
     this.tabItem3.ContentPanel.Controls.Add(this.radLabel6);
     this.tabItem3.ContentPanel.Controls.Add(this.radButton13);
     this.tabItem3.ContentPanel.Font = new System.Drawing.Font("Arial", 8.25F);
     this.tabItem3.ContentPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(110)))), ((int)(((byte)(112)))));
     this.tabItem3.ContentPanel.Location = new System.Drawing.Point(1, 37);
     this.tabItem3.ContentPanel.Size = new System.Drawing.Size(595, 330);
     this.tabItem3.ContentPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.tabItem3_ContentPanel_Paint);
     this.tabItem3.Name = "tabItem3";
     this.tabItem3.StretchHorizontally = false;
     this.tabItem3.Text = "Thread Pattern";
     //
     // radButton3
     //
     this.radButton3.Location = new System.Drawing.Point(468, 49);
     this.radButton3.Name = "radButton3";
     this.radButton3.Size = new System.Drawing.Size(111, 25);
     this.radButton3.TabIndex = 5;
     this.radButton3.Text = "Delete";
     this.radButton3.ThemeName = "Breeze";
     this.radButton3.Click += new System.EventHandler(this.radButton3_Click);
     //
     // radButton2
     //
     this.radButton2.Location = new System.Drawing.Point(323, 49);
     this.radButton2.Name = "radButton2";
     this.radButton2.Size = new System.Drawing.Size(111, 25);
     this.radButton2.TabIndex = 4;
     this.radButton2.Text = "Update";
     this.radButton2.ThemeName = "Breeze";
     this.radButton2.Click += new System.EventHandler(this.radButton2_Click_1);
     //
     // com_brand_name
     //
     this.com_brand_name.Location = new System.Drawing.Point(389, 16);
     this.com_brand_name.Name = "com_brand_name";
     //
     //
     //
     this.com_brand_name.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_brand_name.Size = new System.Drawing.Size(190, 20);
     this.com_brand_name.TabIndex = 2;
     this.com_brand_name.TabStop = false;
     this.com_brand_name.SelectedIndexChanged += new System.EventHandler(this.com_brand_name_SelectedIndexChanged_1);
     //
     // radLabel3
     //
     this.radLabel3.ForeColor = System.Drawing.Color.White;
     this.radLabel3.Location = new System.Drawing.Point(313, 18);
     this.radLabel3.Name = "radLabel3";
     //
     //
     //
     this.radLabel3.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel3.Size = new System.Drawing.Size(73, 16);
     this.radLabel3.TabIndex = 10;
     this.radLabel3.Text = "Brand Name ";
     //
     // radGridView4
     //
     this.radGridView4.AutoScroll = true;
     this.radGridView4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(239)))), ((int)(((byte)(249)))));
     this.radGridView4.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView4.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.radGridView4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(66)))), ((int)(((byte)(139)))));
     this.radGridView4.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView4.Location = new System.Drawing.Point(83, 91);
     //
     // radGridView4
     //
     this.radGridView4.MasterTemplate.AllowAddNewRow = false;
     this.radGridView4.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView4.MasterTemplate.EnableGrouping = false;
     this.radGridView4.Name = "radGridView4";
     this.radGridView4.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView4.ReadOnly = true;
     this.radGridView4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView4.RootElement.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(66)))), ((int)(((byte)(139)))));
     this.radGridView4.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView4.Size = new System.Drawing.Size(430, 239);
     this.radGridView4.TabIndex = 6;
     this.radGridView4.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView4_CellClick);
     this.radGridView4.Click += new System.EventHandler(this.radGridView4_Click);
     //
     // txt_thread_pattern
     //
     this.txt_thread_pattern.Location = new System.Drawing.Point(96, 16);
     this.txt_thread_pattern.Name = "txt_thread_pattern";
     this.txt_thread_pattern.Size = new System.Drawing.Size(190, 20);
     this.txt_thread_pattern.TabIndex = 1;
     this.txt_thread_pattern.TabStop = false;
     //
     // radLabel6
     //
     this.radLabel6.ForeColor = System.Drawing.Color.White;
     this.radLabel6.Location = new System.Drawing.Point(11, 18);
     this.radLabel6.Name = "radLabel6";
     //
     //
     //
     this.radLabel6.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel6.Size = new System.Drawing.Size(82, 16);
     this.radLabel6.TabIndex = 4;
     this.radLabel6.Text = "Thread Pattern";
     //
     // radButton13
     //
     this.radButton13.Location = new System.Drawing.Point(175, 49);
     this.radButton13.Name = "radButton13";
     this.radButton13.Size = new System.Drawing.Size(111, 25);
     this.radButton13.TabIndex = 3;
     this.radButton13.Text = "Add ";
     this.radButton13.ThemeName = "Breeze";
     this.radButton13.Click += new System.EventHandler(this.radButton13_Click);
     //
     // tabItem4
     //
     this.tabItem4.Alignment = System.Drawing.ContentAlignment.BottomLeft;
     //
     // tabItem4.ContentPanel
     //
     this.tabItem4.ContentPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(249)))), ((int)(((byte)(249)))));
     this.tabItem4.ContentPanel.CausesValidation = true;
     this.tabItem4.ContentPanel.Controls.Add(this.radButton15);
     this.tabItem4.ContentPanel.Controls.Add(this.radGridView1);
     this.tabItem4.ContentPanel.Controls.Add(this.radButton5);
     this.tabItem4.ContentPanel.Controls.Add(this.txt_ply_rate);
     this.tabItem4.ContentPanel.Controls.Add(this.radLabel1);
     this.tabItem4.ContentPanel.Controls.Add(this.radButton7);
     this.tabItem4.ContentPanel.Font = new System.Drawing.Font("Arial", 8.25F);
     this.tabItem4.ContentPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(110)))), ((int)(((byte)(112)))));
     this.tabItem4.ContentPanel.Location = new System.Drawing.Point(1, 37);
     this.tabItem4.ContentPanel.Size = new System.Drawing.Size(595, 330);
     this.tabItem4.ContentPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.tabItem4_ContentPanel_Paint);
     this.tabItem4.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.tabItem4.Name = "tabItem4";
     this.tabItem4.StretchHorizontally = false;
     this.tabItem4.Text = "Ply Rate";
     //
     // radButton15
     //
     this.radButton15.Location = new System.Drawing.Point(285, 59);
     this.radButton15.Name = "radButton15";
     this.radButton15.Size = new System.Drawing.Size(90, 25);
     this.radButton15.TabIndex = 3;
     this.radButton15.Text = "Update";
     this.radButton15.ThemeName = "Breeze";
     this.radButton15.Click += new System.EventHandler(this.radButton15_Click);
     //
     // radGridView1
     //
     this.radGridView1.AutoScroll = true;
     this.radGridView1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(239)))), ((int)(((byte)(249)))));
     this.radGridView1.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.radGridView1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(66)))), ((int)(((byte)(139)))));
     this.radGridView1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView1.Location = new System.Drawing.Point(90, 105);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.radGridView1.MasterTemplate.AllowAddNewRow = false;
     this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView1.MasterTemplate.EnableGrouping = false;
     this.radGridView1.Name = "radGridView1";
     this.radGridView1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.ReadOnly = true;
     this.radGridView1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView1.RootElement.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(66)))), ((int)(((byte)(139)))));
     this.radGridView1.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.Size = new System.Drawing.Size(411, 195);
     this.radGridView1.TabIndex = 5;
     this.radGridView1.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     //
     // radButton5
     //
     this.radButton5.Location = new System.Drawing.Point(411, 59);
     this.radButton5.Name = "radButton5";
     this.radButton5.Size = new System.Drawing.Size(90, 25);
     this.radButton5.TabIndex = 4;
     this.radButton5.Text = "Delete";
     this.radButton5.ThemeName = "Breeze";
     this.radButton5.Click += new System.EventHandler(this.radButton5_Click);
     //
     // tabItem5
     //
     this.tabItem5.Alignment = System.Drawing.ContentAlignment.BottomLeft;
     //
     // tabItem5.ContentPanel
     //
     this.tabItem5.ContentPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(249)))), ((int)(((byte)(249)))));
     this.tabItem5.ContentPanel.CausesValidation = true;
     this.tabItem5.ContentPanel.Controls.Add(this.radButton16);
     this.tabItem5.ContentPanel.Controls.Add(this.radButton4);
     this.tabItem5.ContentPanel.Controls.Add(this.radGridView5);
     this.tabItem5.ContentPanel.Controls.Add(this.txt_make);
     this.tabItem5.ContentPanel.Controls.Add(this.radLabel7);
     this.tabItem5.ContentPanel.Controls.Add(this.radButton14);
     this.tabItem5.ContentPanel.Font = new System.Drawing.Font("Arial", 8.25F);
     this.tabItem5.ContentPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(110)))), ((int)(((byte)(112)))));
     this.tabItem5.ContentPanel.Location = new System.Drawing.Point(1, 37);
     this.tabItem5.ContentPanel.Size = new System.Drawing.Size(595, 330);
     this.tabItem5.ContentPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.tabItem5_ContentPanel_Paint);
     this.tabItem5.Name = "tabItem5";
     this.tabItem5.StretchHorizontally = false;
     this.tabItem5.Text = "Make";
     //
     // radButton16
     //
     this.radButton16.Location = new System.Drawing.Point(327, 57);
     this.radButton16.Name = "radButton16";
     this.radButton16.Size = new System.Drawing.Size(90, 25);
     this.radButton16.TabIndex = 3;
     this.radButton16.Text = "Update";
     this.radButton16.ThemeName = "Breeze";
     this.radButton16.Click += new System.EventHandler(this.radButton16_Click);
     //
     // radButton4
     //
     this.radButton4.Location = new System.Drawing.Point(437, 57);
     this.radButton4.Name = "radButton4";
     this.radButton4.Size = new System.Drawing.Size(90, 25);
     this.radButton4.TabIndex = 4;
     this.radButton4.Text = "Delete";
     this.radButton4.ThemeName = "Breeze";
     this.radButton4.Click += new System.EventHandler(this.radButton4_Click);
     //
     // radGridView5
     //
     this.radGridView5.AutoScroll = true;
     this.radGridView5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(239)))), ((int)(((byte)(249)))));
     this.radGridView5.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView5.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.radGridView5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(66)))), ((int)(((byte)(139)))));
     this.radGridView5.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView5.Location = new System.Drawing.Point(46, 97);
     //
     // radGridView5
     //
     this.radGridView5.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.radGridView5.MasterTemplate.AllowAddNewRow = false;
     this.radGridView5.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView5.MasterTemplate.EnableGrouping = false;
     this.radGridView5.Name = "radGridView5";
     this.radGridView5.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView5.ReadOnly = true;
     this.radGridView5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView5.RootElement.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(66)))), ((int)(((byte)(139)))));
     this.radGridView5.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView5.Size = new System.Drawing.Size(481, 210);
     this.radGridView5.TabIndex = 5;
     this.radGridView5.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView5_CellClick_1);
     //
     // txt_make
     //
     this.txt_make.Location = new System.Drawing.Point(121, 15);
     this.txt_make.Name = "txt_make";
     this.txt_make.Size = new System.Drawing.Size(156, 20);
     this.txt_make.TabIndex = 1;
     this.txt_make.TabStop = false;
     this.txt_make.TextChanged += new System.EventHandler(this.txt_make_TextChanged);
     //
     // radLabel7
     //
     this.radLabel7.ForeColor = System.Drawing.Color.White;
     this.radLabel7.Location = new System.Drawing.Point(46, 19);
     this.radLabel7.Name = "radLabel7";
     //
     //
     //
     this.radLabel7.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel7.Size = new System.Drawing.Size(34, 16);
     this.radLabel7.TabIndex = 4;
     this.radLabel7.Text = "Make";
     //
     // radButton14
     //
     this.radButton14.Location = new System.Drawing.Point(219, 57);
     this.radButton14.Name = "radButton14";
     this.radButton14.Size = new System.Drawing.Size(90, 25);
     this.radButton14.TabIndex = 2;
     this.radButton14.Text = "Add ";
     this.radButton14.ThemeName = "Breeze";
     this.radButton14.Click += new System.EventHandler(this.radButton14_Click);
     //
     // tabItem6
     //
     this.tabItem6.Alignment = System.Drawing.ContentAlignment.BottomLeft;
     //
     // tabItem6.ContentPanel
     //
     this.tabItem6.ContentPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(249)))), ((int)(((byte)(249)))));
     this.tabItem6.ContentPanel.CausesValidation = true;
     this.tabItem6.ContentPanel.Controls.Add(this.radButton9);
     this.tabItem6.ContentPanel.Controls.Add(this.radButton8);
     this.tabItem6.ContentPanel.Controls.Add(this.pictureBox2);
     this.tabItem6.ContentPanel.Font = new System.Drawing.Font("Arial", 8.25F);
     this.tabItem6.ContentPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(110)))), ((int)(((byte)(112)))));
     this.tabItem6.ContentPanel.Location = new System.Drawing.Point(1, 37);
     this.tabItem6.ContentPanel.Size = new System.Drawing.Size(595, 330);
     this.tabItem6.ContentPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.tabItem6_ContentPanel_Paint);
     this.tabItem6.Name = "tabItem6";
     this.tabItem6.StretchHorizontally = false;
     this.tabItem6.Text = "Back up";
     //
     // radButton9
     //
     this.radButton9.Location = new System.Drawing.Point(324, 77);
     this.radButton9.Name = "radButton9";
     this.radButton9.Size = new System.Drawing.Size(130, 24);
     this.radButton9.TabIndex = 1;
     this.radButton9.Text = "Restore";
     this.radButton9.ThemeName = "Breeze";
     this.radButton9.Click += new System.EventHandler(this.radButton9_Click);
     //
     // radButton8
     //
     this.radButton8.Location = new System.Drawing.Point(73, 77);
     this.radButton8.Name = "radButton8";
     this.radButton8.Size = new System.Drawing.Size(130, 24);
     this.radButton8.TabIndex = 0;
     this.radButton8.Text = "Back Up";
     this.radButton8.ThemeName = "Breeze";
     this.radButton8.Click += new System.EventHandler(this.radButton8_Click);
     //
     // pictureBox2
     //
     this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location = new System.Drawing.Point(128, 122);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(277, 186);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex = 3;
     this.pictureBox2.TabStop = false;
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // radButton1
     //
     this.radButton1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.radButton1.Font = new System.Drawing.Font("Verdana", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton1.ForeColor = System.Drawing.Color.Crimson;
     this.radButton1.Location = new System.Drawing.Point(613, 12);
     this.radButton1.Name = "radButton1";
     //
     //
     //
     this.radButton1.RootElement.ForeColor = System.Drawing.Color.Crimson;
     this.radButton1.Size = new System.Drawing.Size(40, 40);
     this.radButton1.TabIndex = 117;
     this.radButton1.Text = "X";
     this.radButton1.ThemeName = "Breeze";
     this.radButton1.Click += new System.EventHandler(this.radButton1_Click_3);
     ((Telerik.WinControls.UI.RadButtonElement)(this.radButton1.GetChildAt(0))).Text = "X";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton1.GetChildAt(0).GetChildAt(0))).BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(166)))), ((int)(((byte)(91)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton1.GetChildAt(0).GetChildAt(0))).BackColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(109)))), ((int)(((byte)(60)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton1.GetChildAt(0).GetChildAt(0))).BackColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(29)))), ((int)(((byte)(29)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton1.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(220)))), ((int)(((byte)(159)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton1.GetChildAt(0).GetChildAt(2))).ForeColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton1.GetChildAt(0).GetChildAt(2))).ForeColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton1.GetChildAt(0).GetChildAt(2))).ForeColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton1.GetChildAt(0).GetChildAt(2))).InnerColor = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(254)))), ((int)(((byte)(143)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton1.GetChildAt(0).GetChildAt(2))).InnerColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(247)))), ((int)(((byte)(91)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton1.GetChildAt(0).GetChildAt(2))).InnerColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(236)))), ((int)(((byte)(78)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton1.GetChildAt(0).GetChildAt(2))).InnerColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(242)))), ((int)(((byte)(14)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton1.GetChildAt(0).GetChildAt(2))).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     //
     // frmSettings
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.ClientSize = new System.Drawing.Size(697, 733);
     this.Controls.Add(this.radButton1);
     this.Controls.Add(this.radTabStrip1);
     this.Controls.Add(this.radLabel2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmSettings";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Settings";
     this.ThemeName = "ControlDefault";
     this.Load += new System.EventHandler(this.frmSettings_Load);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.frmSettings_MouseDown);
     this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.frmSettings_MouseMove);
     ((System.ComponentModel.ISupportInitialize)(this.radButton7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_ply_rate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTabStrip1)).EndInit();
     this.radTabStrip1.ResumeLayout(false);
     this.tabItem1.ContentPanel.ResumeLayout(false);
     this.tabItem1.ContentPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_add_brand)).EndInit();
     this.tabItem2.ContentPanel.ResumeLayout(false);
     this.tabItem2.ContentPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_delete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_size)).EndInit();
     this.tabItem3.ContentPanel.ResumeLayout(false);
     this.tabItem3.ContentPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand_name)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_thread_pattern)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton13)).EndInit();
     this.tabItem4.ContentPanel.ResumeLayout(false);
     this.tabItem4.ContentPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton5)).EndInit();
     this.tabItem5.ContentPanel.ResumeLayout(false);
     this.tabItem5.ContentPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_make)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton14)).EndInit();
     this.tabItem6.ContentPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radButton9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).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.aquaTheme1 = new Telerik.WinControls.Themes.AquaTheme();
     this.radButton1 = new Telerik.WinControls.UI.RadButton();
     this.radio_trial = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_non_trial = new Telerik.WinControls.UI.RadRadioButton();
     this.chk_size = new Telerik.WinControls.UI.RadCheckBox();
     this.chk_t_pattern = new Telerik.WinControls.UI.RadCheckBox();
     this.chk_brand = new Telerik.WinControls.UI.RadCheckBox();
     this.chk_make = new Telerik.WinControls.UI.RadCheckBox();
     this.chk_ply_rate = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.check_rear = new Telerik.WinControls.UI.RadCheckBox();
     this.check_front = new Telerik.WinControls.UI.RadCheckBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.gridViewTemplate1 = new Telerik.WinControls.UI.GridViewTemplate();
     this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
     this.com_brand = new Telerik.WinControls.UI.RadComboBox();
     this.com_ply_rate = new Telerik.WinControls.UI.RadComboBox();
     this.com_t_pattern = new Telerik.WinControls.UI.RadComboBox();
     this.com_made = new Telerik.WinControls.UI.RadComboBox();
     this.panal_cycle = new Telerik.WinControls.UI.RadPanel();
     this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
     this.radGridView3 = new Telerik.WinControls.UI.RadGridView();
     this.grp_tyre_type = new System.Windows.Forms.GroupBox();
     this.radio_canvas = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_radial = new Telerik.WinControls.UI.RadRadioButton();
     this.txt_size = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.chk_cycle_search = new Telerik.WinControls.UI.RadCheckBox();
     this.radGridView2 = new Telerik.WinControls.UI.RadGridView();
     this.radButton2 = new Telerik.WinControls.UI.RadButton();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.lbl_tot = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.lbl_sh_qty = new System.Windows.Forms.Label();
     this.lbl_tyre_section_header = new Telerik.WinControls.UI.RadLabel();
     this.radButton6 = new Telerik.WinControls.UI.RadButton();
     this.panel_search = new System.Windows.Forms.Panel();
     this.radButton7 = new Telerik.WinControls.UI.RadButton();
     this.radButton8 = new Telerik.WinControls.UI.RadButton();
     this.radButton9 = new Telerik.WinControls.UI.RadButton();
     this.radButton3 = new Telerik.WinControls.UI.RadButton();
     this.panel_settings = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.lbl_brand = new System.Windows.Forms.Label();
     this.lbl_type = new System.Windows.Forms.Label();
     this.btn_delete = new Telerik.WinControls.UI.RadButton();
     this.btn_update = new Telerik.WinControls.UI.RadButton();
     this.com_brand_name = new Telerik.WinControls.UI.RadComboBox();
     this.txt_type = new Telerik.WinControls.UI.RadTextBox();
     this.btn_add = new Telerik.WinControls.UI.RadButton();
     this.radGrid_setting_items = new Telerik.WinControls.UI.RadGridView();
     this.panel1 = new System.Windows.Forms.Panel();
     this.radio_size = new System.Windows.Forms.RadioButton();
     this.radio_make = new System.Windows.Forms.RadioButton();
     this.radio_brand = new System.Windows.Forms.RadioButton();
     this.radio_ply_rate = new System.Windows.Forms.RadioButton();
     this.radio_thred_pattern = new System.Windows.Forms.RadioButton();
     this.breezeTheme1 = new Telerik.WinControls.Themes.BreezeTheme();
     this.panel_vehicale_category = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.radButton12 = new Telerik.WinControls.UI.RadButton();
     this.radButton10 = new Telerik.WinControls.UI.RadButton();
     this.radButton11 = new Telerik.WinControls.UI.RadButton();
     this.radButton5 = new Telerik.WinControls.UI.RadButton();
     this.radGrid_vehicale_tyre_size = new Telerik.WinControls.UI.RadGridView();
     this.txt_size_vehicale = new Telerik.WinControls.UI.RadTextBox();
     this.dtp_stok_date = new Telerik.WinControls.UI.RadDateTimePicker();
     this.com_thread_pattern_vehicale = new Telerik.WinControls.UI.RadComboBox();
     this.radGrid_add_vehicale_tyre = new Telerik.WinControls.UI.RadGridView();
     this.com_make_vehicale = new Telerik.WinControls.UI.RadComboBox();
     this.com_ply_rate_vehicale = new Telerik.WinControls.UI.RadComboBox();
     this.com_brand_vehicale = new Telerik.WinControls.UI.RadComboBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.rad_canvas = new Telerik.WinControls.UI.RadRadioButton();
     this.rad_radial = new Telerik.WinControls.UI.RadRadioButton();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.rad_tube_less = new Telerik.WinControls.UI.RadRadioButton();
     this.rad_tube = new Telerik.WinControls.UI.RadRadioButton();
     this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel11 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
     this.gridViewTemplate2 = new Telerik.WinControls.UI.GridViewTemplate();
     this.panel_cycle_category = new System.Windows.Forms.Panel();
     this.radGrid_cycle_tyre_size = new Telerik.WinControls.UI.RadGridView();
     this.panel3 = new System.Windows.Forms.Panel();
     this.radButton4 = new Telerik.WinControls.UI.RadButton();
     this.radButton13 = new Telerik.WinControls.UI.RadButton();
     this.radButton14 = new Telerik.WinControls.UI.RadButton();
     this.radButton15 = new Telerik.WinControls.UI.RadButton();
     this.com_thread_pattern_cycle = new Telerik.WinControls.UI.RadComboBox();
     this.txt_size_cycle = new Telerik.WinControls.UI.RadTextBox();
     this.com_make_cycle = new Telerik.WinControls.UI.RadComboBox();
     this.com_ply_rate_cycle = new Telerik.WinControls.UI.RadComboBox();
     this.com_brand_cycle = new Telerik.WinControls.UI.RadComboBox();
     this.radGrid_add_cycle_tyre = new Telerik.WinControls.UI.RadGridView();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.radio_tube = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_tubeless = new Telerik.WinControls.UI.RadRadioButton();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.ck_rear = new Telerik.WinControls.UI.RadCheckBox();
     this.ck_front = new Telerik.WinControls.UI.RadCheckBox();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.radio_trail = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_non_trail = new Telerik.WinControls.UI.RadRadioButton();
     this.radLabel13 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel14 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel15 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel16 = new Telerik.WinControls.UI.RadLabel();
     this.dtp_new_stock = new Telerik.WinControls.UI.RadDateTimePicker();
     this.radLabel17 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel18 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel19 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel20 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel21 = new Telerik.WinControls.UI.RadLabel();
     this.gridViewTemplate3 = new Telerik.WinControls.UI.GridViewTemplate();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_trial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_non_trial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_t_pattern)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_make)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ply_rate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.check_rear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.check_front)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_t_pattern)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_made)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panal_cycle)).BeginInit();
     this.panal_cycle.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
     this.radPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).BeginInit();
     this.grp_tyre_type.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radio_canvas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_radial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_cycle_search)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lbl_tyre_section_header)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton6)).BeginInit();
     this.panel_search.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).BeginInit();
     this.panel_settings.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_delete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_update)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand_name)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_add)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGrid_setting_items)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel_vehicale_category.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGrid_vehicale_tyre_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size_vehicale)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtp_stok_date)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_thread_pattern_vehicale)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGrid_add_vehicale_tyre)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_make_vehicale)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate_vehicale)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand_vehicale)).BeginInit();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rad_canvas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rad_radial)).BeginInit();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rad_tube_less)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rad_tube)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate2)).BeginInit();
     this.panel_cycle_category.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGrid_cycle_tyre_size)).BeginInit();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_thread_pattern_cycle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size_cycle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_make_cycle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate_cycle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand_cycle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGrid_add_cycle_tyre)).BeginInit();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radio_tube)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_tubeless)).BeginInit();
     this.groupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ck_rear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ck_front)).BeginInit();
     this.groupBox7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radio_trail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_non_trail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtp_new_stock)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radButton1
     //
     this.radButton1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton1.Location = new System.Drawing.Point(538, 134);
     this.radButton1.Name = "radButton1";
     this.radButton1.Size = new System.Drawing.Size(107, 52);
     this.radButton1.TabIndex = 29;
     this.radButton1.Text = "Search";
     this.radButton1.ThemeName = "Breeze";
     this.radButton1.Click += new System.EventHandler(this.radButton1_Click);
     //
     // radio_trial
     //
     this.radio_trial.BackColor = System.Drawing.Color.Transparent;
     this.radio_trial.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radio_trial.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_trial.Location = new System.Drawing.Point(21, 13);
     this.radio_trial.Name = "radio_trial";
     //
     //
     //
     this.radio_trial.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_trial.Size = new System.Drawing.Size(61, 18);
     this.radio_trial.TabIndex = 28;
     this.radio_trial.Text = "Trail";
     //
     // radio_non_trial
     //
     this.radio_non_trial.BackColor = System.Drawing.Color.Transparent;
     this.radio_non_trial.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radio_non_trial.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_non_trial.Location = new System.Drawing.Point(88, 1);
     this.radio_non_trial.Name = "radio_non_trial";
     //
     //
     //
     this.radio_non_trial.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_non_trial.Size = new System.Drawing.Size(74, 40);
     this.radio_non_trial.TabIndex = 14;
     this.radio_non_trial.Text = "Nontrail";
     //
     // chk_size
     //
     this.chk_size.BackColor = System.Drawing.Color.Transparent;
     this.chk_size.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_size.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_size.Location = new System.Drawing.Point(25, 34);
     this.chk_size.Name = "chk_size";
     //
     //
     //
     this.chk_size.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_size.Size = new System.Drawing.Size(44, 21);
     this.chk_size.TabIndex = 19;
     this.chk_size.Text = "Size";
     this.chk_size.Click += new System.EventHandler(this.chk_size_Click);
     //
     // chk_t_pattern
     //
     this.chk_t_pattern.BackColor = System.Drawing.Color.Transparent;
     this.chk_t_pattern.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_t_pattern.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_t_pattern.Location = new System.Drawing.Point(25, 88);
     this.chk_t_pattern.Name = "chk_t_pattern";
     //
     //
     //
     this.chk_t_pattern.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_t_pattern.Size = new System.Drawing.Size(108, 21);
     this.chk_t_pattern.TabIndex = 26;
     this.chk_t_pattern.Text = "Thread Pattern";
     this.chk_t_pattern.Click += new System.EventHandler(this.chk_t_pattern_Click);
     //
     // chk_brand
     //
     this.chk_brand.BackColor = System.Drawing.Color.Transparent;
     this.chk_brand.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_brand.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_brand.Location = new System.Drawing.Point(26, 7);
     this.chk_brand.Name = "chk_brand";
     //
     //
     //
     this.chk_brand.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_brand.Size = new System.Drawing.Size(55, 21);
     this.chk_brand.TabIndex = 20;
     this.chk_brand.Text = "Brand";
     this.chk_brand.Click += new System.EventHandler(this.radCheckBox2_Click);
     //
     // chk_make
     //
     this.chk_make.BackColor = System.Drawing.Color.Transparent;
     this.chk_make.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_make.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_make.Location = new System.Drawing.Point(26, 113);
     this.chk_make.Name = "chk_make";
     //
     //
     //
     this.chk_make.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_make.Size = new System.Drawing.Size(53, 21);
     this.chk_make.TabIndex = 24;
     this.chk_make.Text = "Make";
     this.chk_make.Click += new System.EventHandler(this.chk_make_Click);
     //
     // chk_ply_rate
     //
     this.chk_ply_rate.BackColor = System.Drawing.Color.Transparent;
     this.chk_ply_rate.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_ply_rate.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_ply_rate.Location = new System.Drawing.Point(25, 61);
     this.chk_ply_rate.Name = "chk_ply_rate";
     //
     //
     //
     this.chk_ply_rate.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_ply_rate.Size = new System.Drawing.Size(68, 21);
     this.chk_ply_rate.TabIndex = 22;
     this.chk_ply_rate.Text = "Ply Rate";
     this.chk_ply_rate.Click += new System.EventHandler(this.chk_ply_rate_Click);
     //
     // radLabel2
     //
     this.radLabel2.BackColor = System.Drawing.Color.Transparent;
     this.radLabel2.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel2.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel2.Location = new System.Drawing.Point(110, 14);
     this.radLabel2.Name = "radLabel2";
     //
     //
     //
     this.radLabel2.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel2.Size = new System.Drawing.Size(71, 21);
     this.radLabel2.TabIndex = 31;
     this.radLabel2.Text = "Front/Rear";
     //
     // radLabel3
     //
     this.radLabel3.BackColor = System.Drawing.Color.Transparent;
     this.radLabel3.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel3.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel3.Location = new System.Drawing.Point(110, 58);
     this.radLabel3.Name = "radLabel3";
     //
     //
     //
     this.radLabel3.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel3.Size = new System.Drawing.Size(85, 21);
     this.radLabel3.TabIndex = 53;
     this.radLabel3.Text = "Trail/Nontrail";
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.check_rear);
     this.groupBox1.Controls.Add(this.check_front);
     this.groupBox1.Location = new System.Drawing.Point(202, 1);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(156, 36);
     this.groupBox1.TabIndex = 54;
     this.groupBox1.TabStop = false;
     //
     // check_rear
     //
     this.check_rear.ForeColor = System.Drawing.Color.White;
     this.check_rear.Location = new System.Drawing.Point(87, 12);
     this.check_rear.Name = "check_rear";
     //
     //
     //
     this.check_rear.RootElement.ForeColor = System.Drawing.Color.White;
     this.check_rear.Size = new System.Drawing.Size(43, 18);
     this.check_rear.TabIndex = 65;
     this.check_rear.Text = "Rear";
     //
     // check_front
     //
     this.check_front.ForeColor = System.Drawing.Color.White;
     this.check_front.Location = new System.Drawing.Point(20, 12);
     this.check_front.Name = "check_front";
     //
     //
     //
     this.check_front.RootElement.ForeColor = System.Drawing.Color.White;
     this.check_front.Size = new System.Drawing.Size(47, 18);
     this.check_front.TabIndex = 64;
     this.check_front.Text = "Front";
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.radio_non_trial);
     this.groupBox2.Controls.Add(this.radio_trial);
     this.groupBox2.Location = new System.Drawing.Point(201, 45);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(157, 41);
     this.groupBox2.TabIndex = 55;
     this.groupBox2.TabStop = false;
     //
     // gridViewTemplate1
     //
     this.gridViewTemplate1.EnableAlternatingRowColor = true;
     //
     // radGridView1
     //
     this.radGridView1.Location = new System.Drawing.Point(15, 228);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow = false;
     this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView1.Name = "radGridView1";
     this.radGridView1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.ReadOnly = true;
     //
     //
     //
     this.radGridView1.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.Size = new System.Drawing.Size(1017, 324);
     this.radGridView1.TabIndex = 56;
     this.radGridView1.Text = "radGridView1";
     this.radGridView1.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     //
     // com_brand
     //
     this.com_brand.Location = new System.Drawing.Point(176, 8);
     this.com_brand.Name = "com_brand";
     //
     //
     //
     this.com_brand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_brand.Size = new System.Drawing.Size(285, 20);
     this.com_brand.TabIndex = 57;
     this.com_brand.TabStop = false;
     this.com_brand.SelectedIndexChanged += new System.EventHandler(this.com_brand_SelectedIndexChanged);
     //
     // com_ply_rate
     //
     this.com_ply_rate.Location = new System.Drawing.Point(176, 61);
     this.com_ply_rate.Name = "com_ply_rate";
     //
     //
     //
     this.com_ply_rate.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_ply_rate.Size = new System.Drawing.Size(285, 20);
     this.com_ply_rate.TabIndex = 58;
     this.com_ply_rate.TabStop = false;
     //
     // com_t_pattern
     //
     this.com_t_pattern.Location = new System.Drawing.Point(176, 87);
     this.com_t_pattern.Name = "com_t_pattern";
     //
     //
     //
     this.com_t_pattern.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_t_pattern.Size = new System.Drawing.Size(285, 20);
     this.com_t_pattern.TabIndex = 58;
     this.com_t_pattern.TabStop = false;
     //
     // com_made
     //
     this.com_made.Location = new System.Drawing.Point(176, 113);
     this.com_made.Name = "com_made";
     //
     //
     //
     this.com_made.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_made.Size = new System.Drawing.Size(285, 20);
     this.com_made.TabIndex = 58;
     this.com_made.TabStop = false;
     //
     // panal_cycle
     //
     this.panal_cycle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.panal_cycle.Controls.Add(this.radLabel2);
     this.panal_cycle.Controls.Add(this.radLabel3);
     this.panal_cycle.Controls.Add(this.groupBox1);
     this.panal_cycle.Controls.Add(this.groupBox2);
     this.panal_cycle.Location = new System.Drawing.Point(538, 34);
     this.panal_cycle.Name = "panal_cycle";
     //
     //
     //
     this.panal_cycle.RootElement.Opacity = 5D;
     this.panal_cycle.Size = new System.Drawing.Size(492, 94);
     this.panal_cycle.TabIndex = 59;
     //
     // radPanel2
     //
     this.radPanel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.radPanel2.Controls.Add(this.radGridView3);
     this.radPanel2.Controls.Add(this.grp_tyre_type);
     this.radPanel2.Controls.Add(this.txt_size);
     this.radPanel2.Controls.Add(this.chk_brand);
     this.radPanel2.Controls.Add(this.radLabel5);
     this.radPanel2.Controls.Add(this.radLabel4);
     this.radPanel2.Controls.Add(this.chk_ply_rate);
     this.radPanel2.Controls.Add(this.com_made);
     this.radPanel2.Controls.Add(this.chk_make);
     this.radPanel2.Controls.Add(this.com_t_pattern);
     this.radPanel2.Controls.Add(this.chk_t_pattern);
     this.radPanel2.Controls.Add(this.com_ply_rate);
     this.radPanel2.Controls.Add(this.chk_size);
     this.radPanel2.Controls.Add(this.com_brand);
     this.radPanel2.Location = new System.Drawing.Point(15, 3);
     this.radPanel2.Name = "radPanel2";
     this.radPanel2.Size = new System.Drawing.Size(486, 183);
     this.radPanel2.TabIndex = 60;
     this.radPanel2.Click += new System.EventHandler(this.radPanel2_Click);
     //
     // radGridView3
     //
     this.radGridView3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     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(175, 56);
     //
     // radGridView3
     //
     this.radGridView3.MasterTemplate.AllowAddNewRow = false;
     this.radGridView3.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView3.MasterTemplate.EnableGrouping = false;
     this.radGridView3.MasterTemplate.ShowColumnHeaders = false;
     this.radGridView3.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView3.Name = "radGridView3";
     this.radGridView3.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView3.ReadOnly = true;
     this.radGridView3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView3.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView3.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView3.ShowGroupPanel = false;
     this.radGridView3.Size = new System.Drawing.Size(286, 111);
     this.radGridView3.TabIndex = 65;
     this.radGridView3.Text = "radGridView3";
     this.radGridView3.SelectionChanged += new System.EventHandler(this.radGridView3_SelectionChanged);
     this.radGridView3.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView3_CellClick);
     //
     // grp_tyre_type
     //
     this.grp_tyre_type.BackColor = System.Drawing.Color.Transparent;
     this.grp_tyre_type.Controls.Add(this.radio_canvas);
     this.grp_tyre_type.Controls.Add(this.radio_radial);
     this.grp_tyre_type.Location = new System.Drawing.Point(175, 136);
     this.grp_tyre_type.Name = "grp_tyre_type";
     this.grp_tyre_type.Size = new System.Drawing.Size(156, 36);
     this.grp_tyre_type.TabIndex = 62;
     this.grp_tyre_type.TabStop = false;
     //
     // radio_canvas
     //
     this.radio_canvas.BackColor = System.Drawing.Color.Transparent;
     this.radio_canvas.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radio_canvas.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_canvas.Location = new System.Drawing.Point(82, 0);
     this.radio_canvas.Name = "radio_canvas";
     //
     //
     //
     this.radio_canvas.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_canvas.Size = new System.Drawing.Size(63, 40);
     this.radio_canvas.TabIndex = 14;
     this.radio_canvas.Text = "Canvas";
     //
     // radio_radial
     //
     this.radio_radial.BackColor = System.Drawing.Color.Transparent;
     this.radio_radial.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radio_radial.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_radial.Location = new System.Drawing.Point(15, 10);
     this.radio_radial.Name = "radio_radial";
     //
     //
     //
     this.radio_radial.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_radial.Size = new System.Drawing.Size(61, 18);
     this.radio_radial.TabIndex = 28;
     this.radio_radial.Text = "Radial";
     //
     // txt_size
     //
     this.txt_size.Location = new System.Drawing.Point(175, 35);
     this.txt_size.Name = "txt_size";
     this.txt_size.Size = new System.Drawing.Size(286, 20);
     this.txt_size.TabIndex = 64;
     this.txt_size.TabStop = false;
     this.txt_size.TextChanged += new System.EventHandler(this.txt_size_TextChanged);
     this.txt_size.Click += new System.EventHandler(this.txt_size_Click);
     this.txt_size.Enter += new System.EventHandler(this.txt_size_Enter);
     //
     // radLabel5
     //
     this.radLabel5.BackColor = System.Drawing.Color.Transparent;
     this.radLabel5.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel5.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel5.Location = new System.Drawing.Point(26, 146);
     this.radLabel5.Name = "radLabel5";
     //
     //
     //
     this.radLabel5.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel5.Size = new System.Drawing.Size(64, 21);
     this.radLabel5.TabIndex = 61;
     this.radLabel5.Text = "Tyre Type";
     //
     // radLabel4
     //
     this.radLabel4.BackColor = System.Drawing.Color.Transparent;
     this.radLabel4.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel4.Location = new System.Drawing.Point(26, 146);
     this.radLabel4.Name = "radLabel4";
     //
     //
     //
     this.radLabel4.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel4.Size = new System.Drawing.Size(64, 21);
     this.radLabel4.TabIndex = 61;
     this.radLabel4.Text = "Tyre Type";
     //
     // chk_cycle_search
     //
     this.chk_cycle_search.BackColor = System.Drawing.Color.Transparent;
     this.chk_cycle_search.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.chk_cycle_search.ForeColor = System.Drawing.Color.White;
     this.chk_cycle_search.Location = new System.Drawing.Point(538, 3);
     this.chk_cycle_search.Name = "chk_cycle_search";
     //
     //
     //
     this.chk_cycle_search.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_cycle_search.Size = new System.Drawing.Size(85, 18);
     this.chk_cycle_search.TabIndex = 61;
     this.chk_cycle_search.Text = "Motor Cycle";
     this.chk_cycle_search.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.chk_cycle_search_ToggleStateChanged);
     this.chk_cycle_search.Click += new System.EventHandler(this.chk_cycle_search_Click);
     //
     // radGridView2
     //
     this.radGridView2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     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(15, 228);
     //
     // radGridView2
     //
     this.radGridView2.MasterTemplate.AllowAddNewRow = false;
     this.radGridView2.MasterTemplate.AllowColumnChooser = false;
     this.radGridView2.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView2.Name = "radGridView2";
     this.radGridView2.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.ReadOnly = true;
     this.radGridView2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView2.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView2.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.Size = new System.Drawing.Size(1017, 324);
     this.radGridView2.TabIndex = 57;
     this.radGridView2.Text = "radGridView2";
     this.radGridView2.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView2_CellClick);
     //
     // radButton2
     //
     this.radButton2.Location = new System.Drawing.Point(986, 207);
     this.radButton2.Name = "radButton2";
     this.radButton2.Size = new System.Drawing.Size(46, 15);
     this.radButton2.TabIndex = 30;
     this.radButton2.Tag = " ";
     this.radButton2.Text = "Refresh";
     this.radButton2.ThemeName = "Breeze";
     this.radButton2.Click += new System.EventHandler(this.radButton2_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
     this.label2.ForeColor = System.Drawing.Color.White;
     this.label2.Location = new System.Drawing.Point(12, 197);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(0, 19);
     this.label2.TabIndex = 63;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(12, 561);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(66, 13);
     this.label1.TabIndex = 64;
     this.label1.Text = "Total Qty  : ";
     //
     // lbl_tot
     //
     this.lbl_tot.AutoSize = true;
     this.lbl_tot.BackColor = System.Drawing.Color.Transparent;
     this.lbl_tot.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.lbl_tot.ForeColor = System.Drawing.Color.White;
     this.lbl_tot.Location = new System.Drawing.Point(91, 561);
     this.lbl_tot.Name = "lbl_tot";
     this.lbl_tot.Size = new System.Drawing.Size(0, 13);
     this.lbl_tot.TabIndex = 65;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(913, 560);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(77, 13);
     this.label3.TabIndex = 66;
     this.label3.Text = "Seached Qty :";
     //
     // lbl_sh_qty
     //
     this.lbl_sh_qty.AutoSize = true;
     this.lbl_sh_qty.BackColor = System.Drawing.Color.Transparent;
     this.lbl_sh_qty.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.lbl_sh_qty.ForeColor = System.Drawing.Color.White;
     this.lbl_sh_qty.Location = new System.Drawing.Point(996, 560);
     this.lbl_sh_qty.Name = "lbl_sh_qty";
     this.lbl_sh_qty.Size = new System.Drawing.Size(0, 13);
     this.lbl_sh_qty.TabIndex = 67;
     //
     // lbl_tyre_section_header
     //
     this.lbl_tyre_section_header.BackColor = System.Drawing.Color.Transparent;
     this.lbl_tyre_section_header.Font = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Bold);
     this.lbl_tyre_section_header.ForeColor = System.Drawing.Color.Gold;
     this.lbl_tyre_section_header.Location = new System.Drawing.Point(28, 12);
     this.lbl_tyre_section_header.Name = "lbl_tyre_section_header";
     //
     //
     //
     this.lbl_tyre_section_header.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.lbl_tyre_section_header.Size = new System.Drawing.Size(171, 41);
     this.lbl_tyre_section_header.TabIndex = 68;
     this.lbl_tyre_section_header.Text = "Tyre Section";
     //
     // radButton6
     //
     this.radButton6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.radButton6.Font = new System.Drawing.Font("Verdana", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton6.ForeColor = System.Drawing.Color.Crimson;
     this.radButton6.Location = new System.Drawing.Point(1065, 6);
     this.radButton6.Name = "radButton6";
     //
     //
     //
     this.radButton6.RootElement.ForeColor = System.Drawing.Color.Crimson;
     this.radButton6.Size = new System.Drawing.Size(27, 29);
     this.radButton6.TabIndex = 70;
     this.radButton6.Text = "X";
     this.radButton6.ThemeName = "Breeze";
     this.radButton6.Click += new System.EventHandler(this.radButton6_Click);
     ((Telerik.WinControls.UI.RadButtonElement)(this.radButton6.GetChildAt(0))).Text = "X";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(0))).BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(166)))), ((int)(((byte)(91)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(0))).BackColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(109)))), ((int)(((byte)(60)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(0))).BackColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(29)))), ((int)(((byte)(29)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(220)))), ((int)(((byte)(159)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).ForeColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).ForeColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).ForeColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).InnerColor = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(254)))), ((int)(((byte)(143)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).InnerColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(247)))), ((int)(((byte)(91)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).InnerColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(236)))), ((int)(((byte)(78)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).InnerColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(242)))), ((int)(((byte)(14)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton6.GetChildAt(0).GetChildAt(2))).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     //
     // panel_search
     //
     this.panel_search.Controls.Add(this.chk_cycle_search);
     this.panel_search.Controls.Add(this.radButton1);
     this.panel_search.Controls.Add(this.radGridView1);
     this.panel_search.Controls.Add(this.panal_cycle);
     this.panel_search.Controls.Add(this.radPanel2);
     this.panel_search.Controls.Add(this.radGridView2);
     this.panel_search.Controls.Add(this.lbl_sh_qty);
     this.panel_search.Controls.Add(this.radButton2);
     this.panel_search.Controls.Add(this.label3);
     this.panel_search.Controls.Add(this.label2);
     this.panel_search.Controls.Add(this.label1);
     this.panel_search.Controls.Add(this.lbl_tot);
     this.panel_search.Location = new System.Drawing.Point(12, 70);
     this.panel_search.Name = "panel_search";
     this.panel_search.Size = new System.Drawing.Size(1043, 639);
     this.panel_search.TabIndex = 71;
     //
     // radButton7
     //
     this.radButton7.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.radButton7.Location = new System.Drawing.Point(550, 25);
     this.radButton7.Name = "radButton7";
     this.radButton7.Size = new System.Drawing.Size(120, 28);
     this.radButton7.TabIndex = 32;
     this.radButton7.Text = "Search Tyre";
     this.radButton7.Click += new System.EventHandler(this.radButton7_Click);
     //
     // radButton8
     //
     this.radButton8.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.radButton8.Location = new System.Drawing.Point(676, 25);
     this.radButton8.Name = "radButton8";
     this.radButton8.Size = new System.Drawing.Size(120, 28);
     this.radButton8.TabIndex = 33;
     this.radButton8.Text = "Vehical Category";
     this.radButton8.Click += new System.EventHandler(this.radButton8_Click);
     //
     // radButton9
     //
     this.radButton9.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.radButton9.Location = new System.Drawing.Point(802, 25);
     this.radButton9.Name = "radButton9";
     this.radButton9.Size = new System.Drawing.Size(120, 28);
     this.radButton9.TabIndex = 34;
     this.radButton9.Text = "Cycle Category";
     this.radButton9.Click += new System.EventHandler(this.radButton9_Click);
     //
     // radButton3
     //
     this.radButton3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.radButton3.Location = new System.Drawing.Point(928, 25);
     this.radButton3.Name = "radButton3";
     this.radButton3.Size = new System.Drawing.Size(120, 28);
     this.radButton3.TabIndex = 35;
     this.radButton3.Text = "Settings";
     this.radButton3.Click += new System.EventHandler(this.radButton3_Click_1);
     //
     // panel_settings
     //
     this.panel_settings.Controls.Add(this.pictureBox1);
     this.panel_settings.Controls.Add(this.lbl_brand);
     this.panel_settings.Controls.Add(this.lbl_type);
     this.panel_settings.Controls.Add(this.btn_delete);
     this.panel_settings.Controls.Add(this.btn_update);
     this.panel_settings.Controls.Add(this.com_brand_name);
     this.panel_settings.Controls.Add(this.txt_type);
     this.panel_settings.Controls.Add(this.btn_add);
     this.panel_settings.Controls.Add(this.radGrid_setting_items);
     this.panel_settings.Controls.Add(this.panel1);
     this.panel_settings.ForeColor = System.Drawing.Color.Transparent;
     this.panel_settings.Location = new System.Drawing.Point(12, 70);
     this.panel_settings.Name = "panel_settings";
     this.panel_settings.Size = new System.Drawing.Size(1043, 639);
     this.panel_settings.TabIndex = 72;
     //
     // pictureBox1
     //
     this.pictureBox1.Image = global::TMT_2012.Properties.Resources.settin;
     this.pictureBox1.Location = new System.Drawing.Point(687, 205);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(244, 236);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 16;
     this.pictureBox1.TabStop = false;
     //
     // lbl_brand
     //
     this.lbl_brand.AutoSize = true;
     this.lbl_brand.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.lbl_brand.Location = new System.Drawing.Point(111, 177);
     this.lbl_brand.Name = "lbl_brand";
     this.lbl_brand.Size = new System.Drawing.Size(38, 15);
     this.lbl_brand.TabIndex = 15;
     this.lbl_brand.Text = "Brand";
     //
     // lbl_type
     //
     this.lbl_type.AutoSize = true;
     this.lbl_type.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.lbl_type.Location = new System.Drawing.Point(111, 144);
     this.lbl_type.Name = "lbl_type";
     this.lbl_type.Size = new System.Drawing.Size(53, 15);
     this.lbl_type.TabIndex = 14;
     this.lbl_type.Text = "--Type--";
     //
     // btn_delete
     //
     this.btn_delete.Location = new System.Drawing.Point(474, 463);
     this.btn_delete.Name = "btn_delete";
     this.btn_delete.Size = new System.Drawing.Size(104, 37);
     this.btn_delete.TabIndex = 13;
     this.btn_delete.Text = "Delete";
     this.btn_delete.ThemeName = "Breeze";
     this.btn_delete.Click += new System.EventHandler(this.btn_delete_Click);
     //
     // btn_update
     //
     this.btn_update.Location = new System.Drawing.Point(334, 463);
     this.btn_update.Name = "btn_update";
     this.btn_update.Size = new System.Drawing.Size(104, 37);
     this.btn_update.TabIndex = 12;
     this.btn_update.Text = "Update";
     this.btn_update.ThemeName = "Breeze";
     this.btn_update.Click += new System.EventHandler(this.btn_update_Click);
     //
     // com_brand_name
     //
     this.com_brand_name.Location = new System.Drawing.Point(205, 173);
     this.com_brand_name.Name = "com_brand_name";
     //
     //
     //
     this.com_brand_name.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_brand_name.Size = new System.Drawing.Size(190, 20);
     this.com_brand_name.TabIndex = 10;
     this.com_brand_name.TabStop = false;
     this.com_brand_name.SelectedIndexChanged += new System.EventHandler(this.com_brand_name_SelectedIndexChanged);
     //
     // txt_type
     //
     this.txt_type.Location = new System.Drawing.Point(205, 141);
     this.txt_type.Name = "txt_type";
     this.txt_type.Size = new System.Drawing.Size(190, 20);
     this.txt_type.TabIndex = 9;
     this.txt_type.TabStop = false;
     this.txt_type.TextChanged += new System.EventHandler(this.txt_type_TextChanged);
     //
     // btn_add
     //
     this.btn_add.Location = new System.Drawing.Point(474, 139);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(104, 37);
     this.btn_add.TabIndex = 11;
     this.btn_add.Text = "Add ";
     this.btn_add.ThemeName = "Breeze";
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // radGrid_setting_items
     //
     this.radGrid_setting_items.AutoScroll = true;
     this.radGrid_setting_items.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(239)))), ((int)(((byte)(249)))));
     this.radGrid_setting_items.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGrid_setting_items.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.radGrid_setting_items.ForeColor = System.Drawing.Color.Black;
     this.radGrid_setting_items.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGrid_setting_items.Location = new System.Drawing.Point(206, 205);
     //
     // radGrid_setting_items
     //
     this.radGrid_setting_items.MasterTemplate.AllowAddNewRow = false;
     this.radGrid_setting_items.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGrid_setting_items.MasterTemplate.EnableGrouping = false;
     this.radGrid_setting_items.Name = "radGrid_setting_items";
     this.radGrid_setting_items.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGrid_setting_items.ReadOnly = true;
     this.radGrid_setting_items.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGrid_setting_items.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGrid_setting_items.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGrid_setting_items.Size = new System.Drawing.Size(372, 236);
     this.radGrid_setting_items.TabIndex = 8;
     this.radGrid_setting_items.Text = "radGridView4";
     this.radGrid_setting_items.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGrid_setting_items_CellClick);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Gray;
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.radio_size);
     this.panel1.Controls.Add(this.radio_make);
     this.panel1.Controls.Add(this.radio_brand);
     this.panel1.Controls.Add(this.radio_ply_rate);
     this.panel1.Controls.Add(this.radio_thred_pattern);
     this.panel1.Location = new System.Drawing.Point(114, 52);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(919, 65);
     this.panel1.TabIndex = 7;
     //
     // radio_size
     //
     this.radio_size.AutoSize = true;
     this.radio_size.BackColor = System.Drawing.Color.Transparent;
     this.radio_size.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radio_size.ForeColor = System.Drawing.Color.White;
     this.radio_size.Location = new System.Drawing.Point(108, 23);
     this.radio_size.Name = "radio_size";
     this.radio_size.Size = new System.Drawing.Size(49, 17);
     this.radio_size.TabIndex = 3;
     this.radio_size.TabStop = true;
     this.radio_size.Text = "Size";
     this.radio_size.UseVisualStyleBackColor = false;
     this.radio_size.Click += new System.EventHandler(this.radio_size_Click);
     //
     // radio_make
     //
     this.radio_make.AutoSize = true;
     this.radio_make.BackColor = System.Drawing.Color.Transparent;
     this.radio_make.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radio_make.ForeColor = System.Drawing.Color.White;
     this.radio_make.Location = new System.Drawing.Point(419, 24);
     this.radio_make.Name = "radio_make";
     this.radio_make.Size = new System.Drawing.Size(56, 17);
     this.radio_make.TabIndex = 6;
     this.radio_make.TabStop = true;
     this.radio_make.Text = "Make";
     this.radio_make.UseVisualStyleBackColor = false;
     this.radio_make.Click += new System.EventHandler(this.radio_make_Click);
     //
     // radio_brand
     //
     this.radio_brand.AutoSize = true;
     this.radio_brand.BackColor = System.Drawing.Color.Transparent;
     this.radio_brand.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radio_brand.ForeColor = System.Drawing.Color.White;
     this.radio_brand.Location = new System.Drawing.Point(17, 23);
     this.radio_brand.Name = "radio_brand";
     this.radio_brand.Size = new System.Drawing.Size(58, 17);
     this.radio_brand.TabIndex = 2;
     this.radio_brand.TabStop = true;
     this.radio_brand.Text = "Brand";
     this.radio_brand.UseVisualStyleBackColor = false;
     this.radio_brand.Click += new System.EventHandler(this.radio_brand_Click);
     //
     // radio_ply_rate
     //
     this.radio_ply_rate.AutoSize = true;
     this.radio_ply_rate.BackColor = System.Drawing.Color.Transparent;
     this.radio_ply_rate.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radio_ply_rate.ForeColor = System.Drawing.Color.White;
     this.radio_ply_rate.Location = new System.Drawing.Point(322, 23);
     this.radio_ply_rate.Name = "radio_ply_rate";
     this.radio_ply_rate.Size = new System.Drawing.Size(73, 17);
     this.radio_ply_rate.TabIndex = 5;
     this.radio_ply_rate.TabStop = true;
     this.radio_ply_rate.Text = "Ply Rate";
     this.radio_ply_rate.UseVisualStyleBackColor = false;
     this.radio_ply_rate.Click += new System.EventHandler(this.radio_ply_rate_Click);
     //
     // radio_thred_pattern
     //
     this.radio_thred_pattern.AutoSize = true;
     this.radio_thred_pattern.BackColor = System.Drawing.Color.Transparent;
     this.radio_thred_pattern.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radio_thred_pattern.ForeColor = System.Drawing.Color.White;
     this.radio_thred_pattern.Location = new System.Drawing.Point(188, 23);
     this.radio_thred_pattern.Name = "radio_thred_pattern";
     this.radio_thred_pattern.Size = new System.Drawing.Size(110, 17);
     this.radio_thred_pattern.TabIndex = 4;
     this.radio_thred_pattern.TabStop = true;
     this.radio_thred_pattern.Text = "Thread Pattern";
     this.radio_thred_pattern.UseVisualStyleBackColor = false;
     this.radio_thred_pattern.Click += new System.EventHandler(this.radio_thred_pattern_Click);
     //
     // panel_vehicale_category
     //
     this.panel_vehicale_category.Controls.Add(this.panel2);
     this.panel_vehicale_category.Controls.Add(this.radGrid_vehicale_tyre_size);
     this.panel_vehicale_category.Controls.Add(this.txt_size_vehicale);
     this.panel_vehicale_category.Controls.Add(this.dtp_stok_date);
     this.panel_vehicale_category.Controls.Add(this.com_thread_pattern_vehicale);
     this.panel_vehicale_category.Controls.Add(this.radGrid_add_vehicale_tyre);
     this.panel_vehicale_category.Controls.Add(this.com_make_vehicale);
     this.panel_vehicale_category.Controls.Add(this.com_ply_rate_vehicale);
     this.panel_vehicale_category.Controls.Add(this.com_brand_vehicale);
     this.panel_vehicale_category.Controls.Add(this.groupBox3);
     this.panel_vehicale_category.Controls.Add(this.groupBox4);
     this.panel_vehicale_category.Controls.Add(this.radLabel10);
     this.panel_vehicale_category.Controls.Add(this.radLabel11);
     this.panel_vehicale_category.Controls.Add(this.radLabel7);
     this.panel_vehicale_category.Controls.Add(this.radLabel6);
     this.panel_vehicale_category.Controls.Add(this.radLabel1);
     this.panel_vehicale_category.Controls.Add(this.radLabel8);
     this.panel_vehicale_category.Controls.Add(this.radLabel9);
     this.panel_vehicale_category.Controls.Add(this.radLabel12);
     this.panel_vehicale_category.Location = new System.Drawing.Point(12, 70);
     this.panel_vehicale_category.Name = "panel_vehicale_category";
     this.panel_vehicale_category.Size = new System.Drawing.Size(1043, 639);
     this.panel_vehicale_category.TabIndex = 73;
     this.panel_vehicale_category.Click += new System.EventHandler(this.panel_vehicale_category_Click);
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.radButton12);
     this.panel2.Controls.Add(this.radButton10);
     this.panel2.Controls.Add(this.radButton11);
     this.panel2.Controls.Add(this.radButton5);
     this.panel2.Location = new System.Drawing.Point(36, 421);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1000, 76);
     this.panel2.TabIndex = 95;
     //
     // radButton12
     //
     this.radButton12.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton12.Location = new System.Drawing.Point(623, 20);
     this.radButton12.Name = "radButton12";
     this.radButton12.Size = new System.Drawing.Size(104, 37);
     this.radButton12.TabIndex = 82;
     this.radButton12.Text = "Add";
     this.radButton12.ThemeName = "Breeze";
     this.radButton12.Click += new System.EventHandler(this.radButton12_Click);
     //
     // radButton10
     //
     this.radButton10.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton10.Location = new System.Drawing.Point(874, 18);
     this.radButton10.Name = "radButton10";
     this.radButton10.Size = new System.Drawing.Size(104, 37);
     this.radButton10.TabIndex = 84;
     this.radButton10.Text = "Delete";
     this.radButton10.ThemeName = "Breeze";
     this.radButton10.Click += new System.EventHandler(this.radButton10_Click_1);
     //
     // radButton11
     //
     this.radButton11.Location = new System.Drawing.Point(105, 20);
     this.radButton11.Name = "radButton11";
     this.radButton11.Size = new System.Drawing.Size(104, 37);
     this.radButton11.TabIndex = 85;
     this.radButton11.Text = "Reset";
     this.radButton11.ThemeName = "Breeze";
     this.radButton11.Click += new System.EventHandler(this.radButton11_Click);
     //
     // radButton5
     //
     this.radButton5.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton5.Location = new System.Drawing.Point(750, 20);
     this.radButton5.Name = "radButton5";
     this.radButton5.Size = new System.Drawing.Size(104, 37);
     this.radButton5.TabIndex = 83;
     this.radButton5.Text = "Update";
     this.radButton5.ThemeName = "Breeze";
     this.radButton5.Click += new System.EventHandler(this.radButton5_Click_1);
     //
     // radGrid_vehicale_tyre_size
     //
     this.radGrid_vehicale_tyre_size.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.radGrid_vehicale_tyre_size.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGrid_vehicale_tyre_size.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.radGrid_vehicale_tyre_size.ForeColor = System.Drawing.Color.Black;
     this.radGrid_vehicale_tyre_size.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGrid_vehicale_tyre_size.Location = new System.Drawing.Point(142, 287);
     //
     // radGrid_vehicale_tyre_size
     //
     this.radGrid_vehicale_tyre_size.MasterTemplate.AllowAddNewRow = false;
     this.radGrid_vehicale_tyre_size.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGrid_vehicale_tyre_size.MasterTemplate.EnableGrouping = false;
     this.radGrid_vehicale_tyre_size.MasterTemplate.ShowColumnHeaders = false;
     this.radGrid_vehicale_tyre_size.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGrid_vehicale_tyre_size.Name = "radGrid_vehicale_tyre_size";
     this.radGrid_vehicale_tyre_size.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGrid_vehicale_tyre_size.ReadOnly = true;
     this.radGrid_vehicale_tyre_size.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGrid_vehicale_tyre_size.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGrid_vehicale_tyre_size.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGrid_vehicale_tyre_size.ShowGroupPanel = false;
     this.radGrid_vehicale_tyre_size.Size = new System.Drawing.Size(151, 111);
     this.radGrid_vehicale_tyre_size.TabIndex = 78;
     this.radGrid_vehicale_tyre_size.Text = "radGridView4";
     this.radGrid_vehicale_tyre_size.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGrid_vehicale_tyre_size_CellClick);
     //
     // txt_size_vehicale
     //
     this.txt_size_vehicale.Location = new System.Drawing.Point(142, 267);
     this.txt_size_vehicale.Name = "txt_size_vehicale";
     this.txt_size_vehicale.Size = new System.Drawing.Size(151, 20);
     this.txt_size_vehicale.TabIndex = 77;
     this.txt_size_vehicale.TabStop = false;
     this.txt_size_vehicale.TextChanged += new System.EventHandler(this.txt_size_vehicale_TextChanged);
     //
     // dtp_stok_date
     //
     this.dtp_stok_date.Format = System.Windows.Forms.DateTimePickerFormat.Long;
     this.dtp_stok_date.Location = new System.Drawing.Point(142, 80);
     this.dtp_stok_date.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.dtp_stok_date.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
     this.dtp_stok_date.Name = "dtp_stok_date";
     this.dtp_stok_date.NullDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
     this.dtp_stok_date.Size = new System.Drawing.Size(150, 20);
     this.dtp_stok_date.TabIndex = 73;
     this.dtp_stok_date.TabStop = false;
     this.dtp_stok_date.Text = "radDateTimePicker1";
     this.dtp_stok_date.Value = new System.DateTime(2011, 2, 28, 10, 32, 15, 5);
     this.dtp_stok_date.Click += new System.EventHandler(this.dtp_stok_date_Click);
     //
     // com_thread_pattern_vehicale
     //
     this.com_thread_pattern_vehicale.AutoScroll = true;
     this.com_thread_pattern_vehicale.Location = new System.Drawing.Point(142, 380);
     this.com_thread_pattern_vehicale.Name = "com_thread_pattern_vehicale";
     //
     //
     //
     this.com_thread_pattern_vehicale.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_thread_pattern_vehicale.Size = new System.Drawing.Size(151, 20);
     this.com_thread_pattern_vehicale.TabIndex = 81;
     this.com_thread_pattern_vehicale.TabStop = false;
     //
     // radGrid_add_vehicale_tyre
     //
     this.radGrid_add_vehicale_tyre.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.radGrid_add_vehicale_tyre.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGrid_add_vehicale_tyre.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.radGrid_add_vehicale_tyre.ForeColor = System.Drawing.Color.Black;
     this.radGrid_add_vehicale_tyre.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGrid_add_vehicale_tyre.Location = new System.Drawing.Point(334, 80);
     //
     // radGrid_add_vehicale_tyre
     //
     this.radGrid_add_vehicale_tyre.MasterTemplate.AllowAddNewRow = false;
     this.radGrid_add_vehicale_tyre.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGrid_add_vehicale_tyre.Name = "radGrid_add_vehicale_tyre";
     this.radGrid_add_vehicale_tyre.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGrid_add_vehicale_tyre.ReadOnly = true;
     this.radGrid_add_vehicale_tyre.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGrid_add_vehicale_tyre.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGrid_add_vehicale_tyre.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGrid_add_vehicale_tyre.Size = new System.Drawing.Size(702, 320);
     this.radGrid_add_vehicale_tyre.TabIndex = 86;
     this.radGrid_add_vehicale_tyre.Text = "radGridView5";
     this.radGrid_add_vehicale_tyre.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGrid_add_vehicale_tyre_CellClick);
     this.radGrid_add_vehicale_tyre.Click += new System.EventHandler(this.radGrid_add_vehicale_tyre_Click);
     //
     // com_make_vehicale
     //
     this.com_make_vehicale.AutoScroll = true;
     this.com_make_vehicale.Location = new System.Drawing.Point(142, 344);
     this.com_make_vehicale.Name = "com_make_vehicale";
     //
     //
     //
     this.com_make_vehicale.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_make_vehicale.Size = new System.Drawing.Size(151, 20);
     this.com_make_vehicale.TabIndex = 80;
     this.com_make_vehicale.TabStop = false;
     //
     // com_ply_rate_vehicale
     //
     this.com_ply_rate_vehicale.AutoScroll = true;
     this.com_ply_rate_vehicale.Location = new System.Drawing.Point(142, 307);
     this.com_ply_rate_vehicale.Name = "com_ply_rate_vehicale";
     //
     //
     //
     this.com_ply_rate_vehicale.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_ply_rate_vehicale.Size = new System.Drawing.Size(151, 20);
     this.com_ply_rate_vehicale.TabIndex = 79;
     this.com_ply_rate_vehicale.TabStop = false;
     //
     // com_brand_vehicale
     //
     this.com_brand_vehicale.AutoScroll = true;
     this.com_brand_vehicale.Location = new System.Drawing.Point(142, 229);
     this.com_brand_vehicale.Name = "com_brand_vehicale";
     //
     //
     //
     this.com_brand_vehicale.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_brand_vehicale.Size = new System.Drawing.Size(151, 20);
     this.com_brand_vehicale.TabIndex = 76;
     this.com_brand_vehicale.TabStop = false;
     this.com_brand_vehicale.SelectedIndexChanged += new System.EventHandler(this.com_brand_vehicale_SelectedIndexChanged);
     this.com_brand_vehicale.Click += new System.EventHandler(this.com_brand_vehicale_Click);
     //
     // groupBox3
     //
     this.groupBox3.BackColor = System.Drawing.Color.Transparent;
     this.groupBox3.Controls.Add(this.rad_canvas);
     this.groupBox3.Controls.Add(this.rad_radial);
     this.groupBox3.Location = new System.Drawing.Point(142, 122);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(151, 32);
     this.groupBox3.TabIndex = 74;
     this.groupBox3.TabStop = false;
     //
     // rad_canvas
     //
     this.rad_canvas.BackColor = System.Drawing.Color.Transparent;
     this.rad_canvas.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_canvas.Location = new System.Drawing.Point(75, 9);
     this.rad_canvas.Name = "rad_canvas";
     //
     //
     //
     this.rad_canvas.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_canvas.Size = new System.Drawing.Size(62, 18);
     this.rad_canvas.TabIndex = 2;
     this.rad_canvas.Text = "Canvas";
     this.rad_canvas.Click += new System.EventHandler(this.rad_canvas_Click);
     //
     // rad_radial
     //
     this.rad_radial.BackColor = System.Drawing.Color.Transparent;
     this.rad_radial.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_radial.Location = new System.Drawing.Point(11, 10);
     this.rad_radial.Name = "rad_radial";
     //
     //
     //
     this.rad_radial.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_radial.Size = new System.Drawing.Size(51, 18);
     this.rad_radial.TabIndex = 1;
     this.rad_radial.Text = "Radial";
     this.rad_radial.Click += new System.EventHandler(this.rad_radial_Click);
     //
     // groupBox4
     //
     this.groupBox4.BackColor = System.Drawing.Color.Transparent;
     this.groupBox4.Controls.Add(this.rad_tube_less);
     this.groupBox4.Controls.Add(this.rad_tube);
     this.groupBox4.Location = new System.Drawing.Point(143, 167);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(150, 32);
     this.groupBox4.TabIndex = 75;
     this.groupBox4.TabStop = false;
     //
     // rad_tube_less
     //
     this.rad_tube_less.BackColor = System.Drawing.Color.Transparent;
     this.rad_tube_less.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_tube_less.Location = new System.Drawing.Point(73, 9);
     this.rad_tube_less.Name = "rad_tube_less";
     //
     //
     //
     this.rad_tube_less.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_tube_less.Size = new System.Drawing.Size(74, 18);
     this.rad_tube_less.TabIndex = 4;
     this.rad_tube_less.Text = "Tubeless";
     this.rad_tube_less.Click += new System.EventHandler(this.rad_tube_less_Click);
     //
     // rad_tube
     //
     this.rad_tube.BackColor = System.Drawing.Color.Transparent;
     this.rad_tube.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_tube.Location = new System.Drawing.Point(9, 10);
     this.rad_tube.Name = "rad_tube";
     //
     //
     //
     this.rad_tube.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.rad_tube.Size = new System.Drawing.Size(51, 18);
     this.rad_tube.TabIndex = 3;
     this.rad_tube.Text = "Tube";
     this.rad_tube.Click += new System.EventHandler(this.rad_tube_Click);
     //
     // radLabel10
     //
     this.radLabel10.BackColor = System.Drawing.Color.Transparent;
     this.radLabel10.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel10.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel10.Location = new System.Drawing.Point(37, 172);
     this.radLabel10.Name = "radLabel10";
     //
     //
     //
     this.radLabel10.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel10.Size = new System.Drawing.Size(65, 21);
     this.radLabel10.TabIndex = 94;
     this.radLabel10.Text = "Tyre Tube";
     //
     // radLabel11
     //
     this.radLabel11.BackColor = System.Drawing.Color.Transparent;
     this.radLabel11.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel11.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel11.Location = new System.Drawing.Point(36, 122);
     this.radLabel11.Name = "radLabel11";
     //
     //
     //
     this.radLabel11.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel11.Size = new System.Drawing.Size(64, 21);
     this.radLabel11.TabIndex = 93;
     this.radLabel11.Text = "Tyre Type";
     //
     // radLabel7
     //
     this.radLabel7.BackColor = System.Drawing.Color.Transparent;
     this.radLabel7.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel7.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel7.Location = new System.Drawing.Point(36, 80);
     this.radLabel7.Name = "radLabel7";
     //
     //
     //
     this.radLabel7.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel7.Size = new System.Drawing.Size(71, 21);
     this.radLabel7.TabIndex = 87;
     this.radLabel7.Text = "Stock Date";
     //
     // radLabel6
     //
     this.radLabel6.BackColor = System.Drawing.Color.Transparent;
     this.radLabel6.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel6.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel6.Location = new System.Drawing.Point(33, 379);
     this.radLabel6.Name = "radLabel6";
     //
     //
     //
     this.radLabel6.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel6.Size = new System.Drawing.Size(94, 21);
     this.radLabel6.TabIndex = 92;
     this.radLabel6.Text = "Thread pattern";
     //
     // radLabel1
     //
     this.radLabel1.BackColor = System.Drawing.Color.Transparent;
     this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel1.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel1.Location = new System.Drawing.Point(36, 229);
     this.radLabel1.Name = "radLabel1";
     //
     //
     //
     this.radLabel1.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel1.Size = new System.Drawing.Size(41, 21);
     this.radLabel1.TabIndex = 88;
     this.radLabel1.Text = "Brand";
     //
     // radLabel8
     //
     this.radLabel8.BackColor = System.Drawing.Color.Transparent;
     this.radLabel8.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel8.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel8.Location = new System.Drawing.Point(36, 344);
     this.radLabel8.Name = "radLabel8";
     //
     //
     //
     this.radLabel8.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel8.Size = new System.Drawing.Size(54, 21);
     this.radLabel8.TabIndex = 91;
     this.radLabel8.Text = "Make in";
     //
     // radLabel9
     //
     this.radLabel9.BackColor = System.Drawing.Color.Transparent;
     this.radLabel9.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel9.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel9.Location = new System.Drawing.Point(36, 305);
     this.radLabel9.Name = "radLabel9";
     //
     //
     //
     this.radLabel9.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel9.Size = new System.Drawing.Size(54, 21);
     this.radLabel9.TabIndex = 90;
     this.radLabel9.Text = "Ply Rate";
     //
     // radLabel12
     //
     this.radLabel12.BackColor = System.Drawing.Color.Transparent;
     this.radLabel12.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel12.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel12.Location = new System.Drawing.Point(36, 266);
     this.radLabel12.Name = "radLabel12";
     //
     //
     //
     this.radLabel12.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel12.Size = new System.Drawing.Size(30, 21);
     this.radLabel12.TabIndex = 89;
     this.radLabel12.Text = "Size";
     //
     // gridViewTemplate2
     //
     this.gridViewTemplate2.EnableAlternatingRowColor = true;
     //
     // panel_cycle_category
     //
     this.panel_cycle_category.Controls.Add(this.radGrid_cycle_tyre_size);
     this.panel_cycle_category.Controls.Add(this.panel3);
     this.panel_cycle_category.Controls.Add(this.com_thread_pattern_cycle);
     this.panel_cycle_category.Controls.Add(this.txt_size_cycle);
     this.panel_cycle_category.Controls.Add(this.com_make_cycle);
     this.panel_cycle_category.Controls.Add(this.com_ply_rate_cycle);
     this.panel_cycle_category.Controls.Add(this.com_brand_cycle);
     this.panel_cycle_category.Controls.Add(this.radGrid_add_cycle_tyre);
     this.panel_cycle_category.Controls.Add(this.groupBox5);
     this.panel_cycle_category.Controls.Add(this.groupBox6);
     this.panel_cycle_category.Controls.Add(this.groupBox7);
     this.panel_cycle_category.Controls.Add(this.radLabel13);
     this.panel_cycle_category.Controls.Add(this.radLabel14);
     this.panel_cycle_category.Controls.Add(this.radLabel15);
     this.panel_cycle_category.Controls.Add(this.radLabel16);
     this.panel_cycle_category.Controls.Add(this.dtp_new_stock);
     this.panel_cycle_category.Controls.Add(this.radLabel17);
     this.panel_cycle_category.Controls.Add(this.radLabel18);
     this.panel_cycle_category.Controls.Add(this.radLabel19);
     this.panel_cycle_category.Controls.Add(this.radLabel20);
     this.panel_cycle_category.Controls.Add(this.radLabel21);
     this.panel_cycle_category.Location = new System.Drawing.Point(12, 70);
     this.panel_cycle_category.Name = "panel_cycle_category";
     this.panel_cycle_category.Size = new System.Drawing.Size(1043, 639);
     this.panel_cycle_category.TabIndex = 74;
     //
     // radGrid_cycle_tyre_size
     //
     this.radGrid_cycle_tyre_size.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.radGrid_cycle_tyre_size.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGrid_cycle_tyre_size.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.radGrid_cycle_tyre_size.ForeColor = System.Drawing.Color.Black;
     this.radGrid_cycle_tyre_size.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGrid_cycle_tyre_size.Location = new System.Drawing.Point(144, 306);
     //
     // radGrid_cycle_tyre_size
     //
     this.radGrid_cycle_tyre_size.MasterTemplate.AllowAddNewRow = false;
     this.radGrid_cycle_tyre_size.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGrid_cycle_tyre_size.MasterTemplate.EnableGrouping = false;
     this.radGrid_cycle_tyre_size.MasterTemplate.ShowColumnHeaders = false;
     this.radGrid_cycle_tyre_size.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGrid_cycle_tyre_size.Name = "radGrid_cycle_tyre_size";
     this.radGrid_cycle_tyre_size.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGrid_cycle_tyre_size.ReadOnly = true;
     this.radGrid_cycle_tyre_size.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGrid_cycle_tyre_size.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGrid_cycle_tyre_size.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGrid_cycle_tyre_size.ShowGroupPanel = false;
     this.radGrid_cycle_tyre_size.Size = new System.Drawing.Size(148, 111);
     this.radGrid_cycle_tyre_size.TabIndex = 70;
     this.radGrid_cycle_tyre_size.Text = "radGridView4";
     this.radGrid_cycle_tyre_size.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGrid_cycle_tyre_size_CellClick);
     //
     // panel3
     //
     this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel3.Controls.Add(this.radButton4);
     this.panel3.Controls.Add(this.radButton13);
     this.panel3.Controls.Add(this.radButton14);
     this.panel3.Controls.Add(this.radButton15);
     this.panel3.Location = new System.Drawing.Point(36, 421);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(1000, 76);
     this.panel3.TabIndex = 96;
     //
     // radButton4
     //
     this.radButton4.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton4.Location = new System.Drawing.Point(623, 20);
     this.radButton4.Name = "radButton4";
     this.radButton4.Size = new System.Drawing.Size(104, 37);
     this.radButton4.TabIndex = 82;
     this.radButton4.Text = "Add";
     this.radButton4.ThemeName = "Breeze";
     this.radButton4.Click += new System.EventHandler(this.radButton4_Click_1);
     //
     // radButton13
     //
     this.radButton13.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton13.Location = new System.Drawing.Point(874, 18);
     this.radButton13.Name = "radButton13";
     this.radButton13.Size = new System.Drawing.Size(104, 37);
     this.radButton13.TabIndex = 84;
     this.radButton13.Text = "Delete";
     this.radButton13.ThemeName = "Breeze";
     this.radButton13.Click += new System.EventHandler(this.radButton13_Click);
     //
     // radButton14
     //
     this.radButton14.Location = new System.Drawing.Point(105, 20);
     this.radButton14.Name = "radButton14";
     this.radButton14.Size = new System.Drawing.Size(104, 37);
     this.radButton14.TabIndex = 85;
     this.radButton14.Text = "Reset";
     this.radButton14.ThemeName = "Breeze";
     this.radButton14.Click += new System.EventHandler(this.radButton14_Click);
     //
     // radButton15
     //
     this.radButton15.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton15.Location = new System.Drawing.Point(750, 20);
     this.radButton15.Name = "radButton15";
     this.radButton15.Size = new System.Drawing.Size(104, 37);
     this.radButton15.TabIndex = 83;
     this.radButton15.Text = "Update";
     this.radButton15.ThemeName = "Breeze";
     this.radButton15.Click += new System.EventHandler(this.radButton15_Click);
     //
     // com_thread_pattern_cycle
     //
     this.com_thread_pattern_cycle.Location = new System.Drawing.Point(144, 378);
     this.com_thread_pattern_cycle.Name = "com_thread_pattern_cycle";
     //
     //
     //
     this.com_thread_pattern_cycle.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_thread_pattern_cycle.Size = new System.Drawing.Size(148, 20);
     this.com_thread_pattern_cycle.TabIndex = 54;
     this.com_thread_pattern_cycle.TabStop = false;
     //
     // txt_size_cycle
     //
     this.txt_size_cycle.Location = new System.Drawing.Point(144, 285);
     this.txt_size_cycle.Name = "txt_size_cycle";
     this.txt_size_cycle.Size = new System.Drawing.Size(148, 20);
     this.txt_size_cycle.TabIndex = 69;
     this.txt_size_cycle.TabStop = false;
     this.txt_size_cycle.TextChanged += new System.EventHandler(this.txt_size_cycle_TextChanged);
     //
     // com_make_cycle
     //
     this.com_make_cycle.Location = new System.Drawing.Point(144, 347);
     this.com_make_cycle.Name = "com_make_cycle";
     //
     //
     //
     this.com_make_cycle.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_make_cycle.Size = new System.Drawing.Size(148, 20);
     this.com_make_cycle.TabIndex = 53;
     this.com_make_cycle.TabStop = false;
     //
     // com_ply_rate_cycle
     //
     this.com_ply_rate_cycle.Location = new System.Drawing.Point(144, 315);
     this.com_ply_rate_cycle.Name = "com_ply_rate_cycle";
     //
     //
     //
     this.com_ply_rate_cycle.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_ply_rate_cycle.Size = new System.Drawing.Size(148, 20);
     this.com_ply_rate_cycle.TabIndex = 52;
     this.com_ply_rate_cycle.TabStop = false;
     //
     // com_brand_cycle
     //
     this.com_brand_cycle.Location = new System.Drawing.Point(144, 256);
     this.com_brand_cycle.Name = "com_brand_cycle";
     //
     //
     //
     this.com_brand_cycle.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_brand_cycle.Size = new System.Drawing.Size(148, 20);
     this.com_brand_cycle.TabIndex = 51;
     this.com_brand_cycle.TabStop = false;
     this.com_brand_cycle.SelectedIndexChanged += new System.EventHandler(this.com_brand_cycle_SelectedIndexChanged);
     //
     // radGrid_add_cycle_tyre
     //
     this.radGrid_add_cycle_tyre.Location = new System.Drawing.Point(334, 80);
     //
     // radGrid_add_cycle_tyre
     //
     this.radGrid_add_cycle_tyre.MasterTemplate.AllowAddNewRow = false;
     this.radGrid_add_cycle_tyre.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGrid_add_cycle_tyre.Name = "radGrid_add_cycle_tyre";
     this.radGrid_add_cycle_tyre.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGrid_add_cycle_tyre.ReadOnly = true;
     //
     //
     //
     this.radGrid_add_cycle_tyre.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGrid_add_cycle_tyre.Size = new System.Drawing.Size(702, 320);
     this.radGrid_add_cycle_tyre.TabIndex = 59;
     this.radGrid_add_cycle_tyre.Text = "radGridView5";
     this.radGrid_add_cycle_tyre.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGrid_add_cycle_tyre_CellClick);
     //
     // groupBox5
     //
     this.groupBox5.BackColor = System.Drawing.Color.Transparent;
     this.groupBox5.Controls.Add(this.radio_tube);
     this.groupBox5.Controls.Add(this.radio_tubeless);
     this.groupBox5.Location = new System.Drawing.Point(142, 153);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(150, 36);
     this.groupBox5.TabIndex = 49;
     this.groupBox5.TabStop = false;
     //
     // radio_tube
     //
     this.radio_tube.BackColor = System.Drawing.Color.Transparent;
     this.radio_tube.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_tube.Location = new System.Drawing.Point(2, 10);
     this.radio_tube.Name = "radio_tube";
     //
     //
     //
     this.radio_tube.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_tube.Size = new System.Drawing.Size(51, 18);
     this.radio_tube.TabIndex = 3;
     this.radio_tube.Text = "Tube";
     //
     // radio_tubeless
     //
     this.radio_tubeless.BackColor = System.Drawing.Color.Transparent;
     this.radio_tubeless.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_tubeless.Location = new System.Drawing.Point(52, 10);
     this.radio_tubeless.Name = "radio_tubeless";
     //
     //
     //
     this.radio_tubeless.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_tubeless.Size = new System.Drawing.Size(61, 18);
     this.radio_tubeless.TabIndex = 4;
     this.radio_tubeless.Text = "Tubeless";
     //
     // groupBox6
     //
     this.groupBox6.BackColor = System.Drawing.Color.Transparent;
     this.groupBox6.Controls.Add(this.ck_rear);
     this.groupBox6.Controls.Add(this.ck_front);
     this.groupBox6.Location = new System.Drawing.Point(142, 195);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(150, 36);
     this.groupBox6.TabIndex = 50;
     this.groupBox6.TabStop = false;
     //
     // ck_rear
     //
     this.ck_rear.ForeColor = System.Drawing.Color.White;
     this.ck_rear.Location = new System.Drawing.Point(53, 12);
     this.ck_rear.Name = "ck_rear";
     //
     //
     //
     this.ck_rear.RootElement.ForeColor = System.Drawing.Color.White;
     this.ck_rear.Size = new System.Drawing.Size(43, 18);
     this.ck_rear.TabIndex = 6;
     this.ck_rear.Text = "Rear";
     //
     // ck_front
     //
     this.ck_front.ForeColor = System.Drawing.Color.White;
     this.ck_front.Location = new System.Drawing.Point(2, 12);
     this.ck_front.Name = "ck_front";
     //
     //
     //
     this.ck_front.RootElement.ForeColor = System.Drawing.Color.White;
     this.ck_front.Size = new System.Drawing.Size(47, 18);
     this.ck_front.TabIndex = 5;
     this.ck_front.Text = "Front";
     //
     // groupBox7
     //
     this.groupBox7.BackColor = System.Drawing.Color.Transparent;
     this.groupBox7.Controls.Add(this.radio_trail);
     this.groupBox7.Controls.Add(this.radio_non_trail);
     this.groupBox7.Location = new System.Drawing.Point(142, 107);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(150, 36);
     this.groupBox7.TabIndex = 48;
     this.groupBox7.TabStop = false;
     //
     // radio_trail
     //
     this.radio_trail.BackColor = System.Drawing.Color.Transparent;
     this.radio_trail.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_trail.Location = new System.Drawing.Point(2, 11);
     this.radio_trail.Name = "radio_trail";
     //
     //
     //
     this.radio_trail.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_trail.Size = new System.Drawing.Size(51, 18);
     this.radio_trail.TabIndex = 1;
     this.radio_trail.Text = "Trail";
     //
     // radio_non_trail
     //
     this.radio_non_trail.BackColor = System.Drawing.Color.Transparent;
     this.radio_non_trail.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_non_trail.Location = new System.Drawing.Point(52, 11);
     this.radio_non_trail.Name = "radio_non_trail";
     //
     //
     //
     this.radio_non_trail.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_non_trail.Size = new System.Drawing.Size(83, 18);
     this.radio_non_trail.TabIndex = 2;
     this.radio_non_trail.Text = "Non Trail";
     //
     // radLabel13
     //
     this.radLabel13.BackColor = System.Drawing.Color.Transparent;
     this.radLabel13.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel13.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel13.Location = new System.Drawing.Point(36, 118);
     this.radLabel13.Name = "radLabel13";
     //
     //
     //
     this.radLabel13.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel13.Size = new System.Drawing.Size(85, 21);
     this.radLabel13.TabIndex = 68;
     this.radLabel13.Text = "Trail/Nontrail";
     //
     // radLabel14
     //
     this.radLabel14.BackColor = System.Drawing.Color.Transparent;
     this.radLabel14.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel14.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel14.Location = new System.Drawing.Point(36, 160);
     this.radLabel14.Name = "radLabel14";
     //
     //
     //
     this.radLabel14.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel14.Size = new System.Drawing.Size(65, 21);
     this.radLabel14.TabIndex = 62;
     this.radLabel14.Text = "Tyre Tube";
     //
     // radLabel15
     //
     this.radLabel15.BackColor = System.Drawing.Color.Transparent;
     this.radLabel15.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel15.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel15.Location = new System.Drawing.Point(36, 204);
     this.radLabel15.Name = "radLabel15";
     //
     //
     //
     this.radLabel15.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel15.Size = new System.Drawing.Size(61, 21);
     this.radLabel15.TabIndex = 63;
     this.radLabel15.Text = "Tyre Side";
     //
     // radLabel16
     //
     this.radLabel16.BackColor = System.Drawing.Color.Transparent;
     this.radLabel16.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel16.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel16.Location = new System.Drawing.Point(36, 80);
     this.radLabel16.Name = "radLabel16";
     //
     //
     //
     this.radLabel16.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel16.Size = new System.Drawing.Size(101, 21);
     this.radLabel16.TabIndex = 60;
     this.radLabel16.Text = "New Stock Date";
     //
     // dtp_new_stock
     //
     this.dtp_new_stock.Format = System.Windows.Forms.DateTimePickerFormat.Long;
     this.dtp_new_stock.Location = new System.Drawing.Point(142, 80);
     this.dtp_new_stock.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.dtp_new_stock.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
     this.dtp_new_stock.Name = "dtp_new_stock";
     this.dtp_new_stock.NullDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
     this.dtp_new_stock.Size = new System.Drawing.Size(150, 20);
     this.dtp_new_stock.TabIndex = 47;
     this.dtp_new_stock.TabStop = false;
     this.dtp_new_stock.Text = "radDateTimePicker1";
     this.dtp_new_stock.Value = new System.DateTime(2011, 1, 28, 23, 50, 44, 910);
     //
     // radLabel17
     //
     this.radLabel17.BackColor = System.Drawing.Color.Transparent;
     this.radLabel17.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel17.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel17.Location = new System.Drawing.Point(36, 377);
     this.radLabel17.Name = "radLabel17";
     //
     //
     //
     this.radLabel17.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel17.Size = new System.Drawing.Size(94, 21);
     this.radLabel17.TabIndex = 67;
     this.radLabel17.Text = "Thread pattern";
     //
     // radLabel18
     //
     this.radLabel18.BackColor = System.Drawing.Color.Transparent;
     this.radLabel18.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel18.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel18.Location = new System.Drawing.Point(39, 346);
     this.radLabel18.Name = "radLabel18";
     //
     //
     //
     this.radLabel18.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel18.Size = new System.Drawing.Size(54, 21);
     this.radLabel18.TabIndex = 66;
     this.radLabel18.Text = "Make in";
     //
     // radLabel19
     //
     this.radLabel19.BackColor = System.Drawing.Color.Transparent;
     this.radLabel19.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel19.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel19.Location = new System.Drawing.Point(39, 314);
     this.radLabel19.Name = "radLabel19";
     //
     //
     //
     this.radLabel19.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel19.Size = new System.Drawing.Size(54, 21);
     this.radLabel19.TabIndex = 65;
     this.radLabel19.Text = "Ply Rate";
     //
     // radLabel20
     //
     this.radLabel20.BackColor = System.Drawing.Color.Transparent;
     this.radLabel20.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel20.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel20.Location = new System.Drawing.Point(39, 284);
     this.radLabel20.Name = "radLabel20";
     //
     //
     //
     this.radLabel20.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel20.Size = new System.Drawing.Size(30, 21);
     this.radLabel20.TabIndex = 64;
     this.radLabel20.Text = "Size";
     //
     // radLabel21
     //
     this.radLabel21.BackColor = System.Drawing.Color.Transparent;
     this.radLabel21.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel21.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel21.Location = new System.Drawing.Point(39, 255);
     this.radLabel21.Name = "radLabel21";
     //
     //
     //
     this.radLabel21.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel21.Size = new System.Drawing.Size(41, 21);
     this.radLabel21.TabIndex = 61;
     this.radLabel21.Text = "Brand";
     //
     // gridViewTemplate3
     //
     this.gridViewTemplate3.EnableAlternatingRowColor = true;
     //
     // TyreSection
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(1232, 788);
     this.Controls.Add(this.radButton8);
     this.Controls.Add(this.radButton3);
     this.Controls.Add(this.radButton9);
     this.Controls.Add(this.radButton7);
     this.Controls.Add(this.radButton6);
     this.Controls.Add(this.lbl_tyre_section_header);
     this.Controls.Add(this.panel_search);
     this.Controls.Add(this.panel_cycle_category);
     this.Controls.Add(this.panel_vehicale_category);
     this.Controls.Add(this.panel_settings);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "TyreSection";
     this.Opacity = 0.8D;
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Advanced Search";
     this.ThemeName = "ControlDefault";
     this.Load += new System.EventHandler(this.AdvancedSearch_Load);
     this.EnabledChanged += new System.EventHandler(this.AdvancedSearch_EnabledChanged);
     this.Click += new System.EventHandler(this.AdvancedSearch_Click);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.AdvancedSearch_MouseDown);
     this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.AdvancedSearch_MouseMove);
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_trial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_non_trial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_t_pattern)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_make)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ply_rate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.check_rear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.check_front)).EndInit();
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_t_pattern)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_made)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panal_cycle)).EndInit();
     this.panal_cycle.ResumeLayout(false);
     this.panal_cycle.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
     this.radPanel2.ResumeLayout(false);
     this.radPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).EndInit();
     this.grp_tyre_type.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radio_canvas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_radial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_cycle_search)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lbl_tyre_section_header)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton6)).EndInit();
     this.panel_search.ResumeLayout(false);
     this.panel_search.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).EndInit();
     this.panel_settings.ResumeLayout(false);
     this.panel_settings.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_delete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_update)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand_name)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_add)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGrid_setting_items)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel_vehicale_category.ResumeLayout(false);
     this.panel_vehicale_category.PerformLayout();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radButton12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGrid_vehicale_tyre_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size_vehicale)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtp_stok_date)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_thread_pattern_vehicale)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGrid_add_vehicale_tyre)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_make_vehicale)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate_vehicale)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand_vehicale)).EndInit();
     this.groupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.rad_canvas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rad_radial)).EndInit();
     this.groupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.rad_tube_less)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rad_tube)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate2)).EndInit();
     this.panel_cycle_category.ResumeLayout(false);
     this.panel_cycle_category.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGrid_cycle_tyre_size)).EndInit();
     this.panel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radButton4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_thread_pattern_cycle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size_cycle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_make_cycle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate_cycle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand_cycle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGrid_add_cycle_tyre)).EndInit();
     this.groupBox5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radio_tube)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_tubeless)).EndInit();
     this.groupBox6.ResumeLayout(false);
     this.groupBox6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ck_rear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ck_front)).EndInit();
     this.groupBox7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radio_trail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_non_trail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtp_new_stock)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate3)).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();
     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();
     this.btnSave = new Telerik.WinControls.UI.RadButton();
     this.btnNew = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox6 = new Telerik.WinControls.UI.RadGroupBox();
     this.ucFilter1 = new ShayanDental.UserControls.UCFilter();
     this.grvItems = new Telerik.WinControls.UI.RadGridView();
     this.radGroupBox4 = new Telerik.WinControls.UI.RadGroupBox();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.trvCategories = new Telerik.WinControls.UI.RadTreeView();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.radTextBox1 = new Telerik.WinControls.UI.RadTextBox();
     this.srcItem = new System.Windows.Forms.BindingSource(this.components);
     this.radLabel20 = new Telerik.WinControls.UI.RadLabel();
     this.txtTitle = new Telerik.WinControls.UI.RadTextBox();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).BeginInit();
     this.radGroupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).BeginInit();
     this.radGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trvCategories)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTitle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // 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(513, 364);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(101, 35);
     this.btnSave.TabIndex = 5;
     this.btnSave.Text = "ذخیره";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnNew
     //
     this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | 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(9, 294);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(101, 35);
     this.btnNew.TabIndex = 4;
     this.btnNew.Text = "جدید";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // radGroupBox6
     //
     this.radGroupBox6.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox6.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.radGroupBox6.Controls.Add(this.ucFilter1);
     this.radGroupBox6.Controls.Add(this.grvItems);
     this.radGroupBox6.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     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(6, 0);
     this.radGroupBox6.Name = "radGroupBox6";
     this.radGroupBox6.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.radGroupBox6.RootElement.MinSize = new System.Drawing.Size(0, 0);
     this.radGroupBox6.Size = new System.Drawing.Size(385, 399);
     this.radGroupBox6.TabIndex = 20;
     this.radGroupBox6.TabStop = false;
     this.radGroupBox6.Text = "خدمات";
     //
     // ucFilter1
     //
     this.ucFilter1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.ucFilter1.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.ucFilter1.Location = new System.Drawing.Point(5, 21);
     this.ucFilter1.Name = "ucFilter1";
     this.ucFilter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ucFilter1.Size = new System.Drawing.Size(375, 26);
     this.ucFilter1.TabIndex = 14;
     //
     // grvItems
     //
     this.grvItems.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.grvItems.AutoScroll = true;
     this.grvItems.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grvItems.Cursor = System.Windows.Forms.Cursors.Default;
     this.grvItems.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.grvItems.ForeColor = System.Drawing.Color.Black;
     this.grvItems.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grvItems.Location = new System.Drawing.Point(5, 51);
     //
     // grvItems
     //
     this.grvItems.MasterTemplate.AllowAddNewRow = false;
     this.grvItems.MasterTemplate.AllowCellContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnChooser = false;
     this.grvItems.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnReorder = false;
     this.grvItems.MasterTemplate.AllowDeleteRow = false;
     this.grvItems.MasterTemplate.AllowDragToGroup = false;
     this.grvItems.MasterTemplate.AllowEditRow = false;
     this.grvItems.MasterTemplate.AllowRowResize = false;
     this.grvItems.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.EnableExpressionEditor = false;
     gridViewTextBoxColumn1.FieldName = "Title";
     gridViewTextBoxColumn1.HeaderText = "نام خدمات";
     gridViewTextBoxColumn1.Name = "column1";
     gridViewTextBoxColumn1.Width = 285;
     gridViewTextBoxColumn2.EnableExpressionEditor = false;
     gridViewTextBoxColumn2.FieldName = "Price";
     gridViewTextBoxColumn2.FormatString = "{0:0,0 ریال}";
     gridViewTextBoxColumn2.HeaderText = "قیمت";
     gridViewTextBoxColumn2.Name = "column3";
     gridViewTextBoxColumn2.Width = 60;
     gridViewCommandColumn1.AllowHide = false;
     gridViewCommandColumn1.AllowReorder = false;
     gridViewCommandColumn1.AllowResize = false;
     gridViewCommandColumn1.AllowSort = false;
     gridViewCommandColumn1.EnableExpressionEditor = false;
     gridViewCommandColumn1.HeaderText = "حذف";
     gridViewCommandColumn1.Name = "column2";
     gridViewCommandColumn1.Width = 30;
     this.grvItems.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn1,
     gridViewTextBoxColumn2,
     gridViewCommandColumn1});
     this.grvItems.MasterTemplate.EnableGrouping = false;
     this.grvItems.MasterTemplate.ShowRowHeaderColumn = false;
     this.grvItems.Name = "grvItems";
     this.grvItems.ReadOnly = true;
     this.grvItems.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.grvItems.Size = new System.Drawing.Size(375, 338);
     this.grvItems.TabIndex = 13;
     this.grvItems.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grvItems_CellFormatting);
     this.grvItems.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grvItems_CurrentRowChanging);
     this.grvItems.SelectionChanged += new System.EventHandler(this.grvItems_SelectionChanged);
     this.grvItems.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grvItems_CommandCellClick);
     this.grvItems.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grvItems_KeyDown);
     //
     // radGroupBox4
     //
     this.radGroupBox4.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radGroupBox4.Controls.Add(this.radLabel2);
     this.radGroupBox4.Controls.Add(this.trvCategories);
     this.radGroupBox4.Controls.Add(this.radLabel1);
     this.radGroupBox4.Controls.Add(this.btnAdd);
     this.radGroupBox4.Controls.Add(this.btnNew);
     this.radGroupBox4.Controls.Add(this.radTextBox1);
     this.radGroupBox4.Controls.Add(this.radLabel20);
     this.radGroupBox4.Controls.Add(this.txtTitle);
     this.radGroupBox4.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     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(397, 0);
     this.radGroupBox4.Name = "radGroupBox4";
     this.radGroupBox4.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox4.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.radGroupBox4.RootElement.MinSize = new System.Drawing.Size(0, 0);
     this.radGroupBox4.Size = new System.Drawing.Size(224, 336);
     this.radGroupBox4.TabIndex = 19;
     this.radGroupBox4.TabStop = false;
     this.radGroupBox4.Text = "تعریف";
     //
     // radLabel2
     //
     this.radLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | 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(170, 48);
     this.radLabel2.Name = "radLabel2";
     this.radLabel2.Size = new System.Drawing.Size(52, 30);
     this.radLabel2.TabIndex = 12;
     this.radLabel2.Text = "خدمات :";
     this.radLabel2.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // trvCategories
     //
     this.trvCategories.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.trvCategories.CheckBoxes = true;
     this.trvCategories.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.trvCategories.Location = new System.Drawing.Point(9, 53);
     this.trvCategories.Name = "trvCategories";
     this.trvCategories.Size = new System.Drawing.Size(161, 202);
     this.trvCategories.SpacingBetweenNodes = -1;
     this.trvCategories.TabIndex = 1;
     this.trvCategories.Text = "radTreeView1";
     this.trvCategories.NodeCheckedChanged += new Telerik.WinControls.UI.RadTreeView.TreeViewEventHandler(this.trvCategories_NodeCheckedChanged);
     this.trvCategories.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // radLabel1
     //
     this.radLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | 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(144, 259);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.Size = new System.Drawing.Size(77, 30);
     this.radLabel1.TabIndex = 13;
     this.radLabel1.Text = "قیمت (ریال) :";
     this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | 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(116, 294);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(101, 35);
     this.btnAdd.TabIndex = 3;
     this.btnAdd.Text = "افزودن";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // radTextBox1
     //
     this.radTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radTextBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Price", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "N0"));
     this.radTextBox1.Font = new System.Drawing.Font("B Nazanin", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radTextBox1.Location = new System.Drawing.Point(9, 261);
     this.radTextBox1.Name = "radTextBox1";
     this.radTextBox1.Size = new System.Drawing.Size(129, 27);
     this.radTextBox1.TabIndex = 2;
     this.radTextBox1.TabStop = false;
     this.radTextBox1.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtSalary_TextChanging);
     this.radTextBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // srcItem
     //
     this.srcItem.DataSource = typeof(Shayan.Data.Service);
     //
     // radLabel20
     //
     this.radLabel20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel20.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
     this.radLabel20.Location = new System.Drawing.Point(170, 19);
     this.radLabel20.Name = "radLabel20";
     this.radLabel20.Size = new System.Drawing.Size(44, 30);
     this.radLabel20.TabIndex = 11;
     this.radLabel20.Text = "عنوان :";
     this.radLabel20.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtTitle
     //
     this.txtTitle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtTitle.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Title", true));
     this.txtTitle.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtTitle.Location = new System.Drawing.Point(9, 20);
     this.txtTitle.Name = "txtTitle";
     this.txtTitle.Size = new System.Drawing.Size(161, 28);
     this.txtTitle.TabIndex = 0;
     this.txtTitle.TabStop = false;
     this.txtTitle.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtTitle_TextChanging);
     this.txtTitle.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // 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(406, 364);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(101, 35);
     this.btnCancel.TabIndex = 6;
     this.btnCancel.Text = "انصراف";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // FormDefineService
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(632, 406);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.radGroupBox6);
     this.Controls.Add(this.radGroupBox4);
     this.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold);
     this.MinimumSize = new System.Drawing.Size(640, 440);
     this.Name = "FormDefineService";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "مدیریت سیستم : تعریف خدمات";
     this.ThemeName = "ControlDefault";
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).EndInit();
     this.radGroupBox6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).EndInit();
     this.radGroupBox4.ResumeLayout(false);
     this.radGroupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trvCategories)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTitle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Licensing));
     this.PnlActivation = new Telerik.WinControls.UI.RadPanel();
     this.radButton3 = new Telerik.WinControls.UI.RadButton();
     this.TxtKey = new System.Windows.Forms.TextBox();
     this.LblStatus = new System.Windows.Forms.Label();
     this.BtnActivate = new Telerik.WinControls.UI.RadButton();
     this.PnlDisplay = new Telerik.WinControls.UI.RadPanel();
     this.LblDuration = new Telerik.WinControls.UI.RadLabel();
     this.lblheading = new Telerik.WinControls.UI.RadLabel();
     this.radButton1 = new Telerik.WinControls.UI.RadButton();
     this.BtnInstallLicense = new Telerik.WinControls.UI.RadButton();
     this.BtnContEval = new Telerik.WinControls.UI.RadButton();
     this.office2007BlackTheme1 = new Telerik.WinControls.Themes.Office2007BlackTheme();
     ((System.ComponentModel.ISupportInitialize)(this.PnlActivation)).BeginInit();
     this.PnlActivation.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnActivate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PnlDisplay)).BeginInit();
     this.PnlDisplay.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LblDuration)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblheading)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnInstallLicense)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnContEval)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // PnlActivation
     //
     this.PnlActivation.Controls.Add(this.radButton3);
     this.PnlActivation.Controls.Add(this.TxtKey);
     this.PnlActivation.Controls.Add(this.LblStatus);
     this.PnlActivation.Controls.Add(this.BtnActivate);
     this.PnlActivation.Dock = System.Windows.Forms.DockStyle.Top;
     this.PnlActivation.Location = new System.Drawing.Point(0, 131);
     this.PnlActivation.Name = "PnlActivation";
     this.PnlActivation.Size = new System.Drawing.Size(471, 136);
     this.PnlActivation.TabIndex = 50;
     this.PnlActivation.Visible = false;
     //
     // radButton3
     //
     this.radButton3.AllowShowFocusCues = true;
     this.radButton3.ForeColor = System.Drawing.Color.White;
     this.radButton3.Location = new System.Drawing.Point(327, 88);
     this.radButton3.Name = "radButton3";
     //
     //
     //
     this.radButton3.RootElement.ForeColor = System.Drawing.Color.White;
     this.radButton3.Size = new System.Drawing.Size(136, 23);
     this.radButton3.TabIndex = 45;
     this.radButton3.Text = "Cancel";
     this.radButton3.ThemeName = "Office2007Black";
     this.radButton3.Click += new System.EventHandler(this.radButton3_Click);
     //
     // TxtKey
     //
     this.TxtKey.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TxtKey.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtKey.Location = new System.Drawing.Point(9, 48);
     this.TxtKey.Name = "TxtKey";
     this.TxtKey.Size = new System.Drawing.Size(454, 21);
     this.TxtKey.TabIndex = 42;
     //
     // LblStatus
     //
     this.LblStatus.AutoSize = true;
     this.LblStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LblStatus.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.LblStatus.Location = new System.Drawing.Point(6, 22);
     this.LblStatus.Name = "LblStatus";
     this.LblStatus.Size = new System.Drawing.Size(182, 15);
     this.LblStatus.TabIndex = 43;
     this.LblStatus.Text = "Enter Licensing Key to Activate";
     //
     // BtnActivate
     //
     this.BtnActivate.AllowShowFocusCues = true;
     this.BtnActivate.ForeColor = System.Drawing.Color.White;
     this.BtnActivate.Location = new System.Drawing.Point(172, 88);
     this.BtnActivate.Name = "BtnActivate";
     //
     //
     //
     this.BtnActivate.RootElement.ForeColor = System.Drawing.Color.White;
     this.BtnActivate.Size = new System.Drawing.Size(136, 23);
     this.BtnActivate.TabIndex = 44;
     this.BtnActivate.Text = "Activate";
     this.BtnActivate.ThemeName = "Office2007Black";
     this.BtnActivate.Click += new System.EventHandler(this.BtnActivate_Click);
     //
     // PnlDisplay
     //
     this.PnlDisplay.Controls.Add(this.LblDuration);
     this.PnlDisplay.Controls.Add(this.lblheading);
     this.PnlDisplay.Controls.Add(this.radButton1);
     this.PnlDisplay.Controls.Add(this.BtnInstallLicense);
     this.PnlDisplay.Controls.Add(this.BtnContEval);
     this.PnlDisplay.Dock = System.Windows.Forms.DockStyle.Top;
     this.PnlDisplay.Location = new System.Drawing.Point(0, 0);
     this.PnlDisplay.Name = "PnlDisplay";
     this.PnlDisplay.Size = new System.Drawing.Size(471, 131);
     this.PnlDisplay.TabIndex = 49;
     //
     // LblDuration
     //
     this.LblDuration.AutoSize = false;
     this.LblDuration.BackColor = System.Drawing.Color.Transparent;
     this.LblDuration.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LblDuration.ForeColor = System.Drawing.Color.MistyRose;
     this.LblDuration.Location = new System.Drawing.Point(12, 57);
     this.LblDuration.Name = "LblDuration";
     //
     //
     //
     this.LblDuration.RootElement.ForeColor = System.Drawing.Color.MistyRose;
     this.LblDuration.RootElement.StretchHorizontally = true;
     this.LblDuration.RootElement.StretchVertically = true;
     this.LblDuration.Size = new System.Drawing.Size(448, 18);
     this.LblDuration.TabIndex = 46;
     this.LblDuration.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblheading
     //
     this.lblheading.AutoSize = false;
     this.lblheading.BackColor = System.Drawing.Color.Transparent;
     this.lblheading.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblheading.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.lblheading.Location = new System.Drawing.Point(9, 13);
     this.lblheading.Name = "lblheading";
     //
     //
     //
     this.lblheading.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.lblheading.RootElement.StretchHorizontally = true;
     this.lblheading.RootElement.StretchVertically = true;
     this.lblheading.Size = new System.Drawing.Size(454, 38);
     this.lblheading.TabIndex = 0;
     this.lblheading.Text = "Thank you for evaluating the application. To continue your evaluation please clic" +
         "k the \'Continue Evaluation\' button.";
     this.lblheading.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // radButton1
     //
     this.radButton1.AllowShowFocusCues = true;
     this.radButton1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton1.ForeColor = System.Drawing.Color.White;
     this.radButton1.Location = new System.Drawing.Point(327, 93);
     this.radButton1.Name = "radButton1";
     //
     //
     //
     this.radButton1.RootElement.ForeColor = System.Drawing.Color.White;
     this.radButton1.Size = new System.Drawing.Size(136, 23);
     this.radButton1.TabIndex = 45;
     this.radButton1.Text = "Exit";
     this.radButton1.ThemeName = "Office2007Black";
     this.radButton1.Click += new System.EventHandler(this.radButton1_Click);
     //
     // BtnInstallLicense
     //
     this.BtnInstallLicense.AllowShowFocusCues = true;
     this.BtnInstallLicense.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnInstallLicense.ForeColor = System.Drawing.Color.White;
     this.BtnInstallLicense.Location = new System.Drawing.Point(9, 92);
     this.BtnInstallLicense.Name = "BtnInstallLicense";
     //
     //
     //
     this.BtnInstallLicense.RootElement.ForeColor = System.Drawing.Color.White;
     this.BtnInstallLicense.Size = new System.Drawing.Size(136, 24);
     this.BtnInstallLicense.TabIndex = 43;
     this.BtnInstallLicense.Text = "Install License";
     this.BtnInstallLicense.ThemeName = "Office2007Black";
     this.BtnInstallLicense.Click += new System.EventHandler(this.BtnInstallLicense_Click);
     //
     // BtnContEval
     //
     this.BtnContEval.AllowShowFocusCues = true;
     this.BtnContEval.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnContEval.ForeColor = System.Drawing.Color.White;
     this.BtnContEval.Location = new System.Drawing.Point(172, 93);
     this.BtnContEval.Name = "BtnContEval";
     //
     //
     //
     this.BtnContEval.RootElement.ForeColor = System.Drawing.Color.White;
     this.BtnContEval.Size = new System.Drawing.Size(136, 23);
     this.BtnContEval.TabIndex = 44;
     this.BtnContEval.Text = "Continue Evaluation";
     this.BtnContEval.ThemeName = "Office2007Black";
     this.BtnContEval.Click += new System.EventHandler(this.BtnContEval_Click);
     //
     // Licensing
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(471, 278);
     this.Controls.Add(this.PnlActivation);
     this.Controls.Add(this.PnlDisplay);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "Licensing";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Licensing";
     this.ThemeName = "Office2007Black";
     this.Load += new System.EventHandler(this.Licensing_Load);
     ((System.ComponentModel.ISupportInitialize)(this.PnlActivation)).EndInit();
     this.PnlActivation.ResumeLayout(false);
     this.PnlActivation.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnActivate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PnlDisplay)).EndInit();
     this.PnlDisplay.ResumeLayout(false);
     this.PnlDisplay.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LblDuration)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblheading)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnInstallLicense)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnContEval)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
Example #25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnUpdate = new Telerik.WinControls.UI.RadButton();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.lblLastUpdate = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.lblVersion = new Telerik.WinControls.UI.RadLabel();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.lblLicense = new Telerik.WinControls.UI.RadLabel();
     ((System.ComponentModel.ISupportInitialize)(this.btnUpdate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblLastUpdate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblVersion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblLicense)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // btnUpdate
     //
     this.btnUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnUpdate.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold);
     this.btnUpdate.Location = new System.Drawing.Point(58, 90);
     this.btnUpdate.Name = "btnUpdate";
     this.btnUpdate.Size = new System.Drawing.Size(130, 24);
     this.btnUpdate.TabIndex = 0;
     this.btnUpdate.Text = "به روز رسانی";
     this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
     //
     // radLabel1
     //
     this.radLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel1.Font = new System.Drawing.Font("B Nazanin", 9.3F, System.Drawing.FontStyle.Bold);
     this.radLabel1.Location = new System.Drawing.Point(114, 8);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radLabel1.Size = new System.Drawing.Size(126, 23);
     this.radLabel1.TabIndex = 1;
     this.radLabel1.Text = "تاریخ آخرین به روز رسانی :";
     this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // lblLastUpdate
     //
     this.lblLastUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblLastUpdate.AutoSize = false;
     this.lblLastUpdate.Font = new System.Drawing.Font("B Nazanin", 9.3F, System.Drawing.FontStyle.Bold);
     this.lblLastUpdate.Location = new System.Drawing.Point(3, 8);
     this.lblLastUpdate.Name = "lblLastUpdate";
     this.lblLastUpdate.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.lblLastUpdate.Size = new System.Drawing.Size(68, 18);
     this.lblLastUpdate.TabIndex = 2;
     this.lblLastUpdate.Text = "1390/3/12";
     this.lblLastUpdate.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel2
     //
     this.radLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel2.Font = new System.Drawing.Font("B Nazanin", 9.3F, System.Drawing.FontStyle.Bold);
     this.radLabel2.Location = new System.Drawing.Point(179, 33);
     this.radLabel2.Name = "radLabel2";
     this.radLabel2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radLabel2.Size = new System.Drawing.Size(61, 23);
     this.radLabel2.TabIndex = 2;
     this.radLabel2.Text = "نسخه فعلی :";
     this.radLabel2.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // lblVersion
     //
     this.lblVersion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblVersion.AutoSize = false;
     this.lblVersion.Font = new System.Drawing.Font("B Nazanin", 9.3F, System.Drawing.FontStyle.Bold);
     this.lblVersion.Location = new System.Drawing.Point(4, 36);
     this.lblVersion.Name = "lblVersion";
     this.lblVersion.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.lblVersion.Size = new System.Drawing.Size(68, 18);
     this.lblVersion.TabIndex = 3;
     this.lblVersion.Text = "1.0.0.0";
     this.lblVersion.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel4
     //
     this.radLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel4.Font = new System.Drawing.Font("B Nazanin", 9.3F, System.Drawing.FontStyle.Bold);
     this.radLabel4.Location = new System.Drawing.Point(162, 60);
     this.radLabel4.Name = "radLabel4";
     this.radLabel4.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radLabel4.Size = new System.Drawing.Size(79, 23);
     this.radLabel4.TabIndex = 3;
     this.radLabel4.Text = "سریال نرم افزار :";
     this.radLabel4.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // lblLicense
     //
     this.lblLicense.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblLicense.AutoSize = false;
     this.lblLicense.Font = new System.Drawing.Font("B Nazanin", 9.3F, System.Drawing.FontStyle.Bold);
     this.lblLicense.Location = new System.Drawing.Point(3, 63);
     this.lblLicense.Name = "lblLicense";
     this.lblLicense.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.lblLicense.Size = new System.Drawing.Size(153, 18);
     this.lblLicense.TabIndex = 4;
     this.lblLicense.Text = "xxxx-xxxx-xxxx-xxxx";
     this.lblLicense.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // FrmUpdate
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(247, 124);
     this.Controls.Add(this.lblLicense);
     this.Controls.Add(this.radLabel4);
     this.Controls.Add(this.lblVersion);
     this.Controls.Add(this.radLabel2);
     this.Controls.Add(this.lblLastUpdate);
     this.Controls.Add(this.radLabel1);
     this.Controls.Add(this.btnUpdate);
     this.Font = new System.Drawing.Font("B Nazanin", 9.8F, System.Drawing.FontStyle.Bold);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmUpdate";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "به روز رسانی";
     this.ThemeName = "ControlDefault";
     this.Load += new System.EventHandler(this.FrmUpdate_Load);
     ((System.ComponentModel.ISupportInitialize)(this.btnUpdate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblLastUpdate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblVersion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblLicense)).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.lbl_battery_section = new System.Windows.Forms.Label();
     this.panel_batary_stock = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.chk_brand = new Telerik.WinControls.UI.RadCheckBox();
     this.com_amp = new Telerik.WinControls.UI.RadComboBox();
     this.chk_size = new Telerik.WinControls.UI.RadCheckBox();
     this.chk_amp = new Telerik.WinControls.UI.RadCheckBox();
     this.chk_type = new Telerik.WinControls.UI.RadCheckBox();
     this.com_search_brand = new Telerik.WinControls.UI.RadComboBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.rad_MF = new System.Windows.Forms.RadioButton();
     this.rad_M = new System.Windows.Forms.RadioButton();
     this.txt_search_size = new Telerik.WinControls.UI.RadTextBox();
     this.radGridView5 = new Telerik.WinControls.UI.RadGridView();
     this.radButton4 = new Telerik.WinControls.UI.RadButton();
     this.lbl_search_qty = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.lbl_tot_qty = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
     this.radButton5 = new Telerik.WinControls.UI.RadButton();
     this.chk_din_battery = new Telerik.WinControls.UI.RadCheckBox();
     this.panel_add_new_category = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.radButton1 = new Telerik.WinControls.UI.RadButton();
     this.radButton9 = new Telerik.WinControls.UI.RadButton();
     this.radButton3 = new Telerik.WinControls.UI.RadButton();
     this.radButton2 = new Telerik.WinControls.UI.RadButton();
     this.radGridView4 = new Telerik.WinControls.UI.RadGridView();
     this.txt_size = new Telerik.WinControls.UI.RadTextBox();
     this.chk_DIN = new System.Windows.Forms.CheckBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.radio_MF = new System.Windows.Forms.RadioButton();
     this.radio_M = new System.Windows.Forms.RadioButton();
     this.radGridView2 = new Telerik.WinControls.UI.RadGridView();
     this.com_amps = new Telerik.WinControls.UI.RadComboBox();
     this.com_voltage = new Telerik.WinControls.UI.RadComboBox();
     this.com_brand = new Telerik.WinControls.UI.RadComboBox();
     this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
     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();
     this.panel_settings = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.panel3 = new System.Windows.Forms.Panel();
     this.radio_size = new System.Windows.Forms.RadioButton();
     this.radio_brand = new System.Windows.Forms.RadioButton();
     this.radio_amps = new System.Windows.Forms.RadioButton();
     this.radio_volts = new System.Windows.Forms.RadioButton();
     this.btn_update = new Telerik.WinControls.UI.RadButton();
     this.btn_delete = new Telerik.WinControls.UI.RadButton();
     this.txt_value = new Telerik.WinControls.UI.RadTextBox();
     this.radGridView3 = new Telerik.WinControls.UI.RadGridView();
     this.btn_add = new Telerik.WinControls.UI.RadButton();
     this.lbl_radio_selected_type = new Telerik.WinControls.UI.RadLabel();
     this.btnBattarySearch = new Telerik.WinControls.UI.RadButton();
     this.btnAddNewBattaryCat = new Telerik.WinControls.UI.RadButton();
     this.btnBattrySettings = new Telerik.WinControls.UI.RadButton();
     this.radButton8 = new Telerik.WinControls.UI.RadButton();
     this.panel_batary_stock.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_amp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_amp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_search_brand)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_search_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_battery)).BeginInit();
     this.panel_add_new_category.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_amps)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_voltage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).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();
     this.panel_settings.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btn_update)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_delete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_value)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_add)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lbl_radio_selected_type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnBattarySearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddNewBattaryCat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnBattrySettings)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton8)).BeginInit();
     this.SuspendLayout();
     //
     // lbl_battery_section
     //
     this.lbl_battery_section.AutoSize = true;
     this.lbl_battery_section.Font = new System.Drawing.Font("Segoe UI", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_battery_section.ForeColor = System.Drawing.Color.Gold;
     this.lbl_battery_section.Location = new System.Drawing.Point(51, 35);
     this.lbl_battery_section.Name = "lbl_battery_section";
     this.lbl_battery_section.Size = new System.Drawing.Size(228, 37);
     this.lbl_battery_section.TabIndex = 33;
     this.lbl_battery_section.Text = " Battery Section ";
     //
     // panel_batary_stock
     //
     this.panel_batary_stock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.panel_batary_stock.Controls.Add(this.panel2);
     this.panel_batary_stock.Controls.Add(this.radButton4);
     this.panel_batary_stock.Controls.Add(this.lbl_search_qty);
     this.panel_batary_stock.Controls.Add(this.label6);
     this.panel_batary_stock.Controls.Add(this.lbl_tot_qty);
     this.panel_batary_stock.Controls.Add(this.label5);
     this.panel_batary_stock.Controls.Add(this.radGridView1);
     this.panel_batary_stock.Controls.Add(this.radButton5);
     this.panel_batary_stock.Controls.Add(this.chk_din_battery);
     this.panel_batary_stock.Location = new System.Drawing.Point(58, 110);
     this.panel_batary_stock.Name = "panel_batary_stock";
     this.panel_batary_stock.Size = new System.Drawing.Size(1022, 542);
     this.panel_batary_stock.TabIndex = 34;
     this.panel_batary_stock.Click += new System.EventHandler(this.panel_batary_stock_Click);
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.chk_brand);
     this.panel2.Controls.Add(this.com_amp);
     this.panel2.Controls.Add(this.chk_size);
     this.panel2.Controls.Add(this.chk_amp);
     this.panel2.Controls.Add(this.chk_type);
     this.panel2.Controls.Add(this.com_search_brand);
     this.panel2.Controls.Add(this.groupBox2);
     this.panel2.Controls.Add(this.txt_search_size);
     this.panel2.Controls.Add(this.radGridView5);
     this.panel2.Location = new System.Drawing.Point(12, 22);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(838, 131);
     this.panel2.TabIndex = 72;
     this.panel2.Click += new System.EventHandler(this.panel2_Click);
     //
     // chk_brand
     //
     this.chk_brand.BackColor = System.Drawing.Color.Transparent;
     this.chk_brand.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_brand.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_brand.Location = new System.Drawing.Point(15, 15);
     this.chk_brand.Name = "chk_brand";
     //
     //
     //
     this.chk_brand.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_brand.Size = new System.Drawing.Size(55, 21);
     this.chk_brand.TabIndex = 63;
     this.chk_brand.Text = "Brand";
     this.chk_brand.Click += new System.EventHandler(this.chk_brand_Click);
     //
     // com_amp
     //
     this.com_amp.Location = new System.Drawing.Point(76, 56);
     this.com_amp.Name = "com_amp";
     //
     //
     //
     this.com_amp.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_amp.Size = new System.Drawing.Size(181, 20);
     this.com_amp.TabIndex = 78;
     this.com_amp.TabStop = false;
     //
     // chk_size
     //
     this.chk_size.BackColor = System.Drawing.Color.Transparent;
     this.chk_size.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_size.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_size.Location = new System.Drawing.Point(315, 15);
     this.chk_size.Name = "chk_size";
     //
     //
     //
     this.chk_size.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_size.Size = new System.Drawing.Size(44, 21);
     this.chk_size.TabIndex = 62;
     this.chk_size.Text = "Size";
     this.chk_size.Click += new System.EventHandler(this.chk_size_Click);
     //
     // chk_amp
     //
     this.chk_amp.BackColor = System.Drawing.Color.Transparent;
     this.chk_amp.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_amp.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_amp.Location = new System.Drawing.Point(15, 55);
     this.chk_amp.Name = "chk_amp";
     //
     //
     //
     this.chk_amp.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_amp.Size = new System.Drawing.Size(49, 21);
     this.chk_amp.TabIndex = 77;
     this.chk_amp.Text = "AMP";
     this.chk_amp.Click += new System.EventHandler(this.chk_amp_Click);
     //
     // chk_type
     //
     this.chk_type.BackColor = System.Drawing.Color.Transparent;
     this.chk_type.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_type.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_type.Location = new System.Drawing.Point(611, 15);
     this.chk_type.Name = "chk_type";
     //
     //
     //
     this.chk_type.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_type.Size = new System.Drawing.Size(49, 21);
     this.chk_type.TabIndex = 64;
     this.chk_type.Text = "Type";
     this.chk_type.Click += new System.EventHandler(this.chk_type_Click);
     //
     // com_search_brand
     //
     this.com_search_brand.Location = new System.Drawing.Point(76, 16);
     this.com_search_brand.Name = "com_search_brand";
     //
     //
     //
     this.com_search_brand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_search_brand.Size = new System.Drawing.Size(181, 20);
     this.com_search_brand.TabIndex = 65;
     this.com_search_brand.TabStop = false;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.rad_MF);
     this.groupBox2.Controls.Add(this.rad_M);
     this.groupBox2.Location = new System.Drawing.Point(675, 8);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(124, 27);
     this.groupBox2.TabIndex = 67;
     this.groupBox2.TabStop = false;
     //
     // rad_MF
     //
     this.rad_MF.AutoSize = true;
     this.rad_MF.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_MF.ForeColor = System.Drawing.Color.White;
     this.rad_MF.Location = new System.Drawing.Point(63, 8);
     this.rad_MF.Name = "rad_MF";
     this.rad_MF.Size = new System.Drawing.Size(42, 17);
     this.rad_MF.TabIndex = 1;
     this.rad_MF.TabStop = true;
     this.rad_MF.Text = "MF";
     this.rad_MF.UseVisualStyleBackColor = true;
     this.rad_MF.CheckedChanged += new System.EventHandler(this.rad_MF_CheckedChanged);
     //
     // rad_M
     //
     this.rad_M.AutoSize = true;
     this.rad_M.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_M.ForeColor = System.Drawing.Color.White;
     this.rad_M.Location = new System.Drawing.Point(6, 8);
     this.rad_M.Name = "rad_M";
     this.rad_M.Size = new System.Drawing.Size(35, 17);
     this.rad_M.TabIndex = 0;
     this.rad_M.TabStop = true;
     this.rad_M.Text = "M";
     this.rad_M.UseVisualStyleBackColor = true;
     this.rad_M.CheckedChanged += new System.EventHandler(this.radioButton4_CheckedChanged);
     //
     // txt_search_size
     //
     this.txt_search_size.Location = new System.Drawing.Point(375, 17);
     this.txt_search_size.Name = "txt_search_size";
     this.txt_search_size.Size = new System.Drawing.Size(187, 20);
     this.txt_search_size.TabIndex = 71;
     this.txt_search_size.TabStop = false;
     this.txt_search_size.TextChanged += new System.EventHandler(this.txt_search_size_TextChanged);
     this.txt_search_size.Click += new System.EventHandler(this.txt_search_size_Click);
     this.txt_search_size.Enter += new System.EventHandler(this.txt_search_size_Enter);
     //
     // radGridView5
     //
     this.radGridView5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.radGridView5.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView5.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.radGridView5.ForeColor = System.Drawing.Color.Black;
     this.radGridView5.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView5.Location = new System.Drawing.Point(375, 38);
     //
     // radGridView5
     //
     this.radGridView5.MasterTemplate.AllowAddNewRow = false;
     this.radGridView5.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView5.MasterTemplate.EnableGrouping = false;
     this.radGridView5.MasterTemplate.ShowColumnHeaders = false;
     this.radGridView5.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView5.Name = "radGridView5";
     this.radGridView5.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView5.ReadOnly = true;
     this.radGridView5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView5.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView5.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView5.ShowGroupPanel = false;
     this.radGridView5.Size = new System.Drawing.Size(187, 72);
     this.radGridView5.TabIndex = 72;
     this.radGridView5.Text = "radGridView5";
     this.radGridView5.SelectionChanged += new System.EventHandler(this.radGridView5_SelectionChanged);
     this.radGridView5.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView5_CellClick);
     //
     // radButton4
     //
     this.radButton4.Location = new System.Drawing.Point(935, 163);
     this.radButton4.Name = "radButton4";
     this.radButton4.Size = new System.Drawing.Size(57, 20);
     this.radButton4.TabIndex = 69;
     this.radButton4.Text = "Refresh";
     this.radButton4.ThemeName = "Breeze";
     this.radButton4.Click += new System.EventHandler(this.radButton4_Click);
     //
     // lbl_search_qty
     //
     this.lbl_search_qty.AutoSize = true;
     this.lbl_search_qty.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_search_qty.ForeColor = System.Drawing.Color.White;
     this.lbl_search_qty.Location = new System.Drawing.Point(934, 521);
     this.lbl_search_qty.Name = "lbl_search_qty";
     this.lbl_search_qty.Size = new System.Drawing.Size(0, 13);
     this.lbl_search_qty.TabIndex = 76;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.White;
     this.label6.Location = new System.Drawing.Point(846, 523);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(94, 13);
     this.label6.TabIndex = 75;
     this.label6.Text = "Searched qty : ";
     //
     // lbl_tot_qty
     //
     this.lbl_tot_qty.AutoSize = true;
     this.lbl_tot_qty.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_tot_qty.ForeColor = System.Drawing.Color.White;
     this.lbl_tot_qty.Location = new System.Drawing.Point(70, 523);
     this.lbl_tot_qty.Name = "lbl_tot_qty";
     this.lbl_tot_qty.Size = new System.Drawing.Size(0, 13);
     this.lbl_tot_qty.TabIndex = 74;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.White;
     this.label5.Location = new System.Drawing.Point(9, 523);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(69, 13);
     this.label5.TabIndex = 73;
     this.label5.Text = "Total qty : ";
     //
     // radGridView1
     //
     this.radGridView1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.radGridView1.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView1.Font = new System.Drawing.Font("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(12, 186);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow = false;
     this.radGridView1.MasterTemplate.AllowColumnChooser = false;
     this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView1.Name = "radGridView1";
     this.radGridView1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.ReadOnly = true;
     this.radGridView1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView1.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView1.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.Size = new System.Drawing.Size(980, 332);
     this.radGridView1.TabIndex = 70;
     this.radGridView1.Text = "radGridView1";
     this.radGridView1.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     //
     // radButton5
     //
     this.radButton5.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton5.Location = new System.Drawing.Point(885, 22);
     this.radButton5.Name = "radButton5";
     this.radButton5.Size = new System.Drawing.Size(107, 52);
     this.radButton5.TabIndex = 68;
     this.radButton5.Text = "Search";
     this.radButton5.ThemeName = "Breeze";
     this.radButton5.Click += new System.EventHandler(this.radButton5_Click);
     //
     // chk_din_battery
     //
     this.chk_din_battery.BackColor = System.Drawing.Color.Transparent;
     this.chk_din_battery.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_din_battery.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_din_battery.Location = new System.Drawing.Point(28, 159);
     this.chk_din_battery.Name = "chk_din_battery";
     //
     //
     //
     this.chk_din_battery.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_din_battery.Size = new System.Drawing.Size(44, 21);
     this.chk_din_battery.TabIndex = 65;
     this.chk_din_battery.Text = "DIN";
     this.chk_din_battery.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.chk_din_battery_ToggleStateChanged);
     this.chk_din_battery.Click += new System.EventHandler(this.chk_din_battery_Click);
     //
     // panel_add_new_category
     //
     this.panel_add_new_category.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.panel_add_new_category.Controls.Add(this.panel4);
     this.panel_add_new_category.Controls.Add(this.radGridView4);
     this.panel_add_new_category.Controls.Add(this.txt_size);
     this.panel_add_new_category.Controls.Add(this.chk_DIN);
     this.panel_add_new_category.Controls.Add(this.groupBox1);
     this.panel_add_new_category.Controls.Add(this.radGridView2);
     this.panel_add_new_category.Controls.Add(this.com_amps);
     this.panel_add_new_category.Controls.Add(this.com_voltage);
     this.panel_add_new_category.Controls.Add(this.com_brand);
     this.panel_add_new_category.Controls.Add(this.radLabel6);
     this.panel_add_new_category.Controls.Add(this.radLabel5);
     this.panel_add_new_category.Controls.Add(this.radLabel4);
     this.panel_add_new_category.Controls.Add(this.radLabel3);
     this.panel_add_new_category.Controls.Add(this.radLabel2);
     this.panel_add_new_category.Controls.Add(this.radLabel1);
     this.panel_add_new_category.Location = new System.Drawing.Point(59, 111);
     this.panel_add_new_category.Name = "panel_add_new_category";
     this.panel_add_new_category.Size = new System.Drawing.Size(1022, 496);
     this.panel_add_new_category.TabIndex = 35;
     this.panel_add_new_category.Click += new System.EventHandler(this.panel_add_new_category_Click);
     //
     // panel4
     //
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel4.Controls.Add(this.radButton1);
     this.panel4.Controls.Add(this.radButton9);
     this.panel4.Controls.Add(this.radButton3);
     this.panel4.Controls.Add(this.radButton2);
     this.panel4.Location = new System.Drawing.Point(6, 410);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(985, 76);
     this.panel4.TabIndex = 67;
     //
     // radButton1
     //
     this.radButton1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton1.Location = new System.Drawing.Point(562, 18);
     this.radButton1.Name = "radButton1";
     this.radButton1.Size = new System.Drawing.Size(104, 37);
     this.radButton1.TabIndex = 61;
     this.radButton1.Text = "Add";
     this.radButton1.ThemeName = "Breeze";
     this.radButton1.Click += new System.EventHandler(this.radButton1_Click);
     //
     // radButton9
     //
     this.radButton9.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton9.Location = new System.Drawing.Point(883, 18);
     this.radButton9.Name = "radButton9";
     this.radButton9.Size = new System.Drawing.Size(93, 37);
     this.radButton9.TabIndex = 63;
     this.radButton9.Text = "Delete";
     this.radButton9.ThemeName = "Breeze";
     this.radButton9.Click += new System.EventHandler(this.radButton9_Click);
     //
     // radButton3
     //
     this.radButton3.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton3.Location = new System.Drawing.Point(732, 18);
     this.radButton3.Name = "radButton3";
     this.radButton3.Size = new System.Drawing.Size(96, 37);
     this.radButton3.TabIndex = 62;
     this.radButton3.Text = "Update";
     this.radButton3.ThemeName = "Breeze";
     this.radButton3.Click += new System.EventHandler(this.radButton3_Click);
     //
     // radButton2
     //
     this.radButton2.Location = new System.Drawing.Point(75, 18);
     this.radButton2.Name = "radButton2";
     this.radButton2.Size = new System.Drawing.Size(104, 37);
     this.radButton2.TabIndex = 64;
     this.radButton2.Text = "Refresh";
     this.radButton2.ThemeName = "Breeze";
     this.radButton2.Click += new System.EventHandler(this.radButton2_Click);
     //
     // radGridView4
     //
     this.radGridView4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     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(85, 115);
     //
     // radGridView4
     //
     this.radGridView4.MasterTemplate.AllowAddNewRow = false;
     this.radGridView4.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView4.MasterTemplate.EnableGrouping = false;
     this.radGridView4.MasterTemplate.ShowColumnHeaders = false;
     this.radGridView4.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView4.Name = "radGridView4";
     this.radGridView4.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView4.ReadOnly = true;
     this.radGridView4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView4.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView4.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView4.ShowGroupPanel = false;
     this.radGridView4.Size = new System.Drawing.Size(168, 72);
     this.radGridView4.TabIndex = 66;
     this.radGridView4.Text = "radGridView4";
     this.radGridView4.SelectionChanged += new System.EventHandler(this.radGridView4_SelectionChanged);
     this.radGridView4.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView4_CellClick);
     //
     // txt_size
     //
     this.txt_size.Location = new System.Drawing.Point(85, 94);
     this.txt_size.Name = "txt_size";
     this.txt_size.Size = new System.Drawing.Size(168, 20);
     this.txt_size.TabIndex = 65;
     this.txt_size.TabStop = false;
     this.txt_size.TextChanged += new System.EventHandler(this.txt_size_TextChanged);
     this.txt_size.Click += new System.EventHandler(this.txt_size_Click);
     this.txt_size.Enter += new System.EventHandler(this.txt_size_Enter);
     //
     // chk_DIN
     //
     this.chk_DIN.AutoSize = true;
     this.chk_DIN.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_DIN.ForeColor = System.Drawing.Color.Yellow;
     this.chk_DIN.Location = new System.Drawing.Point(85, 239);
     this.chk_DIN.Name = "chk_DIN";
     this.chk_DIN.Size = new System.Drawing.Size(80, 17);
     this.chk_DIN.TabIndex = 60;
     this.chk_DIN.Text = "DIN battery";
     this.chk_DIN.UseVisualStyleBackColor = true;
     this.chk_DIN.CheckedChanged += new System.EventHandler(this.chk_DIN_CheckedChanged);
     this.chk_DIN.Click += new System.EventHandler(this.chk_DIN_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.radio_MF);
     this.groupBox1.Controls.Add(this.radio_M);
     this.groupBox1.Location = new System.Drawing.Point(85, 185);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(168, 28);
     this.groupBox1.TabIndex = 59;
     this.groupBox1.TabStop = false;
     //
     // radio_MF
     //
     this.radio_MF.AutoSize = true;
     this.radio_MF.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radio_MF.ForeColor = System.Drawing.Color.White;
     this.radio_MF.Location = new System.Drawing.Point(63, 8);
     this.radio_MF.Name = "radio_MF";
     this.radio_MF.Size = new System.Drawing.Size(42, 17);
     this.radio_MF.TabIndex = 1;
     this.radio_MF.TabStop = true;
     this.radio_MF.Text = "MF";
     this.radio_MF.UseVisualStyleBackColor = true;
     this.radio_MF.CheckedChanged += new System.EventHandler(this.radio_MF_CheckedChanged);
     this.radio_MF.Click += new System.EventHandler(this.radio_MF_Click);
     //
     // radio_M
     //
     this.radio_M.AutoSize = true;
     this.radio_M.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radio_M.ForeColor = System.Drawing.Color.White;
     this.radio_M.Location = new System.Drawing.Point(6, 8);
     this.radio_M.Name = "radio_M";
     this.radio_M.Size = new System.Drawing.Size(35, 17);
     this.radio_M.TabIndex = 0;
     this.radio_M.TabStop = true;
     this.radio_M.Text = "M";
     this.radio_M.UseVisualStyleBackColor = true;
     this.radio_M.CheckedChanged += new System.EventHandler(this.radio_M_CheckedChanged);
     this.radio_M.Click += new System.EventHandler(this.radio_M_Click);
     //
     // radGridView2
     //
     this.radGridView2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     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(276, 56);
     //
     // radGridView2
     //
     this.radGridView2.MasterTemplate.AllowAddNewRow = false;
     this.radGridView2.MasterTemplate.AllowColumnChooser = false;
     this.radGridView2.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView2.Name = "radGridView2";
     this.radGridView2.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.ReadOnly = true;
     this.radGridView2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView2.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView2.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.Size = new System.Drawing.Size(715, 346);
     this.radGridView2.TabIndex = 58;
     this.radGridView2.Text = "radGridView2";
     this.radGridView2.SelectionChanged += new System.EventHandler(this.radGridView2_SelectionChanged);
     this.radGridView2.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView2_CellClick);
     //
     // com_amps
     //
     this.com_amps.Location = new System.Drawing.Point(85, 158);
     this.com_amps.Name = "com_amps";
     //
     //
     //
     this.com_amps.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_amps.Size = new System.Drawing.Size(168, 20);
     this.com_amps.TabIndex = 19;
     this.com_amps.TabStop = false;
     this.com_amps.Click += new System.EventHandler(this.com_amps_Click);
     //
     // com_voltage
     //
     this.com_voltage.Location = new System.Drawing.Point(85, 127);
     this.com_voltage.Name = "com_voltage";
     //
     //
     //
     this.com_voltage.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_voltage.Size = new System.Drawing.Size(168, 20);
     this.com_voltage.TabIndex = 18;
     this.com_voltage.TabStop = false;
     this.com_voltage.Click += new System.EventHandler(this.com_voltage_Click);
     //
     // com_brand
     //
     this.com_brand.Location = new System.Drawing.Point(85, 60);
     this.com_brand.Name = "com_brand";
     //
     //
     //
     this.com_brand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_brand.Size = new System.Drawing.Size(168, 20);
     this.com_brand.TabIndex = 16;
     this.com_brand.TabStop = false;
     this.com_brand.Click += new System.EventHandler(this.com_brand_Click);
     //
     // radLabel6
     //
     this.radLabel6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel6.ForeColor = System.Drawing.Color.White;
     this.radLabel6.Location = new System.Drawing.Point(6, 240);
     this.radLabel6.Name = "radLabel6";
     //
     //
     //
     this.radLabel6.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel6.Size = new System.Drawing.Size(28, 17);
     this.radLabel6.TabIndex = 15;
     this.radLabel6.Text = "DIN";
     //
     // radLabel5
     //
     this.radLabel5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel5.ForeColor = System.Drawing.Color.White;
     this.radLabel5.Location = new System.Drawing.Point(6, 197);
     this.radLabel5.Name = "radLabel5";
     //
     //
     //
     this.radLabel5.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel5.Size = new System.Drawing.Size(34, 17);
     this.radLabel5.TabIndex = 14;
     this.radLabel5.Text = "Type";
     //
     // radLabel4
     //
     this.radLabel4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.ForeColor = System.Drawing.Color.White;
     this.radLabel4.Location = new System.Drawing.Point(6, 162);
     this.radLabel4.Name = "radLabel4";
     //
     //
     //
     this.radLabel4.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel4.Size = new System.Drawing.Size(38, 17);
     this.radLabel4.TabIndex = 13;
     this.radLabel4.Text = "Amps";
     //
     // radLabel3
     //
     this.radLabel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel3.ForeColor = System.Drawing.Color.White;
     this.radLabel3.Location = new System.Drawing.Point(6, 131);
     this.radLabel3.Name = "radLabel3";
     //
     //
     //
     this.radLabel3.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel3.Size = new System.Drawing.Size(48, 17);
     this.radLabel3.TabIndex = 12;
     this.radLabel3.Text = "Voltage";
     //
     // radLabel2
     //
     this.radLabel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel2.ForeColor = System.Drawing.Color.White;
     this.radLabel2.Location = new System.Drawing.Point(6, 98);
     this.radLabel2.Name = "radLabel2";
     //
     //
     //
     this.radLabel2.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel2.Size = new System.Drawing.Size(31, 17);
     this.radLabel2.TabIndex = 11;
     this.radLabel2.Text = "Size";
     //
     // radLabel1
     //
     this.radLabel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel1.ForeColor = System.Drawing.Color.White;
     this.radLabel1.Location = new System.Drawing.Point(6, 61);
     this.radLabel1.Name = "radLabel1";
     //
     //
     //
     this.radLabel1.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel1.Size = new System.Drawing.Size(39, 17);
     this.radLabel1.TabIndex = 10;
     this.radLabel1.Text = "Brand";
     //
     // panel_settings
     //
     this.panel_settings.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.panel_settings.Controls.Add(this.pictureBox1);
     this.panel_settings.Controls.Add(this.panel3);
     this.panel_settings.Controls.Add(this.btn_update);
     this.panel_settings.Controls.Add(this.btn_delete);
     this.panel_settings.Controls.Add(this.txt_value);
     this.panel_settings.Controls.Add(this.radGridView3);
     this.panel_settings.Controls.Add(this.btn_add);
     this.panel_settings.Controls.Add(this.lbl_radio_selected_type);
     this.panel_settings.Location = new System.Drawing.Point(59, 111);
     this.panel_settings.Name = "panel_settings";
     this.panel_settings.Size = new System.Drawing.Size(1022, 542);
     this.panel_settings.TabIndex = 36;
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox1.Image = global::TMT_2012.Properties.Resources.car_battery_icon;
     this.pictureBox1.Location = new System.Drawing.Point(623, 162);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(227, 201);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 12;
     this.pictureBox1.TabStop = false;
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.Gray;
     this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel3.Controls.Add(this.radio_size);
     this.panel3.Controls.Add(this.radio_brand);
     this.panel3.Controls.Add(this.radio_amps);
     this.panel3.Controls.Add(this.radio_volts);
     this.panel3.Location = new System.Drawing.Point(82, 42);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(909, 65);
     this.panel3.TabIndex = 5;
     //
     // radio_size
     //
     this.radio_size.AutoSize = true;
     this.radio_size.BackColor = System.Drawing.Color.Transparent;
     this.radio_size.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radio_size.ForeColor = System.Drawing.Color.White;
     this.radio_size.Location = new System.Drawing.Point(25, 25);
     this.radio_size.Name = "radio_size";
     this.radio_size.Size = new System.Drawing.Size(49, 17);
     this.radio_size.TabIndex = 0;
     this.radio_size.TabStop = true;
     this.radio_size.Text = "Size";
     this.radio_size.UseVisualStyleBackColor = false;
     this.radio_size.CheckedChanged += new System.EventHandler(this.radio_size_CheckedChanged);
     this.radio_size.Click += new System.EventHandler(this.radio_size_Click);
     //
     // radio_brand
     //
     this.radio_brand.AutoSize = true;
     this.radio_brand.BackColor = System.Drawing.Color.Transparent;
     this.radio_brand.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radio_brand.ForeColor = System.Drawing.Color.White;
     this.radio_brand.Location = new System.Drawing.Point(109, 25);
     this.radio_brand.Name = "radio_brand";
     this.radio_brand.Size = new System.Drawing.Size(58, 17);
     this.radio_brand.TabIndex = 1;
     this.radio_brand.TabStop = true;
     this.radio_brand.Text = "Brand";
     this.radio_brand.UseVisualStyleBackColor = false;
     this.radio_brand.Click += new System.EventHandler(this.radio_brand_Click);
     //
     // radio_amps
     //
     this.radio_amps.AutoSize = true;
     this.radio_amps.BackColor = System.Drawing.Color.Transparent;
     this.radio_amps.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radio_amps.ForeColor = System.Drawing.Color.White;
     this.radio_amps.Location = new System.Drawing.Point(304, 25);
     this.radio_amps.Name = "radio_amps";
     this.radio_amps.Size = new System.Drawing.Size(55, 17);
     this.radio_amps.TabIndex = 3;
     this.radio_amps.TabStop = true;
     this.radio_amps.Text = "Amps";
     this.radio_amps.UseVisualStyleBackColor = false;
     this.radio_amps.Click += new System.EventHandler(this.radio_amps_Click);
     //
     // radio_volts
     //
     this.radio_volts.AutoSize = true;
     this.radio_volts.BackColor = System.Drawing.Color.Transparent;
     this.radio_volts.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radio_volts.ForeColor = System.Drawing.Color.White;
     this.radio_volts.Location = new System.Drawing.Point(210, 25);
     this.radio_volts.Name = "radio_volts";
     this.radio_volts.Size = new System.Drawing.Size(68, 17);
     this.radio_volts.TabIndex = 2;
     this.radio_volts.TabStop = true;
     this.radio_volts.Text = "Voltage";
     this.radio_volts.UseVisualStyleBackColor = false;
     this.radio_volts.Click += new System.EventHandler(this.radio_volts_Click);
     //
     // btn_update
     //
     this.btn_update.Location = new System.Drawing.Point(261, 400);
     this.btn_update.Name = "btn_update";
     this.btn_update.Size = new System.Drawing.Size(104, 37);
     this.btn_update.TabIndex = 8;
     this.btn_update.Text = "Update";
     this.btn_update.ThemeName = "Breeze";
     this.btn_update.Click += new System.EventHandler(this.btn_update_Click);
     //
     // btn_delete
     //
     this.btn_delete.Location = new System.Drawing.Point(393, 400);
     this.btn_delete.Name = "btn_delete";
     this.btn_delete.Size = new System.Drawing.Size(104, 37);
     this.btn_delete.TabIndex = 10;
     this.btn_delete.Text = "Delete";
     this.btn_delete.ThemeName = "Breeze";
     this.btn_delete.Click += new System.EventHandler(this.btn_delete_Click);
     //
     // txt_value
     //
     this.txt_value.Location = new System.Drawing.Point(148, 153);
     this.txt_value.Name = "txt_value";
     this.txt_value.Size = new System.Drawing.Size(207, 20);
     this.txt_value.TabIndex = 6;
     this.txt_value.TabStop = false;
     //
     // radGridView3
     //
     this.radGridView3.AutoScroll = true;
     this.radGridView3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(239)))), ((int)(((byte)(249)))));
     this.radGridView3.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView3.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.radGridView3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(66)))), ((int)(((byte)(139)))));
     this.radGridView3.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView3.Location = new System.Drawing.Point(148, 213);
     //
     // radGridView3
     //
     this.radGridView3.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.radGridView3.MasterTemplate.AllowAddNewRow = false;
     this.radGridView3.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView3.MasterTemplate.EnableGrouping = false;
     this.radGridView3.Name = "radGridView3";
     this.radGridView3.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView3.ReadOnly = true;
     this.radGridView3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView3.RootElement.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(66)))), ((int)(((byte)(139)))));
     this.radGridView3.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView3.Size = new System.Drawing.Size(349, 159);
     this.radGridView3.TabIndex = 11;
     this.radGridView3.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView3_CellClick);
     //
     // btn_add
     //
     this.btn_add.Location = new System.Drawing.Point(393, 152);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(104, 37);
     this.btn_add.TabIndex = 7;
     this.btn_add.Text = "Add  ";
     this.btn_add.ThemeName = "Breeze";
     this.btn_add.Click += new System.EventHandler(this.btn_size_Click);
     //
     // lbl_radio_selected_type
     //
     this.lbl_radio_selected_type.ForeColor = System.Drawing.Color.White;
     this.lbl_radio_selected_type.Location = new System.Drawing.Point(85, 153);
     this.lbl_radio_selected_type.Name = "lbl_radio_selected_type";
     //
     //
     //
     this.lbl_radio_selected_type.RootElement.ForeColor = System.Drawing.Color.White;
     this.lbl_radio_selected_type.Size = new System.Drawing.Size(46, 16);
     this.lbl_radio_selected_type.TabIndex = 9;
     this.lbl_radio_selected_type.Text = "--Type--";
     //
     // btnBattarySearch
     //
     this.btnBattarySearch.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnBattarySearch.Location = new System.Drawing.Point(596, 39);
     this.btnBattarySearch.Name = "btnBattarySearch";
     this.btnBattarySearch.Size = new System.Drawing.Size(149, 33);
     this.btnBattarySearch.TabIndex = 9;
     this.btnBattarySearch.Text = "Battery Stock Search";
     this.btnBattarySearch.Click += new System.EventHandler(this.btnBattarySearch_Click);
     //
     // btnAddNewBattaryCat
     //
     this.btnAddNewBattaryCat.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAddNewBattaryCat.Location = new System.Drawing.Point(752, 39);
     this.btnAddNewBattaryCat.Name = "btnAddNewBattaryCat";
     this.btnAddNewBattaryCat.Size = new System.Drawing.Size(149, 33);
     this.btnAddNewBattaryCat.TabIndex = 10;
     this.btnAddNewBattaryCat.Text = "Add Battery Category";
     this.btnAddNewBattaryCat.Click += new System.EventHandler(this.btnAddNewBattaryCat_Click);
     //
     // btnBattrySettings
     //
     this.btnBattrySettings.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnBattrySettings.Location = new System.Drawing.Point(907, 39);
     this.btnBattrySettings.Name = "btnBattrySettings";
     this.btnBattrySettings.Size = new System.Drawing.Size(149, 33);
     this.btnBattrySettings.TabIndex = 37;
     this.btnBattrySettings.Text = "Battery  Settings";
     this.btnBattrySettings.Click += new System.EventHandler(this.btnBattrySettings_Click);
     //
     // radButton8
     //
     this.radButton8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.radButton8.Font = new System.Drawing.Font("Verdana", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton8.ForeColor = System.Drawing.Color.Crimson;
     this.radButton8.Location = new System.Drawing.Point(1065, 6);
     this.radButton8.Name = "radButton8";
     //
     //
     //
     this.radButton8.RootElement.ForeColor = System.Drawing.Color.Crimson;
     this.radButton8.Size = new System.Drawing.Size(27, 29);
     this.radButton8.TabIndex = 71;
     this.radButton8.Text = "X";
     this.radButton8.ThemeName = "Breeze";
     this.radButton8.Click += new System.EventHandler(this.radButton8_Click);
     ((Telerik.WinControls.UI.RadButtonElement)(this.radButton8.GetChildAt(0))).Text = "X";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton8.GetChildAt(0).GetChildAt(0))).BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(166)))), ((int)(((byte)(91)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton8.GetChildAt(0).GetChildAt(0))).BackColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(109)))), ((int)(((byte)(60)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton8.GetChildAt(0).GetChildAt(0))).BackColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(29)))), ((int)(((byte)(29)))));
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radButton8.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(220)))), ((int)(((byte)(159)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton8.GetChildAt(0).GetChildAt(2))).ForeColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton8.GetChildAt(0).GetChildAt(2))).ForeColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton8.GetChildAt(0).GetChildAt(2))).ForeColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton8.GetChildAt(0).GetChildAt(2))).InnerColor = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(254)))), ((int)(((byte)(143)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton8.GetChildAt(0).GetChildAt(2))).InnerColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(247)))), ((int)(((byte)(91)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton8.GetChildAt(0).GetChildAt(2))).InnerColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(236)))), ((int)(((byte)(78)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton8.GetChildAt(0).GetChildAt(2))).InnerColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(242)))), ((int)(((byte)(14)))));
     ((Telerik.WinControls.Primitives.BorderPrimitive)(this.radButton8.GetChildAt(0).GetChildAt(2))).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
     //
     // batary
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.ClientSize = new System.Drawing.Size(1104, 665);
     this.Controls.Add(this.radButton8);
     this.Controls.Add(this.btnBattrySettings);
     this.Controls.Add(this.btnAddNewBattaryCat);
     this.Controls.Add(this.btnBattarySearch);
     this.Controls.Add(this.lbl_battery_section);
     this.Controls.Add(this.panel_batary_stock);
     this.Controls.Add(this.panel_add_new_category);
     this.Controls.Add(this.panel_settings);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "batary";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Load += new System.EventHandler(this.batary_Load);
     this.EnabledChanged += new System.EventHandler(this.batary_EnabledChanged);
     this.Click += new System.EventHandler(this.batary_Click);
     this.panel_batary_stock.ResumeLayout(false);
     this.panel_batary_stock.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_amp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_amp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_search_brand)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_search_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_battery)).EndInit();
     this.panel_add_new_category.ResumeLayout(false);
     this.panel_add_new_category.PerformLayout();
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_amps)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_voltage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).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();
     this.panel_settings.ResumeLayout(false);
     this.panel_settings.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btn_update)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_delete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_value)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btn_add)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lbl_radio_selected_type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnBattarySearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddNewBattaryCat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnBattrySettings)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton8)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            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.Data.FilterDescriptor filterDescriptor3 = new Telerik.WinControls.Data.FilterDescriptor();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn28 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn29 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn5 = new Telerik.WinControls.UI.GridViewCommandColumn();
            Telerik.WinControls.UI.ListViewDetailColumn listViewDetailColumn1 = new Telerik.WinControls.UI.ListViewDetailColumn("Column 0", "نام بیمه");
            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.GridViewCommandColumn gridViewCommandColumn6 = new Telerik.WinControls.UI.GridViewCommandColumn();
            this.radPageView1 = new Telerik.WinControls.UI.RadPageView();
            this.radPageViewPage1 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
            this.radGroupBox4 = new Telerik.WinControls.UI.RadGroupBox();
            this.grvPastServices = new Telerik.WinControls.UI.RadGridView();
            this.cmbPatient = new Telerik.WinControls.UI.RadMultiColumnComboBox();
            this.radMultiColumnComboBox1 = new Telerik.WinControls.UI.RadMultiColumnComboBox();
            this.srcItem = new System.Windows.Forms.BindingSource(this.components);
            this.cmbDoctor = new Telerik.WinControls.UI.RadDropDownList();
            this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
            this.radTextBox1 = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
            this.faDatePicker1 = new FarsiLibrary.Win.Controls.FADatePicker();
            this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
            this.lblBedehi = new Telerik.WinControls.UI.RadLabel();
            this.btnDocument = new Telerik.WinControls.UI.RadButton();
            this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
            this.tpTo = new Telerik.WinControls.UI.RadTimePicker();
            this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
            this.tpFrom = new Telerik.WinControls.UI.RadTimePicker();
            this.radPageViewPage3 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox3 = new Telerik.WinControls.UI.RadGroupBox();
            this.grvServices = new Telerik.WinControls.UI.RadGridView();
            this.radLabel16 = new Telerik.WinControls.UI.RadLabel();
            this.lblFinalSumCost = new Telerik.WinControls.UI.RadLabel();
            this.grbService = new Telerik.WinControls.UI.RadGroupBox();
            this.txtTakhfif = new Telerik.WinControls.UI.RadTextBox();
            this.srcService = new System.Windows.Forms.BindingSource(this.components);
            this.radLabel13 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
            this.txtComment = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
            this.ucTooth1 = new ShayanDental.UCTooth();
            this.radLabel14 = new Telerik.WinControls.UI.RadLabel();
            this.lsvInsurances = new Telerik.WinControls.UI.RadListView();
            this.lblFinalServiceCost = new Telerik.WinControls.UI.RadLabel();
            this.btnPercent = new Telerik.WinControls.UI.RadButton();
            this.cmbService = new Telerik.WinControls.UI.RadDropDownList();
            this.cmbCategories = new Telerik.WinControls.UI.RadDropDownList();
            this.btnAdd = new Telerik.WinControls.UI.RadButton();
            this.btnNew = new Telerik.WinControls.UI.RadButton();
            this.radLabel11 = new Telerik.WinControls.UI.RadLabel();
            this.txtServiceCost = new Telerik.WinControls.UI.RadTextBox();
            this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
            this.radPageViewPage2 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radGroupBox5 = new Telerik.WinControls.UI.RadGroupBox();
            this.cmbPrescription = new Telerik.WinControls.UI.RadDropDownList();
            this.grvPrescriptionDrug = new Telerik.WinControls.UI.RadGridView();
            this.btnAddPrescription = new Telerik.WinControls.UI.RadButton();
            this.radLabel18 = new Telerik.WinControls.UI.RadLabel();
            this.radGroupBox6 = new Telerik.WinControls.UI.RadGroupBox();
            this.btnPrintPrescription = new Telerik.WinControls.UI.RadButton();
            this.grvDrugs = new Telerik.WinControls.UI.RadGridView();
            this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
            this.cmbDrugs = new Telerik.WinControls.UI.RadDropDownList();
            this.btnAddDrug = new Telerik.WinControls.UI.RadButton();
            this.btnNewDrug = new Telerik.WinControls.UI.RadButton();
            this.radLabel20 = new Telerik.WinControls.UI.RadLabel();
            this.radLabel22 = new Telerik.WinControls.UI.RadLabel();
            this.txtManual = new Telerik.WinControls.UI.RadTextBox();
            this.srcDrug = new System.Windows.Forms.BindingSource(this.components);
            this.btnSave = new Telerik.WinControls.UI.RadButton();
            this.btnCancel = new Telerik.WinControls.UI.RadButton();
            this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
            this.btnRemove = new Telerik.WinControls.UI.RadButton();
            this.btnPrintVisit = new Telerik.WinControls.UI.RadButton();
            ((System.ComponentModel.ISupportInitialize)(this.radPageView1)).BeginInit();
            this.radPageView1.SuspendLayout();
            this.radPageViewPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
            this.radGroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).BeginInit();
            this.radGroupBox4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grvPastServices)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvPastServices.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPatient)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPatient.EditorControl)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPatient.EditorControl.MasterTemplate)).BeginInit();
            this.cmbPatient.SuspendLayout();
            ((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.srcItem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbDoctor)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblBedehi)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnDocument)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpTo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpFrom)).BeginInit();
            this.radPageViewPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).BeginInit();
            this.radGroupBox3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grvServices)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvServices.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblFinalSumCost)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grbService)).BeginInit();
            this.grbService.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtTakhfif)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.srcService)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtComment)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lsvInsurances)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblFinalServiceCost)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnPercent)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbService)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbCategories)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServiceCost)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
            this.radPageViewPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox5)).BeginInit();
            this.radGroupBox5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPrescription)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvPrescriptionDrug)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvPrescriptionDrug.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAddPrescription)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel18)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).BeginInit();
            this.radGroupBox6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.btnPrintPrescription)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvDrugs)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvDrugs.MasterTemplate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
            this.radGroupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cmbDrugs)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAddDrug)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnNewDrug)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel22)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtManual)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.srcDrug)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnRemove)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnPrintVisit)).BeginInit();
            this.SuspendLayout();
            // 
            // radPageView1
            // 
            this.radPageView1.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.radPageView1.Controls.Add(this.radPageViewPage1);
            this.radPageView1.Controls.Add(this.radPageViewPage3);
            this.radPageView1.Controls.Add(this.radPageViewPage2);
            this.radPageView1.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold);
            this.radPageView1.Location = new System.Drawing.Point(2, 3);
            this.radPageView1.Name = "radPageView1";
            this.radPageView1.SelectedPage = this.radPageViewPage1;
            this.radPageView1.Size = new System.Drawing.Size(980, 516);
            this.radPageView1.TabIndex = 0;
            this.radPageView1.Text = "radPageView1";
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.radPageView1.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
            // 
            // radPageViewPage1
            // 
            this.radPageViewPage1.Controls.Add(this.radGroupBox1);
            this.radPageViewPage1.Location = new System.Drawing.Point(10, 49);
            this.radPageViewPage1.Name = "radPageViewPage1";
            this.radPageViewPage1.Size = new System.Drawing.Size(959, 456);
            this.radPageViewPage1.Text = "ویزیت";
            // 
            // radGroupBox1
            // 
            this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.radGroupBox1.Controls.Add(this.radGroupBox4);
            this.radGroupBox1.Controls.Add(this.cmbPatient);
            this.radGroupBox1.Controls.Add(this.cmbDoctor);
            this.radGroupBox1.Controls.Add(this.radLabel9);
            this.radGroupBox1.Controls.Add(this.radTextBox1);
            this.radGroupBox1.Controls.Add(this.radLabel6);
            this.radGroupBox1.Controls.Add(this.faDatePicker1);
            this.radGroupBox1.Controls.Add(this.radLabel5);
            this.radGroupBox1.Controls.Add(this.lblBedehi);
            this.radGroupBox1.Controls.Add(this.btnDocument);
            this.radGroupBox1.Controls.Add(this.radLabel4);
            this.radGroupBox1.Controls.Add(this.radLabel2);
            this.radGroupBox1.Controls.Add(this.tpTo);
            this.radGroupBox1.Controls.Add(this.radLabel1);
            this.radGroupBox1.Controls.Add(this.radLabel3);
            this.radGroupBox1.Controls.Add(this.tpFrom);
            this.radGroupBox1.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold);
            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(2, 3);
            this.radGroupBox1.Name = "radGroupBox1";
            this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.radGroupBox1.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.radGroupBox1.Size = new System.Drawing.Size(954, 453);
            this.radGroupBox1.TabIndex = 3;
            this.radGroupBox1.Text = "ویزیت";
            // 
            // radGroupBox4
            // 
            this.radGroupBox4.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox4.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.radGroupBox4.Controls.Add(this.grvPastServices);
            this.radGroupBox4.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold);
            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(10, 211);
            this.radGroupBox4.Name = "radGroupBox4";
            this.radGroupBox4.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox4.Size = new System.Drawing.Size(936, 237);
            this.radGroupBox4.TabIndex = 18;
            this.radGroupBox4.Text = "سابقه بیمار";
            // 
            // grvPastServices
            // 
            this.grvPastServices.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.grvPastServices.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.grvPastServices.Location = new System.Drawing.Point(5, 31);
            // 
            // grvPastServices
            // 
            this.grvPastServices.MasterTemplate.AllowAddNewRow = false;
            this.grvPastServices.MasterTemplate.AllowCellContextMenu = false;
            this.grvPastServices.MasterTemplate.AllowColumnChooser = false;
            this.grvPastServices.MasterTemplate.AllowColumnHeaderContextMenu = false;
            this.grvPastServices.MasterTemplate.AllowColumnReorder = false;
            this.grvPastServices.MasterTemplate.AllowDeleteRow = false;
            this.grvPastServices.MasterTemplate.AllowDragToGroup = false;
            this.grvPastServices.MasterTemplate.AllowEditRow = false;
            this.grvPastServices.MasterTemplate.AllowRowResize = false;
            this.grvPastServices.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn23.FieldName = "ToothDescription";
            gridViewTextBoxColumn23.HeaderText = "سرویس";
            gridViewTextBoxColumn23.Name = "column1";
            gridViewTextBoxColumn23.Width = 462;
            gridViewTextBoxColumn24.FieldName = "FinalCost";
            gridViewTextBoxColumn24.FormatString = "{0:0,0 ریال}";
            gridViewTextBoxColumn24.HeaderText = "قیمت";
            gridViewTextBoxColumn24.Name = "column4";
            gridViewTextBoxColumn24.Width = 326;
            gridViewTextBoxColumn25.FieldName = "PersianDate";
            gridViewTextBoxColumn25.FormatString = "";
            gridViewTextBoxColumn25.HeaderText = "تاریخ";
            gridViewTextBoxColumn25.Name = "column3";
            gridViewTextBoxColumn25.StretchVertically = false;
            gridViewTextBoxColumn25.Width = 139;
            this.grvPastServices.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn23,
            gridViewTextBoxColumn24,
            gridViewTextBoxColumn25});
            this.grvPastServices.MasterTemplate.EnableFiltering = true;
            this.grvPastServices.MasterTemplate.EnableGrouping = false;
            this.grvPastServices.MasterTemplate.ShowFilteringRow = false;
            this.grvPastServices.MasterTemplate.ShowRowHeaderColumn = false;
            this.grvPastServices.Name = "grvPastServices";
            this.grvPastServices.ReadOnly = true;
            this.grvPastServices.ShowGroupPanel = false;
            this.grvPastServices.Size = new System.Drawing.Size(926, 201);
            this.grvPastServices.TabIndex = 13;
            // 
            // cmbPatient
            // 
            this.cmbPatient.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmbPatient.AutoFilter = true;
            this.cmbPatient.Controls.Add(this.radMultiColumnComboBox1);
            this.cmbPatient.DataBindings.Add(new System.Windows.Forms.Binding("SelectedItem", this.srcItem, "Patient", true));
            this.cmbPatient.DisplayMember = "FirstName";
            this.cmbPatient.DropDownSizingMode = ((Telerik.WinControls.UI.SizingMode)((Telerik.WinControls.UI.SizingMode.RightBottom | Telerik.WinControls.UI.SizingMode.UpDown)));
            // 
            // cmbPatient.NestedRadGridView
            // 
            this.cmbPatient.EditorControl.BackColor = System.Drawing.SystemColors.Window;
            this.cmbPatient.EditorControl.BeginEditMode = Telerik.WinControls.RadGridViewBeginEditMode.BeginEditOnKeystroke;
            this.cmbPatient.EditorControl.Cursor = System.Windows.Forms.Cursors.Default;
            this.cmbPatient.EditorControl.Font = new System.Drawing.Font("B Nazanin", 9.5F, System.Drawing.FontStyle.Bold);
            this.cmbPatient.EditorControl.ForeColor = System.Drawing.SystemColors.ControlText;
            this.cmbPatient.EditorControl.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.cmbPatient.EditorControl.Location = new System.Drawing.Point(0, 0);
            // 
            // 
            // 
            this.cmbPatient.EditorControl.MasterTemplate.AllowAddNewRow = false;
            this.cmbPatient.EditorControl.MasterTemplate.AllowCellContextMenu = false;
            this.cmbPatient.EditorControl.MasterTemplate.AllowColumnChooser = false;
            this.cmbPatient.EditorControl.MasterTemplate.AllowColumnReorder = false;
            this.cmbPatient.EditorControl.MasterTemplate.AllowDeleteRow = false;
            this.cmbPatient.EditorControl.MasterTemplate.AllowDragToGroup = false;
            this.cmbPatient.EditorControl.MasterTemplate.AllowEditRow = false;
            this.cmbPatient.EditorControl.MasterTemplate.AllowRowResize = false;
            this.cmbPatient.EditorControl.MasterTemplate.AutoGenerateColumns = false;
            this.cmbPatient.EditorControl.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn26.EnableExpressionEditor = false;
            gridViewTextBoxColumn26.FieldName = "PatientName";
            gridViewTextBoxColumn26.HeaderText = "نام";
            gridViewTextBoxColumn26.Name = "PatientName";
            gridViewTextBoxColumn26.Width = 128;
            gridViewTextBoxColumn27.EnableExpressionEditor = false;
            gridViewTextBoxColumn27.FieldName = "AccountantCode";
            gridViewTextBoxColumn27.HeaderText = "کد";
            gridViewTextBoxColumn27.Name = "AccountantCode";
            gridViewTextBoxColumn27.Width = 112;
            this.cmbPatient.EditorControl.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn26,
            gridViewTextBoxColumn27});
            this.cmbPatient.EditorControl.MasterTemplate.EnableAlternatingRowColor = true;
            this.cmbPatient.EditorControl.MasterTemplate.EnableFiltering = true;
            this.cmbPatient.EditorControl.MasterTemplate.EnableGrouping = false;
            this.cmbPatient.EditorControl.MasterTemplate.EnableSorting = false;
            filterDescriptor3.PropertyName = null;
            this.cmbPatient.EditorControl.MasterTemplate.FilterDescriptors.AddRange(new Telerik.WinControls.Data.FilterDescriptor[] {
            filterDescriptor3});
            this.cmbPatient.EditorControl.MasterTemplate.ShowFilteringRow = false;
            this.cmbPatient.EditorControl.MasterTemplate.ShowRowHeaderColumn = false;
            this.cmbPatient.EditorControl.Name = "NestedRadGridView";
            this.cmbPatient.EditorControl.ReadOnly = true;
            this.cmbPatient.EditorControl.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.cmbPatient.EditorControl.ShowGroupPanel = false;
            this.cmbPatient.EditorControl.Size = new System.Drawing.Size(240, 150);
            this.cmbPatient.EditorControl.TabIndex = 0;
            this.cmbPatient.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.cmbPatient.Location = new System.Drawing.Point(733, 33);
            this.cmbPatient.Name = "cmbPatient";
            // 
            // 
            // 
            this.cmbPatient.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.cmbPatient.Size = new System.Drawing.Size(166, 28);
            this.cmbPatient.TabIndex = 17;
            this.cmbPatient.TabStop = false;
            this.cmbPatient.SelectedIndexChanged += new System.EventHandler(this.cmbPatient_SelectedIndexChanged);
            // 
            // radMultiColumnComboBox1
            // 
            this.radMultiColumnComboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radMultiColumnComboBox1.AutoFilter = true;
            this.radMultiColumnComboBox1.DisplayMember = "FirstName";
            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)(178)));
            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.Name = "NestedRadGridView";
            this.radMultiColumnComboBox1.EditorControl.ReadOnly = true;
            this.radMultiColumnComboBox1.EditorControl.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            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(339, -39);
            this.radMultiColumnComboBox1.Name = "radMultiColumnComboBox1";
            // 
            // 
            // 
            this.radMultiColumnComboBox1.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
            this.radMultiColumnComboBox1.Size = new System.Drawing.Size(153, 20);
            this.radMultiColumnComboBox1.TabIndex = 19;
            this.radMultiColumnComboBox1.TabStop = false;
            // 
            // srcItem
            // 
            this.srcItem.DataSource = typeof(Shayan.Data.Visit);
            // 
            // cmbDoctor
            // 
            this.cmbDoctor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmbDoctor.AutoCompleteDisplayMember = "Title";
            this.cmbDoctor.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
            this.cmbDoctor.DataBindings.Add(new System.Windows.Forms.Binding("SelectedItem", this.srcItem, "Doctor", true));
            this.cmbDoctor.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.srcItem, "Doctor", true));
            this.cmbDoctor.DisplayMember = "Title";
            this.cmbDoctor.DropDownAnimationEnabled = true;
            this.cmbDoctor.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.cmbDoctor.Location = new System.Drawing.Point(733, 66);
            this.cmbDoctor.MaxDropDownItems = 0;
            this.cmbDoctor.Name = "cmbDoctor";
            this.cmbDoctor.ShowImageInEditorArea = true;
            this.cmbDoctor.Size = new System.Drawing.Size(166, 28);
            this.cmbDoctor.TabIndex = 1;
            // 
            // radLabel9
            // 
            this.radLabel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel9.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel9.Location = new System.Drawing.Point(901, 66);
            this.radLabel9.Name = "radLabel9";
            this.radLabel9.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel9.Size = new System.Drawing.Size(50, 30);
            this.radLabel9.TabIndex = 9;
            this.radLabel9.Text = "پزشک :";
            this.radLabel9.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radTextBox1
            // 
            this.radTextBox1.AcceptsReturn = true;
            this.radTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.radTextBox1.AutoScroll = true;
            this.radTextBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Comment", true));
            this.radTextBox1.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radTextBox1.Location = new System.Drawing.Point(10, 125);
            this.radTextBox1.Multiline = true;
            this.radTextBox1.Name = "radTextBox1";
            // 
            // 
            // 
            this.radTextBox1.RootElement.StretchVertically = true;
            this.radTextBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.radTextBox1.Size = new System.Drawing.Size(889, 80);
            this.radTextBox1.TabIndex = 5;
            this.radTextBox1.TabStop = false;
            this.radTextBox1.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtComment_TextChanging);
            // 
            // radLabel6
            // 
            this.radLabel6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel6.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel6.Location = new System.Drawing.Point(900, 122);
            this.radLabel6.Name = "radLabel6";
            this.radLabel6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel6.Size = new System.Drawing.Size(49, 30);
            this.radLabel6.TabIndex = 15;
            this.radLabel6.Text = "توضیح :";
            this.radLabel6.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // faDatePicker1
            // 
            this.faDatePicker1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.faDatePicker1.DataBindings.Add(new System.Windows.Forms.Binding("SelectedDateTime", this.srcItem, "Date", true));
            this.faDatePicker1.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.faDatePicker1.Location = new System.Drawing.Point(733, 96);
            this.faDatePicker1.Multiline = true;
            this.faDatePicker1.Name = "faDatePicker1";
            this.faDatePicker1.Size = new System.Drawing.Size(166, 28);
            this.faDatePicker1.TabIndex = 2;
            // 
            // radLabel5
            // 
            this.radLabel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel5.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel5.Location = new System.Drawing.Point(603, 32);
            this.radLabel5.Name = "radLabel5";
            this.radLabel5.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel5.Size = new System.Drawing.Size(42, 30);
            this.radLabel5.TabIndex = 6;
            this.radLabel5.Text = "بدهی :";
            this.radLabel5.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // lblBedehi
            // 
            this.lblBedehi.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.lblBedehi.AutoSize = false;
            this.lblBedehi.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.lblBedehi.Location = new System.Drawing.Point(316, 35);
            this.lblBedehi.Name = "lblBedehi";
            this.lblBedehi.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.lblBedehi.Size = new System.Drawing.Size(304, 23);
            this.lblBedehi.TabIndex = 7;
            this.lblBedehi.Text = "0 ریال";
            this.lblBedehi.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // btnDocument
            // 
            this.btnDocument.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnDocument.Enabled = false;
            this.btnDocument.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnDocument.Location = new System.Drawing.Point(655, 34);
            this.btnDocument.Name = "btnDocument";
            this.btnDocument.Size = new System.Drawing.Size(72, 27);
            this.btnDocument.TabIndex = 9;
            this.btnDocument.Text = "پرونده بیمار";
            this.btnDocument.Click += new System.EventHandler(this.btnDocument_Click);
            // 
            // radLabel4
            // 
            this.radLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel4.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel4.Location = new System.Drawing.Point(506, 93);
            this.radLabel4.Name = "radLabel4";
            this.radLabel4.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel4.Size = new System.Drawing.Size(57, 30);
            this.radLabel4.TabIndex = 6;
            this.radLabel4.Text = "تا ساعت :";
            this.radLabel4.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel2
            // 
            this.radLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel2.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel2.Location = new System.Drawing.Point(902, 96);
            this.radLabel2.Name = "radLabel2";
            this.radLabel2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel2.Size = new System.Drawing.Size(42, 30);
            this.radLabel2.TabIndex = 6;
            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.Right)));
            this.tpTo.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.srcItem, "ToTime", true));
            this.tpTo.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.tpTo.HeadersHeight = 19;
            this.tpTo.Location = new System.Drawing.Point(402, 93);
            this.tpTo.Name = "tpTo";
            this.tpTo.Size = new System.Drawing.Size(103, 28);
            this.tpTo.TabIndex = 4;
            this.tpTo.TabStop = false;
            this.tpTo.Text = "radTimePicker1";
            this.tpTo.Value = new System.DateTime(2012, 7, 31, 11, 14, 20, 0);
            // 
            // radLabel1
            // 
            this.radLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel1.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel1.Location = new System.Drawing.Point(902, 30);
            this.radLabel1.Name = "radLabel1";
            this.radLabel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel1.Size = new System.Drawing.Size(38, 30);
            this.radLabel1.TabIndex = 5;
            this.radLabel1.Text = "بیمار :";
            this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel3
            // 
            this.radLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel3.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel3.Location = new System.Drawing.Point(667, 95);
            this.radLabel3.Name = "radLabel3";
            this.radLabel3.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel3.Size = new System.Drawing.Size(59, 30);
            this.radLabel3.TabIndex = 4;
            this.radLabel3.Text = "از ساعت :";
            this.radLabel3.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // tpFrom
            // 
            this.tpFrom.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.tpFrom.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.srcItem, "FromTime", true));
            this.tpFrom.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.tpFrom.HeadersHeight = 19;
            this.tpFrom.Location = new System.Drawing.Point(565, 95);
            this.tpFrom.Name = "tpFrom";
            this.tpFrom.Size = new System.Drawing.Size(101, 28);
            this.tpFrom.TabIndex = 3;
            this.tpFrom.TabStop = false;
            this.tpFrom.Text = "radTimePicker1";
            this.tpFrom.Value = new System.DateTime(2012, 7, 31, 11, 14, 20, 0);
            // 
            // radPageViewPage3
            // 
            this.radPageViewPage3.Controls.Add(this.radGroupBox3);
            this.radPageViewPage3.Controls.Add(this.grbService);
            this.radPageViewPage3.Location = new System.Drawing.Point(10, 49);
            this.radPageViewPage3.Name = "radPageViewPage3";
            this.radPageViewPage3.Size = new System.Drawing.Size(959, 456);
            this.radPageViewPage3.Text = "خدمات";
            // 
            // radGroupBox3
            // 
            this.radGroupBox3.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox3.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.radGroupBox3.Controls.Add(this.grvServices);
            this.radGroupBox3.Controls.Add(this.radLabel16);
            this.radGroupBox3.Controls.Add(this.lblFinalSumCost);
            this.radGroupBox3.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold);
            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(3, 3);
            this.radGroupBox3.Name = "radGroupBox3";
            this.radGroupBox3.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox3.Size = new System.Drawing.Size(236, 454);
            this.radGroupBox3.TabIndex = 6;
            this.radGroupBox3.Text = "لیست خدمات";
            // 
            // grvServices
            // 
            this.grvServices.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.grvServices.AutoScroll = true;
            this.grvServices.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(240)))), ((int)(((byte)(249)))));
            this.grvServices.Cursor = System.Windows.Forms.Cursors.Default;
            this.grvServices.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold);
            this.grvServices.ForeColor = System.Drawing.Color.Black;
            this.grvServices.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.grvServices.Location = new System.Drawing.Point(5, 33);
            // 
            // grvServices
            // 
            this.grvServices.MasterTemplate.AllowAddNewRow = false;
            this.grvServices.MasterTemplate.AllowCellContextMenu = false;
            this.grvServices.MasterTemplate.AllowColumnChooser = false;
            this.grvServices.MasterTemplate.AllowColumnHeaderContextMenu = false;
            this.grvServices.MasterTemplate.AllowColumnReorder = false;
            this.grvServices.MasterTemplate.AllowDeleteRow = false;
            this.grvServices.MasterTemplate.AllowDragToGroup = false;
            this.grvServices.MasterTemplate.AllowEditRow = false;
            this.grvServices.MasterTemplate.AllowRowResize = false;
            this.grvServices.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn28.EnableExpressionEditor = false;
            gridViewTextBoxColumn28.FieldName = "ToothDescription";
            gridViewTextBoxColumn28.HeaderText = "سرویس";
            gridViewTextBoxColumn28.Name = "column1";
            gridViewTextBoxColumn28.Width = 162;
            gridViewTextBoxColumn29.EnableExpressionEditor = false;
            gridViewTextBoxColumn29.FieldName = "FinalCost";
            gridViewTextBoxColumn29.FormatString = "{0:0,0 ریال}";
            gridViewTextBoxColumn29.HeaderText = "قیمت";
            gridViewTextBoxColumn29.Name = "column4";
            gridViewTextBoxColumn29.Width = 34;
            gridViewCommandColumn5.AllowHide = false;
            gridViewCommandColumn5.AllowReorder = false;
            gridViewCommandColumn5.AllowResize = false;
            gridViewCommandColumn5.AllowSort = false;
            gridViewCommandColumn5.EnableExpressionEditor = false;
            gridViewCommandColumn5.HeaderText = "حذف";
            gridViewCommandColumn5.IsPinned = true;
            gridViewCommandColumn5.Name = "column3";
            gridViewCommandColumn5.PinPosition = Telerik.WinControls.UI.PinnedColumnPosition.Right;
            gridViewCommandColumn5.Width = 30;
            this.grvServices.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn28,
            gridViewTextBoxColumn29,
            gridViewCommandColumn5});
            this.grvServices.MasterTemplate.EnableFiltering = true;
            this.grvServices.MasterTemplate.EnableGrouping = false;
            this.grvServices.MasterTemplate.ShowFilteringRow = false;
            this.grvServices.MasterTemplate.ShowRowHeaderColumn = false;
            this.grvServices.Name = "grvServices";
            this.grvServices.ReadOnly = true;
            this.grvServices.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.grvServices.Size = new System.Drawing.Size(226, 386);
            this.grvServices.TabIndex = 12;
            this.grvServices.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grvItems_CellFormatting);
            this.grvServices.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grvServices_CurrentRowChanging);
            this.grvServices.SelectionChanged += new System.EventHandler(this.grvServices_SelectionChanged);
            this.grvServices.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grvItems_CommandCellClick);
            this.grvServices.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grvServices_KeyDown);
            // 
            // radLabel16
            // 
            this.radLabel16.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel16.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel16.Location = new System.Drawing.Point(134, 420);
            this.radLabel16.Name = "radLabel16";
            this.radLabel16.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel16.Size = new System.Drawing.Size(97, 30);
            this.radLabel16.TabIndex = 10;
            this.radLabel16.Text = "مجموع هزینه ها :";
            this.radLabel16.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // lblFinalSumCost
            // 
            this.lblFinalSumCost.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.lblFinalSumCost.AutoSize = false;
            this.lblFinalSumCost.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "FinalSumCost", true, System.Windows.Forms.DataSourceUpdateMode.OnValidation, "صفر", "0,0 ریال"));
            this.lblFinalSumCost.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.lblFinalSumCost.Location = new System.Drawing.Point(5, 421);
            this.lblFinalSumCost.Name = "lblFinalSumCost";
            this.lblFinalSumCost.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.lblFinalSumCost.Size = new System.Drawing.Size(130, 24);
            this.lblFinalSumCost.TabIndex = 11;
            this.lblFinalSumCost.Text = "0";
            this.lblFinalSumCost.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // grbService
            // 
            this.grbService.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.grbService.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.grbService.Controls.Add(this.txtTakhfif);
            this.grbService.Controls.Add(this.radLabel13);
            this.grbService.Controls.Add(this.radLabel10);
            this.grbService.Controls.Add(this.txtComment);
            this.grbService.Controls.Add(this.radLabel12);
            this.grbService.Controls.Add(this.ucTooth1);
            this.grbService.Controls.Add(this.radLabel14);
            this.grbService.Controls.Add(this.lsvInsurances);
            this.grbService.Controls.Add(this.lblFinalServiceCost);
            this.grbService.Controls.Add(this.btnPercent);
            this.grbService.Controls.Add(this.cmbService);
            this.grbService.Controls.Add(this.cmbCategories);
            this.grbService.Controls.Add(this.btnAdd);
            this.grbService.Controls.Add(this.btnNew);
            this.grbService.Controls.Add(this.radLabel11);
            this.grbService.Controls.Add(this.txtServiceCost);
            this.grbService.Controls.Add(this.radLabel8);
            this.grbService.Controls.Add(this.radLabel7);
            this.grbService.Enabled = false;
            this.grbService.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold);
            this.grbService.FooterImageIndex = -1;
            this.grbService.FooterImageKey = "";
            this.grbService.HeaderImageIndex = -1;
            this.grbService.HeaderImageKey = "";
            this.grbService.HeaderMargin = new System.Windows.Forms.Padding(0);
            this.grbService.HeaderText = "ارائه خدمات";
            this.grbService.Location = new System.Drawing.Point(242, 3);
            this.grbService.Name = "grbService";
            this.grbService.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            // 
            // 
            // 
            this.grbService.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.grbService.Size = new System.Drawing.Size(714, 454);
            this.grbService.TabIndex = 5;
            this.grbService.Text = "ارائه خدمات";
            // 
            // txtTakhfif
            // 
            this.txtTakhfif.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtTakhfif.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcService, "Discount", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "N0"));
            this.txtTakhfif.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.txtTakhfif.Location = new System.Drawing.Point(311, 64);
            this.txtTakhfif.Name = "txtTakhfif";
            this.txtTakhfif.Size = new System.Drawing.Size(70, 28);
            this.txtTakhfif.TabIndex = 9;
            this.txtTakhfif.TabStop = false;
            this.txtTakhfif.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtSalary_TextChanging);
            this.txtTakhfif.TextChanged += new System.EventHandler(this.txtTakhfif_TextChanged);
            // 
            // srcService
            // 
            this.srcService.DataSource = typeof(Shayan.Data.VisitService);
            // 
            // radLabel13
            // 
            this.radLabel13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel13.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel13.Location = new System.Drawing.Point(639, 91);
            this.radLabel13.Name = "radLabel13";
            this.radLabel13.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel13.Size = new System.Drawing.Size(49, 30);
            this.radLabel13.TabIndex = 17;
            this.radLabel13.Text = "توضیح :";
            this.radLabel13.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel10
            // 
            this.radLabel10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel10.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel10.Location = new System.Drawing.Point(363, 31);
            this.radLabel10.Name = "radLabel10";
            this.radLabel10.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel10.Size = new System.Drawing.Size(107, 30);
            this.radLabel10.TabIndex = 9;
            this.radLabel10.Text = "هزینه واحد (ریال) :";
            this.radLabel10.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // txtComment
            // 
            this.txtComment.AcceptsReturn = true;
            this.txtComment.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtComment.AutoScroll = true;
            this.txtComment.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcService, "Comment", true));
            this.txtComment.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.txtComment.Location = new System.Drawing.Point(266, 96);
            this.txtComment.Multiline = true;
            this.txtComment.Name = "txtComment";
            // 
            // 
            // 
            this.txtComment.RootElement.StretchVertically = true;
            this.txtComment.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.txtComment.Size = new System.Drawing.Size(372, 108);
            this.txtComment.TabIndex = 16;
            this.txtComment.TabStop = false;
            // 
            // radLabel12
            // 
            this.radLabel12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel12.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel12.Location = new System.Drawing.Point(208, 31);
            this.radLabel12.Name = "radLabel12";
            this.radLabel12.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel12.Size = new System.Drawing.Size(49, 30);
            this.radLabel12.TabIndex = 9;
            this.radLabel12.Text = "بیمه ها :";
            this.radLabel12.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // ucTooth1
            // 
            this.ucTooth1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.ucTooth1.ChildTooth = false;
            this.ucTooth1.DataBindings.Add(new System.Windows.Forms.Binding("SelectedTooths", this.srcService, "Tooth", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.ucTooth1.Location = new System.Drawing.Point(5, 211);
            this.ucTooth1.Name = "ucTooth1";
            this.ucTooth1.ReadOnly = false;
            this.ucTooth1.SelectedTooths = ((long)(0));
            this.ucTooth1.Size = new System.Drawing.Size(699, 195);
            this.ucTooth1.TabIndex = 15;
            // 
            // radLabel14
            // 
            this.radLabel14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel14.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel14.Location = new System.Drawing.Point(367, 413);
            this.radLabel14.Name = "radLabel14";
            this.radLabel14.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel14.Size = new System.Drawing.Size(121, 30);
            this.radLabel14.TabIndex = 8;
            this.radLabel14.Text = "هزینه نهایی سرویس :";
            this.radLabel14.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // lsvInsurances
            // 
            this.lsvInsurances.AllowColumnReorder = false;
            this.lsvInsurances.AllowColumnResize = false;
            this.lsvInsurances.AllowEdit = false;
            this.lsvInsurances.AllowRemove = false;
            this.lsvInsurances.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            listViewDetailColumn1.HeaderText = "نام بیمه";
            this.lsvInsurances.Columns.AddRange(new Telerik.WinControls.UI.ListViewDetailColumn[] {
            listViewDetailColumn1});
            this.lsvInsurances.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.lsvInsurances.GroupItemSize = new System.Drawing.Size(200, 20);
            this.lsvInsurances.ItemSize = new System.Drawing.Size(200, 20);
            this.lsvInsurances.ItemSpacing = -1;
            this.lsvInsurances.Location = new System.Drawing.Point(5, 33);
            this.lsvInsurances.Name = "lsvInsurances";
            this.lsvInsurances.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.lsvInsurances.ShowCheckBoxes = true;
            this.lsvInsurances.ShowColumnHeaders = false;
            this.lsvInsurances.ShowGridLines = true;
            this.lsvInsurances.Size = new System.Drawing.Size(200, 172);
            this.lsvInsurances.TabIndex = 0;
            this.lsvInsurances.ViewType = Telerik.WinControls.UI.ListViewType.DetailsView;
            this.lsvInsurances.ItemCheckedChanged += new Telerik.WinControls.UI.ListViewItemEventHandler(this.lsvInsurances_ItemCheckedChanged);
            // 
            // lblFinalServiceCost
            // 
            this.lblFinalServiceCost.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.lblFinalServiceCost.AutoSize = false;
            this.lblFinalServiceCost.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcService, "FinalCost", true, System.Windows.Forms.DataSourceUpdateMode.OnValidation, "صفر", "0,0 ریال"));
            this.lblFinalServiceCost.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.lblFinalServiceCost.Location = new System.Drawing.Point(238, 416);
            this.lblFinalServiceCost.Name = "lblFinalServiceCost";
            this.lblFinalServiceCost.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.lblFinalServiceCost.Size = new System.Drawing.Size(125, 24);
            this.lblFinalServiceCost.TabIndex = 9;
            this.lblFinalServiceCost.Text = "0 ریال";
            this.lblFinalServiceCost.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // btnPercent
            // 
            this.btnPercent.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnPercent.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnPercent.Location = new System.Drawing.Point(266, 63);
            this.btnPercent.Name = "btnPercent";
            this.btnPercent.Size = new System.Drawing.Size(39, 29);
            this.btnPercent.TabIndex = 10;
            this.btnPercent.Text = "درصد";
            this.btnPercent.Click += new System.EventHandler(this.btnPercent_Click);
            // 
            // cmbService
            // 
            this.cmbService.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmbService.AutoCompleteDisplayMember = "Title";
            this.cmbService.DataBindings.Add(new System.Windows.Forms.Binding("SelectedItem", this.srcService, "Service", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.cmbService.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.srcService, "Service", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.cmbService.DisplayMember = "Title";
            this.cmbService.DropDownAnimationEnabled = true;
            this.cmbService.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.cmbService.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.cmbService.Location = new System.Drawing.Point(475, 63);
            this.cmbService.MaxDropDownItems = 0;
            this.cmbService.Name = "cmbService";
            this.cmbService.ShowImageInEditorArea = true;
            this.cmbService.Size = new System.Drawing.Size(163, 28);
            this.cmbService.TabIndex = 7;
            this.cmbService.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.cmbService_SelectedIndexChanged);
            // 
            // cmbCategories
            // 
            this.cmbCategories.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cmbCategories.AutoCompleteDisplayMember = "Title";
            this.cmbCategories.DisplayMember = "Title";
            this.cmbCategories.DropDownAnimationEnabled = true;
            this.cmbCategories.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.cmbCategories.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.cmbCategories.Location = new System.Drawing.Point(475, 31);
            this.cmbCategories.MaxDropDownItems = 0;
            this.cmbCategories.Name = "cmbCategories";
            this.cmbCategories.ShowImageInEditorArea = true;
            this.cmbCategories.Size = new System.Drawing.Size(163, 28);
            this.cmbCategories.TabIndex = 6;
            this.cmbCategories.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.cmbCategories_SelectedIndexChanged);
            // 
            // 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, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.btnAdd.Location = new System.Drawing.Point(615, 408);
            this.btnAdd.Name = "btnAdd";
            this.btnAdd.Size = new System.Drawing.Size(95, 35);
            this.btnAdd.TabIndex = 13;
            this.btnAdd.Text = "افزودن";
            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, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.btnNew.Location = new System.Drawing.Point(514, 408);
            this.btnNew.Name = "btnNew";
            this.btnNew.Size = new System.Drawing.Size(95, 35);
            this.btnNew.TabIndex = 14;
            this.btnNew.Text = "جدید";
            this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
            // 
            // radLabel11
            // 
            this.radLabel11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel11.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel11.Location = new System.Drawing.Point(385, 63);
            this.radLabel11.Name = "radLabel11";
            this.radLabel11.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel11.Size = new System.Drawing.Size(85, 30);
            this.radLabel11.TabIndex = 10;
            this.radLabel11.Text = "تخفیف (ریال) :";
            this.radLabel11.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // txtServiceCost
            // 
            this.txtServiceCost.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtServiceCost.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcService, "Cost", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged, null, "N0"));
            this.txtServiceCost.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.txtServiceCost.Location = new System.Drawing.Point(266, 31);
            this.txtServiceCost.Name = "txtServiceCost";
            this.txtServiceCost.Size = new System.Drawing.Size(97, 28);
            this.txtServiceCost.TabIndex = 8;
            this.txtServiceCost.TabStop = false;
            this.txtServiceCost.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtSalary_TextChanging);
            // 
            // radLabel8
            // 
            this.radLabel8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel8.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel8.Location = new System.Drawing.Point(641, 62);
            this.radLabel8.Name = "radLabel8";
            this.radLabel8.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel8.Size = new System.Drawing.Size(57, 30);
            this.radLabel8.TabIndex = 8;
            this.radLabel8.Text = "سرویس :";
            this.radLabel8.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel7
            // 
            this.radLabel7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel7.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel7.Location = new System.Drawing.Point(640, 31);
            this.radLabel7.Name = "radLabel7";
            this.radLabel7.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radLabel7.Size = new System.Drawing.Size(69, 30);
            this.radLabel7.TabIndex = 6;
            this.radLabel7.Text = "دسته بندی :";
            this.radLabel7.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radPageViewPage2
            // 
            this.radPageViewPage2.Controls.Add(this.radGroupBox5);
            this.radPageViewPage2.Controls.Add(this.radGroupBox6);
            this.radPageViewPage2.Controls.Add(this.radGroupBox2);
            this.radPageViewPage2.Location = new System.Drawing.Point(10, 49);
            this.radPageViewPage2.Name = "radPageViewPage2";
            this.radPageViewPage2.Size = new System.Drawing.Size(959, 456);
            this.radPageViewPage2.Text = "نسخه";
            // 
            // radGroupBox5
            // 
            this.radGroupBox5.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.radGroupBox5.CausesValidation = false;
            this.radGroupBox5.Controls.Add(this.cmbPrescription);
            this.radGroupBox5.Controls.Add(this.grvPrescriptionDrug);
            this.radGroupBox5.Controls.Add(this.btnAddPrescription);
            this.radGroupBox5.Controls.Add(this.radLabel18);
            this.radGroupBox5.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold);
            this.radGroupBox5.FooterImageIndex = -1;
            this.radGroupBox5.FooterImageKey = "";
            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(670, 260);
            this.radGroupBox5.Name = "radGroupBox5";
            this.radGroupBox5.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox5.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGroupBox5.Size = new System.Drawing.Size(289, 193);
            this.radGroupBox5.TabIndex = 27;
            this.radGroupBox5.Text = "نسخه از پیش تعرف شده";
            // 
            // cmbPrescription
            // 
            this.cmbPrescription.AutoCompleteDisplayMember = "Title";
            this.cmbPrescription.DisplayMember = "Title";
            this.cmbPrescription.DropDownAnimationEnabled = true;
            this.cmbPrescription.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.cmbPrescription.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.cmbPrescription.Location = new System.Drawing.Point(6, 26);
            this.cmbPrescription.MaxDropDownItems = 0;
            this.cmbPrescription.Name = "cmbPrescription";
            this.cmbPrescription.ShowImageInEditorArea = true;
            this.cmbPrescription.Size = new System.Drawing.Size(217, 28);
            this.cmbPrescription.TabIndex = 104;
            this.cmbPrescription.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.cmbPrescription_SelectedIndexChanged);
            // 
            // grvPrescriptionDrug
            // 
            this.grvPrescriptionDrug.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.grvPrescriptionDrug.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.grvPrescriptionDrug.Location = new System.Drawing.Point(5, 60);
            // 
            // grvPrescriptionDrug
            // 
            this.grvPrescriptionDrug.MasterTemplate.AllowAddNewRow = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowCellContextMenu = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowColumnChooser = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowColumnHeaderContextMenu = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowColumnReorder = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowColumnResize = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowDeleteRow = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowDragToGroup = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowEditRow = false;
            this.grvPrescriptionDrug.MasterTemplate.AllowRowResize = false;
            this.grvPrescriptionDrug.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn30.FieldName = "Drug.Title";
            gridViewTextBoxColumn30.HeaderText = "نام دارو";
            gridViewTextBoxColumn30.Name = "column1";
            gridViewTextBoxColumn30.StretchVertically = false;
            gridViewTextBoxColumn30.Width = 106;
            gridViewTextBoxColumn31.FieldName = "CustomManual";
            gridViewTextBoxColumn31.HeaderText = "توضیحات";
            gridViewTextBoxColumn31.Name = "column2";
            gridViewTextBoxColumn31.Width = 173;
            this.grvPrescriptionDrug.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn30,
            gridViewTextBoxColumn31});
            this.grvPrescriptionDrug.MasterTemplate.EnableGrouping = false;
            this.grvPrescriptionDrug.MasterTemplate.ShowRowHeaderColumn = false;
            this.grvPrescriptionDrug.Name = "grvPrescriptionDrug";
            this.grvPrescriptionDrug.ReadOnly = true;
            // 
            // 
            // 
            this.grvPrescriptionDrug.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.grvPrescriptionDrug.Size = new System.Drawing.Size(279, 85);
            this.grvPrescriptionDrug.TabIndex = 14;
            // 
            // btnAddPrescription
            // 
            this.btnAddPrescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnAddPrescription.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnAddPrescription.Location = new System.Drawing.Point(5, 151);
            this.btnAddPrescription.Name = "btnAddPrescription";
            this.btnAddPrescription.Size = new System.Drawing.Size(279, 35);
            this.btnAddPrescription.TabIndex = 105;
            this.btnAddPrescription.Text = "افزودن نسخه";
            this.btnAddPrescription.Click += new System.EventHandler(this.btnAddPrescription_Click);
            // 
            // radLabel18
            // 
            this.radLabel18.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel18.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel18.Location = new System.Drawing.Point(225, 26);
            this.radLabel18.Name = "radLabel18";
            this.radLabel18.Size = new System.Drawing.Size(60, 30);
            this.radLabel18.TabIndex = 11;
            this.radLabel18.Text = "نام نسخه :";
            this.radLabel18.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radGroupBox6
            // 
            this.radGroupBox6.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
            this.radGroupBox6.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.radGroupBox6.Controls.Add(this.btnPrintPrescription);
            this.radGroupBox6.Controls.Add(this.grvDrugs);
            this.radGroupBox6.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold);
            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(3, 3);
            this.radGroupBox6.Name = "radGroupBox6";
            this.radGroupBox6.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGroupBox6.Size = new System.Drawing.Size(661, 450);
            this.radGroupBox6.TabIndex = 27;
            this.radGroupBox6.Text = "داروها";
            // 
            // btnPrintPrescription
            // 
            this.btnPrintPrescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnPrintPrescription.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnPrintPrescription.Location = new System.Drawing.Point(512, 408);
            this.btnPrintPrescription.Name = "btnPrintPrescription";
            this.btnPrintPrescription.Size = new System.Drawing.Size(144, 35);
            this.btnPrintPrescription.TabIndex = 5;
            this.btnPrintPrescription.Text = "پرینت نسخه";
            this.btnPrintPrescription.Click += new System.EventHandler(this.btnPrintPrescription_Click);
            // 
            // grvDrugs
            // 
            this.grvDrugs.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.grvDrugs.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(240)))), ((int)(((byte)(249)))));
            this.grvDrugs.Cursor = System.Windows.Forms.Cursors.Default;
            this.grvDrugs.Font = new System.Drawing.Font("B Lotus", 11.25F, System.Drawing.FontStyle.Bold);
            this.grvDrugs.ForeColor = System.Drawing.Color.Black;
            this.grvDrugs.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.grvDrugs.Location = new System.Drawing.Point(5, 28);
            // 
            // grvDrugs
            // 
            this.grvDrugs.MasterTemplate.AllowAddNewRow = false;
            this.grvDrugs.MasterTemplate.AllowCellContextMenu = false;
            this.grvDrugs.MasterTemplate.AllowColumnChooser = false;
            this.grvDrugs.MasterTemplate.AllowColumnHeaderContextMenu = false;
            this.grvDrugs.MasterTemplate.AllowColumnReorder = false;
            this.grvDrugs.MasterTemplate.AllowColumnResize = false;
            this.grvDrugs.MasterTemplate.AllowDeleteRow = false;
            this.grvDrugs.MasterTemplate.AllowDragToGroup = false;
            this.grvDrugs.MasterTemplate.AllowEditRow = false;
            this.grvDrugs.MasterTemplate.AllowRowResize = false;
            this.grvDrugs.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn32.EnableExpressionEditor = false;
            gridViewTextBoxColumn32.FieldName = "Drug.Title";
            gridViewTextBoxColumn32.HeaderText = "نام دارو";
            gridViewTextBoxColumn32.Name = "column1";
            gridViewTextBoxColumn32.Width = 91;
            gridViewTextBoxColumn33.EnableExpressionEditor = false;
            gridViewTextBoxColumn33.FieldName = "CustomManual";
            gridViewTextBoxColumn33.HeaderText = "توضیحات";
            gridViewTextBoxColumn33.Name = "column3";
            gridViewTextBoxColumn33.Width = 530;
            gridViewCommandColumn6.AllowHide = false;
            gridViewCommandColumn6.AllowReorder = false;
            gridViewCommandColumn6.AllowResize = false;
            gridViewCommandColumn6.AllowSort = false;
            gridViewCommandColumn6.EnableExpressionEditor = false;
            gridViewCommandColumn6.HeaderText = "حذف";
            gridViewCommandColumn6.Name = "column2";
            gridViewCommandColumn6.Width = 30;
            this.grvDrugs.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn32,
            gridViewTextBoxColumn33,
            gridViewCommandColumn6});
            this.grvDrugs.MasterTemplate.EnableGrouping = false;
            this.grvDrugs.MasterTemplate.ShowRowHeaderColumn = false;
            this.grvDrugs.Name = "grvDrugs";
            this.grvDrugs.ReadOnly = true;
            this.grvDrugs.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.grvDrugs.RootElement.MinSize = new System.Drawing.Size(0, 0);
            this.grvDrugs.Size = new System.Drawing.Size(651, 374);
            this.grvDrugs.TabIndex = 13;
            this.grvDrugs.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grvItems_CellFormatting);
            this.grvDrugs.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grvDrugs_CurrentRowChanging);
            this.grvDrugs.SelectionChanged += new System.EventHandler(this.grvDrugs_SelectionChanged);
            this.grvDrugs.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grvDrugs_CommandCellClick);
            // 
            // 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.Right)));
            this.radGroupBox2.CausesValidation = false;
            this.radGroupBox2.Controls.Add(this.cmbDrugs);
            this.radGroupBox2.Controls.Add(this.btnAddDrug);
            this.radGroupBox2.Controls.Add(this.btnNewDrug);
            this.radGroupBox2.Controls.Add(this.radLabel20);
            this.radGroupBox2.Controls.Add(this.radLabel22);
            this.radGroupBox2.Controls.Add(this.txtManual);
            this.radGroupBox2.Font = new System.Drawing.Font("B Titr", 9F, System.Drawing.FontStyle.Bold);
            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(670, 3);
            this.radGroupBox2.Name = "radGroupBox2";
            this.radGroupBox2.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
            this.radGroupBox2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.radGroupBox2.Size = new System.Drawing.Size(289, 251);
            this.radGroupBox2.TabIndex = 26;
            this.radGroupBox2.Text = "دارو";
            // 
            // cmbDrugs
            // 
            this.cmbDrugs.AutoCompleteDisplayMember = "Title";
            this.cmbDrugs.DisplayMember = "Title";
            this.cmbDrugs.DropDownAnimationEnabled = true;
            this.cmbDrugs.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.cmbDrugs.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.cmbDrugs.Location = new System.Drawing.Point(5, 28);
            this.cmbDrugs.MaxDropDownItems = 0;
            this.cmbDrugs.Name = "cmbDrugs";
            this.cmbDrugs.ShowImageInEditorArea = true;
            this.cmbDrugs.Size = new System.Drawing.Size(217, 28);
            this.cmbDrugs.TabIndex = 100;
            this.cmbDrugs.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.cmbDrugs_SelectedIndexChanged);
            // 
            // btnAddDrug
            // 
            this.btnAddDrug.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnAddDrug.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnAddDrug.Location = new System.Drawing.Point(138, 205);
            this.btnAddDrug.Name = "btnAddDrug";
            this.btnAddDrug.Size = new System.Drawing.Size(146, 35);
            this.btnAddDrug.TabIndex = 102;
            this.btnAddDrug.Text = "افزودن دارو";
            this.btnAddDrug.Click += new System.EventHandler(this.btnAddDrug_Click);
            // 
            // btnNewDrug
            // 
            this.btnNewDrug.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnNewDrug.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
            this.btnNewDrug.Location = new System.Drawing.Point(5, 205);
            this.btnNewDrug.Name = "btnNewDrug";
            this.btnNewDrug.Size = new System.Drawing.Size(127, 35);
            this.btnNewDrug.TabIndex = 103;
            this.btnNewDrug.Text = "داروی جدید";
            this.btnNewDrug.Click += new System.EventHandler(this.btnNewDrug_Click);
            // 
            // radLabel20
            // 
            this.radLabel20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel20.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel20.Location = new System.Drawing.Point(228, 28);
            this.radLabel20.Name = "radLabel20";
            this.radLabel20.Size = new System.Drawing.Size(53, 30);
            this.radLabel20.TabIndex = 11;
            this.radLabel20.Text = "نام دارو :";
            this.radLabel20.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // radLabel22
            // 
            this.radLabel22.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.radLabel22.Font = new System.Drawing.Font("B Koodak", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.radLabel22.Location = new System.Drawing.Point(220, 57);
            this.radLabel22.Name = "radLabel22";
            this.radLabel22.Size = new System.Drawing.Size(65, 30);
            this.radLabel22.TabIndex = 9;
            this.radLabel22.Text = "توضیحات :";
            this.radLabel22.TextAlignment = System.Drawing.ContentAlignment.TopRight;
            // 
            // txtManual
            // 
            this.txtManual.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.txtManual.AutoScroll = true;
            this.txtManual.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcDrug, "CustomManual", true));
            this.txtManual.Font = new System.Drawing.Font("B Nazanin", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.txtManual.Location = new System.Drawing.Point(5, 88);
            this.txtManual.Multiline = true;
            this.txtManual.Name = "txtManual";
            this.txtManual.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            // 
            // 
            // 
            this.txtManual.RootElement.StretchVertically = true;
            this.txtManual.Size = new System.Drawing.Size(279, 111);
            this.txtManual.TabIndex = 101;
            this.txtManual.TabStop = false;
            // 
            // srcDrug
            // 
            this.srcDrug.DataSource = typeof(Shayan.Data.VisitDrug);
            // 
            // 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, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.btnSave.Location = new System.Drawing.Point(887, 523);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(95, 35);
            this.btnSave.TabIndex = 106;
            this.btnSave.Text = "ذخیره";
            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, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.btnCancel.Location = new System.Drawing.Point(787, 523);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(94, 35);
            this.btnCancel.TabIndex = 107;
            this.btnCancel.Text = "انصراف";
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // btnRemove
            // 
            this.btnRemove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnRemove.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.btnRemove.Location = new System.Drawing.Point(688, 523);
            this.btnRemove.Name = "btnRemove";
            this.btnRemove.Size = new System.Drawing.Size(93, 35);
            this.btnRemove.TabIndex = 108;
            this.btnRemove.Text = "حذف";
            this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click_1);
            // 
            // btnPrintVisit
            // 
            this.btnPrintVisit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnPrintVisit.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            this.btnPrintVisit.Location = new System.Drawing.Point(13, 523);
            this.btnPrintVisit.Name = "btnPrintVisit";
            this.btnPrintVisit.Size = new System.Drawing.Size(146, 35);
            this.btnPrintVisit.TabIndex = 109;
            this.btnPrintVisit.Text = "پرینت ویزیت";
            this.btnPrintVisit.Click += new System.EventHandler(this.btnPrintVisit_Click);
            // 
            // UCDefineVisit
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.btnRemove);
            this.Controls.Add(this.btnPrintVisit);
            this.Controls.Add(this.btnSave);
            this.Controls.Add(this.radPageView1);
            this.Controls.Add(this.btnCancel);
            this.Name = "UCDefineVisit";
            this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.Size = new System.Drawing.Size(991, 564);
            ((System.ComponentModel.ISupportInitialize)(this.radPageView1)).EndInit();
            this.radPageView1.ResumeLayout(false);
            this.radPageViewPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).EndInit();
            this.radGroupBox4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grvPastServices.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvPastServices)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPatient.EditorControl.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPatient.EditorControl)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPatient)).EndInit();
            this.cmbPatient.ResumeLayout(false);
            this.cmbPatient.PerformLayout();
            ((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.srcItem)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbDoctor)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radTextBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblBedehi)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnDocument)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpTo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tpFrom)).EndInit();
            this.radPageViewPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).EndInit();
            this.radGroupBox3.ResumeLayout(false);
            this.radGroupBox3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grvServices.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvServices)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblFinalSumCost)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grbService)).EndInit();
            this.grbService.ResumeLayout(false);
            this.grbService.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtTakhfif)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.srcService)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtComment)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lsvInsurances)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.lblFinalServiceCost)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnPercent)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbService)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbCategories)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServiceCost)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
            this.radPageViewPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox5)).EndInit();
            this.radGroupBox5.ResumeLayout(false);
            this.radGroupBox5.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cmbPrescription)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvPrescriptionDrug.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvPrescriptionDrug)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAddPrescription)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel18)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).EndInit();
            this.radGroupBox6.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.btnPrintPrescription)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvDrugs.MasterTemplate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.grvDrugs)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
            this.radGroupBox2.ResumeLayout(false);
            this.radGroupBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cmbDrugs)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnAddDrug)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnNewDrug)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.radLabel22)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtManual)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.srcDrug)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnRemove)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnPrintVisit)).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.radPanel2 = new Telerik.WinControls.UI.RadPanel();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
     this.lblRemarks = new Telerik.WinControls.UI.RadLabel();
     this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
     this.lblName = new Telerik.WinControls.UI.RadLabel();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.lblID = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.btnExportToExcel = new Telerik.WinControls.UI.RadButton();
     this.btnPrint = new Telerik.WinControls.UI.RadButton();
     this.btnRefresh = new Telerik.WinControls.UI.RadButton();
     this.btnDelete = new Telerik.WinControls.UI.RadButton();
     this.btnEdit = new Telerik.WinControls.UI.RadButton();
     this.btnNew = new Telerik.WinControls.UI.RadButton();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.grdData = new Telerik.WinControls.UI.RadGridView();
     this.radSeparator3 = new Telerik.WinControls.UI.RadSeparator();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
     this.radPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lblRemarks)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnExportToExcel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnPrint)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRefresh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdData.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSeparator3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radPanel2
     //
     this.radPanel2.Controls.Add(this.radGroupBox1);
     this.radPanel2.Dock = System.Windows.Forms.DockStyle.Right;
     this.radPanel2.Location = new System.Drawing.Point(431, 5);
     this.radPanel2.Name = "radPanel2";
     this.radPanel2.Padding = new System.Windows.Forms.Padding(8);
     this.radPanel2.Size = new System.Drawing.Size(283, 420);
     this.radPanel2.TabIndex = 7;
     this.radPanel2.ThemeName = "TelerikMetroBlue";
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.radPanel1);
     this.radGroupBox1.Controls.Add(this.btnExportToExcel);
     this.radGroupBox1.Controls.Add(this.btnPrint);
     this.radGroupBox1.Controls.Add(this.btnRefresh);
     this.radGroupBox1.Controls.Add(this.btnDelete);
     this.radGroupBox1.Controls.Add(this.btnEdit);
     this.radGroupBox1.Controls.Add(this.btnNew);
     this.radGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.radGroupBox1.HeaderText = "Details";
     this.radGroupBox1.Location = new System.Drawing.Point(8, 8);
     this.radGroupBox1.Name = "radGroupBox1";
     this.radGroupBox1.Size = new System.Drawing.Size(267, 188);
     this.radGroupBox1.TabIndex = 1;
     this.radGroupBox1.Text = "Details";
     this.radGroupBox1.ThemeName = "TelerikMetroBlue";
     //
     // radPanel1
     //
     this.radPanel1.Controls.Add(this.lblRemarks);
     this.radPanel1.Controls.Add(this.radLabel7);
     this.radPanel1.Controls.Add(this.lblName);
     this.radPanel1.Controls.Add(this.radLabel3);
     this.radPanel1.Controls.Add(this.lblID);
     this.radPanel1.Controls.Add(this.radLabel1);
     this.radPanel1.Location = new System.Drawing.Point(10, 61);
     this.radPanel1.Name = "radPanel1";
     this.radPanel1.Size = new System.Drawing.Size(252, 83);
     this.radPanel1.TabIndex = 7;
     this.radPanel1.ThemeName = "TelerikMetroBlue";
     //
     // lblRemarks
     //
     this.lblRemarks.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblRemarks.Location = new System.Drawing.Point(64, 51);
     this.lblRemarks.Name = "lblRemarks";
     this.lblRemarks.Size = new System.Drawing.Size(13, 18);
     this.lblRemarks.TabIndex = 1;
     this.lblRemarks.Text = "0";
     //
     // radLabel7
     //
     this.radLabel7.AutoSize = false;
     this.radLabel7.Location = new System.Drawing.Point(3, 51);
     this.radLabel7.Name = "radLabel7";
     this.radLabel7.Size = new System.Drawing.Size(61, 18);
     this.radLabel7.TabIndex = 2;
     this.radLabel7.Text = "Remarks : ";
     this.radLabel7.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblName
     //
     this.lblName.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblName.Location = new System.Drawing.Point(64, 27);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(13, 18);
     this.lblName.TabIndex = 3;
     this.lblName.Text = "0";
     //
     // radLabel3
     //
     this.radLabel3.AutoSize = false;
     this.radLabel3.Location = new System.Drawing.Point(3, 27);
     this.radLabel3.Name = "radLabel3";
     this.radLabel3.Size = new System.Drawing.Size(61, 18);
     this.radLabel3.TabIndex = 4;
     this.radLabel3.Text = "Unit : ";
     this.radLabel3.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblID
     //
     this.lblID.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblID.Location = new System.Drawing.Point(64, 3);
     this.lblID.Name = "lblID";
     this.lblID.Size = new System.Drawing.Size(13, 18);
     this.lblID.TabIndex = 5;
     this.lblID.Text = "0";
     //
     // radLabel1
     //
     this.radLabel1.AutoSize = false;
     this.radLabel1.Location = new System.Drawing.Point(3, 3);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.Size = new System.Drawing.Size(61, 18);
     this.radLabel1.TabIndex = 6;
     this.radLabel1.Text = "Unit ID : ";
     this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     //
     // btnExportToExcel
     //
     this.btnExportToExcel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnExportToExcel.Font = new System.Drawing.Font("Segoe UI", 9F);
     //            this.btnExportToExcel.Image = global::MeroChitraProject.Properties.Resources.excel_icon;
     this.btnExportToExcel.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnExportToExcel.Location = new System.Drawing.Point(10, 151);
     this.btnExportToExcel.Name = "btnExportToExcel";
     this.btnExportToExcel.Size = new System.Drawing.Size(80, 32);
     this.btnExportToExcel.TabIndex = 0;
     this.btnExportToExcel.Text = "Export";
     this.btnExportToExcel.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnExportToExcel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnExportToExcel.ThemeName = "TelerikMetroBlue";
     this.btnExportToExcel.Click += new System.EventHandler(this.btnExportToExcel_Click);
     //
     // btnPrint
     //
     this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     //            this.btnPrint.Image = global::MeroChitraProject.Properties.Resources.Print_24x24;
     this.btnPrint.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnPrint.Location = new System.Drawing.Point(96, 151);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(80, 32);
     this.btnPrint.TabIndex = 0;
     this.btnPrint.Text = "&Print";
     this.btnPrint.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnPrint.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnPrint.ThemeName = "TelerikMetroBlue";
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
     //
     // btnRefresh
     //
     this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
      //           this.btnRefresh.Image = global::MeroChitraProject.Properties.Resources.Refresh_24x24;
     this.btnRefresh.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnRefresh.Location = new System.Drawing.Point(182, 151);
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.Size = new System.Drawing.Size(80, 32);
     this.btnRefresh.TabIndex = 0;
     this.btnRefresh.Text = "&Refresh";
     this.btnRefresh.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnRefresh.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnRefresh.ThemeName = "TelerikMetroBlue";
     this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
     //
     // btnDelete
     //
      //           this.btnDelete.Image = global::MeroChitraProject.Properties.Resources.Delete_24x24;
     this.btnDelete.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnDelete.Location = new System.Drawing.Point(182, 23);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(80, 32);
     this.btnDelete.TabIndex = 0;
     this.btnDelete.Text = "&Delete";
     this.btnDelete.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnDelete.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnDelete.ThemeName = "TelerikMetroBlue";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnEdit
     //
      //           this.btnEdit.Image = global::MeroChitraProject.Properties.Resources.Edit_24x24;
     this.btnEdit.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnEdit.Location = new System.Drawing.Point(96, 23);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(80, 32);
     this.btnEdit.TabIndex = 0;
     this.btnEdit.Text = "&Edit";
     this.btnEdit.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnEdit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnEdit.ThemeName = "TelerikMetroBlue";
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnNew
     //
      //           this.btnNew.Image = global::MeroChitraProject.Properties.Resources.New_24x24;
     this.btnNew.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnNew.Location = new System.Drawing.Point(10, 23);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(80, 32);
     this.btnNew.TabIndex = 0;
     this.btnNew.Text = "&New";
     this.btnNew.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnNew.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnNew.ThemeName = "TelerikMetroBlue";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // splitter1
     //
     this.splitter1.Dock = System.Windows.Forms.DockStyle.Right;
     this.splitter1.Location = new System.Drawing.Point(411, 5);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(3, 420);
     this.splitter1.TabIndex = 5;
     this.splitter1.TabStop = false;
     //
     // grdData
     //
     this.grdData.AutoScroll = true;
     this.grdData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdData.Location = new System.Drawing.Point(5, 5);
     //
     // grdData
     //
     this.grdData.MasterTemplate.AllowAddNewRow = false;
     this.grdData.MasterTemplate.AllowColumnReorder = false;
     this.grdData.MasterTemplate.AllowDeleteRow = false;
     this.grdData.MasterTemplate.AllowEditRow = false;
     this.grdData.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdData.MasterTemplate.EnableFiltering = true;
     this.grdData.Name = "grdData";
     this.grdData.Size = new System.Drawing.Size(406, 420);
     this.grdData.TabIndex = 6;
     this.grdData.ThemeName = "Breeze";
     this.grdData.CurrentRowChanged += new Telerik.WinControls.UI.CurrentRowChangedEventHandler(this.grdData_CurrentRowChanged);
     //
     // radSeparator3
     //
     this.radSeparator3.Dock = System.Windows.Forms.DockStyle.Right;
     this.radSeparator3.Location = new System.Drawing.Point(414, 5);
     this.radSeparator3.Name = "radSeparator3";
     this.radSeparator3.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.radSeparator3.Size = new System.Drawing.Size(17, 420);
     this.radSeparator3.TabIndex = 9;
     this.radSeparator3.Text = "radSeparator3";
     //
     // FrmUnit
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(719, 430);
     this.Controls.Add(this.grdData);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.radSeparator3);
     this.Controls.Add(this.radPanel2);
     this.Name = "FrmUnit";
     this.Padding = new System.Windows.Forms.Padding(5);
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text = "Unit";
     this.ThemeName = "Breeze";
     this.Load += new System.EventHandler(this.FrmUnit_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
     this.radPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     this.radPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lblRemarks)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnExportToExcel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnPrint)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRefresh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdData.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radSeparator3)).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.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.GridViewCommandColumn gridViewCommandColumn2 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.ucFilter1 = new ShayanDental.UserControls.UCFilter();
     this.grvItems = new Telerik.WinControls.UI.RadGridView();
     this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.btnNew = new Telerik.WinControls.UI.RadButton();
     this.labratoryDescriptionTextBox = new Telerik.WinControls.UI.RadTextBox();
     this.srcItem = new System.Windows.Forms.BindingSource(this.components);
     this.labratoryAddressTextBox = new Telerik.WinControls.UI.RadTextBox();
     this.labratoryPhone2TextBox = new Telerik.WinControls.UI.RadTextBox();
     this.labratoryPhone1TextBox = new Telerik.WinControls.UI.RadTextBox();
     this.txtName = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     this.btnSave = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryDescriptionTextBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryAddressTextBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryPhone2TextBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryPhone1TextBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     this.SuspendLayout();
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.radGroupBox1.Controls.Add(this.ucFilter1);
     this.radGroupBox1.Controls.Add(this.grvItems);
     this.radGroupBox1.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold);
     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(3, 3);
     this.radGroupBox1.Name = "radGroupBox1";
     this.radGroupBox1.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox1.Size = new System.Drawing.Size(473, 416);
     this.radGroupBox1.TabIndex = 21;
     this.radGroupBox1.Text = "لابراتوارهای تعریف شده:";
     //
     // ucFilter1
     //
     this.ucFilter1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.ucFilter1.Location = new System.Drawing.Point(6, 29);
     this.ucFilter1.Margin = new System.Windows.Forms.Padding(4);
     this.ucFilter1.Name = "ucFilter1";
     this.ucFilter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ucFilter1.Size = new System.Drawing.Size(464, 25);
     this.ucFilter1.TabIndex = 16;
     //
     // grvItems
     //
     this.grvItems.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.grvItems.EnableHotTracking = false;
     this.grvItems.EnableTheming = false;
     this.grvItems.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold);
     this.grvItems.Location = new System.Drawing.Point(5, 55);
     //
     // grvItems
     //
     this.grvItems.MasterTemplate.AllowAddNewRow = false;
     this.grvItems.MasterTemplate.AllowCellContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnChooser = false;
     this.grvItems.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnReorder = false;
     this.grvItems.MasterTemplate.AllowDeleteRow = false;
     this.grvItems.MasterTemplate.AllowDragToGroup = false;
     this.grvItems.MasterTemplate.AllowEditRow = false;
     this.grvItems.MasterTemplate.AllowRowResize = false;
     this.grvItems.MasterTemplate.AutoGenerateColumns = false;
     this.grvItems.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn5.FieldName = "Title";
     gridViewTextBoxColumn5.HeaderText = "نام";
     gridViewTextBoxColumn5.Name = "column1";
     gridViewTextBoxColumn5.Width = 241;
     gridViewTextBoxColumn6.FieldName = "Phone1";
     gridViewTextBoxColumn6.HeaderText = "تلفن ";
     gridViewTextBoxColumn6.Name = "column2";
     gridViewTextBoxColumn6.Width = 46;
     gridViewTextBoxColumn7.FieldName = "Address";
     gridViewTextBoxColumn7.HeaderText = "آدرس";
     gridViewTextBoxColumn7.Name = "column5";
     gridViewTextBoxColumn7.Width = 74;
     gridViewTextBoxColumn8.FieldName = "Description";
     gridViewTextBoxColumn8.HeaderText = "توضیح";
     gridViewTextBoxColumn8.Name = "column3";
     gridViewTextBoxColumn8.Width = 55;
     gridViewCommandColumn2.AllowResize = false;
     gridViewCommandColumn2.HeaderText = "حذف";
     gridViewCommandColumn2.Name = "column4";
     gridViewCommandColumn2.Width = 30;
     this.grvItems.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn5,
     gridViewTextBoxColumn6,
     gridViewTextBoxColumn7,
     gridViewTextBoxColumn8,
     gridViewCommandColumn2});
     this.grvItems.MasterTemplate.EnableGrouping = false;
     this.grvItems.MasterTemplate.EnableSorting = false;
     this.grvItems.MasterTemplate.ShowFilteringRow = false;
     this.grvItems.Name = "grvItems";
     this.grvItems.ReadOnly = true;
     this.grvItems.ShowCellErrors = false;
     this.grvItems.ShowNoDataText = false;
     this.grvItems.ShowRowErrors = false;
     this.grvItems.Size = new System.Drawing.Size(463, 356);
     this.grvItems.TabIndex = 15;
     this.grvItems.TabStop = false;
     this.grvItems.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grvItems_CellFormatting);
     this.grvItems.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grvItems_CurrentRowChanging);
     this.grvItems.SelectionChanged += new System.EventHandler(this.grvItems_SelectionChanged);
     this.grvItems.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grvItems_CommandCellClick);
     this.grvItems.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grvItems_KeyDown);
     //
     // 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.Right)));
     this.radGroupBox2.Controls.Add(this.btnAdd);
     this.radGroupBox2.Controls.Add(this.btnNew);
     this.radGroupBox2.Controls.Add(this.labratoryDescriptionTextBox);
     this.radGroupBox2.Controls.Add(this.labratoryAddressTextBox);
     this.radGroupBox2.Controls.Add(this.labratoryPhone2TextBox);
     this.radGroupBox2.Controls.Add(this.labratoryPhone1TextBox);
     this.radGroupBox2.Controls.Add(this.txtName);
     this.radGroupBox2.Controls.Add(this.radLabel7);
     this.radGroupBox2.Controls.Add(this.radLabel8);
     this.radGroupBox2.Controls.Add(this.radLabel9);
     this.radGroupBox2.Controls.Add(this.radLabel10);
     this.radGroupBox2.Controls.Add(this.radLabel12);
     this.radGroupBox2.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold);
     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(482, 3);
     this.radGroupBox2.Name = "radGroupBox2";
     this.radGroupBox2.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox2.Size = new System.Drawing.Size(310, 372);
     this.radGroupBox2.TabIndex = 20;
     this.radGroupBox2.Text = "تعریف لابراتوار";
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | 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(132, 328);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(120, 35);
     this.btnAdd.TabIndex = 18;
     this.btnAdd.Text = "افزودن";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnNew
     //
     this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | 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(5, 328);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(120, 35);
     this.btnNew.TabIndex = 19;
     this.btnNew.Text = "جدید";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // labratoryDescriptionTextBox
     //
     this.labratoryDescriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labratoryDescriptionTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Description", true));
     this.labratoryDescriptionTextBox.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.labratoryDescriptionTextBox.Location = new System.Drawing.Point(5, 138);
     this.labratoryDescriptionTextBox.Multiline = true;
     this.labratoryDescriptionTextBox.Name = "labratoryDescriptionTextBox";
     //
     //
     //
     this.labratoryDescriptionTextBox.RootElement.StretchVertically = true;
     this.labratoryDescriptionTextBox.Size = new System.Drawing.Size(247, 184);
     this.labratoryDescriptionTextBox.TabIndex = 17;
     this.labratoryDescriptionTextBox.TabStop = false;
     this.labratoryDescriptionTextBox.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.labratoryDescriptionTextBox_TextChanging);
     this.labratoryDescriptionTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // srcItem
     //
     this.srcItem.DataSource = typeof(Shayan.Data.Labratory);
     //
     // labratoryAddressTextBox
     //
     this.labratoryAddressTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labratoryAddressTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Address", true));
     this.labratoryAddressTextBox.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.labratoryAddressTextBox.Location = new System.Drawing.Point(5, 107);
     this.labratoryAddressTextBox.Name = "labratoryAddressTextBox";
     this.labratoryAddressTextBox.Size = new System.Drawing.Size(247, 25);
     this.labratoryAddressTextBox.TabIndex = 16;
     this.labratoryAddressTextBox.TabStop = false;
     this.labratoryAddressTextBox.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.labratoryAddressTextBox_TextChanging);
     this.labratoryAddressTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // labratoryPhone2TextBox
     //
     this.labratoryPhone2TextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labratoryPhone2TextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Phone2", true));
     this.labratoryPhone2TextBox.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.labratoryPhone2TextBox.Location = new System.Drawing.Point(5, 81);
     this.labratoryPhone2TextBox.Name = "labratoryPhone2TextBox";
     this.labratoryPhone2TextBox.Size = new System.Drawing.Size(247, 25);
     this.labratoryPhone2TextBox.TabIndex = 15;
     this.labratoryPhone2TextBox.TabStop = false;
     this.labratoryPhone2TextBox.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.labratoryPhone2TextBox_TextChanging);
     this.labratoryPhone2TextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // labratoryPhone1TextBox
     //
     this.labratoryPhone1TextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labratoryPhone1TextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Phone1", true));
     this.labratoryPhone1TextBox.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.labratoryPhone1TextBox.Location = new System.Drawing.Point(5, 55);
     this.labratoryPhone1TextBox.Name = "labratoryPhone1TextBox";
     this.labratoryPhone1TextBox.Size = new System.Drawing.Size(247, 25);
     this.labratoryPhone1TextBox.TabIndex = 14;
     this.labratoryPhone1TextBox.TabStop = false;
     this.labratoryPhone1TextBox.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.labratoryPhone1TextBox_TextChanging);
     this.labratoryPhone1TextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // txtName
     //
     this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Title", true));
     this.txtName.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtName.Location = new System.Drawing.Point(5, 29);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(247, 25);
     this.txtName.TabIndex = 13;
     this.txtName.TabStop = false;
     this.txtName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtName_TextChanging);
     this.txtName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // radLabel7
     //
     this.radLabel7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel7.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel7.Location = new System.Drawing.Point(263, 136);
     this.radLabel7.Name = "radLabel7";
     this.radLabel7.Size = new System.Drawing.Size(38, 23);
     this.radLabel7.TabIndex = 12;
     this.radLabel7.Text = "توضیح:";
     this.radLabel7.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel8
     //
     this.radLabel8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel8.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel8.Location = new System.Drawing.Point(266, 107);
     this.radLabel8.Name = "radLabel8";
     this.radLabel8.Size = new System.Drawing.Size(35, 23);
     this.radLabel8.TabIndex = 11;
     this.radLabel8.Text = "آدرس:";
     this.radLabel8.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel9
     //
     this.radLabel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel9.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel9.Location = new System.Drawing.Point(265, 83);
     this.radLabel9.Name = "radLabel9";
     this.radLabel9.Size = new System.Drawing.Size(35, 23);
     this.radLabel9.TabIndex = 10;
     this.radLabel9.Text = "تلفن2:";
     this.radLabel9.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel10
     //
     this.radLabel10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel10.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel10.Location = new System.Drawing.Point(267, 57);
     this.radLabel10.Name = "radLabel10";
     this.radLabel10.Size = new System.Drawing.Size(33, 23);
     this.radLabel10.TabIndex = 9;
     this.radLabel10.Text = "تلفن1:";
     this.radLabel10.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel12
     //
     this.radLabel12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel12.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel12.Location = new System.Drawing.Point(279, 32);
     this.radLabel12.Name = "radLabel12";
     this.radLabel12.Size = new System.Drawing.Size(21, 23);
     this.radLabel12.TabIndex = 8;
     this.radLabel12.Text = "نام:";
     this.radLabel12.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // 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(487, 384);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(120, 35);
     this.btnCancel.TabIndex = 21;
     this.btnCancel.Text = "انصراف";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // 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(614, 384);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(120, 35);
     this.btnSave.TabIndex = 20;
     this.btnSave.Text = "ذخیره";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // UCDefineLabratory
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 19F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.radGroupBox1);
     this.Controls.Add(this.radGroupBox2);
     this.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "UCDefineLabratory";
     this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.Size = new System.Drawing.Size(795, 425);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     this.radGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryDescriptionTextBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryAddressTextBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryPhone2TextBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labratoryPhone1TextBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     this.ResumeLayout(false);
 }
Example #30
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.radGroupBox7 = new Telerik.WinControls.UI.RadGroupBox();
     this.btnPopulate = new Telerik.WinControls.UI.RadButton();
     this.label1 = new System.Windows.Forms.Label();
     this.cmbExam = new System.Windows.Forms.ComboBox();
     this.lblSeconds = new System.Windows.Forms.Button();
     this.button5 = new System.Windows.Forms.Button();
     this.lblMinits = new System.Windows.Forms.Button();
     this.lblHours = new System.Windows.Forms.Button();
     this.lblTt = new System.Windows.Forms.Label();
     this.lblcola2 = new System.Windows.Forms.Label();
     this.lblCola1 = new System.Windows.Forms.Label();
     this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
     this.chair02 = new System.Windows.Forms.Button();
     this.chair01 = new System.Windows.Forms.Button();
     this.chair03 = new System.Windows.Forms.Button();
     this.chair04 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.radGroupBox4 = new Telerik.WinControls.UI.RadGroupBox();
     this.label2 = new System.Windows.Forms.Label();
     this.lblAuthanticity = new System.Windows.Forms.Label();
     this.btnOff = new Telerik.WinControls.UI.RadButton();
     this.btnStart = new Telerik.WinControls.UI.RadButton();
     this.emguImgFace = new Emgu.CV.UI.ImageBox();
     this.radGroupBox3 = new Telerik.WinControls.UI.RadGroupBox();
     this.lbltitle = new Telerik.WinControls.UI.RadLabel();
     this.lblInitName = new Telerik.WinControls.UI.RadLabel();
     this.lblFullName = new Telerik.WinControls.UI.RadLabel();
     this.lblCandidateID = new Telerik.WinControls.UI.RadLabel();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel11 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel17 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
     this.breezeExtendedTheme1 = new Telerik.WinControls.Themes.BreezeExtendedTheme();
     this.timShutter = new System.Windows.Forms.Timer(this.components);
     this.office2010Theme1 = new Telerik.WinControls.Themes.Office2010Theme();
     this.timHome = new System.Windows.Forms.Timer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox7)).BeginInit();
     this.radGroupBox7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnPopulate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).BeginInit();
     this.radGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnOff)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnStart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emguImgFace)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).BeginInit();
     this.radGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lbltitle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblInitName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblFullName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblCandidateID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
     this.SuspendLayout();
     //
     // radGroupBox1
     //
     this.radGroupBox1.BackColor = System.Drawing.Color.Transparent;
     this.radGroupBox1.Controls.Add(this.radGroupBox7);
     this.radGroupBox1.Controls.Add(this.radGroupBox2);
     this.radGroupBox1.Controls.Add(this.radGroupBox4);
     this.radGroupBox1.Controls.Add(this.radGroupBox3);
     this.radGroupBox1.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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 = "Face Detection & Face Recognition";
     this.radGroupBox1.Location = new System.Drawing.Point(3, 3);
     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(992, 550);
     this.radGroupBox1.TabIndex = 8;
     this.radGroupBox1.Text = "Face Detection & Face Recognition";
     this.radGroupBox1.ThemeName = "BreezeExtended";
     this.radGroupBox1.Click += new System.EventHandler(this.radGroupBox1_Click);
     //
     // radGroupBox7
     //
     this.radGroupBox7.Controls.Add(this.btnPopulate);
     this.radGroupBox7.Controls.Add(this.label1);
     this.radGroupBox7.Controls.Add(this.cmbExam);
     this.radGroupBox7.Controls.Add(this.lblSeconds);
     this.radGroupBox7.Controls.Add(this.button5);
     this.radGroupBox7.Controls.Add(this.lblMinits);
     this.radGroupBox7.Controls.Add(this.lblHours);
     this.radGroupBox7.Controls.Add(this.lblTt);
     this.radGroupBox7.Controls.Add(this.lblcola2);
     this.radGroupBox7.Controls.Add(this.lblCola1);
     this.radGroupBox7.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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 = "Alerts Window";
     this.radGroupBox7.Location = new System.Drawing.Point(13, 23);
     this.radGroupBox7.Name = "radGroupBox7";
     this.radGroupBox7.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     //
     //
     //
     this.radGroupBox7.RootElement.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     this.radGroupBox7.Size = new System.Drawing.Size(468, 140);
     this.radGroupBox7.TabIndex = 9;
     this.radGroupBox7.Text = "Alerts Window";
     this.radGroupBox7.ThemeName = "BreezeExtended";
     //
     // btnPopulate
     //
     this.btnPopulate.Font = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPopulate.Location = new System.Drawing.Point(329, 56);
     this.btnPopulate.Name = "btnPopulate";
     this.btnPopulate.Size = new System.Drawing.Size(126, 25);
     this.btnPopulate.TabIndex = 19;
     this.btnPopulate.Text = "&Populate images";
     this.btnPopulate.ThemeName = "Office2010";
     this.btnPopulate.Click += new System.EventHandler(this.btnPopulate_Click_1);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(10, 31);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(161, 18);
     this.label1.TabIndex = 22;
     this.label1.Text = "Select the Examination ID : ";
     //
     // cmbExam
     //
     this.cmbExam.FormattingEnabled = true;
     this.cmbExam.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6"});
     this.cmbExam.Location = new System.Drawing.Point(177, 28);
     this.cmbExam.Name = "cmbExam";
     this.cmbExam.Size = new System.Drawing.Size(278, 21);
     this.cmbExam.TabIndex = 21;
     this.cmbExam.Text = "1";
     this.cmbExam.SelectedIndexChanged += new System.EventHandler(this.cmbExam_SelectedIndexChanged);
     //
     // lblSeconds
     //
     this.lblSeconds.BackColor = System.Drawing.Color.YellowGreen;
     this.lblSeconds.FlatAppearance.BorderSize = 0;
     this.lblSeconds.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.lblSeconds.Font = new System.Drawing.Font("Trebuchet MS", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSeconds.ForeColor = System.Drawing.Color.White;
     this.lblSeconds.Location = new System.Drawing.Point(177, 71);
     this.lblSeconds.Name = "lblSeconds";
     this.lblSeconds.Size = new System.Drawing.Size(53, 53);
     this.lblSeconds.TabIndex = 18;
     this.lblSeconds.Text = "34";
     this.lblSeconds.UseVisualStyleBackColor = false;
     //
     // button5
     //
     this.button5.FlatAppearance.BorderSize = 0;
     this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button5.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button5.Location = new System.Drawing.Point(28, 172);
     this.button5.Name = "button5";
     this.button5.Size = new System.Drawing.Size(141, 21);
     this.button5.TabIndex = 1;
     this.button5.Text = "Reset";
     this.button5.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.button5.UseVisualStyleBackColor = true;
     //
     // lblMinits
     //
     this.lblMinits.BackColor = System.Drawing.Color.Orange;
     this.lblMinits.FlatAppearance.BorderSize = 0;
     this.lblMinits.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.lblMinits.Font = new System.Drawing.Font("Trebuchet MS", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMinits.ForeColor = System.Drawing.Color.White;
     this.lblMinits.Location = new System.Drawing.Point(95, 71);
     this.lblMinits.Name = "lblMinits";
     this.lblMinits.Size = new System.Drawing.Size(53, 53);
     this.lblMinits.TabIndex = 19;
     this.lblMinits.Text = "54";
     this.lblMinits.UseVisualStyleBackColor = false;
     //
     // lblHours
     //
     this.lblHours.BackColor = System.Drawing.Color.YellowGreen;
     this.lblHours.FlatAppearance.BorderSize = 0;
     this.lblHours.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.lblHours.Font = new System.Drawing.Font("Trebuchet MS", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblHours.ForeColor = System.Drawing.Color.White;
     this.lblHours.Location = new System.Drawing.Point(13, 71);
     this.lblHours.Name = "lblHours";
     this.lblHours.Size = new System.Drawing.Size(53, 53);
     this.lblHours.TabIndex = 20;
     this.lblHours.Text = "15";
     this.lblHours.UseVisualStyleBackColor = false;
     //
     // lblTt
     //
     this.lblTt.AutoSize = true;
     this.lblTt.BackColor = System.Drawing.Color.Transparent;
     this.lblTt.Font = new System.Drawing.Font("Trebuchet MS", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTt.ForeColor = System.Drawing.Color.Orange;
     this.lblTt.Location = new System.Drawing.Point(236, 83);
     this.lblTt.Name = "lblTt";
     this.lblTt.Size = new System.Drawing.Size(42, 27);
     this.lblTt.TabIndex = 16;
     this.lblTt.Text = "pm";
     this.lblTt.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblcola2
     //
     this.lblcola2.AutoSize = true;
     this.lblcola2.BackColor = System.Drawing.Color.Transparent;
     this.lblcola2.Font = new System.Drawing.Font("Trebuchet MS", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblcola2.ForeColor = System.Drawing.Color.Orange;
     this.lblcola2.Location = new System.Drawing.Point(154, 83);
     this.lblcola2.Name = "lblcola2";
     this.lblcola2.Size = new System.Drawing.Size(20, 27);
     this.lblcola2.TabIndex = 17;
     this.lblcola2.Text = ":";
     this.lblcola2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblCola1
     //
     this.lblCola1.AutoSize = true;
     this.lblCola1.BackColor = System.Drawing.Color.Transparent;
     this.lblCola1.Font = new System.Drawing.Font("Trebuchet MS", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCola1.ForeColor = System.Drawing.Color.Orange;
     this.lblCola1.Location = new System.Drawing.Point(72, 83);
     this.lblCola1.Name = "lblCola1";
     this.lblCola1.Size = new System.Drawing.Size(20, 27);
     this.lblCola1.TabIndex = 15;
     this.lblCola1.Text = ":";
     this.lblCola1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // radGroupBox2
     //
     this.radGroupBox2.Controls.Add(this.chair02);
     this.radGroupBox2.Controls.Add(this.chair01);
     this.radGroupBox2.Controls.Add(this.chair03);
     this.radGroupBox2.Controls.Add(this.chair04);
     this.radGroupBox2.Controls.Add(this.button3);
     this.radGroupBox2.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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 = "Seat Allocation";
     this.radGroupBox2.Location = new System.Drawing.Point(492, 23);
     this.radGroupBox2.Name = "radGroupBox2";
     this.radGroupBox2.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     //
     //
     //
     this.radGroupBox2.RootElement.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     this.radGroupBox2.Size = new System.Drawing.Size(487, 330);
     this.radGroupBox2.TabIndex = 8;
     this.radGroupBox2.Text = "Seat Allocation";
     this.radGroupBox2.ThemeName = "BreezeExtended";
     //
     // chair02
     //
     this.chair02.BackColor = System.Drawing.Color.White;
     this.chair02.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.chair02.Font = new System.Drawing.Font("Trebuchet MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chair02.Location = new System.Drawing.Point(284, 174);
     this.chair02.Name = "chair02";
     this.chair02.Size = new System.Drawing.Size(130, 130);
     this.chair02.TabIndex = 53;
     this.chair02.Text = "02";
     this.chair02.UseVisualStyleBackColor = false;
     //
     // chair01
     //
     this.chair01.BackColor = System.Drawing.Color.White;
     this.chair01.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.chair01.Font = new System.Drawing.Font("Trebuchet MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chair01.Location = new System.Drawing.Point(88, 174);
     this.chair01.Name = "chair01";
     this.chair01.Size = new System.Drawing.Size(130, 130);
     this.chair01.TabIndex = 54;
     this.chair01.Text = "01";
     this.chair01.UseVisualStyleBackColor = false;
     //
     // chair03
     //
     this.chair03.BackColor = System.Drawing.Color.White;
     this.chair03.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.chair03.Font = new System.Drawing.Font("Trebuchet MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chair03.Location = new System.Drawing.Point(88, 28);
     this.chair03.Name = "chair03";
     this.chair03.Size = new System.Drawing.Size(130, 130);
     this.chair03.TabIndex = 56;
     this.chair03.Text = "03";
     this.chair03.UseVisualStyleBackColor = false;
     //
     // chair04
     //
     this.chair04.BackColor = System.Drawing.Color.White;
     this.chair04.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.chair04.Font = new System.Drawing.Font("Trebuchet MS", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chair04.Location = new System.Drawing.Point(284, 28);
     this.chair04.Name = "chair04";
     this.chair04.Size = new System.Drawing.Size(130, 130);
     this.chair04.TabIndex = 58;
     this.chair04.Text = "04";
     this.chair04.UseVisualStyleBackColor = false;
     //
     // button3
     //
     this.button3.FlatAppearance.BorderSize = 0;
     this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button3.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button3.Location = new System.Drawing.Point(38, 326);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(141, 21);
     this.button3.TabIndex = 1;
     this.button3.Text = "Reset";
     this.button3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.button3.UseVisualStyleBackColor = true;
     //
     // radGroupBox4
     //
     this.radGroupBox4.Controls.Add(this.label2);
     this.radGroupBox4.Controls.Add(this.lblAuthanticity);
     this.radGroupBox4.Controls.Add(this.btnOff);
     this.radGroupBox4.Controls.Add(this.btnStart);
     this.radGroupBox4.Controls.Add(this.emguImgFace);
     this.radGroupBox4.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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 = "Camera View";
     this.radGroupBox4.Location = new System.Drawing.Point(13, 171);
     this.radGroupBox4.Name = "radGroupBox4";
     this.radGroupBox4.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     //
     //
     //
     this.radGroupBox4.RootElement.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     this.radGroupBox4.Size = new System.Drawing.Size(467, 366);
     this.radGroupBox4.TabIndex = 8;
     this.radGroupBox4.Text = "Camera View";
     this.radGroupBox4.ThemeName = "BreezeExtended";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(255, 332);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(54, 18);
     this.label2.TabIndex = 21;
     this.label2.Text = "Status : ";
     this.label2.Click += new System.EventHandler(this.label2_Click);
     //
     // lblAuthanticity
     //
     this.lblAuthanticity.AutoSize = true;
     this.lblAuthanticity.Font = new System.Drawing.Font("Trebuchet MS", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAuthanticity.ForeColor = System.Drawing.Color.Red;
     this.lblAuthanticity.Location = new System.Drawing.Point(315, 328);
     this.lblAuthanticity.Name = "lblAuthanticity";
     this.lblAuthanticity.Size = new System.Drawing.Size(28, 22);
     this.lblAuthanticity.TabIndex = 20;
     this.lblAuthanticity.Text = "---";
     //
     // btnOff
     //
     this.btnOff.Enabled = false;
     this.btnOff.Font = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnOff.ForeColor = System.Drawing.Color.Red;
     this.btnOff.Location = new System.Drawing.Point(163, 328);
     this.btnOff.Name = "btnOff";
     //
     //
     //
     this.btnOff.RootElement.ForeColor = System.Drawing.Color.Red;
     this.btnOff.Size = new System.Drawing.Size(57, 25);
     this.btnOff.TabIndex = 19;
     this.btnOff.Text = "Sto&p";
     this.btnOff.ThemeName = "Office2010";
     this.btnOff.Click += new System.EventHandler(this.btnOff_Click);
     //
     // btnStart
     //
     this.btnStart.Enabled = false;
     this.btnStart.Font = new System.Drawing.Font("Trebuchet MS", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnStart.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.btnStart.Location = new System.Drawing.Point(15, 328);
     this.btnStart.Name = "btnStart";
     //
     //
     //
     this.btnStart.RootElement.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.btnStart.Size = new System.Drawing.Size(142, 25);
     this.btnStart.TabIndex = 19;
     this.btnStart.Text = "&Start Detection";
     this.btnStart.ThemeName = "Office2010";
     this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
     //
     // emguImgFace
     //
     this.emguImgFace.BackgroundImage = global::AEIS.Properties.Resources.avatar;
     this.emguImgFace.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.emguImgFace.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.emguImgFace.ErrorImage = global::AEIS.Properties.Resources.avatar;
     this.emguImgFace.InitialImage = global::AEIS.Properties.Resources.avatar;
     this.emguImgFace.Location = new System.Drawing.Point(14, 26);
     this.emguImgFace.Name = "emguImgFace";
     this.emguImgFace.Size = new System.Drawing.Size(438, 288);
     this.emguImgFace.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.emguImgFace.TabIndex = 2;
     this.emguImgFace.TabStop = false;
     this.emguImgFace.Click += new System.EventHandler(this.emguImgFace_Click);
     //
     // radGroupBox3
     //
     this.radGroupBox3.Controls.Add(this.lbltitle);
     this.radGroupBox3.Controls.Add(this.lblInitName);
     this.radGroupBox3.Controls.Add(this.lblFullName);
     this.radGroupBox3.Controls.Add(this.lblCandidateID);
     this.radGroupBox3.Controls.Add(this.radLabel4);
     this.radGroupBox3.Controls.Add(this.radLabel11);
     this.radGroupBox3.Controls.Add(this.radLabel17);
     this.radGroupBox3.Controls.Add(this.radLabel12);
     this.radGroupBox3.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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 = "Candidate Details ";
     this.radGroupBox3.Location = new System.Drawing.Point(492, 359);
     this.radGroupBox3.Name = "radGroupBox3";
     this.radGroupBox3.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     //
     //
     //
     this.radGroupBox3.RootElement.Padding = new System.Windows.Forms.Padding(10, 20, 10, 10);
     this.radGroupBox3.Size = new System.Drawing.Size(487, 178);
     this.radGroupBox3.TabIndex = 8;
     this.radGroupBox3.Text = "Candidate Details ";
     this.radGroupBox3.ThemeName = "BreezeExtended";
     this.radGroupBox3.Click += new System.EventHandler(this.radGroupBox3_Click);
     //
     // lbltitle
     //
     this.lbltitle.Location = new System.Drawing.Point(204, 109);
     this.lbltitle.Name = "lbltitle";
     this.lbltitle.Size = new System.Drawing.Size(29, 17);
     this.lbltitle.TabIndex = 14;
     this.lbltitle.Text = "Miss";
     //
     // lblInitName
     //
     this.lblInitName.Location = new System.Drawing.Point(204, 83);
     this.lblInitName.Name = "lblInitName";
     this.lblInitName.Size = new System.Drawing.Size(47, 17);
     this.lblInitName.TabIndex = 15;
     this.lblInitName.Text = "J. Stew";
     //
     // lblFullName
     //
     this.lblFullName.Location = new System.Drawing.Point(204, 55);
     this.lblFullName.Name = "lblFullName";
     this.lblFullName.Size = new System.Drawing.Size(76, 17);
     this.lblFullName.TabIndex = 16;
     this.lblFullName.Text = "Jhoana Stew";
     //
     // lblCandidateID
     //
     this.lblCandidateID.Location = new System.Drawing.Point(204, 27);
     this.lblCandidateID.Name = "lblCandidateID";
     this.lblCandidateID.Size = new System.Drawing.Size(52, 17);
     this.lblCandidateID.TabIndex = 17;
     this.lblCandidateID.Text = "3424234";
     this.lblCandidateID.TextChanged += new System.EventHandler(this.lblCandidateID_TextChanged);
     //
     // radLabel4
     //
     this.radLabel4.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.Location = new System.Drawing.Point(13, 109);
     this.radLabel4.Name = "radLabel4";
     this.radLabel4.Size = new System.Drawing.Size(41, 17);
     this.radLabel4.TabIndex = 10;
     this.radLabel4.Text = "Title :";
     this.radLabel4.ThemeName = "Office2007Black";
     //
     // radLabel11
     //
     this.radLabel11.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel11.Location = new System.Drawing.Point(13, 83);
     this.radLabel11.Name = "radLabel11";
     this.radLabel11.Size = new System.Drawing.Size(137, 17);
     this.radLabel11.TabIndex = 11;
     this.radLabel11.Text = "Name with the initials :";
     this.radLabel11.ThemeName = "Office2007Black";
     //
     // radLabel17
     //
     this.radLabel17.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel17.Location = new System.Drawing.Point(13, 27);
     this.radLabel17.Name = "radLabel17";
     this.radLabel17.Size = new System.Drawing.Size(86, 17);
     this.radLabel17.TabIndex = 12;
     this.radLabel17.Text = "Candidate ID :";
     this.radLabel17.ThemeName = "Office2007Black";
     //
     // radLabel12
     //
     this.radLabel12.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel12.Location = new System.Drawing.Point(13, 55);
     this.radLabel12.Name = "radLabel12";
     this.radLabel12.Size = new System.Drawing.Size(166, 17);
     this.radLabel12.TabIndex = 13;
     this.radLabel12.Text = "Full Name of the candidate :";
     this.radLabel12.ThemeName = "Office2007Black";
     //
     // timShutter
     //
     this.timShutter.Interval = 500;
     this.timShutter.Tick += new System.EventHandler(this.timShutter_Tick);
     //
     // timHome
     //
     this.timHome.Enabled = true;
     this.timHome.Interval = 1000;
     this.timHome.Tick += new System.EventHandler(this.timHome_Tick);
     //
     // FaceRecognition
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.radGroupBox1);
     this.Name = "FaceRecognition";
     this.Size = new System.Drawing.Size(1011, 566);
     this.Load += new System.EventHandler(this.FaceRecognition_Load);
     this.Leave += new System.EventHandler(this.FaceRecognition_Leave);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox7)).EndInit();
     this.radGroupBox7.ResumeLayout(false);
     this.radGroupBox7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnPopulate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).EndInit();
     this.radGroupBox4.ResumeLayout(false);
     this.radGroupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnOff)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnStart)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emguImgFace)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).EndInit();
     this.radGroupBox3.ResumeLayout(false);
     this.radGroupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lbltitle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblInitName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblFullName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblCandidateID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).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.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.Data.SortDescriptor sortDescriptor2 = new Telerik.WinControls.Data.SortDescriptor();
     this.gridViewTemplate1 = new Telerik.WinControls.UI.GridViewTemplate();
     this.panel_batary_stock = new System.Windows.Forms.Panel();
     this.chk_brandd = new Telerik.WinControls.UI.RadCheckBox();
     this.com_amp = new Telerik.WinControls.UI.RadComboBox();
     this.chk_amp = new Telerik.WinControls.UI.RadCheckBox();
     this.chk_din_battery = new Telerik.WinControls.UI.RadCheckBox();
     this.radGridView5 = new Telerik.WinControls.UI.RadGridView();
     this.txt_search_size = new Telerik.WinControls.UI.RadTextBox();
     this.grdBattry = new Telerik.WinControls.UI.RadGridView();
     this.radButton4 = new Telerik.WinControls.UI.RadButton();
     this.radButton5 = new Telerik.WinControls.UI.RadButton();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.rad_MF = new System.Windows.Forms.RadioButton();
     this.rad_M = new System.Windows.Forms.RadioButton();
     this.com_search_brand = new Telerik.WinControls.UI.RadComboBox();
     this.chk_type = new Telerik.WinControls.UI.RadCheckBox();
     this.chk_size_batery = new Telerik.WinControls.UI.RadCheckBox();
     this.lblInvoice = new Telerik.WinControls.UI.RadLabel();
     this.aquaTheme2 = new Telerik.WinControls.Themes.AquaTheme();
     this.DesktopAlertQty = new Telerik.WinControls.UI.RadDesktopAlert(this.components);
     this.breezeTheme1 = new Telerik.WinControls.Themes.BreezeTheme();
     this.miscellaneousTheme1 = new Telerik.WinControls.Themes.MiscellaneousTheme();
     this.btnBattrySearch = new Telerik.WinControls.UI.RadButton();
     this.btnTyreSearch = new Telerik.WinControls.UI.RadButton();
     this.btnOtherSearch = new Telerik.WinControls.UI.RadButton();
     this.panel_other_search = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.grdOther = new Telerik.WinControls.UI.RadGridView();
     this.btnRefreshOher = new Telerik.WinControls.UI.RadButton();
     this.btnSearch = new Telerik.WinControls.UI.RadButton();
     this.cmdSearchCat = new Telerik.WinControls.UI.RadComboBox();
     this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
     this.radGridView2 = new Telerik.WinControls.UI.RadGridView();
     this.radButton1 = new Telerik.WinControls.UI.RadButton();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.check_rear = new Telerik.WinControls.UI.RadCheckBox();
     this.check_front = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.panal_cycle = new Telerik.WinControls.UI.RadPanel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.radio_trial = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_non_trial = new Telerik.WinControls.UI.RadRadioButton();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.com_brand = new Telerik.WinControls.UI.RadComboBox();
     this.chk_size = new Telerik.WinControls.UI.RadCheckBox();
     this.com_ply_rate = new Telerik.WinControls.UI.RadComboBox();
     this.chk_t_pattern = new Telerik.WinControls.UI.RadCheckBox();
     this.com_t_pattern = new Telerik.WinControls.UI.RadComboBox();
     this.chk_make = new Telerik.WinControls.UI.RadCheckBox();
     this.com_made = new Telerik.WinControls.UI.RadComboBox();
     this.chk_ply_rate = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.chk_brand = new Telerik.WinControls.UI.RadCheckBox();
     this.grp_tyre_type = new System.Windows.Forms.GroupBox();
     this.radio_canvas = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_radial = new Telerik.WinControls.UI.RadRadioButton();
     this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
     this.radGridView3 = new Telerik.WinControls.UI.RadGridView();
     this.txt_size = new Telerik.WinControls.UI.RadTextBox();
     this.radButton2 = new Telerik.WinControls.UI.RadButton();
     this.chk_cycle_search = new Telerik.WinControls.UI.RadCheckBox();
     this.radThemeManager1 = new Telerik.WinControls.RadThemeManager();
     this.pnlTyre = new System.Windows.Forms.Panel();
     this.btnTubeSearch = new Telerik.WinControls.UI.RadButton();
     this.grdInvoice = new Telerik.WinControls.UI.RadGridView();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel11 = new Telerik.WinControls.UI.RadLabel();
     this.txtInvoiceNo = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel13 = new Telerik.WinControls.UI.RadLabel();
     this.txtInvoiceNote = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel14 = new Telerik.WinControls.UI.RadLabel();
     this.txtVehicleNo = new Telerik.WinControls.UI.RadTextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.btnPrintInvoice = new Telerik.WinControls.UI.RadButton();
     this.btnClear = new Telerik.WinControls.UI.RadButton();
     this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
     this.txtCustomerName = new Telerik.WinControls.UI.RadTextBox();
     this.grdFillCustomer = new System.Windows.Forms.DataGridView();
     this.com_customer_id = new System.Windows.Forms.ComboBox();
     this.radLabel16 = new Telerik.WinControls.UI.RadLabel();
     this.btnAddPayment = new Telerik.WinControls.UI.RadButton();
     this.txtTotal = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.pnlTube = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.txt_barcode = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.grdTubeSize = new Telerik.WinControls.UI.RadGridView();
     this.txtTubeSize = new System.Windows.Forms.TextBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.chk_din_tube = new Telerik.WinControls.UI.RadCheckBox();
     this.chkTubeBrand = new Telerik.WinControls.UI.RadCheckBox();
     this.comTubeMake = new Telerik.WinControls.UI.RadComboBox();
     this.chkTubeSize = new Telerik.WinControls.UI.RadCheckBox();
     this.chkTubeMake = new Telerik.WinControls.UI.RadCheckBox();
     this.chkTubeType = new Telerik.WinControls.UI.RadCheckBox();
     this.comTubeBrand = new Telerik.WinControls.UI.RadComboBox();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.rad_tube_c = new System.Windows.Forms.RadioButton();
     this.rad_tube_v = new System.Windows.Forms.RadioButton();
     this.radButton3 = new Telerik.WinControls.UI.RadButton();
     this.radButton7 = new Telerik.WinControls.UI.RadButton();
     this.grdTubesearch = new Telerik.WinControls.UI.RadGridView();
     this.dtpInvoiceDate = new System.Windows.Forms.DateTimePicker();
     this.txt_ReceivedBy = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).BeginInit();
     this.panel_batary_stock.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brandd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_amp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_amp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_battery)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_search_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdBattry)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton5)).BeginInit();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.com_search_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size_batery)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblInvoice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnBattrySearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnTyreSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnOtherSearch)).BeginInit();
     this.panel_other_search.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdOther)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRefreshOher)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdSearchCat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.check_rear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.check_front)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panal_cycle)).BeginInit();
     this.panal_cycle.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radio_trial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_non_trial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_t_pattern)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_t_pattern)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_make)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_made)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ply_rate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brand)).BeginInit();
     this.grp_tyre_type.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radio_canvas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_radial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
     this.radPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_cycle_search)).BeginInit();
     this.pnlTyre.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnTubeSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdInvoice)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceNote)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVehicleNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnPrintInvoice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnClear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdFillCustomer)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddPayment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTotal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     this.pnlTube.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubeSize)).BeginInit();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_tube)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeBrand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeMake)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeSize)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeMake)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeBrand)).BeginInit();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubesearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_ReceivedBy)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // gridViewTemplate1
     //
     this.gridViewTemplate1.EnableAlternatingRowColor = true;
     //
     // panel_batary_stock
     //
     this.panel_batary_stock.BackColor = System.Drawing.Color.Transparent;
     this.panel_batary_stock.Controls.Add(this.chk_brandd);
     this.panel_batary_stock.Controls.Add(this.com_amp);
     this.panel_batary_stock.Controls.Add(this.chk_amp);
     this.panel_batary_stock.Controls.Add(this.chk_din_battery);
     this.panel_batary_stock.Controls.Add(this.radGridView5);
     this.panel_batary_stock.Controls.Add(this.txt_search_size);
     this.panel_batary_stock.Controls.Add(this.grdBattry);
     this.panel_batary_stock.Controls.Add(this.radButton4);
     this.panel_batary_stock.Controls.Add(this.radButton5);
     this.panel_batary_stock.Controls.Add(this.groupBox3);
     this.panel_batary_stock.Controls.Add(this.com_search_brand);
     this.panel_batary_stock.Controls.Add(this.chk_type);
     this.panel_batary_stock.Controls.Add(this.chk_size_batery);
     this.panel_batary_stock.ForeColor = System.Drawing.Color.Black;
     this.panel_batary_stock.Location = new System.Drawing.Point(28, 58);
     this.panel_batary_stock.Name = "panel_batary_stock";
     this.panel_batary_stock.Size = new System.Drawing.Size(1031, 341);
     this.panel_batary_stock.TabIndex = 110;
     this.panel_batary_stock.Click += new System.EventHandler(this.panel_batary_stock_Click);
     //
     // chk_brandd
     //
     this.chk_brandd.BackColor = System.Drawing.Color.Transparent;
     this.chk_brandd.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_brandd.ForeColor = System.Drawing.Color.White;
     this.chk_brandd.Location = new System.Drawing.Point(4, 10);
     this.chk_brandd.Name = "chk_brandd";
     //
     //
     //
     this.chk_brandd.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_brandd.Size = new System.Drawing.Size(55, 21);
     this.chk_brandd.TabIndex = 79;
     this.chk_brandd.Text = "Brand";
     this.chk_brandd.Click += new System.EventHandler(this.chk_brandd_Click_1);
     //
     // com_amp
     //
     this.com_amp.Location = new System.Drawing.Point(64, 50);
     this.com_amp.Name = "com_amp";
     //
     //
     //
     this.com_amp.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_amp.Size = new System.Drawing.Size(136, 20);
     this.com_amp.TabIndex = 78;
     this.com_amp.TabStop = false;
     //
     // chk_amp
     //
     this.chk_amp.BackColor = System.Drawing.Color.Transparent;
     this.chk_amp.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_amp.ForeColor = System.Drawing.Color.White;
     this.chk_amp.Location = new System.Drawing.Point(3, 49);
     this.chk_amp.Name = "chk_amp";
     //
     //
     //
     this.chk_amp.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_amp.Size = new System.Drawing.Size(49, 21);
     this.chk_amp.TabIndex = 77;
     this.chk_amp.Text = "AMP";
     this.chk_amp.Click += new System.EventHandler(this.chk_amp_Click_1);
     //
     // chk_din_battery
     //
     this.chk_din_battery.BackColor = System.Drawing.Color.Transparent;
     this.chk_din_battery.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_din_battery.ForeColor = System.Drawing.Color.White;
     this.chk_din_battery.Location = new System.Drawing.Point(3, 83);
     this.chk_din_battery.Name = "chk_din_battery";
     //
     //
     //
     this.chk_din_battery.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_din_battery.Size = new System.Drawing.Size(44, 21);
     this.chk_din_battery.TabIndex = 65;
     this.chk_din_battery.Text = "DIN";
     this.chk_din_battery.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.chk_din_battery_ToggleStateChanged);
     this.chk_din_battery.Click += new System.EventHandler(this.chk_din_battery_Click);
     //
     // radGridView5
     //
     this.radGridView5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.radGridView5.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView5.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.radGridView5.ForeColor = System.Drawing.Color.Black;
     this.radGridView5.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView5.Location = new System.Drawing.Point(302, 33);
     //
     // radGridView5
     //
     this.radGridView5.MasterTemplate.AllowAddNewRow = false;
     this.radGridView5.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView5.MasterTemplate.EnableGrouping = false;
     this.radGridView5.MasterTemplate.ShowColumnHeaders = false;
     this.radGridView5.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView5.Name = "radGridView5";
     this.radGridView5.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView5.ReadOnly = true;
     this.radGridView5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView5.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView5.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView5.ShowGroupPanel = false;
     this.radGridView5.Size = new System.Drawing.Size(136, 72);
     this.radGridView5.TabIndex = 72;
     this.radGridView5.Text = "radGridView5";
     this.radGridView5.SelectionChanged += new System.EventHandler(this.radGridView5_SelectionChanged);
     this.radGridView5.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView5_CellClick);
     //
     // txt_search_size
     //
     this.txt_search_size.Location = new System.Drawing.Point(302, 12);
     this.txt_search_size.Name = "txt_search_size";
     this.txt_search_size.Size = new System.Drawing.Size(136, 20);
     this.txt_search_size.TabIndex = 71;
     this.txt_search_size.TabStop = false;
     this.txt_search_size.Click += new System.EventHandler(this.txt_search_size_Click);
     this.txt_search_size.Enter += new System.EventHandler(this.txt_search_size_Enter);
     //
     // grdBattry
     //
     this.grdBattry.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdBattry.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdBattry.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdBattry.ForeColor = System.Drawing.Color.Black;
     this.grdBattry.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdBattry.Location = new System.Drawing.Point(3, 111);
     //
     // grdBattry
     //
     this.grdBattry.MasterTemplate.AllowAddNewRow = false;
     this.grdBattry.MasterTemplate.AllowColumnChooser = false;
     this.grdBattry.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdBattry.Name = "grdBattry";
     this.grdBattry.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdBattry.ReadOnly = true;
     this.grdBattry.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdBattry.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdBattry.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdBattry.Size = new System.Drawing.Size(1015, 220);
     this.grdBattry.TabIndex = 70;
     this.grdBattry.Text = "grdBattry";
     this.grdBattry.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView4_CellClick);
     //
     // radButton4
     //
     this.radButton4.Location = new System.Drawing.Point(961, 88);
     this.radButton4.Name = "radButton4";
     this.radButton4.Size = new System.Drawing.Size(57, 20);
     this.radButton4.TabIndex = 69;
     this.radButton4.Text = "Refresh";
     this.radButton4.ThemeName = "Breeze";
     this.radButton4.Click += new System.EventHandler(this.radButton4_Click);
     //
     // radButton5
     //
     this.radButton5.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton5.Location = new System.Drawing.Point(553, 58);
     this.radButton5.Name = "radButton5";
     this.radButton5.Size = new System.Drawing.Size(115, 50);
     this.radButton5.TabIndex = 68;
     this.radButton5.Text = "Search";
     this.radButton5.ThemeName = "Breeze";
     this.radButton5.Click += new System.EventHandler(this.radButton5_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.rad_MF);
     this.groupBox3.Controls.Add(this.rad_M);
     this.groupBox3.Location = new System.Drawing.Point(553, 4);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(124, 27);
     this.groupBox3.TabIndex = 67;
     this.groupBox3.TabStop = false;
     //
     // rad_MF
     //
     this.rad_MF.AutoSize = true;
     this.rad_MF.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_MF.ForeColor = System.Drawing.Color.White;
     this.rad_MF.Location = new System.Drawing.Point(63, 8);
     this.rad_MF.Name = "rad_MF";
     this.rad_MF.Size = new System.Drawing.Size(42, 17);
     this.rad_MF.TabIndex = 1;
     this.rad_MF.TabStop = true;
     this.rad_MF.Text = "MF";
     this.rad_MF.UseVisualStyleBackColor = true;
     this.rad_MF.CheckedChanged += new System.EventHandler(this.rad_MF_CheckedChanged);
     //
     // rad_M
     //
     this.rad_M.AutoSize = true;
     this.rad_M.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_M.ForeColor = System.Drawing.Color.White;
     this.rad_M.Location = new System.Drawing.Point(6, 8);
     this.rad_M.Name = "rad_M";
     this.rad_M.Size = new System.Drawing.Size(35, 17);
     this.rad_M.TabIndex = 0;
     this.rad_M.TabStop = true;
     this.rad_M.Text = "M";
     this.rad_M.UseVisualStyleBackColor = true;
     this.rad_M.CheckedChanged += new System.EventHandler(this.rad_M_CheckedChanged);
     //
     // com_search_brand
     //
     this.com_search_brand.Location = new System.Drawing.Point(64, 10);
     this.com_search_brand.Name = "com_search_brand";
     //
     //
     //
     this.com_search_brand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_search_brand.Size = new System.Drawing.Size(136, 20);
     this.com_search_brand.TabIndex = 65;
     this.com_search_brand.TabStop = false;
     //
     // chk_type
     //
     this.chk_type.BackColor = System.Drawing.Color.Transparent;
     this.chk_type.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_type.ForeColor = System.Drawing.Color.White;
     this.chk_type.Location = new System.Drawing.Point(489, 11);
     this.chk_type.Name = "chk_type";
     //
     //
     //
     this.chk_type.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_type.Size = new System.Drawing.Size(49, 21);
     this.chk_type.TabIndex = 64;
     this.chk_type.Text = "Type";
     this.chk_type.Click += new System.EventHandler(this.chk_type_Click);
     //
     // chk_size_batery
     //
     this.chk_size_batery.BackColor = System.Drawing.Color.Transparent;
     this.chk_size_batery.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_size_batery.ForeColor = System.Drawing.Color.White;
     this.chk_size_batery.Location = new System.Drawing.Point(242, 10);
     this.chk_size_batery.Name = "chk_size_batery";
     //
     //
     //
     this.chk_size_batery.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_size_batery.Size = new System.Drawing.Size(44, 21);
     this.chk_size_batery.TabIndex = 62;
     this.chk_size_batery.Text = "Size";
     this.chk_size_batery.Click += new System.EventHandler(this.chk_size_batery_Click);
     //
     // lblInvoice
     //
     this.lblInvoice.BackColor = System.Drawing.Color.Transparent;
     this.lblInvoice.Font = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Bold);
     this.lblInvoice.ForeColor = System.Drawing.Color.Gold;
     this.lblInvoice.Location = new System.Drawing.Point(28, 12);
     this.lblInvoice.Name = "lblInvoice";
     //
     //
     //
     this.lblInvoice.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.lblInvoice.Size = new System.Drawing.Size(104, 41);
     this.lblInvoice.TabIndex = 68;
     this.lblInvoice.Text = "Invoice";
     this.lblInvoice.Click += new System.EventHandler(this.lblTyreSearch_Click);
     //
     // DesktopAlertQty
     //
     this.DesktopAlertQty.ContentImage = null;
     this.DesktopAlertQty.PlaySound = false;
     this.DesktopAlertQty.SoundToPlay = null;
     this.DesktopAlertQty.ThemeName = null;
     //
     // btnBattrySearch
     //
     this.btnBattrySearch.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnBattrySearch.Location = new System.Drawing.Point(676, 25);
     this.btnBattrySearch.Name = "btnBattrySearch";
     this.btnBattrySearch.Size = new System.Drawing.Size(120, 28);
     this.btnBattrySearch.TabIndex = 111;
     this.btnBattrySearch.Text = "Batery Search";
     this.btnBattrySearch.Click += new System.EventHandler(this.btnBattrySearch_Click_1);
     //
     // btnTyreSearch
     //
     this.btnTyreSearch.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnTyreSearch.Location = new System.Drawing.Point(550, 25);
     this.btnTyreSearch.Name = "btnTyreSearch";
     this.btnTyreSearch.Size = new System.Drawing.Size(120, 28);
     this.btnTyreSearch.TabIndex = 112;
     this.btnTyreSearch.Text = "Tyre Search";
     this.btnTyreSearch.Click += new System.EventHandler(this.btnTyreSearch_Click);
     //
     // btnOtherSearch
     //
     this.btnOtherSearch.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnOtherSearch.Location = new System.Drawing.Point(928, 25);
     this.btnOtherSearch.Name = "btnOtherSearch";
     this.btnOtherSearch.Size = new System.Drawing.Size(120, 28);
     this.btnOtherSearch.TabIndex = 113;
     this.btnOtherSearch.Text = "Other Search";
     this.btnOtherSearch.Click += new System.EventHandler(this.radButton7_Click);
     //
     // panel_other_search
     //
     this.panel_other_search.BackColor = System.Drawing.Color.Transparent;
     this.panel_other_search.Controls.Add(this.label11);
     this.panel_other_search.Controls.Add(this.label7);
     this.panel_other_search.Controls.Add(this.grdOther);
     this.panel_other_search.Controls.Add(this.btnRefreshOher);
     this.panel_other_search.Controls.Add(this.btnSearch);
     this.panel_other_search.Controls.Add(this.cmdSearchCat);
     this.panel_other_search.Location = new System.Drawing.Point(28, 58);
     this.panel_other_search.Name = "panel_other_search";
     this.panel_other_search.Size = new System.Drawing.Size(1031, 341);
     this.panel_other_search.TabIndex = 81;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.White;
     this.label11.Location = new System.Drawing.Point(0, 18);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(84, 14);
     this.label11.TabIndex = 77;
     this.label11.Text = "Item Catagory";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.White;
     this.label7.Location = new System.Drawing.Point(647, 346);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(0, 13);
     this.label7.TabIndex = 76;
     //
     // grdOther
     //
     this.grdOther.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdOther.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdOther.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdOther.ForeColor = System.Drawing.Color.Black;
     this.grdOther.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdOther.Location = new System.Drawing.Point(3, 81);
     //
     // grdOther
     //
     this.grdOther.MasterTemplate.AllowAddNewRow = false;
     this.grdOther.MasterTemplate.AllowColumnChooser = false;
     this.grdOther.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdOther.Name = "grdOther";
     this.grdOther.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdOther.ReadOnly = true;
     this.grdOther.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdOther.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdOther.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdOther.Size = new System.Drawing.Size(1015, 217);
     this.grdOther.TabIndex = 70;
     this.grdOther.Text = "radGridView1";
     this.grdOther.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdOther_CellClick);
     //
     // btnRefreshOher
     //
     this.btnRefreshOher.Location = new System.Drawing.Point(961, 58);
     this.btnRefreshOher.Name = "btnRefreshOher";
     this.btnRefreshOher.Size = new System.Drawing.Size(57, 20);
     this.btnRefreshOher.TabIndex = 69;
     this.btnRefreshOher.Text = "Refresh";
     this.btnRefreshOher.ThemeName = "Breeze";
     //
     // btnSearch
     //
     this.btnSearch.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSearch.ForeColor = System.Drawing.Color.White;
     this.btnSearch.Location = new System.Drawing.Point(259, 16);
     this.btnSearch.Name = "btnSearch";
     //
     //
     //
     this.btnSearch.RootElement.ForeColor = System.Drawing.Color.White;
     this.btnSearch.Size = new System.Drawing.Size(110, 50);
     this.btnSearch.TabIndex = 68;
     this.btnSearch.Text = "Search";
     this.btnSearch.ThemeName = "Breeze";
     //
     // cmdSearchCat
     //
     this.cmdSearchCat.Location = new System.Drawing.Point(97, 16);
     this.cmdSearchCat.Name = "cmdSearchCat";
     //
     //
     //
     this.cmdSearchCat.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.cmdSearchCat.Size = new System.Drawing.Size(136, 20);
     this.cmdSearchCat.TabIndex = 65;
     this.cmdSearchCat.TabStop = false;
     //
     // radGridView1
     //
     this.radGridView1.ForeColor = System.Drawing.Color.Black;
     this.radGridView1.Location = new System.Drawing.Point(3, 172);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow = false;
     this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView1.Name = "radGridView1";
     this.radGridView1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.ReadOnly = true;
     //
     //
     //
     this.radGridView1.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView1.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.Size = new System.Drawing.Size(1015, 159);
     this.radGridView1.TabIndex = 56;
     this.radGridView1.Text = "radGridView1";
     this.radGridView1.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     //
     // radGridView2
     //
     this.radGridView2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     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(3, 172);
     //
     // radGridView2
     //
     this.radGridView2.MasterTemplate.AllowAddNewRow = false;
     this.radGridView2.MasterTemplate.AllowColumnChooser = false;
     this.radGridView2.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView2.Name = "radGridView2";
     this.radGridView2.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.ReadOnly = true;
     this.radGridView2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView2.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView2.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.Size = new System.Drawing.Size(1015, 159);
     this.radGridView2.TabIndex = 57;
     this.radGridView2.Text = "radGridView2";
     this.radGridView2.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView2_CellClick);
     //
     // radButton1
     //
     this.radButton1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton1.Location = new System.Drawing.Point(678, 119);
     this.radButton1.Name = "radButton1";
     this.radButton1.Size = new System.Drawing.Size(115, 50);
     this.radButton1.TabIndex = 29;
     this.radButton1.Text = "Search";
     this.radButton1.ThemeName = "Breeze";
     this.radButton1.Click += new System.EventHandler(this.radButton1_Click);
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.check_rear);
     this.groupBox1.Controls.Add(this.check_front);
     this.groupBox1.ForeColor = System.Drawing.Color.White;
     this.groupBox1.Location = new System.Drawing.Point(132, 2);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(156, 36);
     this.groupBox1.TabIndex = 54;
     this.groupBox1.TabStop = false;
     //
     // check_rear
     //
     this.check_rear.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.check_rear.ForeColor = System.Drawing.Color.White;
     this.check_rear.Location = new System.Drawing.Point(82, 12);
     this.check_rear.Name = "check_rear";
     //
     //
     //
     this.check_rear.RootElement.ForeColor = System.Drawing.Color.White;
     this.check_rear.RootElement.StretchHorizontally = true;
     this.check_rear.RootElement.StretchVertically = true;
     this.check_rear.Size = new System.Drawing.Size(45, 19);
     this.check_rear.TabIndex = 65;
     this.check_rear.Text = "Rear";
     //
     // check_front
     //
     this.check_front.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.check_front.ForeColor = System.Drawing.Color.White;
     this.check_front.Location = new System.Drawing.Point(15, 12);
     this.check_front.Name = "check_front";
     //
     //
     //
     this.check_front.RootElement.ForeColor = System.Drawing.Color.White;
     this.check_front.RootElement.StretchHorizontally = true;
     this.check_front.RootElement.StretchVertically = true;
     this.check_front.Size = new System.Drawing.Size(49, 19);
     this.check_front.TabIndex = 64;
     this.check_front.Text = "Front";
     //
     // radLabel2
     //
     this.radLabel2.BackColor = System.Drawing.Color.Transparent;
     this.radLabel2.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel2.ForeColor = System.Drawing.Color.White;
     this.radLabel2.Location = new System.Drawing.Point(40, 15);
     this.radLabel2.Name = "radLabel2";
     //
     //
     //
     this.radLabel2.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel2.Size = new System.Drawing.Size(71, 21);
     this.radLabel2.TabIndex = 31;
     this.radLabel2.Text = "Front/Rear";
     //
     // panal_cycle
     //
     this.panal_cycle.BackColor = System.Drawing.Color.Transparent;
     this.panal_cycle.Controls.Add(this.groupBox2);
     this.panal_cycle.Controls.Add(this.radLabel3);
     this.panal_cycle.Controls.Add(this.radLabel2);
     this.panal_cycle.Controls.Add(this.groupBox1);
     this.panal_cycle.Location = new System.Drawing.Point(678, 27);
     this.panal_cycle.Name = "panal_cycle";
     //
     //
     //
     this.panal_cycle.RootElement.Opacity = 5D;
     this.panal_cycle.Size = new System.Drawing.Size(340, 84);
     this.panal_cycle.TabIndex = 59;
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.radio_trial);
     this.groupBox2.Controls.Add(this.radio_non_trial);
     this.groupBox2.ForeColor = System.Drawing.Color.White;
     this.groupBox2.Location = new System.Drawing.Point(132, 38);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(156, 36);
     this.groupBox2.TabIndex = 82;
     this.groupBox2.TabStop = false;
     //
     // radio_trial
     //
     this.radio_trial.BackColor = System.Drawing.Color.Transparent;
     this.radio_trial.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.radio_trial.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_trial.Location = new System.Drawing.Point(16, 12);
     this.radio_trial.Name = "radio_trial";
     //
     //
     //
     this.radio_trial.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_trial.Size = new System.Drawing.Size(61, 18);
     this.radio_trial.TabIndex = 28;
     this.radio_trial.Text = "Trail";
     //
     // radio_non_trial
     //
     this.radio_non_trial.BackColor = System.Drawing.Color.Transparent;
     this.radio_non_trial.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.radio_non_trial.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_non_trial.Location = new System.Drawing.Point(83, 9);
     this.radio_non_trial.Name = "radio_non_trial";
     //
     //
     //
     this.radio_non_trial.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_non_trial.Size = new System.Drawing.Size(72, 23);
     this.radio_non_trial.TabIndex = 14;
     this.radio_non_trial.Text = "Nontrail";
     //
     // radLabel3
     //
     this.radLabel3.BackColor = System.Drawing.Color.Transparent;
     this.radLabel3.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel3.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel3.Location = new System.Drawing.Point(40, 48);
     this.radLabel3.Name = "radLabel3";
     //
     //
     //
     this.radLabel3.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel3.Size = new System.Drawing.Size(85, 21);
     this.radLabel3.TabIndex = 56;
     this.radLabel3.Text = "Trail/Nontrail";
     //
     // com_brand
     //
     this.com_brand.Enabled = false;
     this.com_brand.Location = new System.Drawing.Point(95, 8);
     this.com_brand.Name = "com_brand";
     //
     //
     //
     this.com_brand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_brand.RootElement.StretchVertically = true;
     this.com_brand.Size = new System.Drawing.Size(158, 20);
     this.com_brand.TabIndex = 57;
     this.com_brand.TabStop = false;
     this.com_brand.SelectedIndexChanged += new System.EventHandler(this.com_brand_SelectedIndexChanged);
     //
     // chk_size
     //
     this.chk_size.BackColor = System.Drawing.Color.Transparent;
     this.chk_size.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_size.ForeColor = System.Drawing.Color.White;
     this.chk_size.Location = new System.Drawing.Point(20, 34);
     this.chk_size.Name = "chk_size";
     //
     //
     //
     this.chk_size.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_size.RootElement.StretchHorizontally = true;
     this.chk_size.RootElement.StretchVertically = true;
     this.chk_size.Size = new System.Drawing.Size(44, 21);
     this.chk_size.TabIndex = 19;
     this.chk_size.Text = "Size";
     this.chk_size.Click += new System.EventHandler(this.chk_size_Click);
     //
     // com_ply_rate
     //
     this.com_ply_rate.Location = new System.Drawing.Point(95, 61);
     this.com_ply_rate.Name = "com_ply_rate";
     //
     //
     //
     this.com_ply_rate.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_ply_rate.RootElement.StretchVertically = true;
     this.com_ply_rate.Size = new System.Drawing.Size(158, 20);
     this.com_ply_rate.TabIndex = 58;
     this.com_ply_rate.TabStop = false;
     //
     // chk_t_pattern
     //
     this.chk_t_pattern.BackColor = System.Drawing.Color.Transparent;
     this.chk_t_pattern.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_t_pattern.ForeColor = System.Drawing.Color.White;
     this.chk_t_pattern.Location = new System.Drawing.Point(292, 8);
     this.chk_t_pattern.Name = "chk_t_pattern";
     //
     //
     //
     this.chk_t_pattern.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_t_pattern.RootElement.StretchHorizontally = true;
     this.chk_t_pattern.RootElement.StretchVertically = true;
     this.chk_t_pattern.Size = new System.Drawing.Size(108, 21);
     this.chk_t_pattern.TabIndex = 26;
     this.chk_t_pattern.Text = "Thread Pattern";
     this.chk_t_pattern.Click += new System.EventHandler(this.chk_t_pattern_Click);
     //
     // com_t_pattern
     //
     this.com_t_pattern.Location = new System.Drawing.Point(414, 7);
     this.com_t_pattern.Name = "com_t_pattern";
     //
     //
     //
     this.com_t_pattern.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_t_pattern.RootElement.StretchVertically = true;
     this.com_t_pattern.Size = new System.Drawing.Size(155, 20);
     this.com_t_pattern.TabIndex = 58;
     this.com_t_pattern.TabStop = false;
     //
     // chk_make
     //
     this.chk_make.BackColor = System.Drawing.Color.Transparent;
     this.chk_make.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_make.ForeColor = System.Drawing.Color.White;
     this.chk_make.Location = new System.Drawing.Point(293, 33);
     this.chk_make.Name = "chk_make";
     //
     //
     //
     this.chk_make.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_make.RootElement.StretchHorizontally = true;
     this.chk_make.RootElement.StretchVertically = true;
     this.chk_make.Size = new System.Drawing.Size(53, 21);
     this.chk_make.TabIndex = 24;
     this.chk_make.Text = "Make";
     this.chk_make.Click += new System.EventHandler(this.chk_make_Click);
     //
     // com_made
     //
     this.com_made.Location = new System.Drawing.Point(414, 33);
     this.com_made.Name = "com_made";
     //
     //
     //
     this.com_made.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_made.RootElement.StretchVertically = true;
     this.com_made.Size = new System.Drawing.Size(155, 20);
     this.com_made.TabIndex = 58;
     this.com_made.TabStop = false;
     //
     // chk_ply_rate
     //
     this.chk_ply_rate.BackColor = System.Drawing.Color.Transparent;
     this.chk_ply_rate.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_ply_rate.ForeColor = System.Drawing.Color.White;
     this.chk_ply_rate.Location = new System.Drawing.Point(20, 61);
     this.chk_ply_rate.Name = "chk_ply_rate";
     //
     //
     //
     this.chk_ply_rate.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_ply_rate.RootElement.StretchHorizontally = true;
     this.chk_ply_rate.RootElement.StretchVertically = true;
     this.chk_ply_rate.Size = new System.Drawing.Size(68, 21);
     this.chk_ply_rate.TabIndex = 22;
     this.chk_ply_rate.Text = "Ply Rate";
     this.chk_ply_rate.Click += new System.EventHandler(this.chk_ply_rate_Click);
     //
     // radLabel4
     //
     this.radLabel4.BackColor = System.Drawing.Color.Transparent;
     this.radLabel4.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.ForeColor = System.Drawing.Color.White;
     this.radLabel4.Location = new System.Drawing.Point(293, 67);
     this.radLabel4.Name = "radLabel4";
     //
     //
     //
     this.radLabel4.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel4.Size = new System.Drawing.Size(64, 21);
     this.radLabel4.TabIndex = 61;
     this.radLabel4.Text = "Tyre Type";
     //
     // chk_brand
     //
     this.chk_brand.BackColor = System.Drawing.Color.Transparent;
     this.chk_brand.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_brand.ForeColor = System.Drawing.Color.White;
     this.chk_brand.Location = new System.Drawing.Point(21, 7);
     this.chk_brand.Name = "chk_brand";
     //
     //
     //
     this.chk_brand.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_brand.RootElement.StretchHorizontally = true;
     this.chk_brand.RootElement.StretchVertically = true;
     this.chk_brand.Size = new System.Drawing.Size(55, 21);
     this.chk_brand.TabIndex = 20;
     this.chk_brand.Text = "Brand";
     this.chk_brand.Click += new System.EventHandler(this.radCheckBox2_Click);
     //
     // grp_tyre_type
     //
     this.grp_tyre_type.BackColor = System.Drawing.Color.Transparent;
     this.grp_tyre_type.Controls.Add(this.radio_canvas);
     this.grp_tyre_type.Controls.Add(this.radio_radial);
     this.grp_tyre_type.Location = new System.Drawing.Point(413, 58);
     this.grp_tyre_type.Name = "grp_tyre_type";
     this.grp_tyre_type.Size = new System.Drawing.Size(156, 36);
     this.grp_tyre_type.TabIndex = 62;
     this.grp_tyre_type.TabStop = false;
     //
     // radio_canvas
     //
     this.radio_canvas.BackColor = System.Drawing.Color.Transparent;
     this.radio_canvas.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radio_canvas.ForeColor = System.Drawing.Color.White;
     this.radio_canvas.Location = new System.Drawing.Point(77, 0);
     this.radio_canvas.Name = "radio_canvas";
     //
     //
     //
     this.radio_canvas.RootElement.ForeColor = System.Drawing.Color.White;
     this.radio_canvas.Size = new System.Drawing.Size(63, 40);
     this.radio_canvas.TabIndex = 14;
     this.radio_canvas.Text = "Canvas";
     //
     // radio_radial
     //
     this.radio_radial.BackColor = System.Drawing.Color.Transparent;
     this.radio_radial.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radio_radial.ForeColor = System.Drawing.Color.White;
     this.radio_radial.Location = new System.Drawing.Point(10, 10);
     this.radio_radial.Name = "radio_radial";
     //
     //
     //
     this.radio_radial.RootElement.ForeColor = System.Drawing.Color.White;
     this.radio_radial.Size = new System.Drawing.Size(61, 18);
     this.radio_radial.TabIndex = 28;
     this.radio_radial.Text = "Radial";
     //
     // radPanel2
     //
     this.radPanel2.BackColor = System.Drawing.Color.Transparent;
     this.radPanel2.Controls.Add(this.radGridView3);
     this.radPanel2.Controls.Add(this.grp_tyre_type);
     this.radPanel2.Controls.Add(this.txt_size);
     this.radPanel2.Controls.Add(this.chk_brand);
     this.radPanel2.Controls.Add(this.radLabel4);
     this.radPanel2.Controls.Add(this.chk_ply_rate);
     this.radPanel2.Controls.Add(this.com_made);
     this.radPanel2.Controls.Add(this.chk_make);
     this.radPanel2.Controls.Add(this.com_t_pattern);
     this.radPanel2.Controls.Add(this.chk_t_pattern);
     this.radPanel2.Controls.Add(this.com_ply_rate);
     this.radPanel2.Controls.Add(this.chk_size);
     this.radPanel2.Controls.Add(this.com_brand);
     this.radPanel2.ForeColor = System.Drawing.Color.White;
     this.radPanel2.Location = new System.Drawing.Point(3, 20);
     this.radPanel2.Name = "radPanel2";
     //
     //
     //
     this.radPanel2.RootElement.ForeColor = System.Drawing.Color.White;
     this.radPanel2.Size = new System.Drawing.Size(601, 150);
     this.radPanel2.TabIndex = 60;
     this.radPanel2.Click += new System.EventHandler(this.radPanel2_Click);
     //
     // radGridView3
     //
     this.radGridView3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     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(95, 55);
     //
     // radGridView3
     //
     this.radGridView3.MasterTemplate.AllowAddNewRow = false;
     this.radGridView3.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView3.MasterTemplate.EnableGrouping = false;
     this.radGridView3.MasterTemplate.ShowColumnHeaders = false;
     this.radGridView3.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView3.Name = "radGridView3";
     this.radGridView3.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView3.ReadOnly = true;
     this.radGridView3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView3.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView3.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView3.ShowGroupPanel = false;
     this.radGridView3.Size = new System.Drawing.Size(158, 81);
     this.radGridView3.TabIndex = 65;
     this.radGridView3.Text = "radGridView3";
     this.radGridView3.SelectionChanged += new System.EventHandler(this.radGridView3_SelectionChanged);
     this.radGridView3.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView3_CellClick);
     //
     // txt_size
     //
     this.txt_size.Enabled = false;
     this.txt_size.Location = new System.Drawing.Point(95, 35);
     this.txt_size.Name = "txt_size";
     this.txt_size.Size = new System.Drawing.Size(158, 20);
     this.txt_size.TabIndex = 64;
     this.txt_size.TabStop = false;
     this.txt_size.TextChanged += new System.EventHandler(this.txt_size_TextChanged);
     this.txt_size.Click += new System.EventHandler(this.txt_size_Click);
     this.txt_size.Enter += new System.EventHandler(this.txt_size_Enter);
     //
     // radButton2
     //
     this.radButton2.Location = new System.Drawing.Point(961, 149);
     this.radButton2.Name = "radButton2";
     this.radButton2.Size = new System.Drawing.Size(57, 20);
     this.radButton2.TabIndex = 30;
     this.radButton2.Tag = " ";
     this.radButton2.Text = "Refresh";
     this.radButton2.ThemeName = "Breeze";
     this.radButton2.Click += new System.EventHandler(this.radButton2_Click);
     //
     // chk_cycle_search
     //
     this.chk_cycle_search.BackColor = System.Drawing.Color.Transparent;
     this.chk_cycle_search.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.chk_cycle_search.ForeColor = System.Drawing.Color.White;
     this.chk_cycle_search.Location = new System.Drawing.Point(678, 5);
     this.chk_cycle_search.Name = "chk_cycle_search";
     //
     //
     //
     this.chk_cycle_search.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_cycle_search.Size = new System.Drawing.Size(85, 18);
     this.chk_cycle_search.TabIndex = 61;
     this.chk_cycle_search.Text = "Motor Cycle";
     this.chk_cycle_search.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.chk_cycle_search_ToggleStateChanged);
     this.chk_cycle_search.Click += new System.EventHandler(this.chk_cycle_search_Click);
     //
     // pnlTyre
     //
     this.pnlTyre.BackColor = System.Drawing.Color.Transparent;
     this.pnlTyre.Controls.Add(this.radPanel2);
     this.pnlTyre.Controls.Add(this.chk_cycle_search);
     this.pnlTyre.Controls.Add(this.radButton1);
     this.pnlTyre.Controls.Add(this.panal_cycle);
     this.pnlTyre.Controls.Add(this.radButton2);
     this.pnlTyre.Controls.Add(this.radGridView1);
     this.pnlTyre.Controls.Add(this.radGridView2);
     this.pnlTyre.Location = new System.Drawing.Point(28, 58);
     this.pnlTyre.Name = "pnlTyre";
     this.pnlTyre.Size = new System.Drawing.Size(1031, 341);
     this.pnlTyre.TabIndex = 114;
     this.pnlTyre.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlTyre_Paint);
     //
     // btnTubeSearch
     //
     this.btnTubeSearch.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnTubeSearch.Location = new System.Drawing.Point(802, 25);
     this.btnTubeSearch.Name = "btnTubeSearch";
     this.btnTubeSearch.Size = new System.Drawing.Size(120, 28);
     this.btnTubeSearch.TabIndex = 114;
     this.btnTubeSearch.Text = "Tube Search";
     this.btnTubeSearch.Click += new System.EventHandler(this.radButton6_Click_1);
     //
     // grdInvoice
     //
     this.grdInvoice.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdInvoice.ContextMenuStrip = this.contextMenuStrip1;
     this.grdInvoice.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdInvoice.EnableHotTracking = false;
     this.grdInvoice.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdInvoice.ForeColor = System.Drawing.Color.Black;
     this.grdInvoice.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdInvoice.Location = new System.Drawing.Point(347, 445);
     //
     // grdInvoice
     //
     this.grdInvoice.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.grdInvoice.MasterTemplate.AllowAddNewRow = false;
     this.grdInvoice.MasterTemplate.AllowColumnReorder = false;
     this.grdInvoice.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn8.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn8.HeaderText = "Item No";
     gridViewTextBoxColumn8.Name = "itemNo";
     gridViewTextBoxColumn8.ReadOnly = true;
     gridViewTextBoxColumn8.Width = 95;
     gridViewTextBoxColumn9.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn9.HeaderText = "Item Name";
     gridViewTextBoxColumn9.Name = "Item Name";
     gridViewTextBoxColumn9.Width = 176;
     gridViewTextBoxColumn10.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn10.HeaderText = "Quntity";
     gridViewTextBoxColumn10.Name = "Qty";
     gridViewTextBoxColumn10.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn10.Width = 103;
     gridViewTextBoxColumn11.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn11.HeaderText = "Unit Price( Rs )";
     gridViewTextBoxColumn11.Name = "unitPrice";
     gridViewTextBoxColumn11.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn11.Width = 103;
     gridViewTextBoxColumn12.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn12.HeaderText = "Price( Rs )";
     gridViewTextBoxColumn12.Name = "Price";
     gridViewTextBoxColumn12.ReadOnly = true;
     gridViewTextBoxColumn12.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn12.Width = 102;
     gridViewTextBoxColumn13.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn13.HeaderText = "Discount( % )";
     gridViewTextBoxColumn13.Name = "Discount";
     gridViewTextBoxColumn13.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewTextBoxColumn13.Width = 75;
     gridViewTextBoxColumn14.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn14.HeaderText = "ItemCat";
     gridViewTextBoxColumn14.Name = "ItemCat";
     gridViewTextBoxColumn14.ReadOnly = true;
     gridViewTextBoxColumn14.Width = 48;
     this.grdInvoice.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn8,
     gridViewTextBoxColumn9,
     gridViewTextBoxColumn10,
     gridViewTextBoxColumn11,
     gridViewTextBoxColumn12,
     gridViewTextBoxColumn13,
     gridViewTextBoxColumn14});
     this.grdInvoice.MasterTemplate.EnableGrouping = false;
     this.grdInvoice.MasterTemplate.EnableSorting = false;
     this.grdInvoice.MasterTemplate.ShowRowHeaderColumn = false;
     sortDescriptor2.PropertyName = "itemNo";
     this.grdInvoice.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
     sortDescriptor2});
     this.grdInvoice.Name = "grdInvoice";
     this.grdInvoice.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdInvoice.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdInvoice.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdInvoice.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdInvoice.ShowGroupPanel = false;
     this.grdInvoice.Size = new System.Drawing.Size(699, 146);
     this.grdInvoice.TabIndex = 73;
     this.grdInvoice.Text = "radGridView4";
     this.grdInvoice.CellEndEdit += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdInvoice_CellEndEdit);
     this.grdInvoice.UserDeletedRow += new Telerik.WinControls.UI.GridViewRowEventHandler(this.grdInvoice_UserDeletedRow);
     this.grdInvoice.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdInvoice_CellClick);
     this.grdInvoice.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdInvoice_CellDoubleClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(150, 26);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(149, 22);
     this.toolStripMenuItem1.Text = "Add New Row";
     this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
     //
     // radLabel8
     //
     this.radLabel8.BackColor = System.Drawing.Color.Transparent;
     this.radLabel8.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel8.ForeColor = System.Drawing.Color.Gold;
     this.radLabel8.Location = new System.Drawing.Point(347, 406);
     this.radLabel8.Name = "radLabel8";
     //
     //
     //
     this.radLabel8.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.radLabel8.Size = new System.Drawing.Size(75, 30);
     this.radLabel8.TabIndex = 82;
     this.radLabel8.Text = "Invoice";
     //
     // radLabel9
     //
     this.radLabel9.BackColor = System.Drawing.Color.Transparent;
     this.radLabel9.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel9.ForeColor = System.Drawing.Color.White;
     this.radLabel9.Location = new System.Drawing.Point(28, 445);
     this.radLabel9.Name = "radLabel9";
     //
     //
     //
     this.radLabel9.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel9.Size = new System.Drawing.Size(103, 21);
     this.radLabel9.TabIndex = 83;
     this.radLabel9.Text = "Customer Name";
     //
     // radLabel10
     //
     this.radLabel10.BackColor = System.Drawing.Color.Transparent;
     this.radLabel10.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel10.ForeColor = System.Drawing.Color.Gold;
     this.radLabel10.Location = new System.Drawing.Point(28, 406);
     this.radLabel10.Name = "radLabel10";
     //
     //
     //
     this.radLabel10.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.radLabel10.Size = new System.Drawing.Size(164, 30);
     this.radLabel10.TabIndex = 83;
     this.radLabel10.Text = "Search Customer";
     //
     // radLabel11
     //
     this.radLabel11.BackColor = System.Drawing.Color.Transparent;
     this.radLabel11.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel11.ForeColor = System.Drawing.Color.White;
     this.radLabel11.Location = new System.Drawing.Point(28, 498);
     this.radLabel11.Name = "radLabel11";
     //
     //
     //
     this.radLabel11.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel11.Size = new System.Drawing.Size(70, 21);
     this.radLabel11.TabIndex = 98;
     this.radLabel11.Text = "Invoice No";
     //
     // txtInvoiceNo
     //
     this.txtInvoiceNo.Enabled = false;
     this.txtInvoiceNo.Location = new System.Drawing.Point(141, 498);
     this.txtInvoiceNo.Name = "txtInvoiceNo";
     this.txtInvoiceNo.Size = new System.Drawing.Size(192, 20);
     this.txtInvoiceNo.TabIndex = 100;
     this.txtInvoiceNo.TabStop = false;
     //
     // radLabel12
     //
     this.radLabel12.BackColor = System.Drawing.Color.Transparent;
     this.radLabel12.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel12.ForeColor = System.Drawing.Color.White;
     this.radLabel12.Location = new System.Drawing.Point(28, 552);
     this.radLabel12.Name = "radLabel12";
     //
     //
     //
     this.radLabel12.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel12.Size = new System.Drawing.Size(80, 21);
     this.radLabel12.TabIndex = 99;
     this.radLabel12.Text = "Invoice Date";
     //
     // radLabel13
     //
     this.radLabel13.BackColor = System.Drawing.Color.Transparent;
     this.radLabel13.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel13.ForeColor = System.Drawing.Color.White;
     this.radLabel13.Location = new System.Drawing.Point(28, 525);
     this.radLabel13.Name = "radLabel13";
     //
     //
     //
     this.radLabel13.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel13.Size = new System.Drawing.Size(99, 21);
     this.radLabel13.TabIndex = 103;
     this.radLabel13.Text = "Invoice Ref No";
     //
     // txtInvoiceNote
     //
     this.txtInvoiceNote.Location = new System.Drawing.Point(141, 524);
     this.txtInvoiceNote.Multiline = true;
     this.txtInvoiceNote.Name = "txtInvoiceNote";
     //
     //
     //
     this.txtInvoiceNote.RootElement.StretchVertically = true;
     this.txtInvoiceNote.Size = new System.Drawing.Size(192, 21);
     this.txtInvoiceNote.TabIndex = 104;
     this.txtInvoiceNote.TabStop = false;
     //
     // radLabel14
     //
     this.radLabel14.BackColor = System.Drawing.Color.Transparent;
     this.radLabel14.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel14.ForeColor = System.Drawing.Color.White;
     this.radLabel14.Location = new System.Drawing.Point(28, 601);
     this.radLabel14.Name = "radLabel14";
     //
     //
     //
     this.radLabel14.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel14.Size = new System.Drawing.Size(71, 21);
     this.radLabel14.TabIndex = 105;
     this.radLabel14.Text = "Vehicle No";
     //
     // txtVehicleNo
     //
     this.txtVehicleNo.Location = new System.Drawing.Point(141, 603);
     this.txtVehicleNo.Name = "txtVehicleNo";
     this.txtVehicleNo.Size = new System.Drawing.Size(192, 20);
     this.txtVehicleNo.TabIndex = 101;
     this.txtVehicleNo.TabStop = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(563, 706);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(0, 13);
     this.label4.TabIndex = 106;
     //
     // btnAdd
     //
     this.btnAdd.Font = new System.Drawing.Font("Arial", 9F);
     this.btnAdd.Location = new System.Drawing.Point(601, 601);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(104, 37);
     this.btnAdd.TabIndex = 107;
     this.btnAdd.Text = "Add";
     this.btnAdd.ThemeName = "Breeze";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnPrintInvoice
     //
     this.btnPrintInvoice.Font = new System.Drawing.Font("Arial", 9F);
     this.btnPrintInvoice.Location = new System.Drawing.Point(476, 601);
     this.btnPrintInvoice.Name = "btnPrintInvoice";
     this.btnPrintInvoice.Size = new System.Drawing.Size(104, 37);
     this.btnPrintInvoice.TabIndex = 108;
     this.btnPrintInvoice.Text = "Print Invoice";
     this.btnPrintInvoice.ThemeName = "Breeze";
     this.btnPrintInvoice.Click += new System.EventHandler(this.btnPrintInvoice_Click);
     //
     // btnClear
     //
     this.btnClear.Font = new System.Drawing.Font("Arial", 9F);
     this.btnClear.Location = new System.Drawing.Point(347, 602);
     this.btnClear.Name = "btnClear";
     this.btnClear.Size = new System.Drawing.Size(104, 36);
     this.btnClear.TabIndex = 108;
     this.btnClear.Text = "Clear";
     this.btnClear.ThemeName = "Breeze";
     this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
     //
     // radPanel1
     //
     this.radPanel1.BackColor = System.Drawing.Color.White;
     this.radPanel1.Location = new System.Drawing.Point(28, 402);
     this.radPanel1.Name = "radPanel1";
     this.radPanel1.Size = new System.Drawing.Size(1031, 2);
     this.radPanel1.TabIndex = 115;
     //
     // txtCustomerName
     //
     this.txtCustomerName.Location = new System.Drawing.Point(141, 445);
     this.txtCustomerName.Name = "txtCustomerName";
     this.txtCustomerName.Size = new System.Drawing.Size(192, 20);
     this.txtCustomerName.TabIndex = 102;
     this.txtCustomerName.TabStop = false;
     this.txtCustomerName.TextChanged += new System.EventHandler(this.radTextBox1_TextChanged);
     this.txtCustomerName.Click += new System.EventHandler(this.txtCustomerName_Click);
     this.txtCustomerName.Enter += new System.EventHandler(this.txtCustomerName_Enter);
     //
     // grdFillCustomer
     //
     this.grdFillCustomer.AllowUserToAddRows = false;
     this.grdFillCustomer.AllowUserToDeleteRows = false;
     this.grdFillCustomer.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.grdFillCustomer.BackgroundColor = System.Drawing.Color.White;
     this.grdFillCustomer.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.grdFillCustomer.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     this.grdFillCustomer.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdFillCustomer.ColumnHeadersVisible = false;
     this.grdFillCustomer.Location = new System.Drawing.Point(141, 466);
     this.grdFillCustomer.Name = "grdFillCustomer";
     this.grdFillCustomer.ReadOnly = true;
     this.grdFillCustomer.RowHeadersVisible = false;
     this.grdFillCustomer.Size = new System.Drawing.Size(192, 90);
     this.grdFillCustomer.TabIndex = 118;
     this.grdFillCustomer.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdFillCustomer_CellClick);
     //
     // com_customer_id
     //
     this.com_customer_id.FormattingEnabled = true;
     this.com_customer_id.Location = new System.Drawing.Point(141, 471);
     this.com_customer_id.Name = "com_customer_id";
     this.com_customer_id.Size = new System.Drawing.Size(192, 21);
     this.com_customer_id.TabIndex = 119;
     this.com_customer_id.SelectedIndexChanged += new System.EventHandler(this.com_customer_id_SelectedIndexChanged);
     //
     // radLabel16
     //
     this.radLabel16.BackColor = System.Drawing.Color.Transparent;
     this.radLabel16.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel16.ForeColor = System.Drawing.Color.White;
     this.radLabel16.Location = new System.Drawing.Point(28, 471);
     this.radLabel16.Name = "radLabel16";
     //
     //
     //
     this.radLabel16.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel16.Size = new System.Drawing.Size(85, 21);
     this.radLabel16.TabIndex = 99;
     this.radLabel16.Text = "Customer No";
     //
     // btnAddPayment
     //
     this.btnAddPayment.Location = new System.Drawing.Point(759, 726);
     this.btnAddPayment.Name = "btnAddPayment";
     this.btnAddPayment.Size = new System.Drawing.Size(104, 37);
     this.btnAddPayment.TabIndex = 121;
     this.btnAddPayment.Text = "Add Payment";
     this.btnAddPayment.ThemeName = "Breeze";
     this.btnAddPayment.Click += new System.EventHandler(this.btnAddPayment_Click);
     //
     // txtTotal
     //
     this.txtTotal.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTotal.ForeColor = System.Drawing.Color.DodgerBlue;
     this.txtTotal.Location = new System.Drawing.Point(909, 608);
     this.txtTotal.Name = "txtTotal";
     //
     //
     //
     this.txtTotal.RootElement.ForeColor = System.Drawing.Color.DodgerBlue;
     this.txtTotal.Size = new System.Drawing.Size(137, 27);
     this.txtTotal.TabIndex = 80;
     this.txtTotal.TabStop = false;
     this.txtTotal.Text = "0.00";
     this.txtTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // radLabel5
     //
     this.radLabel5.BackColor = System.Drawing.Color.Transparent;
     this.radLabel5.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
     this.radLabel5.ForeColor = System.Drawing.Color.White;
     this.radLabel5.Location = new System.Drawing.Point(792, 614);
     this.radLabel5.Name = "radLabel5";
     //
     //
     //
     this.radLabel5.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel5.Size = new System.Drawing.Size(101, 21);
     this.radLabel5.TabIndex = 79;
     this.radLabel5.Text = "Total Price(Rs)";
     //
     // pnlTube
     //
     this.pnlTube.BackColor = System.Drawing.Color.Transparent;
     this.pnlTube.Controls.Add(this.label1);
     this.pnlTube.Controls.Add(this.txt_barcode);
     this.pnlTube.Controls.Add(this.panel2);
     this.pnlTube.Controls.Add(this.radButton3);
     this.pnlTube.Controls.Add(this.radButton7);
     this.pnlTube.Controls.Add(this.grdTubesearch);
     this.pnlTube.Location = new System.Drawing.Point(28, 58);
     this.pnlTube.Name = "pnlTube";
     this.pnlTube.Size = new System.Drawing.Size(1031, 341);
     this.pnlTube.TabIndex = 122;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Lime;
     this.label1.Location = new System.Drawing.Point(0, 13);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(66, 13);
     this.label1.TabIndex = 81;
     this.label1.Text = "BARCODE";
     //
     // txt_barcode
     //
     this.txt_barcode.Location = new System.Drawing.Point(77, 10);
     this.txt_barcode.Name = "txt_barcode";
     this.txt_barcode.Size = new System.Drawing.Size(181, 20);
     this.txt_barcode.TabIndex = 83;
     this.txt_barcode.TextChanged += new System.EventHandler(this.txt_barcode_TextChanged);
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.grdTubeSize);
     this.panel2.Controls.Add(this.txtTubeSize);
     this.panel2.Controls.Add(this.groupBox4);
     this.panel2.Controls.Add(this.chkTubeBrand);
     this.panel2.Controls.Add(this.comTubeMake);
     this.panel2.Controls.Add(this.chkTubeSize);
     this.panel2.Controls.Add(this.chkTubeMake);
     this.panel2.Controls.Add(this.chkTubeType);
     this.panel2.Controls.Add(this.comTubeBrand);
     this.panel2.Controls.Add(this.groupBox5);
     this.panel2.Location = new System.Drawing.Point(0, 45);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(858, 121);
     this.panel2.TabIndex = 82;
     this.panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.panel2_Paint);
     //
     // grdTubeSize
     //
     this.grdTubeSize.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdTubeSize.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdTubeSize.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdTubeSize.ForeColor = System.Drawing.Color.Black;
     this.grdTubeSize.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdTubeSize.Location = new System.Drawing.Point(364, 37);
     //
     // grdTubeSize
     //
     this.grdTubeSize.MasterTemplate.AllowAddNewRow = false;
     this.grdTubeSize.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdTubeSize.MasterTemplate.EnableGrouping = false;
     this.grdTubeSize.MasterTemplate.ShowColumnHeaders = false;
     this.grdTubeSize.MasterTemplate.ShowRowHeaderColumn = false;
     this.grdTubeSize.Name = "grdTubeSize";
     this.grdTubeSize.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubeSize.ReadOnly = true;
     this.grdTubeSize.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdTubeSize.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdTubeSize.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubeSize.ShowGroupPanel = false;
     this.grdTubeSize.Size = new System.Drawing.Size(187, 72);
     this.grdTubeSize.TabIndex = 82;
     this.grdTubeSize.Text = "radGridView4";
     this.grdTubeSize.SelectionChanged += new System.EventHandler(this.grdTubeSize_SelectionChanged_1);
     this.grdTubeSize.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdTubeSize_CellClick_3);
     //
     // txtTubeSize
     //
     this.txtTubeSize.Enabled = false;
     this.txtTubeSize.Location = new System.Drawing.Point(364, 16);
     this.txtTubeSize.Name = "txtTubeSize";
     this.txtTubeSize.Size = new System.Drawing.Size(187, 20);
     this.txtTubeSize.TabIndex = 80;
     this.txtTubeSize.Click += new System.EventHandler(this.txtTubeSize_Click_1);
     this.txtTubeSize.TextChanged += new System.EventHandler(this.txtTubeSize_TextChanged_1);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.chk_din_tube);
     this.groupBox4.Location = new System.Drawing.Point(744, 88);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(79, 37);
     this.groupBox4.TabIndex = 79;
     this.groupBox4.TabStop = false;
     this.groupBox4.Visible = false;
     //
     // chk_din_tube
     //
     this.chk_din_tube.BackColor = System.Drawing.Color.Transparent;
     this.chk_din_tube.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_din_tube.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_din_tube.Location = new System.Drawing.Point(19, 15);
     this.chk_din_tube.Name = "chk_din_tube";
     //
     //
     //
     this.chk_din_tube.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_din_tube.Size = new System.Drawing.Size(44, 21);
     this.chk_din_tube.TabIndex = 65;
     this.chk_din_tube.Text = "DIN";
     //
     // chkTubeBrand
     //
     this.chkTubeBrand.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeBrand.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeBrand.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeBrand.Location = new System.Drawing.Point(15, 15);
     this.chkTubeBrand.Name = "chkTubeBrand";
     //
     //
     //
     this.chkTubeBrand.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeBrand.Size = new System.Drawing.Size(55, 21);
     this.chkTubeBrand.TabIndex = 63;
     this.chkTubeBrand.Text = "Brand";
     this.chkTubeBrand.Click += new System.EventHandler(this.radCheckBox1_Click);
     //
     // comTubeMake
     //
     this.comTubeMake.Enabled = false;
     this.comTubeMake.Location = new System.Drawing.Point(76, 56);
     this.comTubeMake.Name = "comTubeMake";
     //
     //
     //
     this.comTubeMake.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.comTubeMake.Size = new System.Drawing.Size(181, 20);
     this.comTubeMake.TabIndex = 78;
     this.comTubeMake.TabStop = false;
     //
     // chkTubeSize
     //
     this.chkTubeSize.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeSize.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeSize.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeSize.Location = new System.Drawing.Point(315, 15);
     this.chkTubeSize.Name = "chkTubeSize";
     //
     //
     //
     this.chkTubeSize.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeSize.Size = new System.Drawing.Size(44, 21);
     this.chkTubeSize.TabIndex = 62;
     this.chkTubeSize.Text = "Size";
     this.chkTubeSize.Click += new System.EventHandler(this.radCheckBox2_Click_1);
     //
     // chkTubeMake
     //
     this.chkTubeMake.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeMake.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeMake.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeMake.Location = new System.Drawing.Point(15, 55);
     this.chkTubeMake.Name = "chkTubeMake";
     //
     //
     //
     this.chkTubeMake.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeMake.Size = new System.Drawing.Size(53, 21);
     this.chkTubeMake.TabIndex = 77;
     this.chkTubeMake.Text = "Make";
     this.chkTubeMake.Click += new System.EventHandler(this.radCheckBox3_Click);
     //
     // chkTubeType
     //
     this.chkTubeType.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeType.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeType.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeType.Location = new System.Drawing.Point(611, 15);
     this.chkTubeType.Name = "chkTubeType";
     //
     //
     //
     this.chkTubeType.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeType.Size = new System.Drawing.Size(49, 21);
     this.chkTubeType.TabIndex = 64;
     this.chkTubeType.Text = "Type";
     this.chkTubeType.Click += new System.EventHandler(this.radCheckBox4_Click);
     //
     // comTubeBrand
     //
     this.comTubeBrand.Enabled = false;
     this.comTubeBrand.Location = new System.Drawing.Point(76, 16);
     this.comTubeBrand.Name = "comTubeBrand";
     //
     //
     //
     this.comTubeBrand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.comTubeBrand.Size = new System.Drawing.Size(181, 20);
     this.comTubeBrand.TabIndex = 65;
     this.comTubeBrand.TabStop = false;
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.rad_tube_c);
     this.groupBox5.Controls.Add(this.rad_tube_v);
     this.groupBox5.Enabled = false;
     this.groupBox5.Location = new System.Drawing.Point(675, 8);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(148, 27);
     this.groupBox5.TabIndex = 67;
     this.groupBox5.TabStop = false;
     //
     // rad_tube_c
     //
     this.rad_tube_c.AutoSize = true;
     this.rad_tube_c.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_tube_c.ForeColor = System.Drawing.Color.White;
     this.rad_tube_c.Location = new System.Drawing.Point(80, 8);
     this.rad_tube_c.Name = "rad_tube_c";
     this.rad_tube_c.Size = new System.Drawing.Size(56, 17);
     this.rad_tube_c.TabIndex = 1;
     this.rad_tube_c.TabStop = true;
     this.rad_tube_c.Text = "Cycle";
     this.rad_tube_c.UseVisualStyleBackColor = true;
     this.rad_tube_c.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // rad_tube_v
     //
     this.rad_tube_v.AutoSize = true;
     this.rad_tube_v.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_tube_v.ForeColor = System.Drawing.Color.White;
     this.rad_tube_v.Location = new System.Drawing.Point(6, 8);
     this.rad_tube_v.Name = "rad_tube_v";
     this.rad_tube_v.Size = new System.Drawing.Size(67, 17);
     this.rad_tube_v.TabIndex = 0;
     this.rad_tube_v.TabStop = true;
     this.rad_tube_v.Text = "Vehicle";
     this.rad_tube_v.UseVisualStyleBackColor = true;
     this.rad_tube_v.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
     //
     // radButton3
     //
     this.radButton3.Location = new System.Drawing.Point(961, 152);
     this.radButton3.Name = "radButton3";
     this.radButton3.Size = new System.Drawing.Size(57, 20);
     this.radButton3.TabIndex = 79;
     this.radButton3.Text = "Refresh";
     this.radButton3.ThemeName = "Breeze";
     this.radButton3.Click += new System.EventHandler(this.radButton3_Click_2);
     //
     // radButton7
     //
     this.radButton7.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton7.Location = new System.Drawing.Point(913, 35);
     this.radButton7.Name = "radButton7";
     this.radButton7.Size = new System.Drawing.Size(107, 52);
     this.radButton7.TabIndex = 78;
     this.radButton7.Text = "Search";
     this.radButton7.ThemeName = "Breeze";
     this.radButton7.Click += new System.EventHandler(this.radButton7_Click_1);
     //
     // grdTubesearch
     //
     this.grdTubesearch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdTubesearch.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdTubesearch.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdTubesearch.ForeColor = System.Drawing.Color.Black;
     this.grdTubesearch.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdTubesearch.Location = new System.Drawing.Point(0, 177);
     //
     // grdTubesearch
     //
     this.grdTubesearch.MasterTemplate.AllowAddNewRow = false;
     this.grdTubesearch.MasterTemplate.AllowColumnChooser = false;
     this.grdTubesearch.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdTubesearch.Name = "grdTubesearch";
     this.grdTubesearch.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubesearch.ReadOnly = true;
     this.grdTubesearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdTubesearch.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdTubesearch.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubesearch.Size = new System.Drawing.Size(1018, 154);
     this.grdTubesearch.TabIndex = 80;
     this.grdTubesearch.Text = "radGridView6";
     this.grdTubesearch.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdTubesearch_CellClick);
     //
     // dtpInvoiceDate
     //
     this.dtpInvoiceDate.Location = new System.Drawing.Point(141, 551);
     this.dtpInvoiceDate.Name = "dtpInvoiceDate";
     this.dtpInvoiceDate.Size = new System.Drawing.Size(192, 20);
     this.dtpInvoiceDate.TabIndex = 123;
     //
     // txt_ReceivedBy
     //
     this.txt_ReceivedBy.Location = new System.Drawing.Point(141, 577);
     this.txt_ReceivedBy.Name = "txt_ReceivedBy";
     this.txt_ReceivedBy.Size = new System.Drawing.Size(192, 20);
     this.txt_ReceivedBy.TabIndex = 124;
     this.txt_ReceivedBy.TabStop = false;
     //
     // radLabel1
     //
     this.radLabel1.BackColor = System.Drawing.Color.Transparent;
     this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel1.ForeColor = System.Drawing.Color.White;
     this.radLabel1.Location = new System.Drawing.Point(28, 579);
     this.radLabel1.Name = "radLabel1";
     //
     //
     //
     this.radLabel1.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel1.Size = new System.Drawing.Size(77, 21);
     this.radLabel1.TabIndex = 125;
     this.radLabel1.Text = "Received By";
     //
     // Invoice
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(1386, 788);
     this.Controls.Add(this.txtTotal);
     this.Controls.Add(this.txt_ReceivedBy);
     this.Controls.Add(this.radLabel5);
     this.Controls.Add(this.btnOtherSearch);
     this.Controls.Add(this.radLabel1);
     this.Controls.Add(this.btnAddPayment);
     this.Controls.Add(this.grdFillCustomer);
     this.Controls.Add(this.com_customer_id);
     this.Controls.Add(this.radLabel16);
     this.Controls.Add(this.txtCustomerName);
     this.Controls.Add(this.radPanel1);
     this.Controls.Add(this.btnTubeSearch);
     this.Controls.Add(this.btnTyreSearch);
     this.Controls.Add(this.btnBattrySearch);
     this.Controls.Add(this.btnClear);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.btnPrintInvoice);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.txtInvoiceNote);
     this.Controls.Add(this.txtVehicleNo);
     this.Controls.Add(this.radLabel13);
     this.Controls.Add(this.txtInvoiceNo);
     this.Controls.Add(this.radLabel14);
     this.Controls.Add(this.radLabel11);
     this.Controls.Add(this.radLabel12);
     this.Controls.Add(this.radLabel10);
     this.Controls.Add(this.radLabel8);
     this.Controls.Add(this.grdInvoice);
     this.Controls.Add(this.radLabel9);
     this.Controls.Add(this.lblInvoice);
     this.Controls.Add(this.pnlTube);
     this.Controls.Add(this.pnlTyre);
     this.Controls.Add(this.panel_batary_stock);
     this.Controls.Add(this.dtpInvoiceDate);
     this.Controls.Add(this.panel_other_search);
     this.ForeColor = System.Drawing.Color.DimGray;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Location = new System.Drawing.Point(150, 50);
     this.MaximizeBox = false;
     this.Name = "Invoice";
     this.Opacity = 0.95D;
     this.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.RootElement.ForeColor = System.Drawing.Color.DimGray;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Advanced Search";
     this.ThemeName = "ControlDefault";
     this.Load += new System.EventHandler(this.AdvancedSearch_Load);
     this.EnabledChanged += new System.EventHandler(this.AdvancedSearch_EnabledChanged);
     this.Click += new System.EventHandler(this.AdvancedSearch_Click);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.AdvancedSearch_MouseDown);
     this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.AdvancedSearch_MouseMove);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).EndInit();
     this.panel_batary_stock.ResumeLayout(false);
     this.panel_batary_stock.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brandd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_amp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_amp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_battery)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_search_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdBattry)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton5)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.com_search_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size_batery)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblInvoice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnBattrySearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnTyreSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnOtherSearch)).EndInit();
     this.panel_other_search.ResumeLayout(false);
     this.panel_other_search.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdOther)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRefreshOher)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdSearchCat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.check_rear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.check_front)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panal_cycle)).EndInit();
     this.panal_cycle.ResumeLayout(false);
     this.panal_cycle.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radio_trial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_non_trial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_t_pattern)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_t_pattern)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_make)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_made)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ply_rate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brand)).EndInit();
     this.grp_tyre_type.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radio_canvas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_radial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
     this.radPanel2.ResumeLayout(false);
     this.radPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_cycle_search)).EndInit();
     this.pnlTyre.ResumeLayout(false);
     this.pnlTyre.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnTubeSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdInvoice)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceNote)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVehicleNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnPrintInvoice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnClear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdFillCustomer)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddPayment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTotal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     this.pnlTube.ResumeLayout(false);
     this.pnlTube.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubeSize)).EndInit();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_tube)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeBrand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeMake)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeSize)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeMake)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeBrand)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubesearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_ReceivedBy)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).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.radProgressBar1 = new Telerik.WinControls.UI.RadProgressBar();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     this.lblRate = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.lblBytesRead = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.lblContentLength = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.radProgressBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radProgressBar1
     //
     this.radProgressBar1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.radProgressBar1.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold);
     this.radProgressBar1.ImageIndex = -1;
     this.radProgressBar1.ImageKey = "";
     this.radProgressBar1.ImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.radProgressBar1.Location = new System.Drawing.Point(12, 42);
     this.radProgressBar1.Name = "radProgressBar1";
     this.radProgressBar1.SeparatorColor1 = System.Drawing.Color.White;
     this.radProgressBar1.SeparatorColor2 = System.Drawing.Color.White;
     this.radProgressBar1.SeparatorColor3 = System.Drawing.Color.White;
     this.radProgressBar1.SeparatorColor4 = System.Drawing.Color.White;
     this.radProgressBar1.Size = new System.Drawing.Size(427, 23);
     this.radProgressBar1.TabIndex = 0;
     this.radProgressBar1.UseWaitCursor = true;
     //
     // radLabel1
     //
     this.radLabel1.Font = new System.Drawing.Font("B Nazanin", 9.5F, System.Drawing.FontStyle.Bold);
     this.radLabel1.Location = new System.Drawing.Point(305, 10);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.radLabel1.Size = new System.Drawing.Size(134, 24);
     this.radLabel1.TabIndex = 1;
     this.radLabel1.Text = "در حال دریافت به روز رسانی";
     this.radLabel1.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // btnCancel
     //
     this.btnCancel.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnCancel.Location = new System.Drawing.Point(12, 116);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(95, 34);
     this.btnCancel.TabIndex = 2;
     this.btnCancel.Text = "توقف";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // lblRate
     //
     this.lblRate.Font = new System.Drawing.Font("B Nazanin", 9.5F, System.Drawing.FontStyle.Bold);
     this.lblRate.Location = new System.Drawing.Point(299, 125);
     this.lblRate.Name = "lblRate";
     this.lblRate.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.lblRate.Size = new System.Drawing.Size(67, 20);
     this.lblRate.TabIndex = 21;
     this.lblRate.Text = "0";
     this.lblRate.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("B Nazanin", 9.5F, System.Drawing.FontStyle.Bold);
     this.label3.Location = new System.Drawing.Point(369, 126);
     this.label3.Name = "label3";
     this.label3.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.label3.Size = new System.Drawing.Size(67, 20);
     this.label3.TabIndex = 20;
     this.label3.Text = "نرخ دریافت :";
     //
     // lblBytesRead
     //
     this.lblBytesRead.Font = new System.Drawing.Font("B Nazanin", 9.5F, System.Drawing.FontStyle.Bold);
     this.lblBytesRead.Location = new System.Drawing.Point(233, 78);
     this.lblBytesRead.Name = "lblBytesRead";
     this.lblBytesRead.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.lblBytesRead.Size = new System.Drawing.Size(111, 20);
     this.lblBytesRead.TabIndex = 19;
     this.lblBytesRead.Text = "0";
     this.lblBytesRead.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("B Nazanin", 9.5F, System.Drawing.FontStyle.Bold);
     this.label4.Location = new System.Drawing.Point(343, 77);
     this.label4.Name = "label4";
     this.label4.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.label4.Size = new System.Drawing.Size(96, 20);
     this.label4.TabIndex = 18;
     this.label4.Text = "حجم دریافت شده :";
     //
     // lblContentLength
     //
     this.lblContentLength.Font = new System.Drawing.Font("B Nazanin", 9.5F, System.Drawing.FontStyle.Bold);
     this.lblContentLength.Location = new System.Drawing.Point(212, 100);
     this.lblContentLength.Name = "lblContentLength";
     this.lblContentLength.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.lblContentLength.Size = new System.Drawing.Size(132, 20);
     this.lblContentLength.TabIndex = 17;
     this.lblContentLength.Text = "0";
     this.lblContentLength.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("B Nazanin", 9.5F, System.Drawing.FontStyle.Bold);
     this.label2.Location = new System.Drawing.Point(342, 100);
     this.label2.Name = "label2";
     this.label2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.label2.Size = new System.Drawing.Size(97, 20);
     this.label2.TabIndex = 16;
     this.label2.Text = "حجم به روز رسانی :";
     //
     // FrmDownloadUpdate
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(451, 155);
     this.Controls.Add(this.lblRate);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.lblBytesRead);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.lblContentLength);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.radLabel1);
     this.Controls.Add(this.radProgressBar1);
     this.Font = new System.Drawing.Font("B Nazanin", 9.8F, System.Drawing.FontStyle.Bold);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.Name = "FrmDownloadUpdate";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "در حال دریافت به روزرسانی";
     this.ThemeName = "ControlDefault";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmDownloadUpdate_FormClosed);
     ((System.ComponentModel.ISupportInitialize)(this.radProgressBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).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();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.txtRemarks = new Telerik.WinControls.UI.RadTextBox();
     this.txtBrandName = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.radDesktopAlert1 = new Telerik.WinControls.UI.RadDesktopAlert(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBrandName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.Controls.Add(this.btnCancel);
     this.radGroupBox1.Controls.Add(this.btnAdd);
     this.radGroupBox1.Controls.Add(this.txtRemarks);
     this.radGroupBox1.Controls.Add(this.txtBrandName);
     this.radGroupBox1.Controls.Add(this.radLabel4);
     this.radGroupBox1.Controls.Add(this.radLabel1);
     this.radGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radGroupBox1.HeaderText = "";
     this.radGroupBox1.Location = new System.Drawing.Point(3, 3);
     this.radGroupBox1.Name = "radGroupBox1";
     this.radGroupBox1.Size = new System.Drawing.Size(264, 86);
     this.radGroupBox1.TabIndex = 0;
     this.radGroupBox1.ThemeName = "TelerikMetroBlue";
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnCancel.Location = new System.Drawing.Point(176, 57);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(80, 24);
     this.btnCancel.TabIndex = 5;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnCancel.ThemeName = "TelerikMetroBlue";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnAdd.Location = new System.Drawing.Point(90, 57);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(80, 24);
     this.btnAdd.TabIndex = 4;
     this.btnAdd.Text = "&Add";
     this.btnAdd.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnAdd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnAdd.ThemeName = "TelerikMetroBlue";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // txtRemarks
     //
     this.txtRemarks.Location = new System.Drawing.Point(80, 31);
     this.txtRemarks.Name = "txtRemarks";
     this.txtRemarks.Size = new System.Drawing.Size(176, 20);
     this.txtRemarks.TabIndex = 3;
     this.txtRemarks.ThemeName = "Breeze";
     this.txtRemarks.Enter += new System.EventHandler(this.txtBrandName_Enter);
     this.txtRemarks.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtBrandName_KeyDown);
     //
     // txtBrandName
     //
     this.txtBrandName.Location = new System.Drawing.Point(80, 5);
     this.txtBrandName.Name = "txtBrandName";
     this.txtBrandName.Size = new System.Drawing.Size(176, 20);
     this.txtBrandName.TabIndex = 0;
     this.txtBrandName.ThemeName = "Breeze";
     this.txtBrandName.Enter += new System.EventHandler(this.txtBrandName_Enter);
     this.txtBrandName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtBrandName_KeyDown);
     //
     // radLabel4
     //
     this.radLabel4.Location = new System.Drawing.Point(25, 33);
     this.radLabel4.Name = "radLabel4";
     this.radLabel4.Size = new System.Drawing.Size(49, 18);
     this.radLabel4.TabIndex = 2;
     this.radLabel4.Text = "Remarks";
     //
     // radLabel1
     //
     this.radLabel1.Location = new System.Drawing.Point(8, 5);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.Size = new System.Drawing.Size(66, 18);
     this.radLabel1.TabIndex = 2;
     this.radLabel1.Text = "Brand Name";
     this.radLabel1.ThemeName = "ControlDefault";
     //
     // FrmBrandEntry
     //
     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(270, 92);
     this.Controls.Add(this.radGroupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmBrandEntry";
     this.Padding = new System.Windows.Forms.Padding(3);
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Brand Entry";
     this.ThemeName = "TelerikMetroBlue";
     this.Load += new System.EventHandler(this.FrmBrandEntry_Load);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBrandName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).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();
     this.TxtEfectivo = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel7 = new Telerik.WinControls.UI.RadLabel();
     this.BtnSave = new Telerik.WinControls.UI.RadButton();
     this.radLabel6 = new Telerik.WinControls.UI.RadLabel();
     this.TxtEgreso = new Telerik.WinControls.UI.RadTextBox();
     this.TxtIngreso = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.TxtInicio = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.EpvChofer = new System.Windows.Forms.ErrorProvider(this.components);
     this.radButton1 = new Telerik.WinControls.UI.RadButton();
     this.DtpFechaAlta = new Telerik.WinControls.UI.RadDateTimePicker();
     this.DtpFechaCierre = new Telerik.WinControls.UI.RadDateTimePicker();
     this.TxtEfectivoReal = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
     this.TxtVales = new Telerik.WinControls.UI.RadTextBox();
     this.TxtValesReal = new Telerik.WinControls.UI.RadTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEfectivo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEgreso)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtIngreso)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtInicio)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EpvChofer)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DtpFechaAlta)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DtpFechaCierre)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEfectivoReal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtVales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtValesReal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // TxtEfectivo
     //
     this.TxtEfectivo.Enabled = false;
     this.TxtEfectivo.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtEfectivo.Location = new System.Drawing.Point(233, 237);
     this.TxtEfectivo.Name = "TxtEfectivo";
     this.TxtEfectivo.Size = new System.Drawing.Size(276, 28);
     this.TxtEfectivo.TabIndex = 6;
     this.TxtEfectivo.TabStop = false;
     this.TxtEfectivo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtEfectivo.ThemeName = "TelerikMetro";
     //
     // radLabel7
     //
     this.radLabel7.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel7.Location = new System.Drawing.Point(35, 240);
     this.radLabel7.Name = "radLabel7";
     this.radLabel7.Size = new System.Drawing.Size(100, 25);
     this.radLabel7.TabIndex = 11;
     this.radLabel7.Text = "Efectivo:";
     //
     // BtnSave
     //
     this.BtnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.BtnSave.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnSave.Location = new System.Drawing.Point(248, 407);
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Size = new System.Drawing.Size(130, 36);
     this.BtnSave.TabIndex = 10;
     this.BtnSave.Text = "Guardar";
     this.BtnSave.ThemeName = "TelerikMetro";
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // radLabel6
     //
     this.radLabel6.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel6.Location = new System.Drawing.Point(35, 280);
     this.radLabel6.Name = "radLabel6";
     this.radLabel6.Size = new System.Drawing.Size(70, 25);
     this.radLabel6.TabIndex = 8;
     this.radLabel6.Text = "Vales:";
     //
     // TxtEgreso
     //
     this.TxtEgreso.Enabled = false;
     this.TxtEgreso.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtEgreso.Location = new System.Drawing.Point(233, 198);
     this.TxtEgreso.Name = "TxtEgreso";
     this.TxtEgreso.Size = new System.Drawing.Size(276, 28);
     this.TxtEgreso.TabIndex = 5;
     this.TxtEgreso.TabStop = false;
     this.TxtEgreso.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtEgreso.ThemeName = "TelerikMetro";
     //
     // TxtIngreso
     //
     this.TxtIngreso.Enabled = false;
     this.TxtIngreso.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtIngreso.Location = new System.Drawing.Point(233, 158);
     this.TxtIngreso.Name = "TxtIngreso";
     this.TxtIngreso.Size = new System.Drawing.Size(276, 28);
     this.TxtIngreso.TabIndex = 4;
     this.TxtIngreso.TabStop = false;
     this.TxtIngreso.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtIngreso.ThemeName = "TelerikMetro";
     //
     // radLabel5
     //
     this.radLabel5.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel5.Location = new System.Drawing.Point(35, 198);
     this.radLabel5.Name = "radLabel5";
     this.radLabel5.Size = new System.Drawing.Size(80, 25);
     this.radLabel5.TabIndex = 2;
     this.radLabel5.Text = "Egreso:";
     //
     // radLabel4
     //
     this.radLabel4.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.Location = new System.Drawing.Point(35, 158);
     this.radLabel4.Name = "radLabel4";
     this.radLabel4.Size = new System.Drawing.Size(90, 25);
     this.radLabel4.TabIndex = 2;
     this.radLabel4.Text = "Ingreso:";
     //
     // TxtInicio
     //
     this.TxtInicio.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.TxtInicio.Enabled = false;
     this.TxtInicio.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtInicio.Location = new System.Drawing.Point(233, 118);
     this.TxtInicio.Name = "TxtInicio";
     this.TxtInicio.Size = new System.Drawing.Size(276, 28);
     this.TxtInicio.TabIndex = 3;
     this.TxtInicio.TabStop = false;
     this.TxtInicio.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtInicio.ThemeName = "TelerikMetro";
     //
     // radLabel3
     //
     this.radLabel3.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel3.Location = new System.Drawing.Point(35, 118);
     this.radLabel3.Name = "radLabel3";
     this.radLabel3.Size = new System.Drawing.Size(80, 25);
     this.radLabel3.TabIndex = 2;
     this.radLabel3.Text = "Inicio:";
     //
     // radLabel2
     //
     this.radLabel2.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel2.Location = new System.Drawing.Point(35, 73);
     this.radLabel2.Name = "radLabel2";
     this.radLabel2.Size = new System.Drawing.Size(172, 25);
     this.radLabel2.TabIndex = 2;
     this.radLabel2.Text = "Fecha de cierre:";
     //
     // radLabel1
     //
     this.radLabel1.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel1.Location = new System.Drawing.Point(35, 32);
     this.radLabel1.Name = "radLabel1";
     this.radLabel1.Size = new System.Drawing.Size(192, 25);
     this.radLabel1.TabIndex = 0;
     this.radLabel1.Text = "Fecha de apertura:";
     //
     // EpvChofer
     //
     this.EpvChofer.ContainerControl = this;
     //
     // radButton1
     //
     this.radButton1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.radButton1.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton1.Location = new System.Drawing.Point(384, 407);
     this.radButton1.Name = "radButton1";
     this.radButton1.Size = new System.Drawing.Size(130, 36);
     this.radButton1.TabIndex = 11;
     this.radButton1.Text = "Cancelar";
     this.radButton1.ThemeName = "TelerikMetro";
     //
     // DtpFechaAlta
     //
     this.DtpFechaAlta.Enabled = false;
     this.DtpFechaAlta.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DtpFechaAlta.Format = System.Windows.Forms.DateTimePickerFormat.Long;
     this.DtpFechaAlta.Location = new System.Drawing.Point(233, 32);
     this.DtpFechaAlta.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.DtpFechaAlta.MinDate = new System.DateTime(((long)(0)));
     this.DtpFechaAlta.Name = "DtpFechaAlta";
     this.DtpFechaAlta.NullableValue = new System.DateTime(2016, 1, 4, 15, 14, 25, 541);
     this.DtpFechaAlta.NullDate = new System.DateTime(((long)(0)));
     this.DtpFechaAlta.Size = new System.Drawing.Size(276, 31);
     this.DtpFechaAlta.TabIndex = 13;
     this.DtpFechaAlta.TabStop = false;
     this.DtpFechaAlta.Text = "lunes, 04 de enero de 2016";
     this.DtpFechaAlta.ThemeName = "TelerikMetro";
     this.DtpFechaAlta.Value = new System.DateTime(2016, 1, 4, 15, 14, 25, 541);
     //
     // DtpFechaCierre
     //
     this.DtpFechaCierre.Enabled = false;
     this.DtpFechaCierre.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DtpFechaCierre.Format = System.Windows.Forms.DateTimePickerFormat.Long;
     this.DtpFechaCierre.Location = new System.Drawing.Point(233, 75);
     this.DtpFechaCierre.MaxDate = new System.DateTime(9998, 12, 31, 0, 0, 0, 0);
     this.DtpFechaCierre.MinDate = new System.DateTime(((long)(0)));
     this.DtpFechaCierre.Name = "DtpFechaCierre";
     this.DtpFechaCierre.NullableValue = new System.DateTime(2016, 1, 4, 15, 14, 25, 541);
     this.DtpFechaCierre.NullDate = new System.DateTime(((long)(0)));
     this.DtpFechaCierre.Size = new System.Drawing.Size(276, 31);
     this.DtpFechaCierre.TabIndex = 4;
     this.DtpFechaCierre.TabStop = false;
     this.DtpFechaCierre.Text = "lunes, 04 de enero de 2016";
     this.DtpFechaCierre.ThemeName = "TelerikMetro";
     this.DtpFechaCierre.Value = new System.DateTime(2016, 1, 4, 15, 14, 25, 541);
     //
     // TxtEfectivoReal
     //
     this.TxtEfectivoReal.Enabled = false;
     this.TxtEfectivoReal.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtEfectivoReal.Location = new System.Drawing.Point(233, 322);
     this.TxtEfectivoReal.Name = "TxtEfectivoReal";
     this.TxtEfectivoReal.Size = new System.Drawing.Size(276, 28);
     this.TxtEfectivoReal.TabIndex = 12;
     this.TxtEfectivoReal.TabStop = false;
     this.TxtEfectivoReal.Text = "4";
     this.TxtEfectivoReal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtEfectivoReal.ThemeName = "TelerikMetro";
     //
     // radLabel8
     //
     this.radLabel8.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel8.Location = new System.Drawing.Point(35, 325);
     this.radLabel8.Name = "radLabel8";
     this.radLabel8.Size = new System.Drawing.Size(151, 25);
     this.radLabel8.TabIndex = 15;
     this.radLabel8.Text = "Efectivo Real:";
     //
     // radLabel9
     //
     this.radLabel9.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel9.Location = new System.Drawing.Point(35, 365);
     this.radLabel9.Name = "radLabel9";
     this.radLabel9.Size = new System.Drawing.Size(121, 25);
     this.radLabel9.TabIndex = 13;
     this.radLabel9.Text = "Vales Real:";
     //
     // TxtVales
     //
     this.TxtVales.Enabled = false;
     this.TxtVales.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtVales.Location = new System.Drawing.Point(233, 277);
     this.TxtVales.Name = "TxtVales";
     this.TxtVales.Size = new System.Drawing.Size(276, 28);
     this.TxtVales.TabIndex = 7;
     this.TxtVales.TabStop = false;
     this.TxtVales.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtVales.ThemeName = "TelerikMetro";
     //
     // TxtValesReal
     //
     this.TxtValesReal.Enabled = false;
     this.TxtValesReal.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TxtValesReal.Location = new System.Drawing.Point(233, 362);
     this.TxtValesReal.Name = "TxtValesReal";
     this.TxtValesReal.Size = new System.Drawing.Size(276, 28);
     this.TxtValesReal.TabIndex = 13;
     this.TxtValesReal.TabStop = false;
     this.TxtValesReal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.TxtValesReal.ThemeName = "TelerikMetro";
     //
     // FrmCrearEditarCaja
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(890, 622);
     this.Controls.Add(this.TxtValesReal);
     this.Controls.Add(this.TxtVales);
     this.Controls.Add(this.TxtEfectivoReal);
     this.Controls.Add(this.radLabel8);
     this.Controls.Add(this.DtpFechaCierre);
     this.Controls.Add(this.DtpFechaAlta);
     this.Controls.Add(this.radLabel9);
     this.Controls.Add(this.radButton1);
     this.Controls.Add(this.TxtEfectivo);
     this.Controls.Add(this.radLabel7);
     this.Controls.Add(this.BtnSave);
     this.Controls.Add(this.radLabel6);
     this.Controls.Add(this.TxtEgreso);
     this.Controls.Add(this.TxtIngreso);
     this.Controls.Add(this.radLabel5);
     this.Controls.Add(this.radLabel4);
     this.Controls.Add(this.TxtInicio);
     this.Controls.Add(this.radLabel3);
     this.Controls.Add(this.radLabel2);
     this.Controls.Add(this.radLabel1);
     this.Name = "FrmCrearEditarCaja";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text = "Caja";
     this.Load += new System.EventHandler(this.FrmCrearEditarChofer_Load);
     ((System.ComponentModel.ISupportInitialize)(this.TxtEfectivo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BtnSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEgreso)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtIngreso)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtInicio)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EpvChofer)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DtpFechaAlta)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DtpFechaCierre)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtEfectivoReal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtVales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtValesReal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }