Ejemplo n.º 1
0
        /// <summary>
        /// 设置所属公司类型
        /// </summary>
        private void SetCheckVendorType(DevExpress.XtraEditors.CheckedListBoxControl p_CheckList)
        {
            for (int i = 0; i < p_CheckList.ItemCount; i++)
            {
                p_CheckList.SetItemCheckState(i, CheckState.Unchecked);
            }

            string sql = string.Empty;

            sql = "SELECT VendorTypeID FROM Data_VendorTypeDts WHERE VendorID=" + SysString.ToDBString(txtVendorID.Text);
            DataTable dt = SysUtils.Fill(sql);

            foreach (DataRow dr in dt.Rows)
            {
                for (int i = 0; i < p_CheckList.ItemCount; i++)
                {
                    if (dr["VendorTypeID"].ToString() == p_CheckList.GetItemValue(i).ToString())//
                    {
                        p_CheckList.SetItemCheckState(i, CheckState.Checked);
                    }
                }
            }


            for (int i = 0; i < p_CheckList.ItemCount; i++)
            {
                if (this.FormListAID.ToString() == p_CheckList.GetItemValue(i).ToString())//
                {
                    p_CheckList.SetItemCheckState(i, CheckState.Checked);
                }
            }
        }
Ejemplo n.º 2
0
 /// <summary>
 /// 绑定工位
 /// </summary>
 /// <param name="strInitID">方案主键</param>
 public void BindGWToCheckList(string strInitID)
 {
     foreach (var c in panel8.Controls)
     {
         if (c is DevExpress.XtraEditors.CheckedListBoxControl)
         {
             DevExpress.XtraEditors.CheckedListBoxControl a = (DevExpress.XtraEditors.CheckedListBoxControl)c;
             string    strGX = a.Tag.ToString();
             DataTable dt    = null;
             dt = bll_TPP_INITIALIZE_STA.GetListByFaid(strGX, strInitID).Tables[0];
             string idList = "";
             for (int i = 0; i < dt.Rows.Count; i++)
             {
                 idList = idList + dt.Rows[i]["C_STA_CODE"].ToString();
             }
             for (int i = 0; i < a.Items.Count; i++)
             {
                 if (idList.Contains(a.Items[i].Value.ToString()))
                 {
                     a.Items[i].CheckState = CheckState.Checked;
                 }
                 else
                 {
                     a.Items[i].CheckState = CheckState.Unchecked;
                 }
             }
         }
     }
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.checkedListBoxControl1 = new DevExpress.XtraEditors.CheckedListBoxControl();
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).BeginInit();
     this.SuspendLayout();
     //
     // checkedListBoxControl1
     //
     this.checkedListBoxControl1.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
         new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Red"),
         new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Green", System.Windows.Forms.CheckState.Checked),
         new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Blue")
     });
     this.checkedListBoxControl1.Location  = new System.Drawing.Point(7, 7);
     this.checkedListBoxControl1.Name      = "checkedListBoxControl1";
     this.checkedListBoxControl1.Size      = new System.Drawing.Size(185, 129);
     this.checkedListBoxControl1.TabIndex  = 0;
     this.checkedListBoxControl1.DrawItem += new DevExpress.XtraEditors.ListBoxDrawItemEventHandler(this.checkedListBoxControl1_DrawItem);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(200, 146);
     this.Controls.Add(this.checkedListBoxControl1);
     this.Name = "Form1";
     this.Text = "How to change the color of ListBox items";
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 4
0
        public void Quality(DevExpress.XtraEditors.CheckedListBoxControl chk)
        {
            DataTable dt = clsWeb.LookUpQuality();

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                chk.Items.Add(dt.Rows[i]["cQCode"].ToString(), dt.Rows[i]["cQName"].ToString());
            }
        }
Ejemplo n.º 5
0
        //-------------------------------------------------------------------------------------------------------------
        private void InitOptions(object options, DevExpress.XtraEditors.CheckedListBoxControl checkedListBox)
        {
            ArrayList arr = DevExpress.Utils.SetOptions.GetOptionNames(options);

            for (int i = 0; i < arr.Count; i++)
            {
                checkedListBox.Items.Add(new DevExpress.XtraEditors.Controls.CheckedListBoxItem
                                             (arr[i], DevExpress.Utils.SetOptions.OptionValueByString(arr[i].ToString(), options)));
            }
        }
Ejemplo n.º 6
0
 /// <summary>
 /// 页面加载CheckedListBoxControl信息
 /// </summary>
 /// <param name="dd"></param>
 public void BindCbolstInfo(System.Windows.Forms.Panel.ControlCollection dd)
 {
     foreach (var c in dd)
     {
         if (c is DevExpress.XtraEditors.CheckedListBoxControl)
         {
             DevExpress.XtraEditors.CheckedListBoxControl a = (DevExpress.XtraEditors.CheckedListBoxControl)c;
             BindCbolst(a);
         }
     }
 }
Ejemplo n.º 7
0
        /// <summary>
        /// 加载所有工位信息
        /// </summary>
        /// <param name="cbolst"></param>
        public void BindCbolst(DevExpress.XtraEditors.CheckedListBoxControl cbolst)
        {
            DataTable dt = bllSta.GetListByGXDM(cbolst.Tag.ToString()).Tables[0];

            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cbolst.Items.Add(dt.Rows[i]["C_ID"].ToString(), dt.Rows[i]["C_STA_DESC"].ToString());
                }
            }
        }
Ejemplo n.º 8
0
 /// <summary>
 /// 把CheckedListBoxControl设置为单选框
 /// </summary>
 /// <param name="chkControl">CheckedListBoxControl</param>
 /// <param name="index">index当前选中的索引</param>
 public void SingleSelectCheckedListBoxControls(DevExpress.XtraEditors.CheckedListBoxControl chkControl, int index)
 {
     if (chkControl.CheckedItems.Count > 0)
     {
         for (int i = 0; i < chkControl.Items.Count; i++)
         {
             if (i != index)
             {
                 chkControl.SetItemCheckState(i, System.Windows.Forms.CheckState.Unchecked);
             }
         }
     }
 }
Ejemplo n.º 9
0
 //修改赛选条件
 void View_ModifFilter(object sender, CJia.PIVAS.Views.Label.FilterLabelEventArgs e)
 {
     DevExpress.XtraEditors.CheckedListBoxControl pharmTypes = e.PharmType;
     DevExpress.XtraEditors.CheckedListBoxControl batchs     = e.LabelBatch;
     DevExpress.XtraEditors.CheckedListBoxControl beds       = e.Bed;
     DevExpress.XtraEditors.ListBoxControl        use        = e.UserOrderBy;
     DevExpress.XtraEditors.ListBoxControl        nouse      = e.NoUserOrderBy;
     this.cope(CJia.PIVAS.Tools.LabelFilter.PharmType, pharmTypes);
     this.cope(CJia.PIVAS.Tools.LabelFilter.LabelBacth, batchs);
     this.cope(CJia.PIVAS.Tools.LabelFilter.IllfileBens, beds);
     this.copeList(CJia.PIVAS.Tools.LabelFilter.UseOrderBy, use);
     this.copeList(CJia.PIVAS.Tools.LabelFilter.NoUseOrderBy, nouse);
     //this.View.ShowMessage("保存过滤条件与排序方式成功!");
 }
Ejemplo n.º 10
0
 public LocalizedItem(DevExpress.XtraEditors.CheckedListBoxControl checkedListBox, string[] resourceIds)
 {
     this.resourceIds = new string[resourceIds.Length];
     for (int index = 0; index < resourceIds.Length; index++)
     {
         this.resourceIds[index] = resourceIds[index];
     }
     this.obj           = (object)checkedListBox;
     this.type          = ItemType.CheckedListBox;
     this.defaultValues = new string[resourceIds.Length];
     for (int index = 0; index < resourceIds.Length; index++)
     {
         this.defaultValues[index] = (string)checkedListBox.Items[index].Description;
     }
 }
Ejemplo n.º 11
0
 /// <summary>
 /// 将旧的控件复制到新的控件
 /// </summary>
 /// <param name="oldLBC"></param>
 /// <param name="newLBC"></param>
 private void cope(DevExpress.XtraEditors.CheckedListBoxControl oldLBC, DevExpress.XtraEditors.CheckedListBoxControl newLBC)
 {
     if (oldLBC == null)
     {
         oldLBC = new DevExpress.XtraEditors.CheckedListBoxControl();
     }
     oldLBC.Items.Clear();
     DevExpress.XtraEditors.CheckedListBoxControl newListBoxControl = newLBC as DevExpress.XtraEditors.CheckedListBoxControl;
     if (newListBoxControl != null)
     {
         foreach (DevExpress.XtraEditors.Controls.CheckedListBoxItem item in newListBoxControl.Items)
         {
             oldLBC.Items.Add(item);
         }
     }
 }
Ejemplo n.º 12
0
        /// <summary>
        /// 设置所属公司类型默认值
        /// </summary>
        private void SetCheckVendorTypeDefault(DevExpress.XtraEditors.CheckedListBoxControl p_CheckList)
        {
            for (int i = 0; i < p_CheckList.ItemCount; i++)
            {
                p_CheckList.SetItemCheckState(i, CheckState.Unchecked);
            }


            for (int i = 0; i < p_CheckList.ItemCount; i++)
            {
                if (this.FormListAID.ToString() == p_CheckList.GetItemValue(i).ToString())    //
                {
                    p_CheckList.SetItemCheckState(i, CheckState.Checked);
                }
            }
        }
Ejemplo n.º 13
0
        /// <summary>
        /// 获得公司类型
        /// </summary>
        /// <returns></returns>
        private ArrayList GetEntityDtsVendorType(DevExpress.XtraEditors.CheckedListBoxControl p_CheckList)
        {
            ArrayList al = new ArrayList();

            for (int i = 0; i < p_CheckList.ItemCount; i++)
            {
                if (p_CheckList.GetItemCheckState(i) == CheckState.Checked)
                {
                    VendorTypeDts entity = new VendorTypeDts();
                    entity.VendorID     = txtVendorID.Text.Trim();
                    entity.VendorTypeID = SysConvert.ToInt32(p_CheckList.GetItemValue(i));
                    al.Add(entity);
                }
            }
            return(al);
        }
Ejemplo n.º 14
0
        private Bll_TB_STA bllSta = new Bll_TB_STA();                                         //工位表
        private void btn_save_fagw_Click(object sender, EventArgs e)
        {
            if (DialogResult.No == MessageBox.Show("是否确认保存当前编辑的工位信息?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1))
            {
                return;
            }

            //清楚当前方案已配置的工位信息
            bool clear1 = bll_TPP_INITIALIZE_STA.DeleteByItemID("");
            //清楚当前方案配置的炼钢工序信息
            bool clear2 = bll_INI_LINE.DeleteByFa("");

            foreach (var c in panel1.Controls)
            {
                if (c is DevExpress.XtraEditors.GroupControl)
                {
                    foreach (var d in ((DevExpress.XtraEditors.GroupControl)c).Controls)
                    {
                        if (d is DevExpress.XtraEditors.CheckedListBoxControl)
                        {
                            DevExpress.XtraEditors.CheckedListBoxControl a = (DevExpress.XtraEditors.CheckedListBoxControl)d;
                            string strGX   = a.Tag.ToString();             //工序代码
                            string strGXID = bllPro.GetIDByProCode(strGX); //工序主键
                            for (int i = 0; i < a.Items.Count; i++)
                            {
                                if (a.Items[i].CheckState == CheckState.Checked)
                                {
                                    //添加排产工位信息
                                    Mod_TPP_INITIALIZE_STA mod = new Mod_TPP_INITIALIZE_STA();
                                    mod.C_INITIALIZE_ITEM_ID = "";
                                    mod.C_PRO_ID             = strGXID;
                                    mod.C_PRO_CODE           = strGX;
                                    mod.C_STA_CODE           = a.Items[i].Value.ToString();
                                    mod.C_STA_DESC           = a.Items[i].Description.ToString();
                                    mod.C_STA_ID             = bllSta.GetStaIdByCode(mod.C_STA_CODE);
                                    mod.C_EMP_ID             = RV.UI.UserInfo.userName;
                                    bool res = bll_TPP_INITIALIZE_STA.Add(mod);
                                }
                            }
                        }
                    }
                }
            }
            MessageBox.Show("保存成功!");
        }
Ejemplo n.º 15
0
 /// <summary>
 /// 根据方案主键加载炼钢工序工位信息
 /// </summary>
 /// <param name="strInitID">方案主键</param>
 public void BindLGGWByINI(string strInitID)
 {
     foreach (var c in panel6.Controls)
     {
         if (c is DevExpress.XtraEditors.CheckedListBoxControl)
         {
             DevExpress.XtraEditors.CheckedListBoxControl a = (DevExpress.XtraEditors.CheckedListBoxControl)c;
             string    strGX = a.Tag.ToString();
             DataTable dt    = null;
             dt = bll_TPP_INITIALIZE_STA.GetLGGXGWByIniID(strInitID, strGX);
             a.Items.Clear();
             for (int i = 0; i < dt.Rows.Count; i++)
             {
                 a.Items.Add(dt.Rows[i]["C_STA_ID"].ToString(), dt.Rows[i]["C_STA_DESC"].ToString());
             }
         }
     }
 }
Ejemplo n.º 16
0
        /// <summary>
        /// 设置所属公司类型
        /// </summary>
        private void SetCheckMLLB(DevExpress.XtraEditors.CheckedListBoxControl p_CheckList, string p_CheckValus)
        {
            for (int i = 0; i < p_CheckList.ItemCount; i++)
            {
                p_CheckList.SetItemCheckState(i, CheckState.Unchecked);
            }
            string[] VenodrTypes = p_CheckValus.Split(',');

            foreach (string dr in VenodrTypes)
            {
                for (int i = 0; i < p_CheckList.ItemCount; i++)
                {
                    if (dr == p_CheckList.GetItemValue(i).ToString())//
                    {
                        p_CheckList.SetItemCheckState(i, CheckState.Checked);
                    }
                }
            }
        }
Ejemplo n.º 17
0
        /// <summary>
        /// 设置已选项
        /// </summary>
        /// <param name="p_CheckList"></param>
        private void SetCheckProcedure(DevExpress.XtraEditors.CheckedListBoxControl p_CheckList, DataTable p_Dt)
        {
            for (int i = 0; i < p_CheckList.ItemCount; i++)
            {
                p_CheckList.SetItemCheckState(i, CheckState.Unchecked);
            }

            foreach (DataRow dr in p_Dt.Rows)//遍历记录
            {
                for (int i = 0; i < p_CheckList.ItemCount; i++)
                {
                    if (dr["SaleProcedureID"].ToString() == p_CheckList.GetItemValue(i).ToString())//值相等
                    {
                        p_CheckList.SetItemCheckState(i, CheckState.Checked);
                        break;
                    }
                }
            }
        }
Ejemplo n.º 18
0
        /// <summary>
        /// 获取面料类别
        /// </summary>
        /// <param name="p_CheckList"></param>
        /// <returns></returns>
        private string GetCheckMLLB(DevExpress.XtraEditors.CheckedListBoxControl p_CheckList)
        {
            string MLLB = string.Empty;

            for (int i = 0; i < p_CheckList.ItemCount; i++)
            {
                if (p_CheckList.GetItemCheckState(i) == CheckState.Checked)
                {
                    if (MLLB == string.Empty)
                    {
                        MLLB += p_CheckList.GetItemValue(i).ToString();
                    }
                    else
                    {
                        MLLB += "," + p_CheckList.GetItemValue(i).ToString();
                    }
                }
            }
            return(MLLB);
        }
Ejemplo n.º 19
0
        /// <summary>
        /// 设置已选项
        /// </summary>
        /// <param name="p_CheckList"></param>
        private void SetCheckWOOtherType(DevExpress.XtraEditors.CheckedListBoxControl p_CheckList, string p_IDStr)
        {
            for (int i = 0; i < p_CheckList.ItemCount; i++)
            {
                p_CheckList.SetItemCheckState(i, CheckState.Unchecked);
            }

            string[] idA = p_IDStr.Split(',');
            for (int m = 0; m < idA.Length; m++)//遍历记录
            {
                if (idA[m] != "")
                {
                    for (int i = 0; i < p_CheckList.ItemCount; i++)
                    {
                        if (idA[m] == p_CheckList.GetItemValue(i).ToString())//值相等
                        {
                            p_CheckList.SetItemCheckState(i, CheckState.Checked);
                            break;
                        }
                    }
                }
            }
        }
Ejemplo n.º 20
0
 private void InitCheckListBox()
 {
     _chkList      = new DevExpress.XtraEditors.CheckedListBoxControl();
     _chkList.Dock = DockStyle.Fill;
     grpSearchResult.Controls.Add(_chkList);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmChuongTrinhSearchMultiQL));
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Col_PM_PostMaster = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_ThanhLy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_LoaiLuu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TongTap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_Ke = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_Ngan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_Tang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_PopUp = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TTDinhKem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_NgayNhapKho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_DVDNgayDuyet = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_DVDNgayHoanTat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_DVDNoiDungDuyet = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TrailerPost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_TTHD = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_PM_ThoiLuongChung = new DevExpress.XtraGrid.Columns.GridColumn();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemInNhan = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemInBeatcamTrong = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemInBeatacamNgoai = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItemNangCao = new DevExpress.XtraBars.BarCheckItem();
     this.barCheckItemDonGian = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemThongKe = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemCotHienThi = new DevExpress.XtraBars.BarSubItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.hideContainerLeft = new DevExpress.XtraBars.Docking.AutoHideContainer();
     this.dockPanelAdvance = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel2_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.filterControl1 = new DevExpress.XtraEditors.FilterControl();
     this.dockPanelSimple = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.TrongKho = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
     this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
     this.plLabel21 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel22 = new DevExpress.XtraEditors.LabelControl();
     this.TenTap = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.SoDKCBHD = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel20 = new DevExpress.XtraEditors.LabelControl();
     this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel19 = new DevExpress.XtraEditors.LabelControl();
     this.TimeslotDen = new DevExpress.XtraEditors.TimeEdit();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.TimeslotTu = new DevExpress.XtraEditors.TimeEdit();
     this.SoRunConLaiTu = new DevExpress.XtraEditors.SpinEdit();
     this.SoRunDaDungTu = new DevExpress.XtraEditors.SpinEdit();
     this.SoRunConLaiDen = new DevExpress.XtraEditors.SpinEdit();
     this.SoRunDaDungDen = new DevExpress.XtraEditors.SpinEdit();
     this.TongSoRunDen = new DevExpress.XtraEditors.SpinEdit();
     this.TongSoRunTu = new DevExpress.XtraEditors.SpinEdit();
     this.BQDTTNEndDen = new DevExpress.XtraEditors.DateEdit();
     this.BQDTNNEndDen = new DevExpress.XtraEditors.DateEdit();
     this.BQDTNNEndTu = new DevExpress.XtraEditors.DateEdit();
     this.BQDTTNEndTu = new DevExpress.XtraEditors.DateEdit();
     this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
     this.NamSXDen = new DevExpress.XtraEditors.SpinEdit();
     this.NamSXTu = new DevExpress.XtraEditors.SpinEdit();
     this.plLabel11 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel17 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel16 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel9 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel24 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel10 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel8 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel14 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel13 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
     this.label34 = new DevExpress.XtraEditors.LabelControl();
     this.BanQuyenThuoc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.TenGoc = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel18 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
     this.label10 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel23 = new DevExpress.XtraEditors.LabelControl();
     this.label29 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
     this.label3 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlCT = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
     this.Col_CT_MaCT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NgayAWB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NgayLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NguoiLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NoiDung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DaoDien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DienVien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TomTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DoiTuongKhanGia = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_KHPL = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_KHXK = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TinhTrangBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TuKhoa = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TrongKho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_GhiChu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Photos = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Ranking = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Script = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TrailerGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NamSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Nuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DonViCungCap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DonViSoHuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_KenhHanCheBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_ThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenThuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDIDStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDIDEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDTNNStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDTNNEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenHTV = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_MuaKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_PhatSongChinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_PhatSongLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_PhatSongKhac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TongSoRun = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_SoLanPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_SoRunConLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Release = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlPM = new DevExpress.XtraEditors.GroupControl();
     this.groupControlBM = new DevExpress.XtraEditors.GroupControl();
     this.gridControlBienMuc = new DevExpress.XtraGrid.GridControl();
     this.gridViewBienMuc = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Col_BM_ThanhLy = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_MaBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_TapSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_TenTap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_SoBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_ThongSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_ThoiLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_SoDKCBHD = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_BM_NoiLuuTru = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Col_CT_HangSanXuat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandThongTinChinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandNguonGoc = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandThongTinPhatSong = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.Col_PM_TienDo = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.hideContainerLeft.SuspendLayout();
     this.dockPanelAdvance.SuspendLayout();
     this.dockPanel2_Container.SuspendLayout();
     this.dockPanelSimple.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TrongKho)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenThuoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlCT)).BeginInit();
     this.groupControlCT.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).BeginInit();
     this.groupControlPM.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBM)).BeginInit();
     this.groupControlBM.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlBienMuc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewBienMuc)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(3, 3);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.Size = new System.Drawing.Size(654, 144);
     this.gridControlDetail.TabIndex = 9;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewDetail.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Col_PM_PostMaster,
     this.Col_PM_ThanhLy,
     this.Col_PM_LoaiLuu,
     this.Col_PM_TongTap,
     this.Col_PM_Ke,
     this.Col_PM_Ngan,
     this.Col_PM_Tang,
     this.Col_PM_PopUp,
     this.Col_PM_TTDinhKem,
     this.Col_PM_NgayNhapKho,
     this.Col_PM_DVDNgayDuyet,
     this.Col_PM_DVDNgayHoanTat,
     this.Col_PM_DVDNoiDungDuyet,
     this.Col_PM_TrailerPost,
     this.Col_PM_TTHD,
     this.Col_PM_ThoiLuongChung,
     this.Col_PM_TienDo});
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
     this.gridViewDetail.OptionsView.ColumnAutoWidth = false;
     this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetail.OptionsView.ShowGroupPanel = false;
     this.gridViewDetail.OptionsView.ShowViewCaption = true;
     this.gridViewDetail.ViewCaption = "Post/Master (Cấp 2)";
     //
     // Col_PM_PostMaster
     //
     this.Col_PM_PostMaster.Caption = "Post/Master";
     this.Col_PM_PostMaster.Name = "Col_PM_PostMaster";
     this.Col_PM_PostMaster.OptionsColumn.AllowMove = false;
     this.Col_PM_PostMaster.OptionsColumn.AllowShowHide = false;
     this.Col_PM_PostMaster.Visible = true;
     this.Col_PM_PostMaster.VisibleIndex = 0;
     this.Col_PM_PostMaster.Width = 70;
     //
     // Col_PM_ThanhLy
     //
     this.Col_PM_ThanhLy.Caption = "Thanh lý";
     this.Col_PM_ThanhLy.Name = "Col_PM_ThanhLy";
     this.Col_PM_ThanhLy.Visible = true;
     this.Col_PM_ThanhLy.VisibleIndex = 3;
     this.Col_PM_ThanhLy.Width = 53;
     //
     // Col_PM_LoaiLuu
     //
     this.Col_PM_LoaiLuu.Caption = "Loại lưu trữ";
     this.Col_PM_LoaiLuu.Name = "Col_PM_LoaiLuu";
     this.Col_PM_LoaiLuu.Visible = true;
     this.Col_PM_LoaiLuu.VisibleIndex = 1;
     this.Col_PM_LoaiLuu.Width = 67;
     //
     // Col_PM_TongTap
     //
     this.Col_PM_TongTap.Caption = "Số tập gốc/cắt";
     this.Col_PM_TongTap.Name = "Col_PM_TongTap";
     this.Col_PM_TongTap.Visible = true;
     this.Col_PM_TongTap.VisibleIndex = 2;
     this.Col_PM_TongTap.Width = 82;
     //
     // Col_PM_Ke
     //
     this.Col_PM_Ke.Caption = "Kệ";
     this.Col_PM_Ke.Name = "Col_PM_Ke";
     this.Col_PM_Ke.Visible = true;
     this.Col_PM_Ke.VisibleIndex = 4;
     this.Col_PM_Ke.Width = 24;
     //
     // Col_PM_Ngan
     //
     this.Col_PM_Ngan.Caption = "Ngăn";
     this.Col_PM_Ngan.Name = "Col_PM_Ngan";
     this.Col_PM_Ngan.Visible = true;
     this.Col_PM_Ngan.VisibleIndex = 5;
     this.Col_PM_Ngan.Width = 37;
     //
     // Col_PM_Tang
     //
     this.Col_PM_Tang.Caption = "Tầng";
     this.Col_PM_Tang.Name = "Col_PM_Tang";
     this.Col_PM_Tang.Visible = true;
     this.Col_PM_Tang.VisibleIndex = 6;
     this.Col_PM_Tang.Width = 36;
     //
     // Col_PM_PopUp
     //
     this.Col_PM_PopUp.Caption = "Pop Up";
     this.Col_PM_PopUp.Name = "Col_PM_PopUp";
     this.Col_PM_PopUp.Visible = true;
     this.Col_PM_PopUp.VisibleIndex = 7;
     this.Col_PM_PopUp.Width = 46;
     //
     // Col_PM_TTDinhKem
     //
     this.Col_PM_TTDinhKem.Caption = "TT Đính kèm";
     this.Col_PM_TTDinhKem.Name = "Col_PM_TTDinhKem";
     this.Col_PM_TTDinhKem.Visible = true;
     this.Col_PM_TTDinhKem.VisibleIndex = 8;
     this.Col_PM_TTDinhKem.Width = 71;
     //
     // Col_PM_NgayNhapKho
     //
     this.Col_PM_NgayNhapKho.Caption = "Ngày nhập kho";
     this.Col_PM_NgayNhapKho.Name = "Col_PM_NgayNhapKho";
     this.Col_PM_NgayNhapKho.Visible = true;
     this.Col_PM_NgayNhapKho.VisibleIndex = 9;
     this.Col_PM_NgayNhapKho.Width = 84;
     //
     // Col_PM_DVDNgayDuyet
     //
     this.Col_PM_DVDNgayDuyet.Caption = "DVD ngày duyệt";
     this.Col_PM_DVDNgayDuyet.Name = "Col_PM_DVDNgayDuyet";
     this.Col_PM_DVDNgayDuyet.Visible = true;
     this.Col_PM_DVDNgayDuyet.VisibleIndex = 10;
     this.Col_PM_DVDNgayDuyet.Width = 90;
     //
     // Col_PM_DVDNgayHoanTat
     //
     this.Col_PM_DVDNgayHoanTat.Caption = "DVD Ngày hoàn tất";
     this.Col_PM_DVDNgayHoanTat.Name = "Col_PM_DVDNgayHoanTat";
     this.Col_PM_DVDNgayHoanTat.Visible = true;
     this.Col_PM_DVDNgayHoanTat.VisibleIndex = 11;
     this.Col_PM_DVDNgayHoanTat.Width = 104;
     //
     // Col_PM_DVDNoiDungDuyet
     //
     this.Col_PM_DVDNoiDungDuyet.Caption = "Nội dung duyệt";
     this.Col_PM_DVDNoiDungDuyet.Name = "Col_PM_DVDNoiDungDuyet";
     this.Col_PM_DVDNoiDungDuyet.Visible = true;
     this.Col_PM_DVDNoiDungDuyet.VisibleIndex = 12;
     this.Col_PM_DVDNoiDungDuyet.Width = 85;
     //
     // Col_PM_TrailerPost
     //
     this.Col_PM_TrailerPost.Caption = "Trailer/Post";
     this.Col_PM_TrailerPost.Name = "Col_PM_TrailerPost";
     this.Col_PM_TrailerPost.Visible = true;
     this.Col_PM_TrailerPost.VisibleIndex = 13;
     this.Col_PM_TrailerPost.Width = 67;
     //
     // Col_PM_TTHD
     //
     this.Col_PM_TTHD.Caption = "Thông tin HD";
     this.Col_PM_TTHD.Name = "Col_PM_TTHD";
     this.Col_PM_TTHD.Visible = true;
     this.Col_PM_TTHD.VisibleIndex = 14;
     this.Col_PM_TTHD.Width = 74;
     //
     // Col_PM_ThoiLuongChung
     //
     this.Col_PM_ThoiLuongChung.Caption = "Thời lượng chung";
     this.Col_PM_ThoiLuongChung.Name = "Col_PM_ThoiLuongChung";
     this.Col_PM_ThoiLuongChung.Visible = true;
     this.Col_PM_ThoiLuongChung.VisibleIndex = 15;
     this.Col_PM_ThoiLuongChung.Width = 94;
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barSubItemCotHienThi,
     this.barSubItemInNhan,
     this.barButtonItemInBeatcamTrong,
     this.barButtonItemInBeatacamNgoai,
     this.barCheckItemNangCao,
     this.barCheckItemDonGian,
     this.barButtonItemThongKe});
     this.barManager1.MaxItemId = 43;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemInNhan),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemThongKe, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemCotHienThi, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "&Xem";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem trước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barSubItemInNhan
     //
     this.barSubItemInNhan.Caption = "In n&hãn";
     this.barSubItemInNhan.Id = 36;
     this.barSubItemInNhan.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatcamTrong),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatacamNgoai)});
     this.barSubItemInNhan.Name = "barSubItemInNhan";
     //
     // barButtonItemInBeatcamTrong
     //
     this.barButtonItemInBeatcamTrong.Caption = "In beatcam t&rong";
     this.barButtonItemInBeatcamTrong.Id = 37;
     this.barButtonItemInBeatcamTrong.Name = "barButtonItemInBeatcamTrong";
     this.barButtonItemInBeatcamTrong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatcamTrong_ItemClick);
     //
     // barButtonItemInBeatacamNgoai
     //
     this.barButtonItemInBeatacamNgoai.Caption = "In betacam n&ngoài";
     this.barButtonItemInBeatacamNgoai.Id = 38;
     this.barButtonItemInBeatacamNgoai.Name = "barButtonItemInBeatacamNgoai";
     this.barButtonItemInBeatacamNgoai.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatacamNgoai_ItemClick);
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tìm kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemNangCao),
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemDonGian)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điều &kiện lọc";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barCheckItemFilter.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barCheckItemNangCao
     //
     this.barCheckItemNangCao.Caption = "Tìm kiếm nâng cao";
     this.barCheckItemNangCao.Id = 40;
     this.barCheckItemNangCao.Name = "barCheckItemNangCao";
     //
     // barCheckItemDonGian
     //
     this.barCheckItemDonGian.Caption = "Tìm kiếm đơn giản";
     this.barCheckItemDonGian.Id = 41;
     this.barCheckItemDonGian.Name = "barCheckItemDonGian";
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đóng";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemThongKe
     //
     this.barButtonItemThongKe.Caption = "Thống kê";
     this.barButtonItemThongKe.Id = 42;
     this.barButtonItemThongKe.Name = "barButtonItemThongKe";
     this.barButtonItemThongKe.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemThongKe_ItemClick);
     //
     // barSubItemCotHienThi
     //
     this.barSubItemCotHienThi.Caption = "Chọn cột hiển thị";
     this.barSubItemCotHienThi.Id = 35;
     this.barSubItemCotHienThi.Name = "barSubItemCotHienThi";
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1188, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
     this.barDockControlBottom.Size = new System.Drawing.Size(1188, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1188, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
     //
     // dockManager1
     //
     this.dockManager1.AutoHideContainers.AddRange(new DevExpress.XtraBars.Docking.AutoHideContainer[] {
     this.hideContainerLeft});
     this.dockManager1.DockingOptions.ShowCloseButton = false;
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanelSimple});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // hideContainerLeft
     //
     this.hideContainerLeft.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(245)))), ((int)(((byte)(241)))));
     this.hideContainerLeft.Controls.Add(this.dockPanelAdvance);
     this.hideContainerLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.hideContainerLeft.Location = new System.Drawing.Point(0, 24);
     this.hideContainerLeft.Name = "hideContainerLeft";
     this.hideContainerLeft.Size = new System.Drawing.Size(19, 521);
     //
     // dockPanelAdvance
     //
     this.dockPanelAdvance.Controls.Add(this.dockPanel2_Container);
     this.dockPanelAdvance.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanelAdvance.ID = new System.Guid("b5e2d5e3-e455-4d58-8a09-d4f23b66f872");
     this.dockPanelAdvance.Location = new System.Drawing.Point(0, 0);
     this.dockPanelAdvance.Name = "dockPanelAdvance";
     this.dockPanelAdvance.OriginalSize = new System.Drawing.Size(200, 200);
     this.dockPanelAdvance.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanelAdvance.SavedIndex = 0;
     this.dockPanelAdvance.Size = new System.Drawing.Size(200, 521);
     this.dockPanelAdvance.Text = "Điều kiện tìm kiếm nâng cao";
     this.dockPanelAdvance.Visibility = DevExpress.XtraBars.Docking.DockVisibility.AutoHide;
     //
     // dockPanel2_Container
     //
     this.dockPanel2_Container.Controls.Add(this.filterControl1);
     this.dockPanel2_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel2_Container.Name = "dockPanel2_Container";
     this.dockPanel2_Container.Size = new System.Drawing.Size(194, 493);
     this.dockPanel2_Container.TabIndex = 0;
     //
     // filterControl1
     //
     this.filterControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.filterControl1.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.filterControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.filterControl1.Location = new System.Drawing.Point(0, 0);
     this.filterControl1.Name = "filterControl1";
     this.filterControl1.Size = new System.Drawing.Size(194, 493);
     this.filterControl1.TabIndex = 10;
     this.filterControl1.Text = "filterControl1";
     //
     // dockPanelSimple
     //
     this.dockPanelSimple.Controls.Add(this.dockPanel1_Container);
     this.dockPanelSimple.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
     this.dockPanelSimple.FloatVertical = true;
     this.dockPanelSimple.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
     this.dockPanelSimple.Location = new System.Drawing.Point(19, 24);
     this.dockPanelSimple.Name = "dockPanelSimple";
     this.dockPanelSimple.Options.AllowDockLeft = false;
     this.dockPanelSimple.Options.AllowDockRight = false;
     this.dockPanelSimple.OriginalSize = new System.Drawing.Size(200, 157);
     this.dockPanelSimple.Size = new System.Drawing.Size(1169, 157);
     this.dockPanelSimple.Text = "Điều kiện tìm kiếm cơ bản";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(1163, 129);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.TrongKho);
     this.popupControlContainerFilter.Controls.Add(this.TapSoDen);
     this.popupControlContainerFilter.Controls.Add(this.TapSoTu);
     this.popupControlContainerFilter.Controls.Add(this.plLabel21);
     this.popupControlContainerFilter.Controls.Add(this.plLabel22);
     this.popupControlContainerFilter.Controls.Add(this.TenTap);
     this.popupControlContainerFilter.Controls.Add(this.SoDKCBHD);
     this.popupControlContainerFilter.Controls.Add(this.plLabel20);
     this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
     this.popupControlContainerFilter.Controls.Add(this.plLabel19);
     this.popupControlContainerFilter.Controls.Add(this.TimeslotDen);
     this.popupControlContainerFilter.Controls.Add(this.xtraTabControlDetail);
     this.popupControlContainerFilter.Controls.Add(this.TimeslotTu);
     this.popupControlContainerFilter.Controls.Add(this.SoRunConLaiTu);
     this.popupControlContainerFilter.Controls.Add(this.SoRunDaDungTu);
     this.popupControlContainerFilter.Controls.Add(this.SoRunConLaiDen);
     this.popupControlContainerFilter.Controls.Add(this.SoRunDaDungDen);
     this.popupControlContainerFilter.Controls.Add(this.TongSoRunDen);
     this.popupControlContainerFilter.Controls.Add(this.TongSoRunTu);
     this.popupControlContainerFilter.Controls.Add(this.BQDTTNEndDen);
     this.popupControlContainerFilter.Controls.Add(this.BQDTNNEndDen);
     this.popupControlContainerFilter.Controls.Add(this.BQDTNNEndTu);
     this.popupControlContainerFilter.Controls.Add(this.BQDTTNEndTu);
     this.popupControlContainerFilter.Controls.Add(this.PhongBan);
     this.popupControlContainerFilter.Controls.Add(this.NamSXDen);
     this.popupControlContainerFilter.Controls.Add(this.NamSXTu);
     this.popupControlContainerFilter.Controls.Add(this.plLabel11);
     this.popupControlContainerFilter.Controls.Add(this.plLabel17);
     this.popupControlContainerFilter.Controls.Add(this.plLabel16);
     this.popupControlContainerFilter.Controls.Add(this.plLabel15);
     this.popupControlContainerFilter.Controls.Add(this.plLabel9);
     this.popupControlContainerFilter.Controls.Add(this.plLabel3);
     this.popupControlContainerFilter.Controls.Add(this.plLabel2);
     this.popupControlContainerFilter.Controls.Add(this.plLabel24);
     this.popupControlContainerFilter.Controls.Add(this.plLabel10);
     this.popupControlContainerFilter.Controls.Add(this.plLabel8);
     this.popupControlContainerFilter.Controls.Add(this.plLabel14);
     this.popupControlContainerFilter.Controls.Add(this.plLabel13);
     this.popupControlContainerFilter.Controls.Add(this.plLabel12);
     this.popupControlContainerFilter.Controls.Add(this.plLabel7);
     this.popupControlContainerFilter.Controls.Add(this.label34);
     this.popupControlContainerFilter.Controls.Add(this.BanQuyenThuoc);
     this.popupControlContainerFilter.Controls.Add(this.DonViCungCap);
     this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
     this.popupControlContainerFilter.Controls.Add(this.Category);
     this.popupControlContainerFilter.Controls.Add(this.TenGoc);
     this.popupControlContainerFilter.Controls.Add(this.NoiDung);
     this.popupControlContainerFilter.Controls.Add(this.QuocGia);
     this.popupControlContainerFilter.Controls.Add(this.TietMuc);
     this.popupControlContainerFilter.Controls.Add(this.plLabel18);
     this.popupControlContainerFilter.Controls.Add(this.plLabel5);
     this.popupControlContainerFilter.Controls.Add(this.label10);
     this.popupControlContainerFilter.Controls.Add(this.plLabel1);
     this.popupControlContainerFilter.Controls.Add(this.plLabel23);
     this.popupControlContainerFilter.Controls.Add(this.label29);
     this.popupControlContainerFilter.Controls.Add(this.plLabel6);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.plLabel4);
     this.popupControlContainerFilter.Controls.Add(this.label5);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(1163, 129);
     this.popupControlContainerFilter.TabIndex = 5;
     this.popupControlContainerFilter.Visible = false;
     //
     // TrongKho
     //
     this.TrongKho.CheckOnClick = true;
     this.TrongKho.ColumnWidth = 85;
     this.TrongKho.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "Có"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "Không")});
     this.TrongKho.Location = new System.Drawing.Point(583, 79);
     this.TrongKho.MultiColumn = true;
     this.TrongKho.Name = "TrongKho";
     this.TrongKho.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.TrongKho.Size = new System.Drawing.Size(179, 20);
     this.TrongKho.TabIndex = 248;
     //
     // TapSoDen
     //
     this.TapSoDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoDen.Location = new System.Drawing.Point(687, 106);
     this.TapSoDen.Name = "TapSoDen";
     this.TapSoDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSoDen.Size = new System.Drawing.Size(75, 20);
     this.TapSoDen.TabIndex = 245;
     //
     // TapSoTu
     //
     this.TapSoTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoTu.Location = new System.Drawing.Point(585, 105);
     this.TapSoTu.Name = "TapSoTu";
     this.TapSoTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSoTu.Size = new System.Drawing.Size(67, 20);
     this.TapSoTu.TabIndex = 246;
     //
     // plLabel21
     //
     this.plLabel21.Location = new System.Drawing.Point(657, 109);
     this.plLabel21.Name = "plLabel21";
     this.plLabel21.Size = new System.Drawing.Size(18, 13);
     this.plLabel21.TabIndex = 243;
     this.plLabel21.Text = "đến";
     //
     // plLabel22
     //
     this.plLabel22.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.plLabel22.Appearance.Options.UseFont = true;
     this.plLabel22.Location = new System.Drawing.Point(496, 107);
     this.plLabel22.Name = "plLabel22";
     this.plLabel22.Size = new System.Drawing.Size(53, 13);
     this.plLabel22.TabIndex = 244;
     this.plLabel22.Text = "Tập số từ";
     this.plLabel22.ToolTip = "Tập số (Cấp 3)";
     //
     // TenTap
     //
     this.TenTap._DataSource = null;
     this.TenTap._GetField = null;
     this.TenTap.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TenTap.Location = new System.Drawing.Point(844, 106);
     this.TenTap.Name = "TenTap";
     this.TenTap.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenTap.Size = new System.Drawing.Size(341, 20);
     this.TenTap.TabIndex = 242;
     //
     // SoDKCBHD
     //
     this.SoDKCBHD.DataSource = null;
     this.SoDKCBHD.DisplayField = null;
     this.SoDKCBHD.Location = new System.Drawing.Point(333, 103);
     this.SoDKCBHD.Name = "SoDKCBHD";
     this.SoDKCBHD.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.SoDKCBHD.Size = new System.Drawing.Size(150, 20);
     this.SoDKCBHD.TabIndex = 241;
     this.SoDKCBHD.ValueField = null;
     //
     // plLabel20
     //
     this.plLabel20.Location = new System.Drawing.Point(266, 108);
     this.plLabel20.Name = "plLabel20";
     this.plLabel20.Size = new System.Drawing.Size(59, 13);
     this.plLabel20.TabIndex = 240;
     this.plLabel20.Text = "Số ĐKCB HD";
     this.plLabel20.ToolTip = "Số ĐKCB HD (Cấp 2)";
     //
     // LoaiLuuTru
     //
     this.LoaiLuuTru.DataSource = null;
     this.LoaiLuuTru.DisplayField = null;
     this.LoaiLuuTru.Location = new System.Drawing.Point(75, 105);
     this.LoaiLuuTru.Name = "LoaiLuuTru";
     this.LoaiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LoaiLuuTru.Size = new System.Drawing.Size(185, 20);
     this.LoaiLuuTru.TabIndex = 241;
     this.LoaiLuuTru.ValueField = null;
     //
     // plLabel19
     //
     this.plLabel19.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.plLabel19.Appearance.Options.UseFont = true;
     this.plLabel19.Location = new System.Drawing.Point(4, 108);
     this.plLabel19.Name = "plLabel19";
     this.plLabel19.Size = new System.Drawing.Size(65, 13);
     this.plLabel19.TabIndex = 240;
     this.plLabel19.Text = "Loại lưu trữ";
     this.plLabel19.ToolTip = "Loại lưu trữ (cấp 2)";
     //
     // TimeslotDen
     //
     this.TimeslotDen.EditValue = new System.DateTime(2011, 12, 15, 0, 0, 0, 0);
     this.TimeslotDen.Location = new System.Drawing.Point(174, 79);
     this.TimeslotDen.Name = "TimeslotDen";
     this.TimeslotDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TimeslotDen.Properties.Mask.EditMask = "HH:mm";
     this.TimeslotDen.Size = new System.Drawing.Size(86, 20);
     this.TimeslotDen.TabIndex = 239;
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Location = new System.Drawing.Point(1003, 83);
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(10, 10);
     this.xtraTabControlDetail.TabIndex = 10;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     this.xtraTabControlDetail.Visible = false;
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(3, 0);
     this.xtraTabPageDetail.Text = "Post/Master";
     //
     // TimeslotTu
     //
     this.TimeslotTu.EditValue = new System.DateTime(2011, 12, 15, 0, 0, 0, 0);
     this.TimeslotTu.Location = new System.Drawing.Point(48, 79);
     this.TimeslotTu.MenuManager = this.barManager1;
     this.TimeslotTu.Name = "TimeslotTu";
     this.TimeslotTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TimeslotTu.Properties.Mask.EditMask = "HH:mm";
     this.TimeslotTu.Size = new System.Drawing.Size(78, 20);
     this.TimeslotTu.TabIndex = 239;
     //
     // SoRunConLaiTu
     //
     this.SoRunConLaiTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunConLaiTu.Location = new System.Drawing.Point(844, 55);
     this.SoRunConLaiTu.Name = "SoRunConLaiTu";
     this.SoRunConLaiTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunConLaiTu.Size = new System.Drawing.Size(67, 20);
     this.SoRunConLaiTu.TabIndex = 238;
     //
     // SoRunDaDungTu
     //
     this.SoRunDaDungTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunDaDungTu.Location = new System.Drawing.Point(844, 32);
     this.SoRunDaDungTu.Name = "SoRunDaDungTu";
     this.SoRunDaDungTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunDaDungTu.Size = new System.Drawing.Size(67, 20);
     this.SoRunDaDungTu.TabIndex = 238;
     //
     // SoRunConLaiDen
     //
     this.SoRunConLaiDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SoRunConLaiDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunConLaiDen.Location = new System.Drawing.Point(934, 57);
     this.SoRunConLaiDen.Name = "SoRunConLaiDen";
     this.SoRunConLaiDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunConLaiDen.Size = new System.Drawing.Size(341, 20);
     this.SoRunConLaiDen.TabIndex = 238;
     //
     // SoRunDaDungDen
     //
     this.SoRunDaDungDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SoRunDaDungDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunDaDungDen.Location = new System.Drawing.Point(934, 30);
     this.SoRunDaDungDen.Name = "SoRunDaDungDen";
     this.SoRunDaDungDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunDaDungDen.Size = new System.Drawing.Size(341, 20);
     this.SoRunDaDungDen.TabIndex = 238;
     //
     // TongSoRunDen
     //
     this.TongSoRunDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TongSoRunDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TongSoRunDen.Location = new System.Drawing.Point(934, 7);
     this.TongSoRunDen.Name = "TongSoRunDen";
     this.TongSoRunDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongSoRunDen.Size = new System.Drawing.Size(341, 20);
     this.TongSoRunDen.TabIndex = 238;
     //
     // TongSoRunTu
     //
     this.TongSoRunTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TongSoRunTu.Location = new System.Drawing.Point(843, 8);
     this.TongSoRunTu.Name = "TongSoRunTu";
     this.TongSoRunTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongSoRunTu.Size = new System.Drawing.Size(67, 20);
     this.TongSoRunTu.TabIndex = 238;
     //
     // BQDTTNEndDen
     //
     this.BQDTTNEndDen.EditValue = null;
     this.BQDTTNEndDen.Location = new System.Drawing.Point(687, 31);
     this.BQDTTNEndDen.Name = "BQDTTNEndDen";
     this.BQDTTNEndDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTTNEndDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTTNEndDen.Size = new System.Drawing.Size(75, 20);
     this.BQDTTNEndDen.TabIndex = 237;
     //
     // BQDTNNEndDen
     //
     this.BQDTNNEndDen.EditValue = null;
     this.BQDTNNEndDen.Location = new System.Drawing.Point(687, 53);
     this.BQDTNNEndDen.Name = "BQDTNNEndDen";
     this.BQDTNNEndDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTNNEndDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTNNEndDen.Size = new System.Drawing.Size(75, 20);
     this.BQDTNNEndDen.TabIndex = 237;
     //
     // BQDTNNEndTu
     //
     this.BQDTNNEndTu.EditValue = null;
     this.BQDTNNEndTu.Location = new System.Drawing.Point(583, 53);
     this.BQDTNNEndTu.Name = "BQDTNNEndTu";
     this.BQDTNNEndTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTNNEndTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTNNEndTu.Size = new System.Drawing.Size(74, 20);
     this.BQDTNNEndTu.TabIndex = 237;
     //
     // BQDTTNEndTu
     //
     this.BQDTTNEndTu.EditValue = null;
     this.BQDTTNEndTu.Location = new System.Drawing.Point(583, 30);
     this.BQDTTNEndTu.MenuManager = this.barManager1;
     this.BQDTTNEndTu.Name = "BQDTTNEndTu";
     this.BQDTTNEndTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTTNEndTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTTNEndTu.Size = new System.Drawing.Size(73, 20);
     this.BQDTTNEndTu.TabIndex = 237;
     //
     // PhongBan
     //
     this.PhongBan.Location = new System.Drawing.Point(333, 79);
     this.PhongBan.Name = "PhongBan";
     this.PhongBan.Size = new System.Drawing.Size(150, 20);
     this.PhongBan.TabIndex = 10;
     //
     // NamSXDen
     //
     this.NamSXDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.NamSXDen.Location = new System.Drawing.Point(430, 32);
     this.NamSXDen.Name = "NamSXDen";
     this.NamSXDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSXDen.Size = new System.Drawing.Size(55, 20);
     this.NamSXDen.TabIndex = 234;
     //
     // NamSXTu
     //
     this.NamSXTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.NamSXTu.Location = new System.Drawing.Point(333, 32);
     this.NamSXTu.MenuManager = this.barManager1;
     this.NamSXTu.Name = "NamSXTu";
     this.NamSXTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSXTu.Size = new System.Drawing.Size(69, 20);
     this.NamSXTu.TabIndex = 235;
     //
     // plLabel11
     //
     this.plLabel11.Location = new System.Drawing.Point(663, 57);
     this.plLabel11.Name = "plLabel11";
     this.plLabel11.Size = new System.Drawing.Size(18, 13);
     this.plLabel11.TabIndex = 231;
     this.plLabel11.Text = "đến";
     //
     // plLabel17
     //
     this.plLabel17.Location = new System.Drawing.Point(914, 60);
     this.plLabel17.Name = "plLabel17";
     this.plLabel17.Size = new System.Drawing.Size(18, 13);
     this.plLabel17.TabIndex = 231;
     this.plLabel17.Text = "đến";
     //
     // plLabel16
     //
     this.plLabel16.Location = new System.Drawing.Point(914, 36);
     this.plLabel16.Name = "plLabel16";
     this.plLabel16.Size = new System.Drawing.Size(18, 13);
     this.plLabel16.TabIndex = 231;
     this.plLabel16.Text = "đến";
     //
     // plLabel15
     //
     this.plLabel15.Location = new System.Drawing.Point(914, 11);
     this.plLabel15.Name = "plLabel15";
     this.plLabel15.Size = new System.Drawing.Size(18, 13);
     this.plLabel15.TabIndex = 231;
     this.plLabel15.Text = "đến";
     //
     // plLabel9
     //
     this.plLabel9.Location = new System.Drawing.Point(663, 34);
     this.plLabel9.Name = "plLabel9";
     this.plLabel9.Size = new System.Drawing.Size(18, 13);
     this.plLabel9.TabIndex = 231;
     this.plLabel9.Text = "đến";
     //
     // plLabel3
     //
     this.plLabel3.Location = new System.Drawing.Point(407, 36);
     this.plLabel3.Name = "plLabel3";
     this.plLabel3.Size = new System.Drawing.Size(18, 13);
     this.plLabel3.TabIndex = 231;
     this.plLabel3.Text = "đến";
     //
     // plLabel2
     //
     this.plLabel2.Location = new System.Drawing.Point(267, 35);
     this.plLabel2.Name = "plLabel2";
     this.plLabel2.Size = new System.Drawing.Size(50, 13);
     this.plLabel2.TabIndex = 229;
     this.plLabel2.Text = "Năm SX từ";
     this.plLabel2.ToolTip = "Năm sản xuất chương trình (Câp 1)";
     //
     // plLabel24
     //
     this.plLabel24.Location = new System.Drawing.Point(496, 82);
     this.plLabel24.Name = "plLabel24";
     this.plLabel24.Size = new System.Drawing.Size(48, 13);
     this.plLabel24.TabIndex = 232;
     this.plLabel24.Text = "Trong kho";
     this.plLabel24.ToolTip = "Bản quyền đối với đối tác nước ngoài End (Cấp 1)";
     //
     // plLabel10
     //
     this.plLabel10.Location = new System.Drawing.Point(496, 57);
     this.plLabel10.Name = "plLabel10";
     this.plLabel10.Size = new System.Drawing.Size(79, 13);
     this.plLabel10.TabIndex = 232;
     this.plLabel10.Text = "BQ DTNN End từ";
     this.plLabel10.ToolTip = "Bản quyền đối với đối tác nước ngoài End (Cấp 1)";
     //
     // plLabel8
     //
     this.plLabel8.Location = new System.Drawing.Point(495, 34);
     this.plLabel8.Name = "plLabel8";
     this.plLabel8.Size = new System.Drawing.Size(78, 13);
     this.plLabel8.TabIndex = 232;
     this.plLabel8.Text = "BQ DTTN End từ";
     this.plLabel8.ToolTip = "Bản quyền đối với đối tác trong nước End (Cấp 1)";
     //
     // plLabel14
     //
     this.plLabel14.Location = new System.Drawing.Point(768, 57);
     this.plLabel14.Name = "plLabel14";
     this.plLabel14.Size = new System.Drawing.Size(64, 13);
     this.plLabel14.TabIndex = 232;
     this.plLabel14.Text = "Số run còn lại";
     this.plLabel14.ToolTip = "Số run còn lại (Cấp 1)";
     //
     // plLabel13
     //
     this.plLabel13.Location = new System.Drawing.Point(768, 34);
     this.plLabel13.Name = "plLabel13";
     this.plLabel13.Size = new System.Drawing.Size(73, 13);
     this.plLabel13.TabIndex = 232;
     this.plLabel13.Text = "Số run đã dùng";
     this.plLabel13.ToolTip = "Số run đã dùng (Cấp 1)";
     //
     // plLabel12
     //
     this.plLabel12.Location = new System.Drawing.Point(768, 14);
     this.plLabel12.Name = "plLabel12";
     this.plLabel12.Size = new System.Drawing.Size(57, 13);
     this.plLabel12.TabIndex = 232;
     this.plLabel12.Text = "Tổng số run";
     this.plLabel12.ToolTip = "Tổng số run (Cấp 1)";
     //
     // plLabel7
     //
     this.plLabel7.Location = new System.Drawing.Point(496, 12);
     this.plLabel7.Name = "plLabel7";
     this.plLabel7.Size = new System.Drawing.Size(81, 13);
     this.plLabel7.TabIndex = 232;
     this.plLabel7.Text = "Bản quyền thuộc";
     this.plLabel7.ToolTip = "Bản quyền thuộc (Cấp 1)";
     //
     // label34
     //
     this.label34.Location = new System.Drawing.Point(267, 58);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(60, 13);
     this.label34.TabIndex = 232;
     this.label34.Text = "ĐV cung cấp";
     this.label34.ToolTip = "Đơn vị cung cấp (Cấp 1)";
     //
     // BanQuyenThuoc
     //
     this.BanQuyenThuoc.DataSource = null;
     this.BanQuyenThuoc.DisplayField = null;
     this.BanQuyenThuoc.Location = new System.Drawing.Point(583, 8);
     this.BanQuyenThuoc.Name = "BanQuyenThuoc";
     this.BanQuyenThuoc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenThuoc.Size = new System.Drawing.Size(179, 20);
     this.BanQuyenThuoc.TabIndex = 227;
     this.BanQuyenThuoc.ValueField = null;
     //
     // DonViCungCap
     //
     this.DonViCungCap.DataSource = null;
     this.DonViCungCap.DisplayField = null;
     this.DonViCungCap.Location = new System.Drawing.Point(333, 55);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DonViCungCap.Size = new System.Drawing.Size(150, 20);
     this.DonViCungCap.TabIndex = 227;
     this.DonViCungCap.ValueField = null;
     //
     // ngayNhap
     //
     this.ngayNhap.Caption = "Từ ngày 22/02/2012 đến ngày 29/02/2012";
     this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.FirstFrom = new System.DateTime(2012, 2, 22, 3, 39, 38, 125);
     this.ngayNhap.FirstTo = new System.DateTime(2012, 2, 29, 3, 39, 38, 125);
     this.ngayNhap.FromDate = new System.DateTime(2012, 2, 22, 3, 39, 38, 125);
     this.ngayNhap.Location = new System.Drawing.Point(843, 81);
     this.ngayNhap.Name = "ngayNhap";
     this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.ngayNhap.SecondFrom = new System.DateTime(2012, 2, 22, 3, 39, 38, 125);
     this.ngayNhap.SecondTo = new System.DateTime(2012, 2, 29, 3, 39, 38, 125);
     this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.Size = new System.Drawing.Size(291, 21);
     this.ngayNhap.TabIndex = 226;
     this.ngayNhap.ToDate = new System.DateTime(2012, 2, 29, 3, 39, 38, 125);
     this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
     //
     // Category
     //
     this.Category._DataSource = null;
     this.Category._GetField = null;
     this.Category.Location = new System.Drawing.Point(174, 54);
     this.Category.Name = "Category";
     this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Category.Size = new System.Drawing.Size(87, 20);
     this.Category.TabIndex = 1;
     //
     // TenGoc
     //
     this.TenGoc._DataSource = null;
     this.TenGoc._GetField = null;
     this.TenGoc.Location = new System.Drawing.Point(47, 31);
     this.TenGoc.Name = "TenGoc";
     this.TenGoc.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenGoc.Size = new System.Drawing.Size(214, 20);
     this.TenGoc.TabIndex = 1;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(48, 8);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(213, 20);
     this.NoiDung.TabIndex = 0;
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.Location = new System.Drawing.Point(333, 8);
     this.QuocGia.Name = "QuocGia";
     this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.QuocGia.Size = new System.Drawing.Size(152, 20);
     this.QuocGia.TabIndex = 220;
     this.QuocGia.ValueField = null;
     //
     // TietMuc
     //
     this.TietMuc.DataSource = null;
     this.TietMuc.DisplayField = null;
     this.TietMuc.Location = new System.Drawing.Point(48, 54);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TietMuc.Size = new System.Drawing.Size(78, 20);
     this.TietMuc.TabIndex = 2;
     this.TietMuc.ValueField = null;
     //
     // plLabel18
     //
     this.plLabel18.Location = new System.Drawing.Point(133, 83);
     this.plLabel18.Name = "plLabel18";
     this.plLabel18.Size = new System.Drawing.Size(20, 13);
     this.plLabel18.TabIndex = 213;
     this.plLabel18.Text = "Đến";
     this.plLabel18.ToolTip = "Nước sản xuất";
     //
     // plLabel5
     //
     this.plLabel5.Location = new System.Drawing.Point(128, 57);
     this.plLabel5.Name = "plLabel5";
     this.plLabel5.Size = new System.Drawing.Size(45, 13);
     this.plLabel5.TabIndex = 213;
     this.plLabel5.Text = "Category";
     this.plLabel5.ToolTip = "Category (Cấp 1)";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(267, 12);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(40, 13);
     this.label10.TabIndex = 213;
     this.label10.Text = "Nước SX";
     this.label10.ToolTip = "Nước sản xuất (Cấp 1)";
     //
     // plLabel1
     //
     this.plLabel1.Location = new System.Drawing.Point(266, 83);
     this.plLabel1.Name = "plLabel1";
     this.plLabel1.Size = new System.Drawing.Size(51, 13);
     this.plLabel1.TabIndex = 217;
     this.plLabel1.Text = "Phòng ban";
     this.plLabel1.ToolTip = "Phòng ban (Cấp 1)";
     //
     // plLabel23
     //
     this.plLabel23.Location = new System.Drawing.Point(768, 110);
     this.plLabel23.Name = "plLabel23";
     this.plLabel23.Size = new System.Drawing.Size(37, 13);
     this.plLabel23.TabIndex = 217;
     this.plLabel23.Text = "Tên tập";
     this.plLabel23.ToolTip = "Tên tập (Cấp 3)";
     //
     // label29
     //
     this.label29.Location = new System.Drawing.Point(768, 80);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(52, 13);
     this.label29.TabIndex = 217;
     this.label29.Text = "Ngày nhập";
     this.label29.ToolTip = "Ngày nhập thông tin chương trình  (Cấp 1)";
     //
     // plLabel6
     //
     this.plLabel6.Location = new System.Drawing.Point(4, 34);
     this.plLabel6.Name = "plLabel6";
     this.plLabel6.Size = new System.Drawing.Size(38, 13);
     this.plLabel6.TabIndex = 218;
     this.plLabel6.Text = "Tên gốc";
     this.plLabel6.ToolTip = "Tên chương trình gốc (cấp 1)";
     //
     // label3
     //
     this.label3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.label3.Appearance.Options.UseFont = true;
     this.label3.Location = new System.Drawing.Point(3, 11);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(38, 13);
     this.label3.TabIndex = 218;
     this.label3.Text = "Tên CT";
     this.label3.ToolTip = "Tên chương trình (Cấp 1)";
     //
     // plLabel4
     //
     this.plLabel4.Location = new System.Drawing.Point(3, 83);
     this.plLabel4.Name = "plLabel4";
     this.plLabel4.Size = new System.Drawing.Size(39, 13);
     this.plLabel4.TabIndex = 219;
     this.plLabel4.Text = "Timeslot";
     this.plLabel4.ToolTip = "Timeslot (Cấp 1)";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(2, 57);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 219;
     this.label5.Text = "Tiết mục";
     this.label5.ToolTip = "Tiết mục (Cấp 1)";
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(19, 181);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseFont = true;
     this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseTextOptions = true;
     this.splitContainerControl1.Panel1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.splitContainerControl1.Panel1.Controls.Add(this.groupControlCT);
     this.splitContainerControl1.Panel1.Text = "Chương trình";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.splitContainerControl2);
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1169, 364);
     this.splitContainerControl1.SplitterPosition = 503;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // groupControlCT
     //
     this.groupControlCT.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.groupControlCT.Appearance.Options.UseBorderColor = true;
     this.groupControlCT.Controls.Add(this.gridControlMaster);
     this.groupControlCT.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlCT.Location = new System.Drawing.Point(0, 0);
     this.groupControlCT.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.groupControlCT.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControlCT.Name = "groupControlCT";
     this.groupControlCT.ShowCaption = false;
     this.groupControlCT.Size = new System.Drawing.Size(503, 364);
     this.groupControlCT.TabIndex = 10;
     this.groupControlCT.Text = "groupControl1";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(3, 3);
     this.gridControlMaster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(497, 358);
     this.gridControlMaster.TabIndex = 9;
     this.gridControlMaster.TabStop = false;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch);
     this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Appearance.ViewCaption.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.gridViewMaster.Appearance.ViewCaption.Options.UseBackColor = true;
     this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBandThongTinChinh,
     this.gridBandNguonGoc,
     this.gridBandThongTinPhatSong,
     this.gridBandThongTinBan});
     this.gridViewMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.Col_CT_MaCT,
     this.Col_CT_NgayAWB,
     this.Col_CT_NgayLap,
     this.Col_CT_NguoiLap,
     this.Col_CT_PhongBan,
     this.Col_CT_NoiDung,
     this.Col_CT_TietMuc,
     this.Col_CT_TenGoc,
     this.Col_CT_DaoDien,
     this.Col_CT_DienVien,
     this.Col_CT_KHPL,
     this.Col_CT_DoiTuongKhanGia,
     this.Col_CT_TuKhoa,
     this.Col_CT_KHXK,
     this.Col_CT_TinhTrangBang,
     this.Col_CT_TomTat,
     this.Col_CT_ThanhLy,
     this.Col_CT_GhiChu,
     this.Col_CT_ThongTinBan,
     this.Col_CT_NamSX,
     this.Col_CT_Nuoc,
     this.Col_CT_DonViCungCap,
     this.Col_CT_DonViSoHuu,
     this.Col_CT_KenhHanCheBan,
     this.Col_CT_PhatSongChinh,
     this.Col_CT_TongSoRun,
     this.Col_CT_SoLanPhat,
     this.Col_CT_SoRunConLai,
     this.Col_CT_Release,
     this.Col_CT_Category,
     this.Col_CT_Ranking,
     this.Col_CT_Script,
     this.Col_CT_Photos,
     this.Col_CT_TrailerGoc,
     this.Col_CT_BanQuyenThuoc,
     this.Col_CT_BanQuyenDIDStart,
     this.Col_CT_BanQuyenDIDEnd,
     this.Col_CT_BanQuyenDTNNStart,
     this.Col_CT_BanQuyenDTNNEnd,
     this.Col_CT_BanQuyenHTV,
     this.Col_CT_MuaKem,
     this.Col_CT_PhatSongKhac,
     this.Col_CT_PhatSongLai,
     this.Col_CT_TrongKho,
     this.Col_CT_HangSanXuat});
     this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205);
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupPanelText = "Các chương trình thỏa điều kiện tìm kiếm";
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsSelection.MultiSelect = true;
     this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowGroupPanel = false;
     this.gridViewMaster.OptionsView.ShowViewCaption = true;
     this.gridViewMaster.ViewCaption = "Chương trình (Cấp 1)";
     //
     // Col_CT_MaCT
     //
     this.Col_CT_MaCT.Caption = "Mã chương trình";
     this.Col_CT_MaCT.Name = "Col_CT_MaCT";
     this.Col_CT_MaCT.Visible = true;
     this.Col_CT_MaCT.Width = 90;
     //
     // Col_CT_NgayAWB
     //
     this.Col_CT_NgayAWB.Caption = "Ngày AWB";
     this.Col_CT_NgayAWB.Name = "Col_CT_NgayAWB";
     this.Col_CT_NgayAWB.Visible = true;
     this.Col_CT_NgayAWB.Width = 63;
     //
     // Col_CT_NgayLap
     //
     this.Col_CT_NgayLap.Caption = "Ngày lập";
     this.Col_CT_NgayLap.Name = "Col_CT_NgayLap";
     this.Col_CT_NgayLap.Visible = true;
     this.Col_CT_NgayLap.Width = 54;
     //
     // Col_CT_NguoiLap
     //
     this.Col_CT_NguoiLap.Caption = "Người lập";
     this.Col_CT_NguoiLap.Name = "Col_CT_NguoiLap";
     this.Col_CT_NguoiLap.Visible = true;
     this.Col_CT_NguoiLap.Width = 57;
     //
     // Col_CT_PhongBan
     //
     this.Col_CT_PhongBan.Caption = "Phòng ban";
     this.Col_CT_PhongBan.Name = "Col_CT_PhongBan";
     this.Col_CT_PhongBan.Visible = true;
     this.Col_CT_PhongBan.Width = 63;
     //
     // Col_CT_Category
     //
     this.Col_CT_Category.Caption = "Category";
     this.Col_CT_Category.Name = "Col_CT_Category";
     this.Col_CT_Category.Visible = true;
     this.Col_CT_Category.Width = 57;
     //
     // Col_CT_NoiDung
     //
     this.Col_CT_NoiDung.Caption = "Tên chương trình";
     this.Col_CT_NoiDung.Name = "Col_CT_NoiDung";
     this.Col_CT_NoiDung.Visible = true;
     this.Col_CT_NoiDung.Width = 107;
     //
     // Col_CT_TenGoc
     //
     this.Col_CT_TenGoc.Caption = "Tên gốc";
     this.Col_CT_TenGoc.Name = "Col_CT_TenGoc";
     this.Col_CT_TenGoc.Visible = true;
     this.Col_CT_TenGoc.Width = 50;
     //
     // Col_CT_TietMuc
     //
     this.Col_CT_TietMuc.Caption = "Tiết mục";
     this.Col_CT_TietMuc.Name = "Col_CT_TietMuc";
     this.Col_CT_TietMuc.Visible = true;
     this.Col_CT_TietMuc.Width = 65;
     //
     // Col_CT_DaoDien
     //
     this.Col_CT_DaoDien.Caption = "Đạo diễn";
     this.Col_CT_DaoDien.Name = "Col_CT_DaoDien";
     this.Col_CT_DaoDien.Visible = true;
     this.Col_CT_DaoDien.Width = 55;
     //
     // Col_CT_DienVien
     //
     this.Col_CT_DienVien.Caption = "Diễn viên";
     this.Col_CT_DienVien.Name = "Col_CT_DienVien";
     this.Col_CT_DienVien.Visible = true;
     this.Col_CT_DienVien.Width = 56;
     //
     // Col_CT_TomTat
     //
     this.Col_CT_TomTat.Caption = "Tóm tắt";
     this.Col_CT_TomTat.Name = "Col_CT_TomTat";
     this.Col_CT_TomTat.Visible = true;
     this.Col_CT_TomTat.Width = 49;
     //
     // Col_CT_DoiTuongKhanGia
     //
     this.Col_CT_DoiTuongKhanGia.Caption = "Đối tượng khán giả";
     this.Col_CT_DoiTuongKhanGia.Name = "Col_CT_DoiTuongKhanGia";
     this.Col_CT_DoiTuongKhanGia.Visible = true;
     this.Col_CT_DoiTuongKhanGia.Width = 103;
     //
     // Col_CT_KHPL
     //
     this.Col_CT_KHPL.Caption = "KHPL";
     this.Col_CT_KHPL.Name = "Col_CT_KHPL";
     this.Col_CT_KHPL.ToolTip = "Ký hiệu phân loại";
     this.Col_CT_KHPL.Visible = true;
     this.Col_CT_KHPL.Width = 36;
     //
     // Col_CT_KHXK
     //
     this.Col_CT_KHXK.Caption = "KHXK";
     this.Col_CT_KHXK.Name = "Col_CT_KHXK";
     this.Col_CT_KHXK.ToolTip = "Ký hiệu xếp kho";
     this.Col_CT_KHXK.Visible = true;
     this.Col_CT_KHXK.Width = 37;
     //
     // Col_CT_TinhTrangBang
     //
     this.Col_CT_TinhTrangBang.Caption = "Tình trạng CT";
     this.Col_CT_TinhTrangBang.Name = "Col_CT_TinhTrangBang";
     this.Col_CT_TinhTrangBang.Visible = true;
     this.Col_CT_TinhTrangBang.Width = 77;
     //
     // Col_CT_TuKhoa
     //
     this.Col_CT_TuKhoa.Caption = "Từ khóa";
     this.Col_CT_TuKhoa.Name = "Col_CT_TuKhoa";
     this.Col_CT_TuKhoa.Visible = true;
     this.Col_CT_TuKhoa.Width = 51;
     //
     // Col_CT_ThanhLy
     //
     this.Col_CT_ThanhLy.Caption = "Thanh lý";
     this.Col_CT_ThanhLy.Name = "Col_CT_ThanhLy";
     this.Col_CT_ThanhLy.Visible = true;
     this.Col_CT_ThanhLy.Width = 53;
     //
     // Col_CT_TrongKho
     //
     this.Col_CT_TrongKho.Caption = "Trong kho";
     this.Col_CT_TrongKho.Name = "Col_CT_TrongKho";
     this.Col_CT_TrongKho.Visible = true;
     //
     // Col_CT_GhiChu
     //
     this.Col_CT_GhiChu.Caption = "Ghi chú";
     this.Col_CT_GhiChu.Name = "Col_CT_GhiChu";
     this.Col_CT_GhiChu.Visible = true;
     this.Col_CT_GhiChu.Width = 47;
     //
     // Col_CT_Photos
     //
     this.Col_CT_Photos.Caption = "Photos";
     this.Col_CT_Photos.Name = "Col_CT_Photos";
     this.Col_CT_Photos.Visible = true;
     this.Col_CT_Photos.Width = 45;
     //
     // Col_CT_Ranking
     //
     this.Col_CT_Ranking.Caption = "Ranking";
     this.Col_CT_Ranking.Name = "Col_CT_Ranking";
     this.Col_CT_Ranking.Visible = true;
     this.Col_CT_Ranking.Width = 50;
     //
     // Col_CT_Script
     //
     this.Col_CT_Script.Caption = "Script";
     this.Col_CT_Script.Name = "Col_CT_Script";
     this.Col_CT_Script.Visible = true;
     this.Col_CT_Script.Width = 39;
     //
     // Col_CT_TrailerGoc
     //
     this.Col_CT_TrailerGoc.Caption = "Trailer gốc";
     this.Col_CT_TrailerGoc.Name = "Col_CT_TrailerGoc";
     this.Col_CT_TrailerGoc.Visible = true;
     this.Col_CT_TrailerGoc.Width = 62;
     //
     // Col_CT_NamSX
     //
     this.Col_CT_NamSX.Caption = "Năm SX";
     this.Col_CT_NamSX.Name = "Col_CT_NamSX";
     this.Col_CT_NamSX.Visible = true;
     this.Col_CT_NamSX.Width = 48;
     //
     // Col_CT_Nuoc
     //
     this.Col_CT_Nuoc.Caption = "Nước SX";
     this.Col_CT_Nuoc.Name = "Col_CT_Nuoc";
     this.Col_CT_Nuoc.ToolTip = "Nước sản xuất";
     this.Col_CT_Nuoc.Visible = true;
     this.Col_CT_Nuoc.Width = 52;
     //
     // Col_CT_DonViCungCap
     //
     this.Col_CT_DonViCungCap.Caption = "Đơn vị cung cấp";
     this.Col_CT_DonViCungCap.Name = "Col_CT_DonViCungCap";
     this.Col_CT_DonViCungCap.Visible = true;
     this.Col_CT_DonViCungCap.Width = 89;
     //
     // Col_CT_DonViSoHuu
     //
     this.Col_CT_DonViSoHuu.Caption = "Đơn vị sở hữu";
     this.Col_CT_DonViSoHuu.Name = "Col_CT_DonViSoHuu";
     this.Col_CT_DonViSoHuu.Visible = true;
     this.Col_CT_DonViSoHuu.Width = 79;
     //
     // Col_CT_KenhHanCheBan
     //
     this.Col_CT_KenhHanCheBan.Caption = "Kênh hạn chế bán";
     this.Col_CT_KenhHanCheBan.Name = "Col_CT_KenhHanCheBan";
     this.Col_CT_KenhHanCheBan.Visible = true;
     this.Col_CT_KenhHanCheBan.Width = 98;
     //
     // Col_CT_ThongTinBan
     //
     this.Col_CT_ThongTinBan.Caption = "Thông tin bán";
     this.Col_CT_ThongTinBan.Name = "Col_CT_ThongTinBan";
     this.Col_CT_ThongTinBan.Visible = true;
     this.Col_CT_ThongTinBan.Width = 78;
     //
     // Col_CT_BanQuyenThuoc
     //
     this.Col_CT_BanQuyenThuoc.Caption = "Bản quyền thuộc";
     this.Col_CT_BanQuyenThuoc.Name = "Col_CT_BanQuyenThuoc";
     this.Col_CT_BanQuyenThuoc.Visible = true;
     this.Col_CT_BanQuyenThuoc.Width = 93;
     //
     // Col_CT_BanQuyenDIDStart
     //
     this.Col_CT_BanQuyenDIDStart.Caption = "Bản quyền DTTN Start";
     this.Col_CT_BanQuyenDIDStart.Name = "Col_CT_BanQuyenDIDStart";
     this.Col_CT_BanQuyenDIDStart.ToolTip = "Bản quyền đối tác trong nước Start";
     this.Col_CT_BanQuyenDIDStart.Visible = true;
     this.Col_CT_BanQuyenDIDStart.Width = 119;
     //
     // Col_CT_BanQuyenDIDEnd
     //
     this.Col_CT_BanQuyenDIDEnd.Caption = "Bản quyền DTTN End";
     this.Col_CT_BanQuyenDIDEnd.Name = "Col_CT_BanQuyenDIDEnd";
     this.Col_CT_BanQuyenDIDEnd.ToolTip = "Bản quyền đối tác trong nước End";
     this.Col_CT_BanQuyenDIDEnd.Visible = true;
     this.Col_CT_BanQuyenDIDEnd.Width = 113;
     //
     // Col_CT_BanQuyenDTNNStart
     //
     this.Col_CT_BanQuyenDTNNStart.Caption = "Bản quyền ĐTNN Start";
     this.Col_CT_BanQuyenDTNNStart.Name = "Col_CT_BanQuyenDTNNStart";
     this.Col_CT_BanQuyenDTNNStart.ToolTip = "Bản quyền  đối tác nước ngoài Start";
     this.Col_CT_BanQuyenDTNNStart.Visible = true;
     this.Col_CT_BanQuyenDTNNStart.Width = 121;
     //
     // Col_CT_BanQuyenDTNNEnd
     //
     this.Col_CT_BanQuyenDTNNEnd.Caption = "Bản quyền ĐTNN End";
     this.Col_CT_BanQuyenDTNNEnd.Name = "Col_CT_BanQuyenDTNNEnd";
     this.Col_CT_BanQuyenDTNNEnd.ToolTip = "Bản quyền đối tác nước ngoài End";
     this.Col_CT_BanQuyenDTNNEnd.Visible = true;
     this.Col_CT_BanQuyenDTNNEnd.Width = 115;
     //
     // Col_CT_BanQuyenHTV
     //
     this.Col_CT_BanQuyenHTV.Caption = "Bản quyền HTV";
     this.Col_CT_BanQuyenHTV.Name = "Col_CT_BanQuyenHTV";
     this.Col_CT_BanQuyenHTV.Visible = true;
     this.Col_CT_BanQuyenHTV.Width = 85;
     //
     // Col_CT_MuaKem
     //
     this.Col_CT_MuaKem.Caption = "Mua kèm";
     this.Col_CT_MuaKem.Name = "Col_CT_MuaKem";
     this.Col_CT_MuaKem.Visible = true;
     this.Col_CT_MuaKem.Width = 54;
     //
     // Col_CT_PhatSongChinh
     //
     this.Col_CT_PhatSongChinh.Caption = "Thời gian P/S chính";
     this.Col_CT_PhatSongChinh.Name = "Col_CT_PhatSongChinh";
     this.Col_CT_PhatSongChinh.ToolTip = "Những ngày phát lần đầu tương ứng trên các đài";
     this.Col_CT_PhatSongChinh.Visible = true;
     this.Col_CT_PhatSongChinh.Width = 102;
     //
     // Col_CT_PhatSongLai
     //
     this.Col_CT_PhatSongLai.Caption = "Thời gian P/S lại";
     this.Col_CT_PhatSongLai.Name = "Col_CT_PhatSongLai";
     this.Col_CT_PhatSongLai.ToolTip = "Những ngày phát lần đầu (nhưng phát lại) tương ứng trên các đài";
     this.Col_CT_PhatSongLai.Visible = true;
     this.Col_CT_PhatSongLai.Width = 87;
     //
     // Col_CT_PhatSongKhac
     //
     this.Col_CT_PhatSongKhac.Caption = "Thời gian P/S trên kênh khác";
     this.Col_CT_PhatSongKhac.Name = "Col_CT_PhatSongKhac";
     this.Col_CT_PhatSongKhac.ToolTip = "Thời gian phát sóng trên kênh khác";
     this.Col_CT_PhatSongKhac.Visible = true;
     this.Col_CT_PhatSongKhac.Width = 148;
     //
     // Col_CT_TongSoRun
     //
     this.Col_CT_TongSoRun.Caption = "Tổng số Run";
     this.Col_CT_TongSoRun.Name = "Col_CT_TongSoRun";
     this.Col_CT_TongSoRun.Visible = true;
     this.Col_CT_TongSoRun.Width = 72;
     //
     // Col_CT_SoLanPhat
     //
     this.Col_CT_SoLanPhat.Caption = "Tồng số lần đã phát (đã Run)";
     this.Col_CT_SoLanPhat.Name = "Col_CT_SoLanPhat";
     this.Col_CT_SoLanPhat.Visible = true;
     this.Col_CT_SoLanPhat.Width = 152;
     //
     // Col_CT_SoRunConLai
     //
     this.Col_CT_SoRunConLai.Caption = "Số Run còn lại";
     this.Col_CT_SoRunConLai.Name = "Col_CT_SoRunConLai";
     this.Col_CT_SoRunConLai.Visible = true;
     this.Col_CT_SoRunConLai.Width = 79;
     //
     // Col_CT_Release
     //
     this.Col_CT_Release.Caption = "Release (Số ngày)";
     this.Col_CT_Release.Name = "Col_CT_Release";
     this.Col_CT_Release.Visible = true;
     this.Col_CT_Release.Width = 100;
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Horizontal = false;
     this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.AppearanceCaption.Options.UseTextOptions = true;
     this.splitContainerControl2.Panel1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.splitContainerControl2.Panel1.Controls.Add(this.groupControlPM);
     this.splitContainerControl2.Panel1.Text = "Post/Master";
     this.splitContainerControl2.Panel2.AppearanceCaption.Options.UseTextOptions = true;
     this.splitContainerControl2.Panel2.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.splitContainerControl2.Panel2.Controls.Add(this.groupControlBM);
     this.splitContainerControl2.Panel2.Text = "Biên mục";
     this.splitContainerControl2.Size = new System.Drawing.Size(660, 364);
     this.splitContainerControl2.SplitterPosition = 150;
     this.splitContainerControl2.TabIndex = 10;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlPM
     //
     this.groupControlPM.Appearance.BorderColor = System.Drawing.Color.Navy;
     this.groupControlPM.Appearance.Options.UseBorderColor = true;
     this.groupControlPM.Controls.Add(this.gridControlDetail);
     this.groupControlPM.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlPM.Location = new System.Drawing.Point(0, 0);
     this.groupControlPM.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.groupControlPM.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControlPM.Name = "groupControlPM";
     this.groupControlPM.ShowCaption = false;
     this.groupControlPM.Size = new System.Drawing.Size(660, 150);
     this.groupControlPM.TabIndex = 10;
     this.groupControlPM.Text = "groupControl1";
     //
     // groupControlBM
     //
     this.groupControlBM.Appearance.BorderColor = System.Drawing.Color.Navy;
     this.groupControlBM.Appearance.Options.UseBorderColor = true;
     this.groupControlBM.Controls.Add(this.gridControlBienMuc);
     this.groupControlBM.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlBM.Location = new System.Drawing.Point(0, 0);
     this.groupControlBM.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
     this.groupControlBM.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControlBM.Name = "groupControlBM";
     this.groupControlBM.ShowCaption = false;
     this.groupControlBM.Size = new System.Drawing.Size(660, 208);
     this.groupControlBM.TabIndex = 10;
     this.groupControlBM.Text = "groupControl1";
     //
     // gridControlBienMuc
     //
     this.gridControlBienMuc.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlBienMuc.BackgroundImage")));
     this.gridControlBienMuc.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlBienMuc.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlBienMuc.Location = new System.Drawing.Point(3, 3);
     this.gridControlBienMuc.MainView = this.gridViewBienMuc;
     this.gridControlBienMuc.MenuManager = this.barManager1;
     this.gridControlBienMuc.Name = "gridControlBienMuc";
     this.gridControlBienMuc.Size = new System.Drawing.Size(654, 202);
     this.gridControlBienMuc.TabIndex = 1;
     this.gridControlBienMuc.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewBienMuc});
     //
     // gridViewBienMuc
     //
     this.gridViewBienMuc.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewBienMuc.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewBienMuc.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Col_BM_ThanhLy,
     this.Col_BM_MaBang,
     this.Col_BM_TapSo,
     this.Col_BM_TenTap,
     this.Col_BM_SoBang,
     this.Col_BM_ThongSo,
     this.Col_BM_ThoiLuong,
     this.Col_BM_SoDKCBHD,
     this.Col_BM_NoiLuuTru});
     this.gridViewBienMuc.GridControl = this.gridControlBienMuc;
     this.gridViewBienMuc.IndicatorWidth = 40;
     this.gridViewBienMuc.Name = "gridViewBienMuc";
     this.gridViewBienMuc.OptionsBehavior.Editable = false;
     this.gridViewBienMuc.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewBienMuc.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewBienMuc.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewBienMuc.OptionsPrint.UsePrintStyles = true;
     this.gridViewBienMuc.OptionsView.ColumnAutoWidth = false;
     this.gridViewBienMuc.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewBienMuc.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewBienMuc.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewBienMuc.OptionsView.ShowGroupedColumns = true;
     this.gridViewBienMuc.OptionsView.ShowGroupPanel = false;
     this.gridViewBienMuc.OptionsView.ShowViewCaption = true;
     this.gridViewBienMuc.ViewCaption = "Biên Mục (Cấp 3)";
     //
     // Col_BM_ThanhLy
     //
     this.Col_BM_ThanhLy.Caption = "Thanh lý";
     this.Col_BM_ThanhLy.Name = "Col_BM_ThanhLy";
     this.Col_BM_ThanhLy.Visible = true;
     this.Col_BM_ThanhLy.VisibleIndex = 0;
     this.Col_BM_ThanhLy.Width = 53;
     //
     // Col_BM_MaBang
     //
     this.Col_BM_MaBang.Caption = "Mã băng";
     this.Col_BM_MaBang.Name = "Col_BM_MaBang";
     this.Col_BM_MaBang.Visible = true;
     this.Col_BM_MaBang.VisibleIndex = 1;
     this.Col_BM_MaBang.Width = 53;
     //
     // Col_BM_TapSo
     //
     this.Col_BM_TapSo.Caption = "Tập số";
     this.Col_BM_TapSo.Name = "Col_BM_TapSo";
     this.Col_BM_TapSo.Visible = true;
     this.Col_BM_TapSo.VisibleIndex = 2;
     this.Col_BM_TapSo.Width = 44;
     //
     // Col_BM_TenTap
     //
     this.Col_BM_TenTap.Caption = "Tên tập";
     this.Col_BM_TenTap.Name = "Col_BM_TenTap";
     this.Col_BM_TenTap.Visible = true;
     this.Col_BM_TenTap.VisibleIndex = 3;
     this.Col_BM_TenTap.Width = 49;
     //
     // Col_BM_SoBang
     //
     this.Col_BM_SoBang.Caption = "Số băng";
     this.Col_BM_SoBang.Name = "Col_BM_SoBang";
     this.Col_BM_SoBang.Visible = true;
     this.Col_BM_SoBang.VisibleIndex = 4;
     this.Col_BM_SoBang.Width = 51;
     //
     // Col_BM_ThongSo
     //
     this.Col_BM_ThongSo.Caption = "Thông số";
     this.Col_BM_ThongSo.Name = "Col_BM_ThongSo";
     this.Col_BM_ThongSo.Visible = true;
     this.Col_BM_ThongSo.VisibleIndex = 5;
     this.Col_BM_ThongSo.Width = 56;
     //
     // Col_BM_ThoiLuong
     //
     this.Col_BM_ThoiLuong.Caption = "Thời lượng";
     this.Col_BM_ThoiLuong.Name = "Col_BM_ThoiLuong";
     this.Col_BM_ThoiLuong.Visible = true;
     this.Col_BM_ThoiLuong.VisibleIndex = 6;
     this.Col_BM_ThoiLuong.Width = 62;
     //
     // Col_BM_SoDKCBHD
     //
     this.Col_BM_SoDKCBHD.Caption = "Số ĐKCB HD";
     this.Col_BM_SoDKCBHD.Name = "Col_BM_SoDKCBHD";
     this.Col_BM_SoDKCBHD.Visible = true;
     this.Col_BM_SoDKCBHD.VisibleIndex = 7;
     this.Col_BM_SoDKCBHD.Width = 71;
     //
     // Col_BM_NoiLuuTru
     //
     this.Col_BM_NoiLuuTru.Caption = "Nơi lưu trữ";
     this.Col_BM_NoiLuuTru.Name = "Col_BM_NoiLuuTru";
     this.Col_BM_NoiLuuTru.Visible = true;
     this.Col_BM_NoiLuuTru.VisibleIndex = 8;
     this.Col_BM_NoiLuuTru.Width = 63;
     //
     // Col_CT_HangSanXuat
     //
     this.Col_CT_HangSanXuat.Caption = "Hãng sản xuất";
     this.Col_CT_HangSanXuat.Name = "Col_CT_HangSanXuat";
     this.Col_CT_HangSanXuat.Visible = true;
     //
     // gridBandThongTinChinh
     //
     this.gridBandThongTinChinh.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinChinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinChinh.Caption = "Thông tin chính";
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_MaCT);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NgayAWB);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NgayLap);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NguoiLap);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_PhongBan);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Category);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NoiDung);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TenGoc);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TietMuc);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DaoDien);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DienVien);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TomTat);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DoiTuongKhanGia);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_KHPL);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_KHXK);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TinhTrangBang);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TuKhoa);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_ThanhLy);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TrongKho);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_GhiChu);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Photos);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Ranking);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Script);
     this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TrailerGoc);
     this.gridBandThongTinChinh.Name = "gridBandThongTinChinh";
     this.gridBandThongTinChinh.Width = 1441;
     //
     // gridBandNguonGoc
     //
     this.gridBandNguonGoc.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandNguonGoc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandNguonGoc.Caption = "Nguồn gốc";
     this.gridBandNguonGoc.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2});
     this.gridBandNguonGoc.Name = "gridBandNguonGoc";
     this.gridBandNguonGoc.Width = 1165;
     //
     // gridBand1
     //
     this.gridBand1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand1.Caption = "Thông tin sở hữu";
     this.gridBand1.Columns.Add(this.Col_CT_NamSX);
     this.gridBand1.Columns.Add(this.Col_CT_Nuoc);
     this.gridBand1.Columns.Add(this.Col_CT_DonViCungCap);
     this.gridBand1.Columns.Add(this.Col_CT_DonViSoHuu);
     this.gridBand1.Columns.Add(this.Col_CT_KenhHanCheBan);
     this.gridBand1.Columns.Add(this.Col_CT_HangSanXuat);
     this.gridBand1.Columns.Add(this.Col_CT_ThongTinBan);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 519;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Thời hạn bản quyền";
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenThuoc);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDIDStart);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDIDEnd);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDTNNStart);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDTNNEnd);
     this.gridBand2.Columns.Add(this.Col_CT_BanQuyenHTV);
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.Width = 646;
     //
     // gridBandThongTinPhatSong
     //
     this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinPhatSong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinPhatSong.Caption = "Thông tin phát sóng";
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_MuaKem);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongChinh);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongLai);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongKhac);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_TongSoRun);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_SoLanPhat);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_SoRunConLai);
     this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_Release);
     this.gridBandThongTinPhatSong.Name = "gridBandThongTinPhatSong";
     this.gridBandThongTinPhatSong.Width = 794;
     //
     // gridBandThongTinBan
     //
     this.gridBandThongTinBan.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinBan.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinBan.Caption = "Thông tin bán";
     this.gridBandThongTinBan.Name = "gridBandThongTinBan";
     this.gridBandThongTinBan.OptionsBand.ShowInCustomizationForm = false;
     this.gridBandThongTinBan.Visible = false;
     this.gridBandThongTinBan.Width = 67;
     //
     // Col_PM_TienDo
     //
     this.Col_PM_TienDo.Caption = "Tiến độ hậu kỳ";
     this.Col_PM_TienDo.Name = "Col_PM_TienDo";
     this.Col_PM_TienDo.Visible = true;
     this.Col_PM_TienDo.VisibleIndex = 16;
     //
     // frmChuongTrinhSearchMultiQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1188, 545);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.dockPanelSimple);
     this.Controls.Add(this.hideContainerLeft);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmChuongTrinhSearchMultiQL";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Tra cứu chương trình";
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.hideContainerLeft.ResumeLayout(false);
     this.dockPanelAdvance.ResumeLayout(false);
     this.dockPanel2_Container.ResumeLayout(false);
     this.dockPanelSimple.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TrongKho)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenThuoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlCT)).EndInit();
     this.groupControlCT.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).EndInit();
     this.groupControlPM.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlBM)).EndInit();
     this.groupControlBM.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlBienMuc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewBienMuc)).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(RoleSyndicateFrm));
     this.groupControlUpdate = new DevExpress.XtraEditors.GroupControl();
     this.TxtNote = new System.Windows.Forms.TextBox();
     this.CLSCRole = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.BtnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlSelect = new DevExpress.XtraEditors.GroupControl();
     this.LUEItems = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.BtnRefresh = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlUpdate)).BeginInit();
     this.groupControlUpdate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CLSCRole)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).BeginInit();
     this.groupControlSelect.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControlUpdate
     //
     this.groupControlUpdate.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlUpdate.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlUpdate.Controls.Add(this.TxtNote);
     this.groupControlUpdate.Controls.Add(this.CLSCRole);
     this.groupControlUpdate.Controls.Add(this.BtnUpdate);
     this.groupControlUpdate.Controls.Add(this.labelControl2);
     this.groupControlUpdate.Location = new System.Drawing.Point(9, 75);
     this.groupControlUpdate.Name = "groupControlUpdate";
     this.groupControlUpdate.Size = new System.Drawing.Size(379, 272);
     this.groupControlUpdate.TabIndex = 8;
     this.groupControlUpdate.Text = "تعديل الفرعيات السماحية";
     //
     // TxtNote
     //
     this.TxtNote.BackColor = System.Drawing.SystemColors.ControlLight;
     this.TxtNote.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TxtNote.ForeColor = System.Drawing.Color.Green;
     this.TxtNote.Location = new System.Drawing.Point(5, 24);
     this.TxtNote.Multiline = true;
     this.TxtNote.Name = "TxtNote";
     this.TxtNote.ReadOnly = true;
     this.TxtNote.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.TxtNote.Size = new System.Drawing.Size(140, 207);
     this.TxtNote.TabIndex = 7;
     this.TxtNote.Text = "يمكنك تعديل او حذف فرعيات السماحية المختارة";
     //
     // CLSCRole
     //
     this.CLSCRole.Location = new System.Drawing.Point(151, 24);
     this.CLSCRole.Name = "CLSCRole";
     this.CLSCRole.Size = new System.Drawing.Size(155, 207);
     this.CLSCRole.TabIndex = 4;
     this.CLSCRole.ItemCheck += new DevExpress.XtraEditors.Controls.ItemCheckEventHandler(this.CLSCRole_ItemCheck);
     //
     // BtnUpdate
     //
     this.BtnUpdate.Enabled = false;
     this.BtnUpdate.Location = new System.Drawing.Point(196, 237);
     this.BtnUpdate.Name = "BtnUpdate";
     this.BtnUpdate.Size = new System.Drawing.Size(110, 23);
     this.BtnUpdate.TabIndex = 3;
     this.BtnUpdate.Text = "تعديل";
     this.BtnUpdate.Click += new System.EventHandler(this.BtnUpdate_Click);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(312, 24);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(40, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "الفرعيات";
     //
     // groupControlSelect
     //
     this.groupControlSelect.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlSelect.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlSelect.Controls.Add(this.LUEItems);
     this.groupControlSelect.Controls.Add(this.labelControl1);
     this.groupControlSelect.Location = new System.Drawing.Point(9, 10);
     this.groupControlSelect.Name = "groupControlSelect";
     this.groupControlSelect.Size = new System.Drawing.Size(379, 59);
     this.groupControlSelect.TabIndex = 7;
     this.groupControlSelect.Text = "جميع المستخدمين";
     //
     // LUEItems
     //
     this.LUEItems.Location = new System.Drawing.Point(61, 28);
     this.LUEItems.Name = "LUEItems";
     this.LUEItems.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEItems.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RoleName", "الاسم", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Center)});
     this.LUEItems.Properties.NullText = "";
     this.LUEItems.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUEItems.Size = new System.Drawing.Size(173, 20);
     this.LUEItems.TabIndex = 0;
     this.LUEItems.EditValueChanged += new System.EventHandler(this.LUEItems_EditValueChanged);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(240, 31);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(60, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "اختر سماحية";
     //
     // BtnRefresh
     //
     this.BtnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("BtnRefresh.Image")));
     this.BtnRefresh.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.BtnRefresh.Location = new System.Drawing.Point(395, 57);
     this.BtnRefresh.Name = "BtnRefresh";
     this.BtnRefresh.Size = new System.Drawing.Size(31, 241);
     this.BtnRefresh.TabIndex = 10;
     this.BtnRefresh.Click += new System.EventHandler(this.BtnRefresh_Click);
     //
     // RoleSyndicateFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(435, 355);
     this.Controls.Add(this.BtnRefresh);
     this.Controls.Add(this.groupControlUpdate);
     this.Controls.Add(this.groupControlSelect);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.Name = "RoleSyndicateFrm";
     this.Text = "فرعيات السماحيات";
     this.Load += new System.EventHandler(this.EditorJobFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlUpdate)).EndInit();
     this.groupControlUpdate.ResumeLayout(false);
     this.groupControlUpdate.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CLSCRole)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelect)).EndInit();
     this.groupControlSelect.ResumeLayout(false);
     this.groupControlSelect.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 23
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.checkedListBoxControl1 = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.textEdit6 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.textEdit3 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit4 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.textEdit5 = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // labelControl3
     //
     this.labelControl3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl3.Location = new System.Drawing.Point(175, 186);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(117, 17);
     this.labelControl3.TabIndex = 108;
     this.labelControl3.Text = "初始中心选择方法:";
     //
     // comboBoxEdit1
     //
     this.comboBoxEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxEdit1.EditValue = "随机选取";
     this.comboBoxEdit1.Location = new System.Drawing.Point(298, 186);
     this.comboBoxEdit1.Name = "comboBoxEdit1";
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEdit1.Properties.Items.AddRange(new object[] {
     "随机选取",
     "距离最大",
     "区间平均"});
     this.comboBoxEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.comboBoxEdit1.Size = new System.Drawing.Size(87, 22);
     this.comboBoxEdit1.TabIndex = 107;
     //
     // textEdit1
     //
     this.textEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit1.Location = new System.Drawing.Point(298, 131);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Properties.Mask.EditMask = "-?((\\d+.\\d+)|(\\d+))";
     this.textEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit1.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit1.Size = new System.Drawing.Size(87, 22);
     this.textEdit1.TabIndex = 101;
     //
     // textEdit2
     //
     this.textEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit2.Location = new System.Drawing.Point(298, 158);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Properties.Mask.EditMask = "-?((\\d+.\\d+)|(\\d+))";
     this.textEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit2.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit2.Size = new System.Drawing.Size(87, 22);
     this.textEdit2.TabIndex = 102;
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton3.Location = new System.Drawing.Point(194, 247);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(75, 23);
     this.simpleButton3.TabIndex = 103;
     this.simpleButton3.Text = "确定";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // checkEdit2
     //
     this.checkEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkEdit2.Location = new System.Drawing.Point(173, 159);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "全局已知标准差:";
     this.checkEdit2.Size = new System.Drawing.Size(129, 21);
     this.checkEdit2.TabIndex = 106;
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton4.Location = new System.Drawing.Point(310, 247);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(75, 23);
     this.simpleButton4.TabIndex = 104;
     this.simpleButton4.Text = "取消";
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // checkEdit1
     //
     this.checkEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkEdit1.Location = new System.Drawing.Point(173, 132);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "全局已知均值:";
     this.checkEdit1.Size = new System.Drawing.Size(114, 21);
     this.checkEdit1.TabIndex = 105;
     //
     // checkedListBoxControl1
     //
     this.checkedListBoxControl1.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.checkedListBoxControl1.Location = new System.Drawing.Point(9, 31);
     this.checkedListBoxControl1.Name = "checkedListBoxControl1";
     this.checkedListBoxControl1.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.checkedListBoxControl1.Size = new System.Drawing.Size(157, 239);
     this.checkedListBoxControl1.TabIndex = 98;
     //
     // textEdit6
     //
     this.textEdit6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit6.EditValue = "15";
     this.textEdit6.Location = new System.Drawing.Point(256, 103);
     this.textEdit6.Name = "textEdit6";
     this.textEdit6.Properties.Mask.EditMask = "[1-9]|([1-9][0-9]+)";
     this.textEdit6.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit6.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit6.Size = new System.Drawing.Size(129, 22);
     this.textEdit6.TabIndex = 100;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
     this.labelControl1.Location = new System.Drawing.Point(9, 7);
     this.labelControl1.Margin = new System.Windows.Forms.Padding(0);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(157, 24);
     this.labelControl1.TabIndex = 91;
     this.labelControl1.Text = "选择列";
     //
     // labelControl5
     //
     this.labelControl5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl5.Location = new System.Drawing.Point(175, 105);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(75, 17);
     this.labelControl5.TabIndex = 99;
     this.labelControl5.Text = "最大线程数:";
     //
     // textEdit3
     //
     this.textEdit3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit3.EditValue = "2";
     this.textEdit3.Location = new System.Drawing.Point(256, 17);
     this.textEdit3.Name = "textEdit3";
     this.textEdit3.Properties.Mask.EditMask = "[2-9]|([1-9][0-9]+)";
     this.textEdit3.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit3.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit3.Size = new System.Drawing.Size(129, 22);
     this.textEdit3.TabIndex = 92;
     //
     // textEdit4
     //
     this.textEdit4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit4.Location = new System.Drawing.Point(256, 43);
     this.textEdit4.Name = "textEdit4";
     this.textEdit4.Properties.Mask.EditMask = "[2-9]|([1-9][0-9]+)";
     this.textEdit4.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit4.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit4.Size = new System.Drawing.Size(129, 22);
     this.textEdit4.TabIndex = 93;
     //
     // labelControl6
     //
     this.labelControl6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl6.Location = new System.Drawing.Point(175, 18);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(75, 17);
     this.labelControl6.TabIndex = 94;
     this.labelControl6.Text = "初始聚类数:";
     //
     // labelControl7
     //
     this.labelControl7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl7.Location = new System.Drawing.Point(175, 46);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(75, 17);
     this.labelControl7.TabIndex = 95;
     this.labelControl7.Text = "终止聚类数:";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl8.Location = new System.Drawing.Point(175, 76);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(75, 17);
     this.labelControl8.TabIndex = 96;
     this.labelControl8.Text = "最大迭代数:";
     //
     // textEdit5
     //
     this.textEdit5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEdit5.EditValue = "20";
     this.textEdit5.Location = new System.Drawing.Point(256, 73);
     this.textEdit5.Name = "textEdit5";
     this.textEdit5.Properties.Mask.EditMask = "[2-9]|([1-9][0-9]+)";
     this.textEdit5.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEdit5.Properties.Mask.ShowPlaceHolders = false;
     this.textEdit5.Size = new System.Drawing.Size(129, 22);
     this.textEdit5.TabIndex = 97;
     //
     // KMeansConfigControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelControl3);
     this.Controls.Add(this.comboBoxEdit1);
     this.Controls.Add(this.textEdit1);
     this.Controls.Add(this.textEdit2);
     this.Controls.Add(this.simpleButton3);
     this.Controls.Add(this.checkEdit2);
     this.Controls.Add(this.simpleButton4);
     this.Controls.Add(this.checkEdit1);
     this.Controls.Add(this.checkedListBoxControl1);
     this.Controls.Add(this.textEdit6);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.labelControl5);
     this.Controls.Add(this.textEdit3);
     this.Controls.Add(this.textEdit4);
     this.Controls.Add(this.labelControl6);
     this.Controls.Add(this.labelControl7);
     this.Controls.Add(this.labelControl8);
     this.Controls.Add(this.textEdit5);
     this.MinimumSize = new System.Drawing.Size(396, 279);
     this.Name = "KMeansConfigControl";
     this.Size = new System.Drawing.Size(396, 279);
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).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();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule3 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule4 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MSrvTicketVisitAddDlg));
     this.dataLayoutControlMain = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.lueDamage = new DevExpress.XtraEditors.LookUpEdit();
     this.deDate = new DevExpress.XtraEditors.DateEdit();
     this.lblContactPerson = new DevExpress.XtraEditors.LabelControl();
     this.clbcReason = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.gridControlPart = new DevExpress.XtraGrid.GridControl();
     this.mSrvTicketVisitPartBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsMSrc = new NICSQLTools.Data.dsMSrc();
     this.gridViewPart = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPartId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditPartId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.colQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditn2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colActualPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.deEndDate = new DevExpress.XtraEditors.DateEdit();
     this.deStartDate = new DevExpress.XtraEditors.DateEdit();
     this.tbOpenComment = new DevExpress.XtraEditors.MemoEdit();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.lueTicket = new DevExpress.XtraEditors.LookUpEdit();
     this.lueTechnicianId = new DevExpress.XtraEditors.LookUpEdit();
     this.layoutControlGroupMain = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForAssetplaceId = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tabbedControlGroupDetails = new DevExpress.XtraLayout.TabbedControlGroup();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.splitterItem1 = new DevExpress.XtraLayout.SplitterItem();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.dxValidationProviderMain = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.mSrv_TicketVisitPartTableAdapter = new NICSQLTools.Data.dsMSrcTableAdapters.MSrv_TicketVisitPartTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControlMain)).BeginInit();
     this.dataLayoutControlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueDamage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clbcReason)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mSrvTicketVisitPartBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsMSrc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPart)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditPartId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deEndDate.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deEndDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deStartDate.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deStartDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbOpenComment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueTicket.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueTechnicianId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroupMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForAssetplaceId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroupDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).BeginInit();
     this.SuspendLayout();
     //
     // dataLayoutControlMain
     //
     this.dataLayoutControlMain.Controls.Add(this.lueDamage);
     this.dataLayoutControlMain.Controls.Add(this.deDate);
     this.dataLayoutControlMain.Controls.Add(this.lblContactPerson);
     this.dataLayoutControlMain.Controls.Add(this.clbcReason);
     this.dataLayoutControlMain.Controls.Add(this.gridControlPart);
     this.dataLayoutControlMain.Controls.Add(this.deEndDate);
     this.dataLayoutControlMain.Controls.Add(this.deStartDate);
     this.dataLayoutControlMain.Controls.Add(this.tbOpenComment);
     this.dataLayoutControlMain.Controls.Add(this.btnSave);
     this.dataLayoutControlMain.Controls.Add(this.btnCancel);
     this.dataLayoutControlMain.Controls.Add(this.lueTicket);
     this.dataLayoutControlMain.Controls.Add(this.lueTechnicianId);
     this.dataLayoutControlMain.DataMember = "TblAssets";
     this.dataLayoutControlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataLayoutControlMain.Location = new System.Drawing.Point(0, 0);
     this.dataLayoutControlMain.Name = "dataLayoutControlMain";
     this.dataLayoutControlMain.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(1171, 152, 330, 622);
     this.dataLayoutControlMain.OptionsView.RightToLeftMirroringApplied = true;
     this.dataLayoutControlMain.Root = this.layoutControlGroupMain;
     this.dataLayoutControlMain.Size = new System.Drawing.Size(622, 545);
     this.dataLayoutControlMain.TabIndex = 0;
     this.dataLayoutControlMain.Text = "dataLayoutControl1";
     //
     // lueDamage
     //
     this.lueDamage.Location = new System.Drawing.Point(87, 239);
     this.lueDamage.Name = "lueDamage";
     this.lueDamage.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDamage.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("msrv_dmg_reason_name", "name", 130, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueDamage.Properties.NullText = "";
     this.lueDamage.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDamage.Size = new System.Drawing.Size(523, 20);
     this.lueDamage.StyleController = this.dataLayoutControlMain;
     this.lueDamage.TabIndex = 12;
     //
     // deDate
     //
     this.deDate.EditValue = null;
     this.deDate.Location = new System.Drawing.Point(99, 179);
     this.deDate.Name = "deDate";
     this.deDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deDate.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deDate.Properties.DisplayFormat.FormatString = "yyyy-MM-dd";
     this.deDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.deDate.Properties.EditFormat.FormatString = "yyyy-MM-dd";
     this.deDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.deDate.Properties.Mask.EditMask = "yyyy-MM-dd";
     this.deDate.Size = new System.Drawing.Size(499, 20);
     this.deDate.StyleController = this.dataLayoutControlMain;
     this.deDate.TabIndex = 11;
     this.deDate.EditValueChanged += new System.EventHandler(this.deDate_EditValueChanged);
     //
     // lblContactPerson
     //
     this.lblContactPerson.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.lblContactPerson.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.lblContactPerson.Location = new System.Drawing.Point(24, 68);
     this.lblContactPerson.Name = "lblContactPerson";
     this.lblContactPerson.Size = new System.Drawing.Size(9, 13);
     this.lblContactPerson.StyleController = this.dataLayoutControlMain;
     this.lblContactPerson.TabIndex = 10;
     this.lblContactPerson.Text = "...";
     //
     // clbcReason
     //
     this.clbcReason.HorizontalScrollbar = true;
     this.clbcReason.Location = new System.Drawing.Point(24, 366);
     this.clbcReason.Name = "clbcReason";
     this.clbcReason.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.clbcReason.Size = new System.Drawing.Size(574, 128);
     this.clbcReason.SortOrder = System.Windows.Forms.SortOrder.Ascending;
     this.clbcReason.StyleController = this.dataLayoutControlMain;
     this.clbcReason.TabIndex = 1;
     //
     // gridControlPart
     //
     this.gridControlPart.DataSource = this.mSrvTicketVisitPartBindingSource;
     this.gridControlPart.Location = new System.Drawing.Point(24, 366);
     this.gridControlPart.MainView = this.gridViewPart;
     this.gridControlPart.Name = "gridControlPart";
     this.gridControlPart.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCalcEditn2,
     this.repositoryItemLookUpEditPartId});
     this.gridControlPart.Size = new System.Drawing.Size(574, 128);
     this.gridControlPart.TabIndex = 7;
     this.gridControlPart.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewPart});
     //
     // mSrvTicketVisitPartBindingSource
     //
     this.mSrvTicketVisitPartBindingSource.DataMember = "MSrv_TicketVisitPart";
     this.mSrvTicketVisitPartBindingSource.DataSource = this.dsMSrc;
     //
     // dsMSrc
     //
     this.dsMSrc.DataSetName = "dsMSrc";
     this.dsMSrc.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewPart
     //
     this.gridViewPart.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colPartId,
     this.colQuantity,
     this.colActualPrice});
     this.gridViewPart.GridControl = this.gridControlPart;
     this.gridViewPart.Name = "gridViewPart";
     this.gridViewPart.NewItemRowText = "Click here to add new part";
     this.gridViewPart.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewPart.OptionsView.ShowDetailButtons = false;
     this.gridViewPart.OptionsView.ShowFooter = true;
     this.gridViewPart.OptionsView.ShowGroupPanel = false;
     this.gridViewPart.OptionsView.ShowIndicator = false;
     this.gridViewPart.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gridViewPart_InitNewRow);
     //
     // colPartId
     //
     this.colPartId.Caption = "Part Type";
     this.colPartId.ColumnEdit = this.repositoryItemLookUpEditPartId;
     this.colPartId.FieldName = "PartId";
     this.colPartId.Name = "colPartId";
     this.colPartId.Visible = true;
     this.colPartId.VisibleIndex = 0;
     this.colPartId.Width = 333;
     //
     // repositoryItemLookUpEditPartId
     //
     this.repositoryItemLookUpEditPartId.AutoHeight = false;
     this.repositoryItemLookUpEditPartId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditPartId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PartName", "Part Name", 60, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PartPrice", "Part Price", 56, DevExpress.Utils.FormatType.Numeric, "", true, DevExpress.Utils.HorzAlignment.Far)});
     this.repositoryItemLookUpEditPartId.Name = "repositoryItemLookUpEditPartId";
     this.repositoryItemLookUpEditPartId.NullText = "";
     this.repositoryItemLookUpEditPartId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditPartId.EditValueChanged += new System.EventHandler(this.repositoryItemLookUpEditPartId_EditValueChanged);
     //
     // colQuantity
     //
     this.colQuantity.Caption = "Quantity";
     this.colQuantity.ColumnEdit = this.repositoryItemCalcEditn2;
     this.colQuantity.FieldName = "Quantity";
     this.colQuantity.Name = "colQuantity";
     this.colQuantity.Visible = true;
     this.colQuantity.VisibleIndex = 1;
     //
     // repositoryItemCalcEditn2
     //
     this.repositoryItemCalcEditn2.AutoHeight = false;
     this.repositoryItemCalcEditn2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditn2.DisplayFormat.FormatString = "n2";
     this.repositoryItemCalcEditn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn2.EditFormat.FormatString = "n2";
     this.repositoryItemCalcEditn2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn2.Mask.EditMask = "n2";
     this.repositoryItemCalcEditn2.Name = "repositoryItemCalcEditn2";
     //
     // colActualPrice
     //
     this.colActualPrice.Caption = "Price";
     this.colActualPrice.ColumnEdit = this.repositoryItemCalcEditn2;
     this.colActualPrice.FieldName = "ActualPrice";
     this.colActualPrice.Name = "colActualPrice";
     this.colActualPrice.Visible = true;
     this.colActualPrice.VisibleIndex = 2;
     this.colActualPrice.Width = 162;
     //
     // deEndDate
     //
     this.deEndDate.EditValue = null;
     this.deEndDate.Location = new System.Drawing.Point(387, 203);
     this.deEndDate.Name = "deEndDate";
     this.deEndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deEndDate.Properties.CalendarDateEditing = false;
     this.deEndDate.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deEndDate.Properties.DisplayFormat.FormatString = "t";
     this.deEndDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.deEndDate.Properties.EditFormat.FormatString = "t";
     this.deEndDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.deEndDate.Properties.Mask.EditMask = "t";
     this.deEndDate.Size = new System.Drawing.Size(211, 20);
     this.deEndDate.StyleController = this.dataLayoutControlMain;
     this.deEndDate.TabIndex = 4;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.deEndDate, conditionValidationRule1);
     //
     // deStartDate
     //
     this.deStartDate.EditValue = null;
     this.deStartDate.Location = new System.Drawing.Point(99, 203);
     this.deStartDate.Name = "deStartDate";
     this.deStartDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deStartDate.Properties.CalendarDateEditing = false;
     this.deStartDate.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deStartDate.Properties.DisplayFormat.FormatString = "t";
     this.deStartDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.deStartDate.Properties.EditFormat.FormatString = "t";
     this.deStartDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.deStartDate.Properties.Mask.EditMask = "t";
     this.deStartDate.Size = new System.Drawing.Size(209, 20);
     this.deStartDate.StyleController = this.dataLayoutControlMain;
     this.deStartDate.TabIndex = 3;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.deStartDate, conditionValidationRule2);
     //
     // tbOpenComment
     //
     this.tbOpenComment.Location = new System.Drawing.Point(87, 263);
     this.tbOpenComment.Name = "tbOpenComment";
     this.tbOpenComment.Properties.MaxLength = 255;
     this.tbOpenComment.Size = new System.Drawing.Size(523, 60);
     this.tbOpenComment.StyleController = this.dataLayoutControlMain;
     this.tbOpenComment.TabIndex = 5;
     //
     // btnSave
     //
     this.btnSave.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.Image = global::NICSQLTools.Properties.Resources.apply_16x16;
     this.btnSave.Location = new System.Drawing.Point(12, 510);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(411, 23);
     this.btnSave.StyleController = this.dataLayoutControlMain;
     this.btnSave.TabIndex = 8;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.btnCancel.Appearance.Options.UseFont = true;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Image = global::NICSQLTools.Properties.Resources.cancel_16x16;
     this.btnCancel.Location = new System.Drawing.Point(427, 510);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(183, 23);
     this.btnCancel.StyleController = this.dataLayoutControlMain;
     this.btnCancel.TabIndex = 9;
     this.btnCancel.Text = "Cancel";
     //
     // lueTicket
     //
     this.lueTicket.EnterMoveNextControl = true;
     this.lueTicket.Location = new System.Drawing.Point(24, 42);
     this.lueTicket.Name = "lueTicket";
     this.lueTicket.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.lueTicket.Properties.Appearance.Options.UseFont = true;
     this.lueTicket.Properties.Appearance.Options.UseTextOptions = true;
     this.lueTicket.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.lueTicket.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.lueTicket.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueTicket.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TicketId", "Ticket Id", 72, DevExpress.Utils.FormatType.Numeric, "", true, DevExpress.Utils.HorzAlignment.Far),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("CustomerId", "Customer Id", 80, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IssueContactPerson", "Customer Name"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EquipmentSerial", "Equipment Serial", 107, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Route", "Route", 43, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("OpenDate", "Open Date", 70, DevExpress.Utils.FormatType.DateTime, "yyyy-MM-dd HH:mm", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueTicket.Properties.DropDownRows = 10;
     this.lueTicket.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.lueTicket.Properties.NullText = "";
     this.lueTicket.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueTicket.Size = new System.Drawing.Size(574, 22);
     this.lueTicket.StyleController = this.dataLayoutControlMain;
     this.lueTicket.TabIndex = 0;
     conditionValidationRule3.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule3.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.lueTicket, conditionValidationRule3);
     this.lueTicket.EditValueChanged += new System.EventHandler(this.lueTicket_EditValueChanged);
     //
     // lueTechnicianId
     //
     this.lueTechnicianId.EnterMoveNextControl = true;
     this.lueTechnicianId.Location = new System.Drawing.Point(87, 123);
     this.lueTechnicianId.Name = "lueTechnicianId";
     this.lueTechnicianId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.lueTechnicianId.Properties.Appearance.Options.UseFont = true;
     this.lueTechnicianId.Properties.Appearance.Options.UseTextOptions = true;
     this.lueTechnicianId.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.lueTechnicianId.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.lueTechnicianId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueTechnicianId.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TechnicianId", "Technician Id", 99, DevExpress.Utils.FormatType.Numeric, "", true, DevExpress.Utils.HorzAlignment.Far),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TechnicianName", "Technician Name", 108, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TechnicianCompany", "Technician Company", 128, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueTechnicianId.Properties.DropDownRows = 10;
     this.lueTechnicianId.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.lueTechnicianId.Properties.NullText = "";
     this.lueTechnicianId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueTechnicianId.Size = new System.Drawing.Size(523, 22);
     this.lueTechnicianId.StyleController = this.dataLayoutControlMain;
     this.lueTechnicianId.TabIndex = 2;
     conditionValidationRule4.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule4.ErrorText = "This value is not valid";
     this.dxValidationProviderMain.SetValidationRule(this.lueTechnicianId, conditionValidationRule4);
     //
     // layoutControlGroupMain
     //
     this.layoutControlGroupMain.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroupMain.GroupBordersVisible = false;
     this.layoutControlGroupMain.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForAssetplaceId,
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem9,
     this.tabbedControlGroupDetails,
     this.layoutControlGroup2,
     this.emptySpaceItem1,
     this.splitterItem1,
     this.layoutControlGroup4,
     this.layoutControlItem11});
     this.layoutControlGroupMain.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroupMain.Name = "Root";
     this.layoutControlGroupMain.Size = new System.Drawing.Size(622, 545);
     this.layoutControlGroupMain.TextVisible = false;
     //
     // ItemForAssetplaceId
     //
     this.ItemForAssetplaceId.Control = this.lueTechnicianId;
     this.ItemForAssetplaceId.Location = new System.Drawing.Point(0, 111);
     this.ItemForAssetplaceId.Name = "ItemForAssetplaceId";
     this.ItemForAssetplaceId.Size = new System.Drawing.Size(602, 26);
     this.ItemForAssetplaceId.Text = "Technician";
     this.ItemForAssetplaceId.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.btnCancel;
     this.layoutControlItem1.Location = new System.Drawing.Point(415, 498);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(187, 27);
     this.layoutControlItem1.Text = "Cancel";
     this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnSave;
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 498);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(415, 27);
     this.layoutControlItem2.Text = "Save";
     this.layoutControlItem2.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem9.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.layoutControlItem9.Control = this.tbOpenComment;
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 251);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(602, 64);
     this.layoutControlItem9.Text = "Comment";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(72, 13);
     //
     // tabbedControlGroupDetails
     //
     this.tabbedControlGroupDetails.Location = new System.Drawing.Point(0, 320);
     this.tabbedControlGroupDetails.Name = "tabbedControlGroupDetails";
     this.tabbedControlGroupDetails.SelectedTabPage = this.layoutControlGroup3;
     this.tabbedControlGroupDetails.SelectedTabPageIndex = 0;
     this.tabbedControlGroupDetails.Size = new System.Drawing.Size(602, 178);
     this.tabbedControlGroupDetails.TabPages.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup3,
     this.layoutControlGroup1});
     this.tabbedControlGroupDetails.Text = "Details";
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem4});
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Size = new System.Drawing.Size(578, 132);
     this.layoutControlGroup3.Text = "Resolution";
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.clbcReason;
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(578, 132);
     this.layoutControlItem4.Text = "Reasons List";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextVisible = false;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem3});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Size = new System.Drawing.Size(578, 132);
     this.layoutControlGroup1.Text = "Parts Usage";
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.gridControlPart;
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(578, 132);
     this.layoutControlItem3.Text = "Parts";
     this.layoutControlItem3.TextLocation = DevExpress.Utils.Locations.Top;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem5,
     this.layoutControlItem7});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(602, 85);
     this.layoutControlGroup2.Text = "Select Ticket";
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.lueTicket;
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(578, 26);
     this.layoutControlItem5.Text = "Select Ticket";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem7.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.layoutControlItem7.AppearanceItemCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.layoutControlItem7.Control = this.lblContactPerson;
     this.layoutControlItem7.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(578, 17);
     this.layoutControlItem7.Text = "Ticket Info";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 85);
     this.emptySpaceItem1.MaxSize = new System.Drawing.Size(0, 26);
     this.emptySpaceItem1.MinSize = new System.Drawing.Size(10, 26);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(602, 26);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // splitterItem1
     //
     this.splitterItem1.AllowHotTrack = true;
     this.splitterItem1.Location = new System.Drawing.Point(0, 315);
     this.splitterItem1.Name = "splitterItem1";
     this.splitterItem1.Size = new System.Drawing.Size(602, 5);
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem10,
     this.layoutControlItem6,
     this.layoutControlItem8});
     this.layoutControlGroup4.Location = new System.Drawing.Point(0, 137);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Size = new System.Drawing.Size(602, 90);
     this.layoutControlGroup4.Text = "Date of visit";
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.deDate;
     this.layoutControlItem10.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(578, 24);
     this.layoutControlItem10.Text = "Date of visit";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.deStartDate;
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(288, 24);
     this.layoutControlItem6.Text = "From time";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.deEndDate;
     this.layoutControlItem8.Location = new System.Drawing.Point(288, 24);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(290, 24);
     this.layoutControlItem8.Text = "To time";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.lueDamage;
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 227);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(602, 24);
     this.layoutControlItem11.Text = "Damage Found";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(72, 13);
     //
     // mSrv_TicketVisitPartTableAdapter
     //
     this.mSrv_TicketVisitPartTableAdapter.ClearBeforeFill = true;
     //
     // MSrvTicketVisitAddDlg
     //
     this.AcceptButton = this.btnSave;
     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(622, 545);
     this.Controls.Add(this.dataLayoutControlMain);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "MSrvTicketVisitAddDlg";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Editor";
     this.Load += new System.EventHandler(this.Dlg_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControlMain)).EndInit();
     this.dataLayoutControlMain.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lueDamage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clbcReason)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPart)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mSrvTicketVisitPartBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsMSrc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPart)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditPartId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deEndDate.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deEndDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deStartDate.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deStartDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbOpenComment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueTicket.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueTechnicianId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroupMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForAssetplaceId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroupDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDefinirSLead));
     this.toolStripBarraLlamada = new System.Windows.Forms.ToolStrip();
     this.MenuNuevo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuSalir = new System.Windows.Forms.ToolStripButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.cmbTipoCompetencia = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtCompetencia = new DevExpress.XtraEditors.TextEdit();
     this.label9999 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl36 = new DevExpress.XtraEditors.LabelControl();
     this.lstIncoterms = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.lstTerminosCompra = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.DateRevision = new DevExpress.XtraEditors.DateEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.gridCompetencia = new DevExpress.XtraGrid.GridControl();
     this.gridViewCompetencia = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColTipoCompetencia = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColCompetidor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.sButtonEliminar = new DevExpress.XtraEditors.SimpleButton();
     this.sBAgregar = new DevExpress.XtraEditors.SimpleButton();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.txtconsigEmail = new DevExpress.XtraEditors.TextEdit();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.txtConsigNombre = new DevExpress.XtraEditors.TextEdit();
     this.txtConsigContacto = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.txtConsigDireccion = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.txtConsigTelefono = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.txtConsigCiudad = new DevExpress.XtraEditors.TextEdit();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.txtShipEmail = new DevExpress.XtraEditors.TextEdit();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.txtShipNombre = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.txtShipWeb = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtShipContacto = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtShipDireccion = new DevExpress.XtraEditors.TextEdit();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.txtShipTelefono = new DevExpress.XtraEditors.TextEdit();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.txtShipZipCode = new DevExpress.XtraEditors.TextEdit();
     this.txtShipPais = new DevExpress.XtraEditors.TextEdit();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.txtShipCiudad = new DevExpress.XtraEditors.TextEdit();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.cboagente = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.txtContacto = new DevExpress.XtraEditors.TextEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.DateApertura = new DevExpress.XtraEditors.DateEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.textSLeadReferencia = new DevExpress.XtraEditors.TextEdit();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.ButtonEnviar = new DevExpress.XtraEditors.SimpleButton();
     this.gridAsignaciones = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColVendedor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.txtCommodity = new DevExpress.XtraEditors.TextEdit();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl35 = new DevExpress.XtraEditors.LabelControl();
     this.lstTipoContenedor = new DevExpress.XtraEditors.ComboBoxEdit();
     this.snNumEmbMes = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.txtCarrier = new DevExpress.XtraEditors.TextEdit();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.txtPod = new DevExpress.XtraEditors.TextEdit();
     this.cboVendedores = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.cboUMAereo = new DevExpress.XtraEditors.ComboBox();
     this.cboUMFCL = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cboUMLCL = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.txtCantidadLCL = new DevExpress.XtraEditors.TextEdit();
     this.txtCantidadFCL = new DevExpress.XtraEditors.TextEdit();
     this.txtCantidadAereo = new DevExpress.XtraEditors.TextEdit();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.DateUltimoEmbarque = new DevExpress.XtraEditors.DateEdit();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.txtpol = new DevExpress.XtraEditors.TextEdit();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.lstProductos = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.BtnAsignar = new DevExpress.XtraEditors.SimpleButton();
     this.ctrldxError = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
     this.toolStripBarraLlamada.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTipoCompetencia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompetencia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIncoterms)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstTerminosCompra)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRevision.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRevision.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCompetencia)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCompetencia)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtconsigEmail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigNombre.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigContacto.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigDireccion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigTelefono.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigCiudad.Properties)).BeginInit();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipEmail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipNombre.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipWeb.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipContacto.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipDireccion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipTelefono.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipZipCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipPais.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipCiudad.Properties)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboagente.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContacto.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateApertura.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateApertura.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textSLeadReferencia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridAsignaciones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCommodity.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstTipoContenedor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.snNumEmbMes.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCarrier.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboVendedores.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboUMAereo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboUMFCL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboUMLCL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCantidadLCL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCantidadFCL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCantidadAereo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateUltimoEmbarque.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateUltimoEmbarque.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtpol.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstProductos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).BeginInit();
     this.SuspendLayout();
     //
     // toolStripBarraLlamada
     //
     this.toolStripBarraLlamada.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.MenuNuevo,
     this.toolStripSeparator1,
     this.MenuSalir});
     this.toolStripBarraLlamada.Location = new System.Drawing.Point(0, 0);
     this.toolStripBarraLlamada.Name = "toolStripBarraLlamada";
     this.toolStripBarraLlamada.Size = new System.Drawing.Size(1000, 38);
     this.toolStripBarraLlamada.TabIndex = 6;
     this.toolStripBarraLlamada.Text = "toolStrip1";
     //
     // MenuNuevo
     //
     this.MenuNuevo.Image = ((System.Drawing.Image)(resources.GetObject("MenuNuevo.Image")));
     this.MenuNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuNuevo.Name = "MenuNuevo";
     this.MenuNuevo.Size = new System.Drawing.Size(45, 35);
     this.MenuNuevo.Text = "Nueva";
     this.MenuNuevo.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.MenuNuevo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuNuevo.ToolTipText = "Nueva Llamada";
     this.MenuNuevo.Click += new System.EventHandler(this.MenuNuevoClick);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 38);
     //
     // MenuSalir
     //
     this.MenuSalir.Image = ((System.Drawing.Image)(resources.GetObject("MenuSalir.Image")));
     this.MenuSalir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuSalir.Name = "MenuSalir";
     this.MenuSalir.Size = new System.Drawing.Size(33, 35);
     this.MenuSalir.Text = "Salir";
     this.MenuSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuSalir.Click += new System.EventHandler(this.MenuSalirClick);
     //
     // groupControl1
     //
     this.groupControl1.Appearance.ForeColor = System.Drawing.Color.Black;
     this.groupControl1.Appearance.Options.UseForeColor = true;
     this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl1.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
     this.groupControl1.AppearanceCaption.Options.UseFont = true;
     this.groupControl1.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl1.Controls.Add(this.cmbTipoCompetencia);
     this.groupControl1.Controls.Add(this.txtCompetencia);
     this.groupControl1.Controls.Add(this.label9999);
     this.groupControl1.Controls.Add(this.labelControl36);
     this.groupControl1.Controls.Add(this.lstIncoterms);
     this.groupControl1.Controls.Add(this.labelControl34);
     this.groupControl1.Controls.Add(this.lstTerminosCompra);
     this.groupControl1.Controls.Add(this.labelControl26);
     this.groupControl1.Controls.Add(this.DateRevision);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.gridCompetencia);
     this.groupControl1.Controls.Add(this.sButtonEliminar);
     this.groupControl1.Controls.Add(this.sBAgregar);
     this.groupControl1.Controls.Add(this.groupBox4);
     this.groupControl1.Controls.Add(this.groupBox3);
     this.groupControl1.Controls.Add(this.groupBox2);
     this.groupControl1.Controls.Add(this.labelControl12);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.DateApertura);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.textSLeadReferencia);
     this.groupControl1.Location = new System.Drawing.Point(4, 44);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(617, 596);
     this.groupControl1.TabIndex = 35;
     this.groupControl1.Text = "Datos Sales Lead";
     this.groupControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl1_Paint);
     //
     // cmbTipoCompetencia
     //
     this.cmbTipoCompetencia.Location = new System.Drawing.Point(131, 462);
     this.cmbTipoCompetencia.Name = "cmbTipoCompetencia";
     this.cmbTipoCompetencia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbTipoCompetencia.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbTipoCompetencia.Size = new System.Drawing.Size(102, 20);
     this.cmbTipoCompetencia.TabIndex = 107;
     //
     // txtCompetencia
     //
     this.txtCompetencia.Location = new System.Drawing.Point(131, 488);
     this.txtCompetencia.Name = "txtCompetencia";
     this.txtCompetencia.Size = new System.Drawing.Size(139, 20);
     this.txtCompetencia.TabIndex = 75;
     //
     // label9999
     //
     this.label9999.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.label9999.Location = new System.Drawing.Point(21, 489);
     this.label9999.Name = "label9999";
     this.label9999.Size = new System.Drawing.Size(66, 13);
     this.label9999.TabIndex = 95;
     this.label9999.Text = "Competencia:";
     //
     // labelControl36
     //
     this.labelControl36.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl36.Location = new System.Drawing.Point(21, 465);
     this.labelControl36.Name = "labelControl36";
     this.labelControl36.Size = new System.Drawing.Size(104, 13);
     this.labelControl36.TabIndex = 75;
     this.labelControl36.Text = "Tipo de Competencia:";
     //
     // lstIncoterms
     //
     this.lstIncoterms.CheckOnClick = true;
     this.lstIncoterms.HorizontalScrollbar = true;
     this.lstIncoterms.HorzScrollStep = 10;
     this.lstIncoterms.Location = new System.Drawing.Point(359, 521);
     this.lstIncoterms.Name = "lstIncoterms";
     this.lstIncoterms.Size = new System.Drawing.Size(210, 62);
     this.lstIncoterms.TabIndex = 94;
     //
     // labelControl34
     //
     this.labelControl34.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl34.Location = new System.Drawing.Point(295, 521);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(56, 13);
     this.labelControl34.TabIndex = 93;
     this.labelControl34.Text = "Incorterms:";
     //
     // lstTerminosCompra
     //
     this.lstTerminosCompra.CheckOnClick = true;
     this.lstTerminosCompra.HorizontalScrollbar = true;
     this.lstTerminosCompra.HorzScrollStep = 10;
     this.lstTerminosCompra.Location = new System.Drawing.Point(129, 521);
     this.lstTerminosCompra.Name = "lstTerminosCompra";
     this.lstTerminosCompra.Size = new System.Drawing.Size(145, 62);
     this.lstTerminosCompra.TabIndex = 88;
     //
     // labelControl26
     //
     this.labelControl26.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl26.Location = new System.Drawing.Point(204, 26);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(82, 13);
     this.labelControl26.TabIndex = 87;
     this.labelControl26.Text = "Fecha Follow Up:";
     //
     // DateRevision
     //
     this.DateRevision.EditValue = null;
     this.DateRevision.Location = new System.Drawing.Point(296, 23);
     this.DateRevision.Name = "DateRevision";
     this.DateRevision.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateRevision.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateRevision.Size = new System.Drawing.Size(102, 20);
     this.DateRevision.TabIndex = 2;
     //
     // labelControl2
     //
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl2.Location = new System.Drawing.Point(21, 521);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(102, 13);
     this.labelControl2.TabIndex = 68;
     this.labelControl2.Text = "Terminos de Compra:";
     //
     // gridCompetencia
     //
     this.gridCompetencia.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.gridCompetencia.Location = new System.Drawing.Point(356, 440);
     this.gridCompetencia.MainView = this.gridViewCompetencia;
     this.gridCompetencia.Name = "gridCompetencia";
     this.gridCompetencia.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemSpinEdit1,
     this.repositoryItemLookUpEdit1,
     this.repositoryItemCheckEdit1});
     this.gridCompetencia.Size = new System.Drawing.Size(203, 67);
     this.gridCompetencia.TabIndex = 70;
     this.gridCompetencia.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewCompetencia});
     //
     // gridViewCompetencia
     //
     this.gridViewCompetencia.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColTipoCompetencia,
     this.gridColCompetidor});
     this.gridViewCompetencia.GridControl = this.gridCompetencia;
     this.gridViewCompetencia.Name = "gridViewCompetencia";
     this.gridViewCompetencia.NewItemRowText = "Click aqui para agregar nueva fila";
     this.gridViewCompetencia.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewCompetencia.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewCompetencia.OptionsBehavior.Editable = false;
     this.gridViewCompetencia.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewCompetencia.OptionsView.ShowGroupPanel = false;
     this.gridViewCompetencia.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.Default;
     //
     // gridColTipoCompetencia
     //
     this.gridColTipoCompetencia.Caption = "Tipo";
     this.gridColTipoCompetencia.FieldName = "TipoCompetencia.Nombre";
     this.gridColTipoCompetencia.Name = "gridColTipoCompetencia";
     this.gridColTipoCompetencia.Tag = "TipoCompetencia.Nombre";
     this.gridColTipoCompetencia.Visible = true;
     this.gridColTipoCompetencia.VisibleIndex = 0;
     //
     // gridColCompetidor
     //
     this.gridColCompetidor.Caption = "Competencia";
     this.gridColCompetidor.FieldName = "Descripcion";
     this.gridColCompetidor.Name = "gridColCompetidor";
     this.gridColCompetidor.Visible = true;
     this.gridColCompetidor.VisibleIndex = 1;
     this.gridColCompetidor.Width = 58;
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // sButtonEliminar
     //
     this.sButtonEliminar.AutoSizeInLayoutControl = true;
     this.sButtonEliminar.Image = ((System.Drawing.Image)(resources.GetObject("sButtonEliminar.Image")));
     this.sButtonEliminar.Location = new System.Drawing.Point(323, 484);
     this.sButtonEliminar.Name = "sButtonEliminar";
     this.sButtonEliminar.Size = new System.Drawing.Size(26, 24);
     this.sButtonEliminar.TabIndex = 71;
     this.sButtonEliminar.Click += new System.EventHandler(this.SButtonEliminarClick);
     //
     // sBAgregar
     //
     this.sBAgregar.Image = ((System.Drawing.Image)(resources.GetObject("sBAgregar.Image")));
     this.sBAgregar.Location = new System.Drawing.Point(323, 458);
     this.sBAgregar.Name = "sBAgregar";
     this.sBAgregar.Size = new System.Drawing.Size(27, 24);
     this.sBAgregar.TabIndex = 69;
     this.sBAgregar.Click += new System.EventHandler(this.SBAgregarClick);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.txtconsigEmail);
     this.groupBox4.Controls.Add(this.labelControl33);
     this.groupBox4.Controls.Add(this.labelControl27);
     this.groupBox4.Controls.Add(this.txtConsigNombre);
     this.groupBox4.Controls.Add(this.txtConsigContacto);
     this.groupBox4.Controls.Add(this.labelControl4);
     this.groupBox4.Controls.Add(this.txtConsigDireccion);
     this.groupBox4.Controls.Add(this.labelControl5);
     this.groupBox4.Controls.Add(this.txtConsigTelefono);
     this.groupBox4.Controls.Add(this.labelControl9);
     this.groupBox4.Controls.Add(this.labelControl18);
     this.groupBox4.Controls.Add(this.txtConsigCiudad);
     this.groupBox4.Location = new System.Drawing.Point(8, 313);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(604, 117);
     this.groupBox4.TabIndex = 68;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Consignatario";
     //
     // txtconsigEmail
     //
     this.txtconsigEmail.Location = new System.Drawing.Point(388, 61);
     this.txtconsigEmail.Name = "txtconsigEmail";
     this.txtconsigEmail.Size = new System.Drawing.Size(210, 20);
     this.txtconsigEmail.TabIndex = 73;
     //
     // labelControl33
     //
     this.labelControl33.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl33.Location = new System.Drawing.Point(332, 64);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(28, 13);
     this.labelControl33.TabIndex = 74;
     this.labelControl33.Text = "eMail:";
     //
     // labelControl27
     //
     this.labelControl27.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl27.Location = new System.Drawing.Point(9, 19);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(41, 13);
     this.labelControl27.TabIndex = 72;
     this.labelControl27.Text = "Nombre:";
     //
     // txtConsigNombre
     //
     this.txtConsigNombre.Location = new System.Drawing.Point(84, 13);
     this.txtConsigNombre.Name = "txtConsigNombre";
     this.txtConsigNombre.Size = new System.Drawing.Size(381, 20);
     this.txtConsigNombre.TabIndex = 13;
     //
     // txtConsigContacto
     //
     this.txtConsigContacto.Location = new System.Drawing.Point(377, 91);
     this.txtConsigContacto.Name = "txtConsigContacto";
     this.txtConsigContacto.Size = new System.Drawing.Size(221, 20);
     this.txtConsigContacto.TabIndex = 17;
     //
     // labelControl4
     //
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl4.Location = new System.Drawing.Point(323, 94);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(48, 13);
     this.labelControl4.TabIndex = 66;
     this.labelControl4.Text = "Contacto:";
     //
     // txtConsigDireccion
     //
     this.txtConsigDireccion.Location = new System.Drawing.Point(84, 39);
     this.txtConsigDireccion.Name = "txtConsigDireccion";
     this.txtConsigDireccion.Size = new System.Drawing.Size(514, 20);
     this.txtConsigDireccion.TabIndex = 14;
     //
     // labelControl5
     //
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl5.Location = new System.Drawing.Point(10, 42);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(47, 13);
     this.labelControl5.TabIndex = 56;
     this.labelControl5.Text = "Dirección:";
     //
     // txtConsigTelefono
     //
     this.txtConsigTelefono.Location = new System.Drawing.Point(84, 91);
     this.txtConsigTelefono.Name = "txtConsigTelefono";
     this.txtConsigTelefono.Size = new System.Drawing.Size(111, 20);
     this.txtConsigTelefono.TabIndex = 16;
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl9.Location = new System.Drawing.Point(10, 94);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(46, 13);
     this.labelControl9.TabIndex = 64;
     this.labelControl9.Text = "Telefono:";
     //
     // labelControl18
     //
     this.labelControl18.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl18.Location = new System.Drawing.Point(9, 68);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(37, 13);
     this.labelControl18.TabIndex = 60;
     this.labelControl18.Text = "Ciudad:";
     //
     // txtConsigCiudad
     //
     this.txtConsigCiudad.Location = new System.Drawing.Point(84, 65);
     this.txtConsigCiudad.Name = "txtConsigCiudad";
     this.txtConsigCiudad.Size = new System.Drawing.Size(178, 20);
     this.txtConsigCiudad.TabIndex = 15;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.txtShipEmail);
     this.groupBox3.Controls.Add(this.labelControl31);
     this.groupBox3.Controls.Add(this.txtShipNombre);
     this.groupBox3.Controls.Add(this.labelControl8);
     this.groupBox3.Controls.Add(this.txtShipWeb);
     this.groupBox3.Controls.Add(this.labelControl3);
     this.groupBox3.Controls.Add(this.txtShipContacto);
     this.groupBox3.Controls.Add(this.labelControl1);
     this.groupBox3.Controls.Add(this.txtShipDireccion);
     this.groupBox3.Controls.Add(this.labelControl13);
     this.groupBox3.Controls.Add(this.txtShipTelefono);
     this.groupBox3.Controls.Add(this.labelControl16);
     this.groupBox3.Controls.Add(this.labelControl17);
     this.groupBox3.Controls.Add(this.txtShipZipCode);
     this.groupBox3.Controls.Add(this.txtShipPais);
     this.groupBox3.Controls.Add(this.labelControl15);
     this.groupBox3.Controls.Add(this.labelControl14);
     this.groupBox3.Controls.Add(this.txtShipCiudad);
     this.groupBox3.Location = new System.Drawing.Point(8, 126);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(604, 181);
     this.groupBox3.TabIndex = 67;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Shipper";
     //
     // txtShipEmail
     //
     this.txtShipEmail.Location = new System.Drawing.Point(388, 98);
     this.txtShipEmail.Name = "txtShipEmail";
     this.txtShipEmail.Size = new System.Drawing.Size(210, 20);
     this.txtShipEmail.TabIndex = 71;
     //
     // labelControl31
     //
     this.labelControl31.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl31.Location = new System.Drawing.Point(332, 101);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(28, 13);
     this.labelControl31.TabIndex = 72;
     this.labelControl31.Text = "eMail:";
     //
     // txtShipNombre
     //
     this.txtShipNombre.Location = new System.Drawing.Point(84, 17);
     this.txtShipNombre.Name = "txtShipNombre";
     this.txtShipNombre.Size = new System.Drawing.Size(381, 20);
     this.txtShipNombre.TabIndex = 5;
     //
     // labelControl8
     //
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl8.Location = new System.Drawing.Point(9, 20);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(41, 13);
     this.labelControl8.TabIndex = 70;
     this.labelControl8.Text = "Nombre:";
     //
     // txtShipWeb
     //
     this.txtShipWeb.Location = new System.Drawing.Point(388, 152);
     this.txtShipWeb.Name = "txtShipWeb";
     this.txtShipWeb.Size = new System.Drawing.Size(184, 20);
     this.txtShipWeb.TabIndex = 12;
     //
     // labelControl3
     //
     this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl3.Location = new System.Drawing.Point(331, 159);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(49, 13);
     this.labelControl3.TabIndex = 68;
     this.labelControl3.Text = "Sitio Web:";
     //
     // txtShipContacto
     //
     this.txtShipContacto.Location = new System.Drawing.Point(388, 71);
     this.txtShipContacto.Name = "txtShipContacto";
     this.txtShipContacto.Size = new System.Drawing.Size(210, 20);
     this.txtShipContacto.TabIndex = 11;
     //
     // labelControl1
     //
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl1.Location = new System.Drawing.Point(332, 74);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(48, 13);
     this.labelControl1.TabIndex = 66;
     this.labelControl1.Text = "Contacto:";
     //
     // txtShipDireccion
     //
     this.txtShipDireccion.Location = new System.Drawing.Point(84, 45);
     this.txtShipDireccion.Name = "txtShipDireccion";
     this.txtShipDireccion.Size = new System.Drawing.Size(514, 20);
     this.txtShipDireccion.TabIndex = 6;
     //
     // labelControl13
     //
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl13.Location = new System.Drawing.Point(9, 48);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(47, 13);
     this.labelControl13.TabIndex = 56;
     this.labelControl13.Text = "Dirección:";
     //
     // txtShipTelefono
     //
     this.txtShipTelefono.Location = new System.Drawing.Point(84, 149);
     this.txtShipTelefono.Name = "txtShipTelefono";
     this.txtShipTelefono.Size = new System.Drawing.Size(111, 20);
     this.txtShipTelefono.TabIndex = 10;
     //
     // labelControl16
     //
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl16.Location = new System.Drawing.Point(9, 74);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(46, 13);
     this.labelControl16.TabIndex = 58;
     this.labelControl16.Text = "Zip Code:";
     //
     // labelControl17
     //
     this.labelControl17.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl17.Location = new System.Drawing.Point(8, 152);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(46, 13);
     this.labelControl17.TabIndex = 64;
     this.labelControl17.Text = "Telefono:";
     //
     // txtShipZipCode
     //
     this.txtShipZipCode.Location = new System.Drawing.Point(84, 71);
     this.txtShipZipCode.Name = "txtShipZipCode";
     this.txtShipZipCode.Size = new System.Drawing.Size(74, 20);
     this.txtShipZipCode.TabIndex = 7;
     //
     // txtShipPais
     //
     this.txtShipPais.Location = new System.Drawing.Point(84, 123);
     this.txtShipPais.Name = "txtShipPais";
     this.txtShipPais.Size = new System.Drawing.Size(230, 20);
     this.txtShipPais.TabIndex = 9;
     //
     // labelControl15
     //
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl15.Location = new System.Drawing.Point(9, 101);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(37, 13);
     this.labelControl15.TabIndex = 60;
     this.labelControl15.Text = "Ciudad:";
     //
     // labelControl14
     //
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl14.Location = new System.Drawing.Point(9, 126);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(23, 13);
     this.labelControl14.TabIndex = 62;
     this.labelControl14.Text = "País:";
     //
     // txtShipCiudad
     //
     this.txtShipCiudad.Location = new System.Drawing.Point(84, 97);
     this.txtShipCiudad.Name = "txtShipCiudad";
     this.txtShipCiudad.Size = new System.Drawing.Size(230, 20);
     this.txtShipCiudad.TabIndex = 8;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.cboagente);
     this.groupBox2.Controls.Add(this.labelControl10);
     this.groupBox2.Controls.Add(this.txtContacto);
     this.groupBox2.Controls.Add(this.labelControl11);
     this.groupBox2.Location = new System.Drawing.Point(8, 48);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(469, 72);
     this.groupBox2.TabIndex = 66;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Agente";
     //
     // cboagente
     //
     this.cboagente.Location = new System.Drawing.Point(88, 19);
     this.cboagente.Name = "cboagente";
     this.cboagente.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboagente.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cboagente.Size = new System.Drawing.Size(178, 20);
     this.cboagente.TabIndex = 3;
     this.cboagente.SelectedIndexChanged += new System.EventHandler(this.cboagente_SelectedIndexChanged);
     //
     // labelControl10
     //
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl10.Location = new System.Drawing.Point(9, 22);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(39, 13);
     this.labelControl10.TabIndex = 50;
     this.labelControl10.Text = "Agente:";
     //
     // txtContacto
     //
     this.txtContacto.Enabled = false;
     this.txtContacto.Location = new System.Drawing.Point(88, 45);
     this.txtContacto.Name = "txtContacto";
     this.txtContacto.Size = new System.Drawing.Size(375, 20);
     this.txtContacto.TabIndex = 4;
     //
     // labelControl11
     //
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl11.Location = new System.Drawing.Point(8, 48);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(48, 13);
     this.labelControl11.TabIndex = 52;
     this.labelControl11.Text = "Contacto:";
     //
     // labelControl12
     //
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl12.Location = new System.Drawing.Point(13, 79);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(40, 13);
     this.labelControl12.TabIndex = 54;
     this.labelControl12.Text = "Shipper:";
     //
     // labelControl7
     //
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl7.Location = new System.Drawing.Point(657, 269);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(50, 13);
     this.labelControl7.TabIndex = 29;
     this.labelControl7.Text = "Vendedor:";
     //
     // DateApertura
     //
     this.DateApertura.EditValue = null;
     this.DateApertura.Enabled = false;
     this.DateApertura.Location = new System.Drawing.Point(96, 23);
     this.DateApertura.Name = "DateApertura";
     this.DateApertura.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateApertura.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateApertura.Size = new System.Drawing.Size(102, 20);
     this.DateApertura.TabIndex = 1;
     //
     // labelControl6
     //
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl6.Location = new System.Drawing.Point(13, 26);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(79, 13);
     this.labelControl6.TabIndex = 27;
     this.labelControl6.Text = "Fecha Apertura:";
     //
     // textSLeadReferencia
     //
     this.textSLeadReferencia.Location = new System.Drawing.Point(214, 98);
     this.textSLeadReferencia.Name = "textSLeadReferencia";
     this.textSLeadReferencia.Size = new System.Drawing.Size(381, 20);
     this.textSLeadReferencia.TabIndex = 71;
     this.textSLeadReferencia.Visible = false;
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.groupControl2.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
     this.groupControl2.Appearance.Options.UseFont = true;
     this.groupControl2.Appearance.Options.UseForeColor = true;
     this.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.groupControl2.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
     this.groupControl2.AppearanceCaption.Options.UseFont = true;
     this.groupControl2.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl2.Controls.Add(this.ButtonEnviar);
     this.groupControl2.Controls.Add(this.gridAsignaciones);
     this.groupControl2.Location = new System.Drawing.Point(628, 459);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(355, 181);
     this.groupControl2.TabIndex = 37;
     this.groupControl2.Text = "Resumen Asignación";
     //
     // ButtonEnviar
     //
     this.ButtonEnviar.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
     this.ButtonEnviar.Appearance.Options.UseForeColor = true;
     this.ButtonEnviar.Location = new System.Drawing.Point(249, 93);
     this.ButtonEnviar.Name = "ButtonEnviar";
     this.ButtonEnviar.Size = new System.Drawing.Size(101, 35);
     this.ButtonEnviar.TabIndex = 36;
     this.ButtonEnviar.Text = "Enviar Prospectos";
     this.ButtonEnviar.Click += new System.EventHandler(this.ButtonEnviar_Click);
     //
     // gridAsignaciones
     //
     this.gridAsignaciones.Location = new System.Drawing.Point(2, 19);
     this.gridAsignaciones.MainView = this.gridView1;
     this.gridAsignaciones.Name = "gridAsignaciones";
     this.gridAsignaciones.Size = new System.Drawing.Size(234, 135);
     this.gridAsignaciones.TabIndex = 0;
     this.gridAsignaciones.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColVendedor});
     this.gridView1.GridControl = this.gridAsignaciones;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColVendedor
     //
     this.gridColVendedor.Caption = "Vendedor";
     this.gridColVendedor.FieldName = "Asignacion.VendedorAsignado.NombreCompleto";
     this.gridColVendedor.Name = "gridColVendedor";
     this.gridColVendedor.Visible = true;
     this.gridColVendedor.VisibleIndex = 0;
     this.gridColVendedor.Width = 50;
     //
     // groupControl3
     //
     this.groupControl3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.groupControl3.Appearance.ForeColor = System.Drawing.Color.DarkBlue;
     this.groupControl3.Appearance.Options.UseFont = true;
     this.groupControl3.Appearance.Options.UseForeColor = true;
     this.groupControl3.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.groupControl3.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
     this.groupControl3.AppearanceCaption.Options.UseFont = true;
     this.groupControl3.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl3.Controls.Add(this.txtCommodity);
     this.groupControl3.Controls.Add(this.labelControl32);
     this.groupControl3.Controls.Add(this.labelControl35);
     this.groupControl3.Controls.Add(this.lstTipoContenedor);
     this.groupControl3.Controls.Add(this.snNumEmbMes);
     this.groupControl3.Controls.Add(this.labelControl30);
     this.groupControl3.Controls.Add(this.txtCarrier);
     this.groupControl3.Controls.Add(this.labelControl29);
     this.groupControl3.Controls.Add(this.txtPod);
     this.groupControl3.Controls.Add(this.cboVendedores);
     this.groupControl3.Controls.Add(this.labelControl28);
     this.groupControl3.Controls.Add(this.cboUMAereo);
     this.groupControl3.Controls.Add(this.cboUMFCL);
     this.groupControl3.Controls.Add(this.cboUMLCL);
     this.groupControl3.Controls.Add(this.labelControl20);
     this.groupControl3.Controls.Add(this.labelControl21);
     this.groupControl3.Controls.Add(this.labelControl22);
     this.groupControl3.Controls.Add(this.txtCantidadLCL);
     this.groupControl3.Controls.Add(this.txtCantidadFCL);
     this.groupControl3.Controls.Add(this.txtCantidadAereo);
     this.groupControl3.Controls.Add(this.labelControl19);
     this.groupControl3.Controls.Add(this.DateUltimoEmbarque);
     this.groupControl3.Controls.Add(this.labelControl25);
     this.groupControl3.Controls.Add(this.txtpol);
     this.groupControl3.Controls.Add(this.labelControl24);
     this.groupControl3.Controls.Add(this.lstProductos);
     this.groupControl3.Controls.Add(this.labelControl23);
     this.groupControl3.Controls.Add(this.BtnAsignar);
     this.groupControl3.Location = new System.Drawing.Point(627, 43);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(356, 410);
     this.groupControl3.TabIndex = 38;
     this.groupControl3.Text = "Datos Seas Lead";
     //
     // txtCommodity
     //
     this.txtCommodity.Location = new System.Drawing.Point(136, 239);
     this.txtCommodity.Name = "txtCommodity";
     this.txtCommodity.Size = new System.Drawing.Size(186, 20);
     this.txtCommodity.TabIndex = 107;
     //
     // labelControl32
     //
     this.labelControl32.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl32.Location = new System.Drawing.Point(17, 242);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(57, 13);
     this.labelControl32.TabIndex = 108;
     this.labelControl32.Text = "Commodity:";
     //
     // labelControl35
     //
     this.labelControl35.Appearance.Options.UseTextOptions = true;
     this.labelControl35.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControl35.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.labelControl35.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.labelControl35.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl35.Location = new System.Drawing.Point(15, 215);
     this.labelControl35.Name = "labelControl35";
     this.labelControl35.Size = new System.Drawing.Size(86, 17);
     this.labelControl35.TabIndex = 106;
     this.labelControl35.Text = "Tipo Contenedor:";
     //
     // lstTipoContenedor
     //
     this.lstTipoContenedor.Location = new System.Drawing.Point(136, 215);
     this.lstTipoContenedor.Name = "lstTipoContenedor";
     this.lstTipoContenedor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lstTipoContenedor.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.lstTipoContenedor.Size = new System.Drawing.Size(183, 20);
     this.lstTipoContenedor.TabIndex = 105;
     //
     // snNumEmbMes
     //
     this.snNumEmbMes.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.snNumEmbMes.Location = new System.Drawing.Point(135, 24);
     this.snNumEmbMes.Name = "snNumEmbMes";
     this.snNumEmbMes.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.snNumEmbMes.Properties.Mask.EditMask = "n0";
     this.snNumEmbMes.Size = new System.Drawing.Size(53, 20);
     this.snNumEmbMes.TabIndex = 104;
     //
     // labelControl30
     //
     this.labelControl30.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl30.Location = new System.Drawing.Point(15, 317);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(76, 13);
     this.labelControl30.TabIndex = 103;
     this.labelControl30.Text = "Carrier / Airline:";
     //
     // txtCarrier
     //
     this.txtCarrier.Location = new System.Drawing.Point(135, 311);
     this.txtCarrier.Name = "txtCarrier";
     this.txtCarrier.Size = new System.Drawing.Size(184, 20);
     this.txtCarrier.TabIndex = 102;
     //
     // labelControl29
     //
     this.labelControl29.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl29.Location = new System.Drawing.Point(17, 293);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(22, 13);
     this.labelControl29.TabIndex = 101;
     this.labelControl29.Text = "Pod:";
     this.labelControl29.ToolTip = "Puerto Descarga";
     //
     // txtPod
     //
     this.txtPod.Location = new System.Drawing.Point(135, 287);
     this.txtPod.Name = "txtPod";
     this.txtPod.Size = new System.Drawing.Size(184, 20);
     this.txtPod.TabIndex = 100;
     //
     // cboVendedores
     //
     this.cboVendedores.Location = new System.Drawing.Point(135, 359);
     this.cboVendedores.Name = "cboVendedores";
     this.cboVendedores.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboVendedores.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cboVendedores.Size = new System.Drawing.Size(102, 20);
     this.cboVendedores.TabIndex = 99;
     //
     // labelControl28
     //
     this.labelControl28.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl28.Location = new System.Drawing.Point(17, 361);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(50, 13);
     this.labelControl28.TabIndex = 98;
     this.labelControl28.Text = "Vendedor:";
     //
     // cboUMAereo
     //
     this.cboUMAereo.Location = new System.Drawing.Point(218, 94);
     this.cboUMAereo.Name = "cboUMAereo";
     this.cboUMAereo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboUMAereo.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cboUMAereo.Size = new System.Drawing.Size(76, 20);
     this.cboUMAereo.TabIndex = 24;
     //
     // cboUMFCL
     //
     this.cboUMFCL.Location = new System.Drawing.Point(218, 72);
     this.cboUMFCL.Name = "cboUMFCL";
     this.cboUMFCL.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboUMFCL.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cboUMFCL.Size = new System.Drawing.Size(76, 20);
     this.cboUMFCL.TabIndex = 22;
     //
     // cboUMLCL
     //
     this.cboUMLCL.EditValue = " ";
     this.cboUMLCL.Location = new System.Drawing.Point(218, 50);
     this.cboUMLCL.Name = "cboUMLCL";
     this.cboUMLCL.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboUMLCL.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cboUMLCL.Size = new System.Drawing.Size(76, 20);
     this.cboUMLCL.TabIndex = 20;
     //
     // labelControl20
     //
     this.labelControl20.Location = new System.Drawing.Point(17, 53);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(67, 13);
     this.labelControl20.TabIndex = 88;
     this.labelControl20.Text = "Cantidad LCL:";
     //
     // labelControl21
     //
     this.labelControl21.Location = new System.Drawing.Point(17, 79);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(68, 13);
     this.labelControl21.TabIndex = 90;
     this.labelControl21.Text = "Cantidad FCL:";
     //
     // labelControl22
     //
     this.labelControl22.Location = new System.Drawing.Point(17, 101);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(79, 13);
     this.labelControl22.TabIndex = 89;
     this.labelControl22.Text = "Cantidad Áereo:";
     //
     // txtCantidadLCL
     //
     this.txtCantidadLCL.Location = new System.Drawing.Point(135, 50);
     this.txtCantidadLCL.Name = "txtCantidadLCL";
     this.txtCantidadLCL.Size = new System.Drawing.Size(80, 20);
     this.txtCantidadLCL.TabIndex = 19;
     //
     // txtCantidadFCL
     //
     this.txtCantidadFCL.Location = new System.Drawing.Point(135, 72);
     this.txtCantidadFCL.Name = "txtCantidadFCL";
     this.txtCantidadFCL.Size = new System.Drawing.Size(80, 20);
     this.txtCantidadFCL.TabIndex = 21;
     //
     // txtCantidadAereo
     //
     this.txtCantidadAereo.Location = new System.Drawing.Point(135, 94);
     this.txtCantidadAereo.Name = "txtCantidadAereo";
     this.txtCantidadAereo.Size = new System.Drawing.Size(80, 20);
     this.txtCantidadAereo.TabIndex = 23;
     //
     // labelControl19
     //
     this.labelControl19.Location = new System.Drawing.Point(15, 29);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(113, 13);
     this.labelControl19.TabIndex = 86;
     this.labelControl19.Text = "N° Embarques por mes:";
     //
     // DateUltimoEmbarque
     //
     this.DateUltimoEmbarque.EditValue = null;
     this.DateUltimoEmbarque.Location = new System.Drawing.Point(135, 335);
     this.DateUltimoEmbarque.Name = "DateUltimoEmbarque";
     this.DateUltimoEmbarque.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateUltimoEmbarque.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.DateUltimoEmbarque.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateUltimoEmbarque.Size = new System.Drawing.Size(102, 20);
     this.DateUltimoEmbarque.TabIndex = 26;
     this.DateUltimoEmbarque.EditValueChanged += new System.EventHandler(this.txtUltimoEmbarque_EditValueChanged);
     //
     // labelControl25
     //
     this.labelControl25.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl25.Location = new System.Drawing.Point(17, 341);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(84, 13);
     this.labelControl25.TabIndex = 73;
     this.labelControl25.Text = "Ultimo Embarque:";
     //
     // txtpol
     //
     this.txtpol.Location = new System.Drawing.Point(135, 263);
     this.txtpol.Name = "txtpol";
     this.txtpol.Size = new System.Drawing.Size(184, 20);
     this.txtpol.TabIndex = 25;
     //
     // labelControl24
     //
     this.labelControl24.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Horizontal;
     this.labelControl24.Location = new System.Drawing.Point(17, 267);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(18, 13);
     this.labelControl24.TabIndex = 70;
     this.labelControl24.Text = "Pol:";
     this.labelControl24.ToolTip = "Puerto de Carga";
     //
     // lstProductos
     //
     this.lstProductos.CheckOnClick = true;
     this.lstProductos.HorizontalScrollbar = true;
     this.lstProductos.HorzScrollStep = 10;
     this.lstProductos.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item1"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item2"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item3"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item4"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Item5")});
     this.lstProductos.Location = new System.Drawing.Point(135, 120);
     this.lstProductos.Name = "lstProductos";
     this.lstProductos.Size = new System.Drawing.Size(187, 90);
     this.lstProductos.TabIndex = 20;
     //
     // labelControl23
     //
     this.labelControl23.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl23.Location = new System.Drawing.Point(17, 122);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(73, 22);
     this.labelControl23.TabIndex = 21;
     this.labelControl23.Text = "Productos:";
     //
     // BtnAsignar
     //
     this.BtnAsignar.Location = new System.Drawing.Point(266, 341);
     this.BtnAsignar.Name = "BtnAsignar";
     this.BtnAsignar.Size = new System.Drawing.Size(75, 33);
     this.BtnAsignar.TabIndex = 16;
     this.BtnAsignar.Text = "Asignar";
     this.BtnAsignar.Click += new System.EventHandler(this.BtnAsignarClick);
     //
     // ctrldxError
     //
     this.ctrldxError.ContainerControl = this;
     //
     // frmDefinirSLead
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(1000, 647);
     this.Controls.Add(this.groupControl3);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.toolStripBarraLlamada);
     this.Name = "frmDefinirSLead";
     this.Text = "Definir Sales Lead";
     this.Load += new System.EventHandler(this.FrmDefinirSLeadLoad);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmDefinirSLead_FormClosed);
     this.toolStripBarraLlamada.ResumeLayout(false);
     this.toolStripBarraLlamada.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTipoCompetencia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompetencia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstIncoterms)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstTerminosCompra)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRevision.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRevision.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCompetencia)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCompetencia)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtconsigEmail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigNombre.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigContacto.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigDireccion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigTelefono.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConsigCiudad.Properties)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipEmail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipNombre.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipWeb.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipContacto.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipDireccion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipTelefono.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipZipCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipPais.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShipCiudad.Properties)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboagente.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContacto.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateApertura.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateApertura.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textSLeadReferencia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridAsignaciones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCommodity.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstTipoContenedor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.snNumEmbMes.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCarrier.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboVendedores.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboUMAereo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboUMFCL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboUMLCL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCantidadLCL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCantidadFCL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCantidadAereo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateUltimoEmbarque.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateUltimoEmbarque.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtpol.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lstProductos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        protected void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmQuanLyLichPhatSongNewQL));
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.MainBar = new DevExpress.XtraBars.Bar();
            this.barButtonItemAddNext = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemCopy = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItemCotHienThi = new DevExpress.XtraBars.BarSubItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.label29 = new DevExpress.XtraEditors.LabelControl();
            this.ThongTinThem = new DevExpress.XtraEditors.CheckedListBoxControl();
            this.GioPhatDen = new DevExpress.XtraEditors.TimeEdit();
            this.GioPhatTu = new DevExpress.XtraEditors.TimeEdit();
            this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
            this.NguoiNhap = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.TenCT = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.ThuTrongTuan = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.KenhPhat = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel8 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel9 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
            this.label10 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
            this.label3 = new DevExpress.XtraEditors.LabelControl();
            this.label5 = new DevExpress.XtraEditors.LabelControl();
            this.NgayBatDauPhat = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControlPM = new DevExpress.XtraEditors.GroupControl();
            this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
            this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_LPS_NgayBatDau = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_GioPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_KenhPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_SoTapNgay = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_ThuTrongTuan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_NgayCuoi = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_SoNgayPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_ThongTinThem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_NgayTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_LPS_NguoiTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_TenChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_TenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_NuocSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_NamSx = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_PostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_TongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_TongSoRun = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_SoLanDaPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_SoRunCon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_LPS_ThoiLuongChung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
            this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
            this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
            this.ColTapSo = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ColThoiLuong = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ColGioPhat = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ColNgayPhat = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ColMaBang = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ColTenTap = new DevExpress.XtraGrid.Columns.GridColumn();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockPanel1.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
            this.popupControlContainerFilter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ThongTinThem)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GioPhatDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GioPhatTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NguoiNhap.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenCT.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ThuTrongTuan.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.KenhPhat.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).BeginInit();
            this.groupControlPM.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
            this.xtraTabControlDetail.SuspendLayout();
            this.xtraTabPageDetail.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
            this.SuspendLayout();
            //
            // barManager1
            //
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.MainBar});
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.DockManager = this.dockManager1;
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItemAdd,
            this.barButtonItemDelete,
            this.barButtonItemUpdate,
            this.barButtonItemPrint,
            this.barStaticItem1,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItemCommit,
            this.barButtonItemNoCommit,
            this.barSubItem1,
            this.barButtonItemXem,
            this.barButtonItemSearch,
            this.barButtonItemClose,
            this.barCheckItemFilter,
            this.barButtonItem3,
            this.barButtonItem4,
            this.barSubItemCotHienThi,
            this.barButtonItemAddNext,
            this.barButtonItemCopy});
            this.barManager1.MaxItemId = 42;
            //
            // MainBar
            //
            this.MainBar.BarName = "MainBar";
            this.MainBar.DockCol = 0;
            this.MainBar.DockRow = 0;
            this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
            this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
            this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAddNext),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCopy),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemCotHienThi)});
            this.MainBar.OptionsBar.AllowQuickCustomization = false;
            this.MainBar.OptionsBar.DrawDragBorder = false;
            this.MainBar.OptionsBar.RotateWhenVertical = false;
            this.MainBar.OptionsBar.UseWholeRow = true;
            this.MainBar.Text = "Custom 1";
            //
            // barButtonItemAddNext
            //
            this.barButtonItemAddNext.Caption = "Thê&m lịch tiếp theo";
            this.barButtonItemAddNext.Hint = "Thêm lịch phát sóng tiếp theo trên vệt giờ đang chọn (không có nghĩa là thêm lịch" +
                " liền kề lịch đang chọn)";
            this.barButtonItemAddNext.Id = 40;
            this.barButtonItemAddNext.Name = "barButtonItemAddNext";
            this.barButtonItemAddNext.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemAddNext_ItemClick);
            //
            // barButtonItemAdd
            //
            this.barButtonItemAdd.Caption = "&Thêm";
            this.barButtonItemAdd.Id = 0;
            this.barButtonItemAdd.Name = "barButtonItemAdd";
            this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemCopy
            //
            this.barButtonItemCopy.Caption = "&Sao chép";
            this.barButtonItemCopy.Id = 41;
            this.barButtonItemCopy.Name = "barButtonItemCopy";
            this.barButtonItemCopy.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemCopy_ItemClick);
            //
            // barButtonItemXem
            //
            this.barButtonItemXem.Caption = "&Xem";
            this.barButtonItemXem.Id = 24;
            this.barButtonItemXem.Name = "barButtonItemXem";
            this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemDelete
            //
            this.barButtonItemDelete.Caption = "&Xóa";
            this.barButtonItemDelete.Id = 1;
            this.barButtonItemDelete.Name = "barButtonItemDelete";
            this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemUpdate
            //
            this.barButtonItemUpdate.Caption = "&Sửa";
            this.barButtonItemUpdate.Id = 2;
            this.barButtonItemUpdate.Name = "barButtonItemUpdate";
            this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemPrint
            //
            this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemPrint.Caption = "&In";
            this.barButtonItemPrint.DropDownControl = this.popupMenu1;
            this.barButtonItemPrint.Id = 3;
            this.barButtonItemPrint.Name = "barButtonItemPrint";
            this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu1
            //
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Caption = "Xem trước";
            this.barButtonItem4.Id = 33;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // barButtonItemCommit
            //
            this.barButtonItemCommit.Caption = "&Duyệt";
            this.barButtonItemCommit.Id = 17;
            this.barButtonItemCommit.Name = "barButtonItemCommit";
            this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemNoCommit
            //
            this.barButtonItemNoCommit.Caption = "&Không duyệt";
            this.barButtonItemNoCommit.Id = 18;
            this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
            this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItem1
            //
            this.barSubItem1.Caption = "Nghiệp vụ";
            this.barSubItem1.Id = 20;
            this.barSubItem1.Name = "barSubItem1";
            this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemSearch
            //
            this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemSearch.Caption = "Tìm kiếm";
            this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
            this.barButtonItemSearch.Id = 27;
            this.barButtonItemSearch.Name = "barButtonItemSearch";
            this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenuFilter
            //
            this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
            this.popupMenuFilter.Manager = this.barManager1;
            this.popupMenuFilter.Name = "popupMenuFilter";
            //
            // barCheckItemFilter
            //
            this.barCheckItemFilter.Caption = "Điều &kiện lọc";
            this.barCheckItemFilter.Checked = true;
            this.barCheckItemFilter.Id = 29;
            this.barCheckItemFilter.Name = "barCheckItemFilter";
            this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemClose
            //
            this.barButtonItemClose.Caption = "Đóng";
            this.barButtonItemClose.Id = 28;
            this.barButtonItemClose.Name = "barButtonItemClose";
            this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItemCotHienThi
            //
            this.barSubItemCotHienThi.Caption = "Chọn cột hiển thị";
            this.barSubItemCotHienThi.Id = 36;
            this.barSubItemCotHienThi.Name = "barSubItemCotHienThi";
            //
            // barDockControlTop
            //
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(1250, 24);
            //
            // barDockControlBottom
            //
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
            this.barDockControlBottom.Size = new System.Drawing.Size(1250, 0);
            //
            // barDockControlLeft
            //
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
            //
            // barDockControlRight
            //
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1250, 24);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
            //
            // dockManager1
            //
            this.dockManager1.Form = this;
            this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockPanel1});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            //
            // dockPanel1
            //
            this.dockPanel1.Controls.Add(this.dockPanel1_Container);
            this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
            this.dockPanel1.FloatVertical = true;
            this.dockPanel1.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
            this.dockPanel1.Location = new System.Drawing.Point(0, 24);
            this.dockPanel1.Name = "dockPanel1";
            this.dockPanel1.Options.AllowDockLeft = false;
            this.dockPanel1.Options.AllowDockRight = false;
            this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 111);
            this.dockPanel1.Size = new System.Drawing.Size(1250, 111);
            this.dockPanel1.Text = "Điều kiện tìm kiếm";
            this.dockPanel1.VisibilityChanged += new DevExpress.XtraBars.Docking.VisibilityChangedEventHandler(this.dockPanel1_VisibilityChanged);
            //
            // dockPanel1_Container
            //
            this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
            this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(1244, 83);
            this.dockPanel1_Container.TabIndex = 0;
            //
            // popupControlContainerFilter
            //
            this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
            this.popupControlContainerFilter.Controls.Add(this.label29);
            this.popupControlContainerFilter.Controls.Add(this.ThongTinThem);
            this.popupControlContainerFilter.Controls.Add(this.GioPhatDen);
            this.popupControlContainerFilter.Controls.Add(this.GioPhatTu);
            this.popupControlContainerFilter.Controls.Add(this.PhongBan);
            this.popupControlContainerFilter.Controls.Add(this.NguoiNhap);
            this.popupControlContainerFilter.Controls.Add(this.Category);
            this.popupControlContainerFilter.Controls.Add(this.TenCT);
            this.popupControlContainerFilter.Controls.Add(this.ThuTrongTuan);
            this.popupControlContainerFilter.Controls.Add(this.KenhPhat);
            this.popupControlContainerFilter.Controls.Add(this.PostMaster);
            this.popupControlContainerFilter.Controls.Add(this.TietMuc);
            this.popupControlContainerFilter.Controls.Add(this.plLabel8);
            this.popupControlContainerFilter.Controls.Add(this.plLabel9);
            this.popupControlContainerFilter.Controls.Add(this.plLabel7);
            this.popupControlContainerFilter.Controls.Add(this.label10);
            this.popupControlContainerFilter.Controls.Add(this.plLabel4);
            this.popupControlContainerFilter.Controls.Add(this.plLabel1);
            this.popupControlContainerFilter.Controls.Add(this.plLabel5);
            this.popupControlContainerFilter.Controls.Add(this.plLabel3);
            this.popupControlContainerFilter.Controls.Add(this.plLabel6);
            this.popupControlContainerFilter.Controls.Add(this.plLabel2);
            this.popupControlContainerFilter.Controls.Add(this.label3);
            this.popupControlContainerFilter.Controls.Add(this.label5);
            this.popupControlContainerFilter.Controls.Add(this.NgayBatDauPhat);
            this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
            this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
            this.popupControlContainerFilter.Manager = this.barManager1;
            this.popupControlContainerFilter.Name = "popupControlContainerFilter";
            this.popupControlContainerFilter.Size = new System.Drawing.Size(1244, 83);
            this.popupControlContainerFilter.TabIndex = 5;
            this.popupControlContainerFilter.Visible = false;
            //
            // ngayNhap
            //
            this.ngayNhap.Caption = "Từ ngày 15/06/2012 đến ngày 22/06/2012";
            this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayNhap.FirstFrom = new System.DateTime(2012, 6, 15, 5, 22, 4, 281);
            this.ngayNhap.FirstTo = new System.DateTime(2012, 6, 22, 5, 22, 4, 281);
            this.ngayNhap.FromDate = new System.DateTime(2012, 6, 15, 5, 22, 4, 281);
            this.ngayNhap.Location = new System.Drawing.Point(796, 58);
            this.ngayNhap.Name = "ngayNhap";
            this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.ngayNhap.SecondFrom = new System.DateTime(2012, 6, 15, 5, 22, 4, 281);
            this.ngayNhap.SecondTo = new System.DateTime(2012, 6, 22, 5, 22, 4, 281);
            this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayNhap.Size = new System.Drawing.Size(285, 21);
            this.ngayNhap.TabIndex = 226;
            this.ngayNhap.ToDate = new System.DateTime(2012, 6, 22, 5, 22, 4, 281);
            this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
            //
            // label29
            //
            this.label29.Location = new System.Drawing.Point(746, 63);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(44, 13);
            this.label29.TabIndex = 217;
            this.label29.Text = "Ngày tạo";

            //
            // ThongTinThem
            //
            this.ThongTinThem.CheckOnClick = true;
            this.ThongTinThem.ColumnWidth = 80;
            this.ThongTinThem.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "Phát mới", System.Windows.Forms.CheckState.Checked),
            new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "Phát lại", System.Windows.Forms.CheckState.Checked)});
            this.ThongTinThem.Location = new System.Drawing.Point(636, 34);
            this.ThongTinThem.MultiColumn = true;
            this.ThongTinThem.Name = "ThongTinThem";
            this.ThongTinThem.SelectionMode = System.Windows.Forms.SelectionMode.None;
            this.ThongTinThem.Size = new System.Drawing.Size(185, 18);
            this.ThongTinThem.TabIndex = 229;
            //
            // GioPhatDen
            //
            this.GioPhatDen.EditValue = null;
            this.GioPhatDen.Location = new System.Drawing.Point(456, 31);
            this.GioPhatDen.Name = "GioPhatDen";
            this.GioPhatDen.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
            this.GioPhatDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.GioPhatDen.Properties.Mask.EditMask = "HH:mm";
            this.GioPhatDen.Properties.Mask.UseMaskAsDisplayFormat = true;
            this.GioPhatDen.Size = new System.Drawing.Size(85, 20);
            this.GioPhatDen.TabIndex = 228;
            //
            // GioPhatTu
            //
            this.GioPhatTu.EditValue = null;
            this.GioPhatTu.Location = new System.Drawing.Point(332, 32);
            this.GioPhatTu.Name = "GioPhatTu";
            this.GioPhatTu.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
            this.GioPhatTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.GioPhatTu.Properties.Mask.EditMask = "HH:mm";
            this.GioPhatTu.Properties.Mask.UseMaskAsDisplayFormat = true;
            this.GioPhatTu.Size = new System.Drawing.Size(85, 20);
            this.GioPhatTu.TabIndex = 228;
            //
            // PhongBan
            //
            this.PhongBan.Location = new System.Drawing.Point(910, 29);
            this.PhongBan.Name = "PhongBan";
            this.PhongBan.Size = new System.Drawing.Size(165, 20);
            this.PhongBan.TabIndex = 10;
            //
            // NguoiNhap
            //
            this.NguoiNhap.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.NguoiNhap.DataSource = null;
            this.NguoiNhap.DisplayField = null;
            this.NguoiNhap.Location = new System.Drawing.Point(1133, 3);
            this.NguoiNhap.Name = "NguoiNhap";
            this.NguoiNhap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.NguoiNhap.Size = new System.Drawing.Size(102, 20);
            this.NguoiNhap.TabIndex = 227;
            this.NguoiNhap.ValueField = null;
            //
            // Category
            //
            this.Category._DataSource = null;
            this.Category._GetField = null;
            this.Category.Location = new System.Drawing.Point(48, 56);
            this.Category.Name = "Category";
            this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.Category.Size = new System.Drawing.Size(210, 20);
            this.Category.TabIndex = 222;
            //
            // TenCT
            //
            this.TenCT._DataSource = null;
            this.TenCT._GetField = null;
            this.TenCT.Location = new System.Drawing.Point(48, 6);
            this.TenCT.Name = "TenCT";
            this.TenCT.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.TenCT.Size = new System.Drawing.Size(214, 20);
            this.TenCT.TabIndex = 222;
            //
            // ThuTrongTuan
            //
            this.ThuTrongTuan.DataSource = null;
            this.ThuTrongTuan.DisplayField = null;
            this.ThuTrongTuan.Location = new System.Drawing.Point(909, 4);
            this.ThuTrongTuan.Name = "ThuTrongTuan";
            this.ThuTrongTuan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.ThuTrongTuan.Size = new System.Drawing.Size(164, 20);
            this.ThuTrongTuan.TabIndex = 220;
            this.ThuTrongTuan.ValueField = null;
            //
            // KenhPhat
            //
            this.KenhPhat.DataSource = null;
            this.KenhPhat.DisplayField = null;
            this.KenhPhat.Location = new System.Drawing.Point(636, 9);
            this.KenhPhat.Name = "KenhPhat";
            this.KenhPhat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.KenhPhat.Size = new System.Drawing.Size(185, 20);
            this.KenhPhat.TabIndex = 220;
            this.KenhPhat.ValueField = null;
            //
            // PostMaster
            //
            this.PostMaster.DataSource = null;
            this.PostMaster.DisplayField = null;
            this.PostMaster.Location = new System.Drawing.Point(332, 5);
            this.PostMaster.Name = "PostMaster";
            this.PostMaster.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.PostMaster.Size = new System.Drawing.Size(210, 20);
            this.PostMaster.TabIndex = 220;
            this.PostMaster.ValueField = null;
            //
            // TietMuc
            //
            this.TietMuc.DataSource = null;
            this.TietMuc.DisplayField = null;
            this.TietMuc.Location = new System.Drawing.Point(48, 32);
            this.TietMuc.Name = "TietMuc";
            this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.TietMuc.Size = new System.Drawing.Size(214, 20);
            this.TietMuc.TabIndex = 216;
            this.TietMuc.ValueField = null;
            //
            // plLabel8
            //
            this.plLabel8.Location = new System.Drawing.Point(547, 36);
            this.plLabel8.Name = "plLabel8";
            this.plLabel8.Size = new System.Drawing.Size(72, 13);
            this.plLabel8.TabIndex = 213;
            this.plLabel8.Text = "Thông tin thêm";

            //
            // plLabel9
            //
            this.plLabel9.Location = new System.Drawing.Point(831, 10);
            this.plLabel9.Name = "plLabel9";
            this.plLabel9.Size = new System.Drawing.Size(73, 13);
            this.plLabel9.TabIndex = 213;
            this.plLabel9.Text = "Thứ trong tuần";

            //
            // plLabel7
            //
            this.plLabel7.Location = new System.Drawing.Point(548, 12);
            this.plLabel7.Name = "plLabel7";
            this.plLabel7.Size = new System.Drawing.Size(49, 13);
            this.plLabel7.TabIndex = 213;
            this.plLabel7.Text = "Kênh phát";

            //
            // label10
            //
            this.label10.Location = new System.Drawing.Point(270, 12);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(58, 13);
            this.label10.TabIndex = 213;
            this.label10.Text = "Post/Master";

            //
            // plLabel4
            //
            this.plLabel4.Location = new System.Drawing.Point(1080, 6);
            this.plLabel4.Name = "plLabel4";
            this.plLabel4.Size = new System.Drawing.Size(47, 13);
            this.plLabel4.TabIndex = 217;
            this.plLabel4.Text = "Người tạo";

            //
            // plLabel1
            //
            this.plLabel1.Location = new System.Drawing.Point(831, 32);
            this.plLabel1.Name = "plLabel1";
            this.plLabel1.Size = new System.Drawing.Size(51, 13);
            this.plLabel1.TabIndex = 217;
            this.plLabel1.Text = "Phòng ban";

            //
            // plLabel5
            //
            this.plLabel5.Location = new System.Drawing.Point(423, 36);
            this.plLabel5.Name = "plLabel5";
            this.plLabel5.Size = new System.Drawing.Size(20, 13);
            this.plLabel5.TabIndex = 217;
            this.plLabel5.Text = "Đến";

            //
            // plLabel3
            //
            this.plLabel3.Location = new System.Drawing.Point(271, 35);
            this.plLabel3.Name = "plLabel3";
            this.plLabel3.Size = new System.Drawing.Size(54, 13);
            this.plLabel3.TabIndex = 217;
            this.plLabel3.Text = "Giờ phát từ";

            //
            // plLabel6
            //
            this.plLabel6.Location = new System.Drawing.Point(270, 61);
            this.plLabel6.Name = "plLabel6";
            this.plLabel6.Size = new System.Drawing.Size(90, 13);
            this.plLabel6.TabIndex = 217;
            this.plLabel6.Text = "Ngày bắt đầu phát";

            //
            // plLabel2
            //
            this.plLabel2.Location = new System.Drawing.Point(3, 61);
            this.plLabel2.Name = "plLabel2";
            this.plLabel2.Size = new System.Drawing.Size(45, 13);
            this.plLabel2.TabIndex = 218;
            this.plLabel2.Text = "Category";

            //
            // label3
            //
            this.label3.Location = new System.Drawing.Point(3, 12);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(34, 13);
            this.label3.TabIndex = 218;
            this.label3.Text = "Tên CT";

            //
            // label5
            //
            this.label5.Location = new System.Drawing.Point(3, 36);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(40, 13);
            this.label5.TabIndex = 219;
            this.label5.Text = "Tiết mục";

            //
            // NgayBatDauPhat
            //
            this.NgayBatDauPhat.Caption = "Từ ngày 15/06/2012 đến ngày 22/06/2012";
            this.NgayBatDauPhat.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.NgayBatDauPhat.FirstFrom = new System.DateTime(2012, 6, 15, 5, 22, 4, 742);
            this.NgayBatDauPhat.FirstTo = new System.DateTime(2012, 6, 22, 5, 22, 4, 742);
            this.NgayBatDauPhat.FromDate = new System.DateTime(2012, 6, 15, 5, 22, 4, 742);
            this.NgayBatDauPhat.Location = new System.Drawing.Point(366, 58);
            this.NgayBatDauPhat.Name = "NgayBatDauPhat";
            this.NgayBatDauPhat.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.NgayBatDauPhat.SecondFrom = new System.DateTime(2012, 6, 15, 5, 22, 4, 742);
            this.NgayBatDauPhat.SecondTo = new System.DateTime(2012, 6, 22, 5, 22, 4, 742);
            this.NgayBatDauPhat.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.NgayBatDauPhat.Size = new System.Drawing.Size(285, 21);
            this.NgayBatDauPhat.TabIndex = 226;
            this.NgayBatDauPhat.ToDate = new System.DateTime(2012, 6, 22, 5, 22, 4, 742);
            this.NgayBatDauPhat.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
            //
            // barStaticItem1
            //
            this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
            this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.barStaticItem1.Id = 13;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            this.barStaticItem1.Width = 100;
            //
            // barButtonItem1
            //
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 14;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem2
            //
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 15;
            this.barButtonItem2.Name = "barButtonItem2";
            //
            // barButtonItem3
            //
            this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItem3.Caption = "In";
            this.barButtonItem3.Id = 30;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // splitContainerControl1
            //
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 135);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.groupControlPM);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
            this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
            this.splitContainerControl1.Panel2.ShowCaption = true;
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(1250, 410);
            this.splitContainerControl1.SplitterPosition = 381;
            this.splitContainerControl1.TabIndex = 4;
            this.splitContainerControl1.Text = "splitContainerControl1";
            //
            // groupControlPM
            //
            this.groupControlPM.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.groupControlPM.Appearance.Options.UseBorderColor = true;
            this.groupControlPM.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            this.groupControlPM.Controls.Add(this.gridControlMaster);
            this.groupControlPM.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControlPM.Location = new System.Drawing.Point(0, 0);
            this.groupControlPM.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
            this.groupControlPM.LookAndFeel.UseDefaultLookAndFeel = false;
            this.groupControlPM.Name = "groupControlPM";
            this.groupControlPM.ShowCaption = false;
            this.groupControlPM.Size = new System.Drawing.Size(863, 410);
            this.groupControlPM.TabIndex = 236;
            this.groupControlPM.Text = "groupControl7";
            //
            // gridControlMaster
            //
            this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
            this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlMaster.Location = new System.Drawing.Point(2, 2);
            this.gridControlMaster.MainView = this.gridViewMaster;
            this.gridControlMaster.Name = "gridControlMaster";
            this.gridControlMaster.Size = new System.Drawing.Size(859, 406);
            this.gridControlMaster.TabIndex = 12;
            this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMaster});
            //
            // gridViewMaster
            //
            this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBandPostMaster,
            this.gridBandChuongTrinh});
            this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.Col_LPS_TenChuongTrinh,
            this.Col_LPS_TenGoc,
            this.Col_LPS_Category,
            this.Col_LPS_TietMuc,
            this.Col_LPS_NuocSX,
            this.Col_LPS_NamSx,
            this.Col_LPS_PostMaster,
            this.Col_LPS_TongTap,
            this.Col_LPS_TongSoRun,
            this.Col_LPS_SoLanDaPhat,
            this.Col_LPS_SoRunCon,
            this.Col_LPS_ThoiLuongChung,
            this.Col_LPS_NgayBatDau,
            this.Col_LPS_GioPhat,
            this.Col_LPS_KenhPhat,
            this.Col_LPS_SoTapNgay,
            this.Col_LPS_ThuTrongTuan,
            this.Col_LPS_SoNgayPhat,
            this.Col_LPS_NgayCuoi,
            this.Col_LPS_NgayTao,
            this.Col_LPS_NguoiTao,
            this.Col_LPS_ThongTinThem});
            this.gridViewMaster.GridControl = this.gridControlMaster;
            this.gridViewMaster.IndicatorWidth = 40;
            this.gridViewMaster.Name = "gridViewMaster";
            this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
            this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
            this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewMaster.OptionsView.ShowGroupPanel = false;
            this.gridViewMaster.OptionsView.ShowViewCaption = true;
            this.gridViewMaster.ViewCaption = "Danh sách lịch phát sóng";
            //
            // gridBandPostMaster
            //
            this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandPostMaster.Caption = "Thông tin phát sóng";
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_NgayBatDau);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_GioPhat);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_KenhPhat);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_SoTapNgay);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_ThuTrongTuan);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_NgayCuoi);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_SoNgayPhat);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_ThongTinThem);
            this.gridBandPostMaster.Columns.Add(this.Col_LPS_NgayTao);
            this.gridBandPostMaster.Name = "gridBandPostMaster";
            this.gridBandPostMaster.Width = 708;
            //
            // Col_LPS_NgayBatDau
            //
            this.Col_LPS_NgayBatDau.Caption = "Ngày bắt đầu phát";
            this.Col_LPS_NgayBatDau.Name = "Col_LPS_NgayBatDau";
            this.Col_LPS_NgayBatDau.Visible = true;
            this.Col_LPS_NgayBatDau.Width = 102;
            //
            // Col_LPS_GioPhat
            //
            this.Col_LPS_GioPhat.Caption = "Giờ phát";
            this.Col_LPS_GioPhat.Name = "Col_LPS_GioPhat";
            this.Col_LPS_GioPhat.Visible = true;
            this.Col_LPS_GioPhat.Width = 52;
            //
            // Col_LPS_KenhPhat
            //
            this.Col_LPS_KenhPhat.Caption = "Kênh phát";
            this.Col_LPS_KenhPhat.Name = "Col_LPS_KenhPhat";
            this.Col_LPS_KenhPhat.Visible = true;
            this.Col_LPS_KenhPhat.Width = 61;
            //
            // Col_LPS_SoTapNgay
            //
            this.Col_LPS_SoTapNgay.Caption = "Số tập/ngày";
            this.Col_LPS_SoTapNgay.Name = "Col_LPS_SoTapNgay";
            this.Col_LPS_SoTapNgay.Visible = true;
            this.Col_LPS_SoTapNgay.Width = 71;
            //
            // Col_LPS_ThuTrongTuan
            //
            this.Col_LPS_ThuTrongTuan.Caption = "Thứ trong tuần";
            this.Col_LPS_ThuTrongTuan.Name = "Col_LPS_ThuTrongTuan";
            this.Col_LPS_ThuTrongTuan.Visible = true;
            this.Col_LPS_ThuTrongTuan.Width = 85;
            //
            // Col_LPS_NgayCuoi
            //
            this.Col_LPS_NgayCuoi.Caption = "Ngày phát tập cuối";
            this.Col_LPS_NgayCuoi.Name = "Col_LPS_NgayCuoi";
            this.Col_LPS_NgayCuoi.Visible = true;
            this.Col_LPS_NgayCuoi.Width = 103;
            //
            // Col_LPS_SoNgayPhat
            //
            this.Col_LPS_SoNgayPhat.Caption = "Số ngày phát";
            this.Col_LPS_SoNgayPhat.Name = "Col_LPS_SoNgayPhat";
            this.Col_LPS_SoNgayPhat.Visible = true;
            this.Col_LPS_SoNgayPhat.Width = 76;
            //
            // Col_LPS_ThongTinThem
            //
            this.Col_LPS_ThongTinThem.Caption = "Thông tin thêm";
            this.Col_LPS_ThongTinThem.Name = "Col_LPS_ThongTinThem";
            this.Col_LPS_ThongTinThem.Visible = true;
            this.Col_LPS_ThongTinThem.Width = 84;
            //
            // Col_LPS_NgayTao
            //
            this.Col_LPS_NgayTao.Caption = "Ngày tạo lịch";
            this.Col_LPS_NgayTao.Name = "Col_LPS_NgayTao";
            this.Col_LPS_NgayTao.Visible = true;
            this.Col_LPS_NgayTao.Width = 74;
            //
            // gridBandChuongTrinh
            //
            this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandChuongTrinh.Caption = "Thông tin chương trình";
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_NguoiTao);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_TenChuongTrinh);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_TenGoc);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_Category);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_TietMuc);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_NuocSX);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_NamSx);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_PostMaster);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_TongTap);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_TongSoRun);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_SoLanDaPhat);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_SoRunCon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_LPS_ThoiLuongChung);
            this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
            this.gridBandChuongTrinh.Width = 960;
            //
            // Col_LPS_NguoiTao
            //
            this.Col_LPS_NguoiTao.Caption = "Người tạo lịch";
            this.Col_LPS_NguoiTao.Name = "Col_LPS_NguoiTao";
            this.Col_LPS_NguoiTao.Visible = true;
            this.Col_LPS_NguoiTao.Width = 77;
            //
            // Col_LPS_TenChuongTrinh
            //
            this.Col_LPS_TenChuongTrinh.Caption = "Tên chương trình";
            this.Col_LPS_TenChuongTrinh.Name = "Col_LPS_TenChuongTrinh";
            this.Col_LPS_TenChuongTrinh.Visible = true;
            this.Col_LPS_TenChuongTrinh.Width = 94;
            //
            // Col_LPS_TenGoc
            //
            this.Col_LPS_TenGoc.Caption = "Tên gốc";
            this.Col_LPS_TenGoc.Name = "Col_LPS_TenGoc";
            this.Col_LPS_TenGoc.Visible = true;
            this.Col_LPS_TenGoc.Width = 50;
            //
            // Col_LPS_Category
            //
            this.Col_LPS_Category.Caption = "Category";
            this.Col_LPS_Category.Name = "Col_LPS_Category";
            this.Col_LPS_Category.Visible = true;
            this.Col_LPS_Category.Width = 57;
            //
            // Col_LPS_TietMuc
            //
            this.Col_LPS_TietMuc.Caption = " Tiết mục";
            this.Col_LPS_TietMuc.Name = "Col_LPS_TietMuc";
            this.Col_LPS_TietMuc.Visible = true;
            this.Col_LPS_TietMuc.Width = 55;
            //
            // Col_LPS_NuocSX
            //
            this.Col_LPS_NuocSX.Caption = "Nước SX";
            this.Col_LPS_NuocSX.Name = "Col_LPS_NuocSX";
            this.Col_LPS_NuocSX.Visible = true;
            this.Col_LPS_NuocSX.Width = 52;
            //
            // Col_LPS_NamSx
            //
            this.Col_LPS_NamSx.Caption = "Năm SX";
            this.Col_LPS_NamSx.Name = "Col_LPS_NamSx";
            this.Col_LPS_NamSx.Visible = true;
            this.Col_LPS_NamSx.Width = 48;
            //
            // Col_LPS_PostMaster
            //
            this.Col_LPS_PostMaster.Caption = "Post/Master";
            this.Col_LPS_PostMaster.Name = "Col_LPS_PostMaster";
            this.Col_LPS_PostMaster.OptionsColumn.AllowShowHide = false;
            this.Col_LPS_PostMaster.Visible = true;
            this.Col_LPS_PostMaster.Width = 70;
            //
            // Col_LPS_TongTap
            //
            this.Col_LPS_TongTap.Caption = "Tổng tập phát";
            this.Col_LPS_TongTap.Name = "Col_LPS_TongTap";
            this.Col_LPS_TongTap.Visible = true;
            this.Col_LPS_TongTap.Width = 80;
            //
            // Col_LPS_TongSoRun
            //
            this.Col_LPS_TongSoRun.Caption = "Tổng số RUN";
            this.Col_LPS_TongSoRun.Name = "Col_LPS_TongSoRun";
            this.Col_LPS_TongSoRun.Visible = true;
            this.Col_LPS_TongSoRun.Width = 74;
            //
            // Col_LPS_SoLanDaPhat
            //
            this.Col_LPS_SoLanDaPhat.Caption = "Số lần đã phát (đã RUN)";
            this.Col_LPS_SoLanDaPhat.Name = "Col_LPS_SoLanDaPhat";
            this.Col_LPS_SoLanDaPhat.Visible = true;
            this.Col_LPS_SoLanDaPhat.Width = 128;
            //
            // Col_LPS_SoRunCon
            //
            this.Col_LPS_SoRunCon.Caption = "Số RUN còn lại";
            this.Col_LPS_SoRunCon.Name = "Col_LPS_SoRunCon";
            this.Col_LPS_SoRunCon.Visible = true;
            this.Col_LPS_SoRunCon.Width = 81;
            //
            // Col_LPS_ThoiLuongChung
            //
            this.Col_LPS_ThoiLuongChung.Caption = "Thời lượng chung";
            this.Col_LPS_ThoiLuongChung.Name = "Col_LPS_ThoiLuongChung";
            this.Col_LPS_ThoiLuongChung.Visible = true;
            this.Col_LPS_ThoiLuongChung.Width = 94;
            //
            // xtraTabControlDetail
            //
            this.xtraTabControlDetail.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.xtraTabControlDetail.Appearance.Options.UseBorderColor = true;
            this.xtraTabControlDetail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControlDetail.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
            this.xtraTabControlDetail.LookAndFeel.UseDefaultLookAndFeel = false;
            this.xtraTabControlDetail.Name = "xtraTabControlDetail";
            this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
            this.xtraTabControlDetail.ShowTabHeader = DevExpress.Utils.DefaultBoolean.False;
            this.xtraTabControlDetail.Size = new System.Drawing.Size(381, 410);
            this.xtraTabControlDetail.TabIndex = 10;
            this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageDetail});
            //
            // xtraTabPageDetail
            //
            this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
            this.xtraTabPageDetail.Name = "xtraTabPageDetail";
            this.xtraTabPageDetail.Size = new System.Drawing.Size(379, 408);
            this.xtraTabPageDetail.Text = "Danh sách biên mục";
            //
            // gridControlDetail
            //
            this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
            this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
            this.gridControlDetail.MainView = this.gridViewDetail;
            this.gridControlDetail.Name = "gridControlDetail";
            this.gridControlDetail.Size = new System.Drawing.Size(379, 408);
            this.gridControlDetail.TabIndex = 3;
            this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewDetail});
            //
            // gridViewDetail
            //
            this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewDetail.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.ColTapSo,
            this.ColThoiLuong,
            this.ColGioPhat,
            this.ColNgayPhat,
            this.ColMaBang,
            this.ColTenTap});
            this.gridViewDetail.GridControl = this.gridControlDetail;
            this.gridViewDetail.GroupCount = 1;
            this.gridViewDetail.IndicatorWidth = 40;
            this.gridViewDetail.Name = "gridViewDetail";
            this.gridViewDetail.OptionsBehavior.AutoExpandAllGroups = true;
            this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
            this.gridViewDetail.OptionsView.ColumnAutoWidth = false;
            this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
            this.gridViewDetail.OptionsView.ShowGroupPanel = false;
            this.gridViewDetail.OptionsView.ShowViewCaption = true;
            this.gridViewDetail.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColNgayPhat, DevExpress.Data.ColumnSortOrder.Ascending)});
            this.gridViewDetail.ViewCaption = "Chi tiết lịch phát sóng";
            //
            // ColTapSo
            //
            this.ColTapSo.Caption = "Tập số";
            this.ColTapSo.Name = "ColTapSo";
            this.ColTapSo.OptionsColumn.AllowEdit = false;
            this.ColTapSo.OptionsColumn.AllowMove = false;
            this.ColTapSo.OptionsColumn.AllowShowHide = false;
            this.ColTapSo.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.ColTapSo.Visible = true;
            this.ColTapSo.VisibleIndex = 1;
            this.ColTapSo.Width = 44;
            //
            // ColThoiLuong
            //
            this.ColThoiLuong.Caption = "Thời lượng";
            this.ColThoiLuong.Name = "ColThoiLuong";
            this.ColThoiLuong.Visible = true;
            this.ColThoiLuong.VisibleIndex = 4;
            this.ColThoiLuong.Width = 62;
            //
            // ColGioPhat
            //
            this.ColGioPhat.Caption = "Giờ phát sóng";
            this.ColGioPhat.Name = "ColGioPhat";
            this.ColGioPhat.OptionsColumn.AllowShowHide = false;
            this.ColGioPhat.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.ColGioPhat.Visible = true;
            this.ColGioPhat.VisibleIndex = 5;
            this.ColGioPhat.Width = 78;
            //
            // ColNgayPhat
            //
            this.ColNgayPhat.Caption = "Ngày phát";
            this.ColNgayPhat.GroupFormat.FormatString = "dddd, dd/MM/yyyy";
            this.ColNgayPhat.GroupFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.ColNgayPhat.Name = "ColNgayPhat";
            this.ColNgayPhat.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.ColNgayPhat.Visible = true;
            this.ColNgayPhat.VisibleIndex = 0;
            //
            // ColMaBang
            //
            this.ColMaBang.Caption = "Mã băng";
            this.ColMaBang.Name = "ColMaBang";
            this.ColMaBang.OptionsColumn.AllowEdit = false;
            this.ColMaBang.OptionsColumn.AllowMove = false;
            this.ColMaBang.OptionsColumn.AllowShowHide = false;
            this.ColMaBang.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.ColMaBang.Visible = true;
            this.ColMaBang.VisibleIndex = 3;
            this.ColMaBang.Width = 53;
            //
            // ColTenTap
            //
            this.ColTenTap.Caption = "Tên tập";
            this.ColTenTap.Name = "ColTenTap";
            this.ColTenTap.Visible = true;
            this.ColTenTap.VisibleIndex = 2;
            this.ColTenTap.Width = 49;
            //
            // frmQuanLyLichPhatSongNewQL
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1250, 545);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.dockPanel1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "FrmQuanLyLichPhatSongNewQL";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Quản lý lịch phát sóng";
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockPanel1.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
            this.popupControlContainerFilter.ResumeLayout(false);
            this.popupControlContainerFilter.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ThongTinThem)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GioPhatDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GioPhatTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NguoiNhap.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenCT.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ThuTrongTuan.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.KenhPhat.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControlPM)).EndInit();
            this.groupControlPM.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
            this.xtraTabControlDetail.ResumeLayout(false);
            this.xtraTabPageDetail.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
            this.ResumeLayout(false);
        }
Ejemplo n.º 27
0
 private void InitCheckListBox()
 {
     _chkList = new DevExpress.XtraEditors.CheckedListBoxControl();
     _chkList.Dock = DockStyle.Fill;
     grpSearchResult.Controls.Add(_chkList);
 }
 /// <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(EditorUserInRoleFrm));
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.TxtNote = new System.Windows.Forms.TextBox();
     this.CLSCRole = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.BtnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.LUEItems = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.BtnRefresh = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CLSCRole)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.TxtNote);
     this.groupControl2.Controls.Add(this.CLSCRole);
     this.groupControl2.Controls.Add(this.BtnUpdate);
     this.groupControl2.Controls.Add(this.labelControl2);
     this.groupControl2.Location = new System.Drawing.Point(9, 75);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(379, 272);
     this.groupControl2.TabIndex = 8;
     this.groupControl2.Text = "تعديل سماحيات المستخدم";
     //
     // TxtNote
     //
     this.TxtNote.BackColor = System.Drawing.SystemColors.ControlLight;
     this.TxtNote.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TxtNote.ForeColor = System.Drawing.Color.Green;
     this.TxtNote.Location = new System.Drawing.Point(5, 24);
     this.TxtNote.Multiline = true;
     this.TxtNote.Name = "TxtNote";
     this.TxtNote.ReadOnly = true;
     this.TxtNote.Size = new System.Drawing.Size(140, 207);
     this.TxtNote.TabIndex = 7;
     this.TxtNote.Text = ".";
     //
     // CLSCRole
     //
     this.CLSCRole.Location = new System.Drawing.Point(151, 24);
     this.CLSCRole.Name = "CLSCRole";
     this.CLSCRole.Size = new System.Drawing.Size(155, 207);
     this.CLSCRole.TabIndex = 4;
     this.CLSCRole.ItemCheck += new DevExpress.XtraEditors.Controls.ItemCheckEventHandler(this.CLSCRole_ItemCheck);
     this.CLSCRole.SelectedIndexChanged += new System.EventHandler(this.CLSCRole_SelectedIndexChanged);
     //
     // BtnUpdate
     //
     this.BtnUpdate.Enabled = false;
     this.BtnUpdate.Location = new System.Drawing.Point(196, 237);
     this.BtnUpdate.Name = "BtnUpdate";
     this.BtnUpdate.Size = new System.Drawing.Size(110, 23);
     this.BtnUpdate.TabIndex = 3;
     this.BtnUpdate.Text = "تعديل";
     this.BtnUpdate.Click += new System.EventHandler(this.BtnUpdate_Click);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(312, 24);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(62, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "السماحيات";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.LUEItems);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Location = new System.Drawing.Point(9, 10);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(379, 59);
     this.groupControl1.TabIndex = 7;
     this.groupControl1.Text = "جميع المستخدمين";
     //
     // LUEItems
     //
     this.LUEItems.Location = new System.Drawing.Point(61, 28);
     this.LUEItems.Name = "LUEItems";
     this.LUEItems.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEItems.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("UserName", "User Name")});
     this.LUEItems.Properties.NullText = "";
     this.LUEItems.Size = new System.Drawing.Size(173, 19);
     this.LUEItems.TabIndex = 0;
     this.LUEItems.EditValueChanged += new System.EventHandler(this.LUEItems_EditValueChanged);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(240, 31);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(77, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "اختار مستخدم";
     //
     // BtnRefresh
     //
     this.BtnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("BtnRefresh.Image")));
     this.BtnRefresh.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.BtnRefresh.Location = new System.Drawing.Point(395, 57);
     this.BtnRefresh.Name = "BtnRefresh";
     this.BtnRefresh.Size = new System.Drawing.Size(31, 241);
     this.BtnRefresh.TabIndex = 10;
     this.BtnRefresh.Click += new System.EventHandler(this.BtnRefresh_Click);
     //
     // EditorUserInRoleFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(435, 355);
     this.Controls.Add(this.BtnRefresh);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name = "EditorUserInRoleFrm";
     this.Text = "سماحيات المستخدمين";
     this.Load += new System.EventHandler(this.EditorJobFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CLSCRole)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEItems.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChuongTrinhViewQL));
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItemCotHienThi = new DevExpress.XtraBars.BarSubItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.TrongKho = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
     this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
     this.plLabel21 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel22 = new DevExpress.XtraEditors.LabelControl();
     this.TenTap = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.SoDKCBHD = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel20 = new DevExpress.XtraEditors.LabelControl();
     this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel19 = new DevExpress.XtraEditors.LabelControl();
     this.TimeslotDen = new DevExpress.XtraEditors.TimeEdit();
     this.TimeslotTu = new DevExpress.XtraEditors.TimeEdit();
     this.SoRunConLaiTu = new DevExpress.XtraEditors.SpinEdit();
     this.SoRunDaDungTu = new DevExpress.XtraEditors.SpinEdit();
     this.SoRunConLaiDen = new DevExpress.XtraEditors.SpinEdit();
     this.SoRunDaDungDen = new DevExpress.XtraEditors.SpinEdit();
     this.TongSoRunDen = new DevExpress.XtraEditors.SpinEdit();
     this.TongSoRunTu = new DevExpress.XtraEditors.SpinEdit();
     this.BQDTTNEndDen = new DevExpress.XtraEditors.DateEdit();
     this.BQDTNNEndDen = new DevExpress.XtraEditors.DateEdit();
     this.BQDTNNEndTu = new DevExpress.XtraEditors.DateEdit();
     this.BQDTTNEndTu = new DevExpress.XtraEditors.DateEdit();
     this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
     this.NamSXDen = new DevExpress.XtraEditors.SpinEdit();
     this.NamSXTu = new DevExpress.XtraEditors.SpinEdit();
     this.plLabel11 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel17 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel16 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel9 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel24 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel10 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel8 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel14 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel13 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
     this.label34 = new DevExpress.XtraEditors.LabelControl();
     this.BanQuyenThuoc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.TenGoc = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plLabel18 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
     this.label10 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel23 = new DevExpress.XtraEditors.LabelControl();
     this.label29 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
     this.label3 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
     this.Col_CT_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NoiDung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_PhanLoaiDrama = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TimeSlot = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TuKhoa = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Nuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Ranking = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TrongKho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Class = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NguonTrading = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Period = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_MoiThiTruong = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_CodeCT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_ChanelRight = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DonViCungCap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_DonViHauKy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NamSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Script = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_Photos = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TrailerGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenHetHan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenThuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenHTV = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDIDStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDIDEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDTNNStar = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_BanQuyenDTNNEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_NoteBQ = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_TongSoRun = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_SoLanPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_SoRunConLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_RunThu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_ReleaseDate = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_ReleaseRun = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_ReleaseRule = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_MuaKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_GhiChu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.Col_CT_HangSanXuat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandFirst = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandSecond = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandInventory = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandLast = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanel1.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TrongKho)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenThuoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.Size = new System.Drawing.Size(0, 0);
     this.gridControlDetail.TabIndex = 9;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
     this.gridViewDetail.OptionsView.ColumnAutoWidth = false;
     this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetail.OptionsView.ShowGroupPanel = false;
     this.gridViewDetail.OptionsView.ShowViewCaption = true;
     this.gridViewDetail.ViewCaption = "Post/Master (Cấp 2)";
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barSubItemCotHienThi});
     this.barManager1.MaxItemId = 36;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemCotHienThi, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "&Xem";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem trước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tìm kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điều &kiện lọc";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barCheckItemFilter.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItemFilter_CheckedChanged);
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đóng";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItemCotHienThi
     //
     this.barSubItemCotHienThi.Caption = "Chọn cột hiển thị";
     this.barSubItemCotHienThi.Id = 35;
     this.barSubItemCotHienThi.Name = "barSubItemCotHienThi";
     this.barSubItemCotHienThi.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1147, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
     this.barDockControlBottom.Size = new System.Drawing.Size(1147, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1147, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
     //
     // dockManager1
     //
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanel1});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // dockPanel1
     //
     this.dockPanel1.Controls.Add(this.dockPanel1_Container);
     this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
     this.dockPanel1.FloatVertical = true;
     this.dockPanel1.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
     this.dockPanel1.Location = new System.Drawing.Point(0, 24);
     this.dockPanel1.Name = "dockPanel1";
     this.dockPanel1.Options.AllowDockLeft = false;
     this.dockPanel1.Options.AllowDockRight = false;
     this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 157);
     this.dockPanel1.Size = new System.Drawing.Size(1147, 157);
     this.dockPanel1.Text = "Điều kiện tìm kiếm";
     this.dockPanel1.VisibilityChanged += new DevExpress.XtraBars.Docking.VisibilityChangedEventHandler(this.dockPanel1_VisibilityChanged);
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(1141, 129);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
     this.popupControlContainerFilter.Controls.Add(this.TrongKho);
     this.popupControlContainerFilter.Controls.Add(this.TapSoDen);
     this.popupControlContainerFilter.Controls.Add(this.TapSoTu);
     this.popupControlContainerFilter.Controls.Add(this.plLabel21);
     this.popupControlContainerFilter.Controls.Add(this.plLabel22);
     this.popupControlContainerFilter.Controls.Add(this.TenTap);
     this.popupControlContainerFilter.Controls.Add(this.SoDKCBHD);
     this.popupControlContainerFilter.Controls.Add(this.plLabel20);
     this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
     this.popupControlContainerFilter.Controls.Add(this.plLabel19);
     this.popupControlContainerFilter.Controls.Add(this.TimeslotDen);
     this.popupControlContainerFilter.Controls.Add(this.TimeslotTu);
     this.popupControlContainerFilter.Controls.Add(this.SoRunConLaiTu);
     this.popupControlContainerFilter.Controls.Add(this.SoRunDaDungTu);
     this.popupControlContainerFilter.Controls.Add(this.SoRunConLaiDen);
     this.popupControlContainerFilter.Controls.Add(this.SoRunDaDungDen);
     this.popupControlContainerFilter.Controls.Add(this.TongSoRunDen);
     this.popupControlContainerFilter.Controls.Add(this.TongSoRunTu);
     this.popupControlContainerFilter.Controls.Add(this.BQDTTNEndDen);
     this.popupControlContainerFilter.Controls.Add(this.BQDTNNEndDen);
     this.popupControlContainerFilter.Controls.Add(this.BQDTNNEndTu);
     this.popupControlContainerFilter.Controls.Add(this.BQDTTNEndTu);
     this.popupControlContainerFilter.Controls.Add(this.PhongBan);
     this.popupControlContainerFilter.Controls.Add(this.NamSXDen);
     this.popupControlContainerFilter.Controls.Add(this.NamSXTu);
     this.popupControlContainerFilter.Controls.Add(this.plLabel11);
     this.popupControlContainerFilter.Controls.Add(this.plLabel17);
     this.popupControlContainerFilter.Controls.Add(this.plLabel16);
     this.popupControlContainerFilter.Controls.Add(this.plLabel15);
     this.popupControlContainerFilter.Controls.Add(this.plLabel9);
     this.popupControlContainerFilter.Controls.Add(this.plLabel3);
     this.popupControlContainerFilter.Controls.Add(this.plLabel2);
     this.popupControlContainerFilter.Controls.Add(this.plLabel24);
     this.popupControlContainerFilter.Controls.Add(this.plLabel10);
     this.popupControlContainerFilter.Controls.Add(this.plLabel8);
     this.popupControlContainerFilter.Controls.Add(this.plLabel14);
     this.popupControlContainerFilter.Controls.Add(this.plLabel13);
     this.popupControlContainerFilter.Controls.Add(this.plLabel12);
     this.popupControlContainerFilter.Controls.Add(this.plLabel7);
     this.popupControlContainerFilter.Controls.Add(this.label34);
     this.popupControlContainerFilter.Controls.Add(this.BanQuyenThuoc);
     this.popupControlContainerFilter.Controls.Add(this.DonViCungCap);
     this.popupControlContainerFilter.Controls.Add(this.Category);
     this.popupControlContainerFilter.Controls.Add(this.TenGoc);
     this.popupControlContainerFilter.Controls.Add(this.NoiDung);
     this.popupControlContainerFilter.Controls.Add(this.QuocGia);
     this.popupControlContainerFilter.Controls.Add(this.TietMuc);
     this.popupControlContainerFilter.Controls.Add(this.plLabel18);
     this.popupControlContainerFilter.Controls.Add(this.plLabel5);
     this.popupControlContainerFilter.Controls.Add(this.label10);
     this.popupControlContainerFilter.Controls.Add(this.plLabel1);
     this.popupControlContainerFilter.Controls.Add(this.plLabel23);
     this.popupControlContainerFilter.Controls.Add(this.label29);
     this.popupControlContainerFilter.Controls.Add(this.plLabel6);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.plLabel4);
     this.popupControlContainerFilter.Controls.Add(this.label5);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(1141, 129);
     this.popupControlContainerFilter.TabIndex = 5;
     this.popupControlContainerFilter.Visible = false;
     //
     // ngayNhap
     //
     this.ngayNhap.Caption = "Từ ngày 18/05/2013 đến ngày 25/05/2013";
     this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.FirstFrom = new System.DateTime(2013, 5, 18, 17, 2, 39, 907);
     this.ngayNhap.FirstTo = new System.DateTime(2013, 5, 25, 17, 2, 39, 907);
     this.ngayNhap.FromDate = new System.DateTime(2013, 5, 18, 17, 2, 39, 907);
     this.ngayNhap.Location = new System.Drawing.Point(844, 80);
     this.ngayNhap.Name = "ngayNhap";
     this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.ngayNhap.SecondFrom = new System.DateTime(2013, 5, 18, 17, 2, 39, 907);
     this.ngayNhap.SecondTo = new System.DateTime(2013, 5, 25, 17, 2, 39, 907);
     this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngayNhap.Size = new System.Drawing.Size(285, 20);
     this.ngayNhap.TabIndex = 249;
     this.ngayNhap.ToDate = new System.DateTime(2013, 5, 25, 17, 2, 39, 907);
     this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
     //
     // TrongKho
     //
     this.TrongKho.CheckOnClick = true;
     this.TrongKho.ColumnWidth = 85;
     this.TrongKho.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "Có"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "Không")});
     this.TrongKho.Location = new System.Drawing.Point(583, 80);
     this.TrongKho.MultiColumn = true;
     this.TrongKho.Name = "TrongKho";
     this.TrongKho.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.TrongKho.Size = new System.Drawing.Size(179, 20);
     this.TrongKho.TabIndex = 248;
     //
     // TapSoDen
     //
     this.TapSoDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoDen.Location = new System.Drawing.Point(687, 106);
     this.TapSoDen.Name = "TapSoDen";
     this.TapSoDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSoDen.Size = new System.Drawing.Size(75, 20);
     this.TapSoDen.TabIndex = 245;
     //
     // TapSoTu
     //
     this.TapSoTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TapSoTu.Location = new System.Drawing.Point(585, 105);
     this.TapSoTu.Name = "TapSoTu";
     this.TapSoTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TapSoTu.Size = new System.Drawing.Size(67, 20);
     this.TapSoTu.TabIndex = 246;
     //
     // plLabel21
     //
     this.plLabel21.Location = new System.Drawing.Point(657, 109);
     this.plLabel21.Name = "plLabel21";
     this.plLabel21.Size = new System.Drawing.Size(18, 13);
     this.plLabel21.TabIndex = 243;
     this.plLabel21.Text = "đến";
     //
     // plLabel22
     //
     this.plLabel22.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.plLabel22.Appearance.Options.UseFont = true;
     this.plLabel22.Location = new System.Drawing.Point(496, 107);
     this.plLabel22.Name = "plLabel22";
     this.plLabel22.Size = new System.Drawing.Size(53, 13);
     this.plLabel22.TabIndex = 244;
     this.plLabel22.Text = "Tập số từ";
     this.plLabel22.ToolTip = "Tập số (Cấp 3)";
     //
     // TenTap
     //
     this.TenTap._DataSource = null;
     this.TenTap._GetField = null;
     this.TenTap.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TenTap.Location = new System.Drawing.Point(844, 106);
     this.TenTap.Name = "TenTap";
     this.TenTap.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenTap.Size = new System.Drawing.Size(294, 20);
     this.TenTap.TabIndex = 242;
     //
     // SoDKCBHD
     //
     this.SoDKCBHD.DataSource = null;
     this.SoDKCBHD.DisplayField = null;
     this.SoDKCBHD.Location = new System.Drawing.Point(333, 103);
     this.SoDKCBHD.Name = "SoDKCBHD";
     this.SoDKCBHD.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.SoDKCBHD.Size = new System.Drawing.Size(150, 20);
     this.SoDKCBHD.TabIndex = 241;
     this.SoDKCBHD.ValueField = null;
     //
     // plLabel20
     //
     this.plLabel20.Location = new System.Drawing.Point(266, 108);
     this.plLabel20.Name = "plLabel20";
     this.plLabel20.Size = new System.Drawing.Size(59, 13);
     this.plLabel20.TabIndex = 240;
     this.plLabel20.Text = "Số ĐKCB HD";
     this.plLabel20.ToolTip = "Số ĐKCB HD (Cấp 2)";
     //
     // LoaiLuuTru
     //
     this.LoaiLuuTru.DataSource = null;
     this.LoaiLuuTru.DisplayField = null;
     this.LoaiLuuTru.Location = new System.Drawing.Point(75, 105);
     this.LoaiLuuTru.Name = "LoaiLuuTru";
     this.LoaiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LoaiLuuTru.Size = new System.Drawing.Size(185, 20);
     this.LoaiLuuTru.TabIndex = 241;
     this.LoaiLuuTru.ValueField = null;
     //
     // plLabel19
     //
     this.plLabel19.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.plLabel19.Appearance.Options.UseFont = true;
     this.plLabel19.Location = new System.Drawing.Point(4, 108);
     this.plLabel19.Name = "plLabel19";
     this.plLabel19.Size = new System.Drawing.Size(65, 13);
     this.plLabel19.TabIndex = 240;
     this.plLabel19.Text = "Loại lưu trữ";
     this.plLabel19.ToolTip = "Loại lưu trữ (cấp 2)";
     //
     // TimeslotDen
     //
     this.TimeslotDen.EditValue = new System.DateTime(2011, 12, 15, 0, 0, 0, 0);
     this.TimeslotDen.Location = new System.Drawing.Point(174, 79);
     this.TimeslotDen.Name = "TimeslotDen";
     this.TimeslotDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TimeslotDen.Properties.Mask.EditMask = "HH:mm";
     this.TimeslotDen.Size = new System.Drawing.Size(86, 20);
     this.TimeslotDen.TabIndex = 239;
     //
     // TimeslotTu
     //
     this.TimeslotTu.EditValue = new System.DateTime(2011, 12, 15, 0, 0, 0, 0);
     this.TimeslotTu.Location = new System.Drawing.Point(48, 79);
     this.TimeslotTu.MenuManager = this.barManager1;
     this.TimeslotTu.Name = "TimeslotTu";
     this.TimeslotTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TimeslotTu.Properties.Mask.EditMask = "HH:mm";
     this.TimeslotTu.Size = new System.Drawing.Size(78, 20);
     this.TimeslotTu.TabIndex = 239;
     //
     // SoRunConLaiTu
     //
     this.SoRunConLaiTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunConLaiTu.Location = new System.Drawing.Point(844, 55);
     this.SoRunConLaiTu.Name = "SoRunConLaiTu";
     this.SoRunConLaiTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunConLaiTu.Size = new System.Drawing.Size(67, 20);
     this.SoRunConLaiTu.TabIndex = 238;
     //
     // SoRunDaDungTu
     //
     this.SoRunDaDungTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunDaDungTu.Location = new System.Drawing.Point(844, 32);
     this.SoRunDaDungTu.Name = "SoRunDaDungTu";
     this.SoRunDaDungTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunDaDungTu.Size = new System.Drawing.Size(67, 20);
     this.SoRunDaDungTu.TabIndex = 238;
     //
     // SoRunConLaiDen
     //
     this.SoRunConLaiDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SoRunConLaiDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunConLaiDen.Location = new System.Drawing.Point(934, 57);
     this.SoRunConLaiDen.Name = "SoRunConLaiDen";
     this.SoRunConLaiDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunConLaiDen.Size = new System.Drawing.Size(204, 20);
     this.SoRunConLaiDen.TabIndex = 238;
     //
     // SoRunDaDungDen
     //
     this.SoRunDaDungDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SoRunDaDungDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunDaDungDen.Location = new System.Drawing.Point(934, 30);
     this.SoRunDaDungDen.Name = "SoRunDaDungDen";
     this.SoRunDaDungDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunDaDungDen.Size = new System.Drawing.Size(204, 20);
     this.SoRunDaDungDen.TabIndex = 238;
     //
     // TongSoRunDen
     //
     this.TongSoRunDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TongSoRunDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TongSoRunDen.Location = new System.Drawing.Point(934, 7);
     this.TongSoRunDen.Name = "TongSoRunDen";
     this.TongSoRunDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongSoRunDen.Size = new System.Drawing.Size(204, 20);
     this.TongSoRunDen.TabIndex = 238;
     //
     // TongSoRunTu
     //
     this.TongSoRunTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TongSoRunTu.Location = new System.Drawing.Point(843, 8);
     this.TongSoRunTu.Name = "TongSoRunTu";
     this.TongSoRunTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongSoRunTu.Size = new System.Drawing.Size(67, 20);
     this.TongSoRunTu.TabIndex = 238;
     //
     // BQDTTNEndDen
     //
     this.BQDTTNEndDen.EditValue = null;
     this.BQDTTNEndDen.Location = new System.Drawing.Point(687, 31);
     this.BQDTTNEndDen.Name = "BQDTTNEndDen";
     this.BQDTTNEndDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTTNEndDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTTNEndDen.Size = new System.Drawing.Size(75, 20);
     this.BQDTTNEndDen.TabIndex = 237;
     //
     // BQDTNNEndDen
     //
     this.BQDTNNEndDen.EditValue = null;
     this.BQDTNNEndDen.Location = new System.Drawing.Point(687, 53);
     this.BQDTNNEndDen.Name = "BQDTNNEndDen";
     this.BQDTNNEndDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTNNEndDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTNNEndDen.Size = new System.Drawing.Size(75, 20);
     this.BQDTNNEndDen.TabIndex = 237;
     //
     // BQDTNNEndTu
     //
     this.BQDTNNEndTu.EditValue = null;
     this.BQDTNNEndTu.Location = new System.Drawing.Point(583, 53);
     this.BQDTNNEndTu.Name = "BQDTNNEndTu";
     this.BQDTNNEndTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTNNEndTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTNNEndTu.Size = new System.Drawing.Size(74, 20);
     this.BQDTNNEndTu.TabIndex = 237;
     //
     // BQDTTNEndTu
     //
     this.BQDTTNEndTu.EditValue = null;
     this.BQDTTNEndTu.Location = new System.Drawing.Point(583, 30);
     this.BQDTTNEndTu.MenuManager = this.barManager1;
     this.BQDTTNEndTu.Name = "BQDTTNEndTu";
     this.BQDTTNEndTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BQDTTNEndTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BQDTTNEndTu.Size = new System.Drawing.Size(73, 20);
     this.BQDTTNEndTu.TabIndex = 237;
     //
     // PhongBan
     //
     this.PhongBan.Location = new System.Drawing.Point(333, 79);
     this.PhongBan.Name = "PhongBan";
     this.PhongBan.Size = new System.Drawing.Size(150, 20);
     this.PhongBan.TabIndex = 10;
     //
     // NamSXDen
     //
     this.NamSXDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.NamSXDen.Location = new System.Drawing.Point(430, 32);
     this.NamSXDen.Name = "NamSXDen";
     this.NamSXDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSXDen.Size = new System.Drawing.Size(55, 20);
     this.NamSXDen.TabIndex = 234;
     //
     // NamSXTu
     //
     this.NamSXTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.NamSXTu.Location = new System.Drawing.Point(333, 32);
     this.NamSXTu.MenuManager = this.barManager1;
     this.NamSXTu.Name = "NamSXTu";
     this.NamSXTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSXTu.Size = new System.Drawing.Size(69, 20);
     this.NamSXTu.TabIndex = 235;
     //
     // plLabel11
     //
     this.plLabel11.Location = new System.Drawing.Point(663, 57);
     this.plLabel11.Name = "plLabel11";
     this.plLabel11.Size = new System.Drawing.Size(18, 13);
     this.plLabel11.TabIndex = 231;
     this.plLabel11.Text = "đến";
     //
     // plLabel17
     //
     this.plLabel17.Location = new System.Drawing.Point(914, 60);
     this.plLabel17.Name = "plLabel17";
     this.plLabel17.Size = new System.Drawing.Size(18, 13);
     this.plLabel17.TabIndex = 231;
     this.plLabel17.Text = "đến";
     //
     // plLabel16
     //
     this.plLabel16.Location = new System.Drawing.Point(914, 36);
     this.plLabel16.Name = "plLabel16";
     this.plLabel16.Size = new System.Drawing.Size(18, 13);
     this.plLabel16.TabIndex = 231;
     this.plLabel16.Text = "đến";
     //
     // plLabel15
     //
     this.plLabel15.Location = new System.Drawing.Point(914, 11);
     this.plLabel15.Name = "plLabel15";
     this.plLabel15.Size = new System.Drawing.Size(18, 13);
     this.plLabel15.TabIndex = 231;
     this.plLabel15.Text = "đến";
     //
     // plLabel9
     //
     this.plLabel9.Location = new System.Drawing.Point(663, 34);
     this.plLabel9.Name = "plLabel9";
     this.plLabel9.Size = new System.Drawing.Size(18, 13);
     this.plLabel9.TabIndex = 231;
     this.plLabel9.Text = "đến";
     //
     // plLabel3
     //
     this.plLabel3.Location = new System.Drawing.Point(407, 36);
     this.plLabel3.Name = "plLabel3";
     this.plLabel3.Size = new System.Drawing.Size(18, 13);
     this.plLabel3.TabIndex = 231;
     this.plLabel3.Text = "đến";
     //
     // plLabel2
     //
     this.plLabel2.Location = new System.Drawing.Point(267, 35);
     this.plLabel2.Name = "plLabel2";
     this.plLabel2.Size = new System.Drawing.Size(50, 13);
     this.plLabel2.TabIndex = 229;
     this.plLabel2.Text = "Năm SX từ";
     this.plLabel2.ToolTip = "Năm sản xuất chương trình (Câp 1)";
     //
     // plLabel24
     //
     this.plLabel24.Location = new System.Drawing.Point(494, 80);
     this.plLabel24.Name = "plLabel24";
     this.plLabel24.Size = new System.Drawing.Size(48, 13);
     this.plLabel24.TabIndex = 232;
     this.plLabel24.Text = "Trong kho";
     this.plLabel24.ToolTip = "Dữ liệu bắt buộc nhập";
     //
     // plLabel10
     //
     this.plLabel10.Location = new System.Drawing.Point(496, 57);
     this.plLabel10.Name = "plLabel10";
     this.plLabel10.Size = new System.Drawing.Size(79, 13);
     this.plLabel10.TabIndex = 232;
     this.plLabel10.Text = "BQ DTNN End từ";
     this.plLabel10.ToolTip = "Bản quyền đối với đối tác nước ngoài End (Cấp 1)";
     //
     // plLabel8
     //
     this.plLabel8.Location = new System.Drawing.Point(495, 34);
     this.plLabel8.Name = "plLabel8";
     this.plLabel8.Size = new System.Drawing.Size(78, 13);
     this.plLabel8.TabIndex = 232;
     this.plLabel8.Text = "BQ DTTN End từ";
     this.plLabel8.ToolTip = "Bản quyền đối với đối tác trong nước End (Cấp 1)";
     //
     // plLabel14
     //
     this.plLabel14.Location = new System.Drawing.Point(768, 57);
     this.plLabel14.Name = "plLabel14";
     this.plLabel14.Size = new System.Drawing.Size(64, 13);
     this.plLabel14.TabIndex = 232;
     this.plLabel14.Text = "Số run còn lại";
     this.plLabel14.ToolTip = "Số run còn lại (Cấp 1)";
     //
     // plLabel13
     //
     this.plLabel13.Location = new System.Drawing.Point(768, 34);
     this.plLabel13.Name = "plLabel13";
     this.plLabel13.Size = new System.Drawing.Size(73, 13);
     this.plLabel13.TabIndex = 232;
     this.plLabel13.Text = "Số run đã dùng";
     this.plLabel13.ToolTip = "Số run đã dùng (Cấp 1)";
     //
     // plLabel12
     //
     this.plLabel12.Location = new System.Drawing.Point(768, 14);
     this.plLabel12.Name = "plLabel12";
     this.plLabel12.Size = new System.Drawing.Size(57, 13);
     this.plLabel12.TabIndex = 232;
     this.plLabel12.Text = "Tổng số run";
     this.plLabel12.ToolTip = "Tổng số run (Cấp 1)";
     //
     // plLabel7
     //
     this.plLabel7.Location = new System.Drawing.Point(496, 12);
     this.plLabel7.Name = "plLabel7";
     this.plLabel7.Size = new System.Drawing.Size(81, 13);
     this.plLabel7.TabIndex = 232;
     this.plLabel7.Text = "Bản quyền thuộc";
     this.plLabel7.ToolTip = "Bản quyền thuộc (Cấp 1)";
     //
     // label34
     //
     this.label34.Location = new System.Drawing.Point(267, 58);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(60, 13);
     this.label34.TabIndex = 232;
     this.label34.Text = "ĐV cung cấp";
     this.label34.ToolTip = "Đơn vị cung cấp (Cấp 1)";
     //
     // BanQuyenThuoc
     //
     this.BanQuyenThuoc.DataSource = null;
     this.BanQuyenThuoc.DisplayField = null;
     this.BanQuyenThuoc.Location = new System.Drawing.Point(583, 8);
     this.BanQuyenThuoc.Name = "BanQuyenThuoc";
     this.BanQuyenThuoc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenThuoc.Size = new System.Drawing.Size(179, 20);
     this.BanQuyenThuoc.TabIndex = 227;
     this.BanQuyenThuoc.ValueField = null;
     //
     // DonViCungCap
     //
     this.DonViCungCap.DataSource = null;
     this.DonViCungCap.DisplayField = null;
     this.DonViCungCap.Location = new System.Drawing.Point(333, 55);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DonViCungCap.Size = new System.Drawing.Size(150, 20);
     this.DonViCungCap.TabIndex = 227;
     this.DonViCungCap.ValueField = null;
     //
     // Category
     //
     this.Category._DataSource = null;
     this.Category._GetField = null;
     this.Category.Location = new System.Drawing.Point(174, 54);
     this.Category.Name = "Category";
     this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Category.Size = new System.Drawing.Size(87, 20);
     this.Category.TabIndex = 1;
     //
     // TenGoc
     //
     this.TenGoc._DataSource = null;
     this.TenGoc._GetField = null;
     this.TenGoc.Location = new System.Drawing.Point(47, 31);
     this.TenGoc.Name = "TenGoc";
     this.TenGoc.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenGoc.Size = new System.Drawing.Size(214, 20);
     this.TenGoc.TabIndex = 1;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(48, 8);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(213, 20);
     this.NoiDung.TabIndex = 0;
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.Location = new System.Drawing.Point(333, 8);
     this.QuocGia.Name = "QuocGia";
     this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.QuocGia.Size = new System.Drawing.Size(152, 20);
     this.QuocGia.TabIndex = 220;
     this.QuocGia.ValueField = null;
     //
     // TietMuc
     //
     this.TietMuc.DataSource = null;
     this.TietMuc.DisplayField = null;
     this.TietMuc.Location = new System.Drawing.Point(48, 54);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TietMuc.Size = new System.Drawing.Size(78, 20);
     this.TietMuc.TabIndex = 2;
     this.TietMuc.ValueField = null;
     //
     // plLabel18
     //
     this.plLabel18.Location = new System.Drawing.Point(133, 83);
     this.plLabel18.Name = "plLabel18";
     this.plLabel18.Size = new System.Drawing.Size(20, 13);
     this.plLabel18.TabIndex = 213;
     this.plLabel18.Text = "Đến";
     this.plLabel18.ToolTip = "Nước sản xuất";
     //
     // plLabel5
     //
     this.plLabel5.Location = new System.Drawing.Point(128, 57);
     this.plLabel5.Name = "plLabel5";
     this.plLabel5.Size = new System.Drawing.Size(45, 13);
     this.plLabel5.TabIndex = 213;
     this.plLabel5.Text = "Category";
     this.plLabel5.ToolTip = "Category (Cấp 1)";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(267, 12);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(40, 13);
     this.label10.TabIndex = 213;
     this.label10.Text = "Nước SX";
     this.label10.ToolTip = "Nước sản xuất (Cấp 1)";
     //
     // plLabel1
     //
     this.plLabel1.Location = new System.Drawing.Point(266, 83);
     this.plLabel1.Name = "plLabel1";
     this.plLabel1.Size = new System.Drawing.Size(51, 13);
     this.plLabel1.TabIndex = 217;
     this.plLabel1.Text = "Phòng ban";
     this.plLabel1.ToolTip = "Phòng ban (Cấp 1)";
     //
     // plLabel23
     //
     this.plLabel23.Location = new System.Drawing.Point(768, 110);
     this.plLabel23.Name = "plLabel23";
     this.plLabel23.Size = new System.Drawing.Size(37, 13);
     this.plLabel23.TabIndex = 217;
     this.plLabel23.Text = "Tên tập";
     this.plLabel23.ToolTip = "Tên tập (Cấp 3)";
     //
     // label29
     //
     this.label29.Location = new System.Drawing.Point(768, 83);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(52, 13);
     this.label29.TabIndex = 217;
     this.label29.Text = "Ngày nhập";
     this.label29.ToolTip = "Ngày nhập thông tin chương trình  (Cấp 1)";
     //
     // plLabel6
     //
     this.plLabel6.Location = new System.Drawing.Point(4, 34);
     this.plLabel6.Name = "plLabel6";
     this.plLabel6.Size = new System.Drawing.Size(38, 13);
     this.plLabel6.TabIndex = 218;
     this.plLabel6.Text = "Tên gốc";
     this.plLabel6.ToolTip = "Tên chương trình gốc (cấp 1)";
     //
     // label3
     //
     this.label3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.label3.Appearance.Options.UseFont = true;
     this.label3.Location = new System.Drawing.Point(3, 11);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(38, 13);
     this.label3.TabIndex = 218;
     this.label3.Text = "Tên CT";
     this.label3.ToolTip = "Tên chương trình (Cấp 1)";
     //
     // plLabel4
     //
     this.plLabel4.Location = new System.Drawing.Point(3, 83);
     this.plLabel4.Name = "plLabel4";
     this.plLabel4.Size = new System.Drawing.Size(39, 13);
     this.plLabel4.TabIndex = 219;
     this.plLabel4.Text = "Timeslot";
     this.plLabel4.ToolTip = "Timeslot (Cấp 1)";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(2, 57);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 219;
     this.label5.Text = "Tiết mục";
     this.label5.ToolTip = "Tiết mục (Cấp 1)";
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(0, 0);
     this.xtraTabControlDetail.TabIndex = 10;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     this.xtraTabControlDetail.Visible = false;
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(0, 0);
     this.xtraTabPageDetail.Text = "Post/Master";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 181);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseFont = true;
     this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseTextOptions = true;
     this.splitContainerControl1.Panel1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
     this.splitContainerControl1.Panel1.Text = "Chương trình";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1147, 364);
     this.splitContainerControl1.SplitterPosition = 503;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
     this.gridControlMaster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(1147, 358);
     this.gridControlMaster.TabIndex = 9;
     this.gridControlMaster.TabStop = false;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch);
     this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Appearance.ViewCaption.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.gridViewMaster.Appearance.ViewCaption.Options.UseBackColor = true;
     this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBandFirst,
     this.gridBandSecond,
     this.gridBandInventory,
     this.gridBandLast,
     this.gridBandThongTinBan});
     this.gridViewMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.Col_CT_NoiDung,
     this.Col_CT_TenGoc,
     this.Col_CT_TietMuc,
     this.Col_CT_TimeSlot,
     this.Col_CT_TuKhoa,
     this.Col_CT_GhiChu,
     this.Col_CT_NamSX,
     this.Col_CT_Nuoc,
     this.Col_CT_DonViCungCap,
     this.Col_CT_TongSoRun,
     this.Col_CT_SoLanPhat,
     this.Col_CT_SoRunConLai,
     this.Col_CT_Category,
     this.Col_CT_Ranking,
     this.Col_CT_Script,
     this.Col_CT_Photos,
     this.Col_CT_TrailerGoc,
     this.Col_CT_BanQuyenThuoc,
     this.Col_CT_BanQuyenDIDStart,
     this.Col_CT_BanQuyenDIDEnd,
     this.Col_CT_BanQuyenDTNNEnd,
     this.Col_CT_BanQuyenHetHan,
     this.Col_CT_BanQuyenHTV,
     this.Col_CT_MuaKem,
     this.Col_CT_TrongKho,
     this.Col_CT_Class,
     this.Col_CT_Period,
     this.Col_CT_NguonTrading,
     this.Col_CT_ChanelRight,
     this.Col_CT_NoteBQ,
     this.Col_CT_RunThu,
     this.Col_CT_BanQuyenDTNNStar,
     this.Col_CT_MoiThiTruong,
     this.Col_CT_PhanLoaiDrama,
     this.Col_CT_ReleaseDate,
     this.Col_CT_ReleaseRun,
     this.Col_CT_ReleaseRule,
     this.Col_CT_DonViHauKy,
     this.Col_CT_CodeCT,
     this.Col_CT_HangSanXuat});
     this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205);
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.OptionsBehavior.AutoExpandAllGroups = true;
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsSelection.MultiSelect = true;
     this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.ViewCaption = "Chương trình (Cấp 1)";
     //
     // Col_CT_Category
     //
     this.Col_CT_Category.Caption = "Category";
     this.Col_CT_Category.Name = "Col_CT_Category";
     this.Col_CT_Category.Visible = true;
     this.Col_CT_Category.Width = 57;
     //
     // Col_CT_NoiDung
     //
     this.Col_CT_NoiDung.Caption = "Tên chương trình";
     this.Col_CT_NoiDung.Name = "Col_CT_NoiDung";
     this.Col_CT_NoiDung.OptionsColumn.AllowMove = false;
     this.Col_CT_NoiDung.OptionsColumn.AllowShowHide = false;
     this.Col_CT_NoiDung.Visible = true;
     this.Col_CT_NoiDung.Width = 94;
     //
     // Col_CT_TenGoc
     //
     this.Col_CT_TenGoc.Caption = "Tên gốc";
     this.Col_CT_TenGoc.Name = "Col_CT_TenGoc";
     this.Col_CT_TenGoc.Visible = true;
     this.Col_CT_TenGoc.Width = 50;
     //
     // Col_CT_TietMuc
     //
     this.Col_CT_TietMuc.Caption = "Tiết mục";
     this.Col_CT_TietMuc.Name = "Col_CT_TietMuc";
     this.Col_CT_TietMuc.OptionsColumn.AllowMove = false;
     this.Col_CT_TietMuc.OptionsColumn.AllowShowHide = false;
     this.Col_CT_TietMuc.Visible = true;
     this.Col_CT_TietMuc.Width = 52;
     //
     // Col_CT_PhanLoaiDrama
     //
     this.Col_CT_PhanLoaiDrama.Caption = "Phân loại Drama";
     this.Col_CT_PhanLoaiDrama.Name = "Col_CT_PhanLoaiDrama";
     this.Col_CT_PhanLoaiDrama.Visible = true;
     this.Col_CT_PhanLoaiDrama.Width = 89;
     //
     // Col_CT_TimeSlot
     //
     this.Col_CT_TimeSlot.Caption = "Time Slot";
     this.Col_CT_TimeSlot.Name = "Col_CT_TimeSlot";
     this.Col_CT_TimeSlot.Visible = true;
     this.Col_CT_TimeSlot.Width = 55;
     //
     // Col_CT_TuKhoa
     //
     this.Col_CT_TuKhoa.Caption = "Từ khóa";
     this.Col_CT_TuKhoa.Name = "Col_CT_TuKhoa";
     this.Col_CT_TuKhoa.Visible = true;
     this.Col_CT_TuKhoa.Width = 51;
     //
     // Col_CT_Nuoc
     //
     this.Col_CT_Nuoc.Caption = "Nước SX";
     this.Col_CT_Nuoc.Name = "Col_CT_Nuoc";
     this.Col_CT_Nuoc.ToolTip = "Nước sản xuất";
     this.Col_CT_Nuoc.Visible = true;
     this.Col_CT_Nuoc.Width = 52;
     //
     // Col_CT_Ranking
     //
     this.Col_CT_Ranking.Caption = "Ranking";
     this.Col_CT_Ranking.Name = "Col_CT_Ranking";
     this.Col_CT_Ranking.Visible = true;
     this.Col_CT_Ranking.Width = 50;
     //
     // Col_CT_TrongKho
     //
     this.Col_CT_TrongKho.Caption = "Trong kho";
     this.Col_CT_TrongKho.Name = "Col_CT_TrongKho";
     this.Col_CT_TrongKho.Visible = true;
     this.Col_CT_TrongKho.Width = 60;
     //
     // Col_CT_Class
     //
     this.Col_CT_Class.Caption = "Điểm";
     this.Col_CT_Class.Name = "Col_CT_Class";
     this.Col_CT_Class.Visible = true;
     this.Col_CT_Class.Width = 37;
     //
     // Col_CT_NguonTrading
     //
     this.Col_CT_NguonTrading.Caption = "Nguồn trading";
     this.Col_CT_NguonTrading.Name = "Col_CT_NguonTrading";
     this.Col_CT_NguonTrading.Visible = true;
     this.Col_CT_NguonTrading.Width = 80;
     //
     // Col_CT_Period
     //
     this.Col_CT_Period.Caption = "Period";
     this.Col_CT_Period.Name = "Col_CT_Period";
     this.Col_CT_Period.Visible = true;
     this.Col_CT_Period.Width = 42;
     //
     // Col_CT_MoiThiTruong
     //
     this.Col_CT_MoiThiTruong.Caption = "Mới trên thị trường";
     this.Col_CT_MoiThiTruong.Name = "Col_CT_MoiThiTruong";
     this.Col_CT_MoiThiTruong.Visible = true;
     this.Col_CT_MoiThiTruong.Width = 102;
     //
     // Col_CT_CodeCT
     //
     this.Col_CT_CodeCT.Caption = "Code CT";
     this.Col_CT_CodeCT.Name = "Col_CT_CodeCT";
     this.Col_CT_CodeCT.Visible = true;
     //
     // Col_CT_ChanelRight
     //
     this.Col_CT_ChanelRight.Caption = "Channel right";
     this.Col_CT_ChanelRight.Name = "Col_CT_ChanelRight";
     this.Col_CT_ChanelRight.Visible = true;
     this.Col_CT_ChanelRight.Width = 76;
     //
     // Col_CT_DonViCungCap
     //
     this.Col_CT_DonViCungCap.Caption = "Đơn vị cung cấp";
     this.Col_CT_DonViCungCap.Name = "Col_CT_DonViCungCap";
     this.Col_CT_DonViCungCap.Visible = true;
     this.Col_CT_DonViCungCap.Width = 89;
     //
     // Col_CT_DonViHauKy
     //
     this.Col_CT_DonViHauKy.Caption = "Đơn vị hậu kỳ";
     this.Col_CT_DonViHauKy.Name = "Col_CT_DonViHauKy";
     this.Col_CT_DonViHauKy.Visible = true;
     this.Col_CT_DonViHauKy.Width = 142;
     //
     // Col_CT_NamSX
     //
     this.Col_CT_NamSX.Caption = "Năm SX";
     this.Col_CT_NamSX.Name = "Col_CT_NamSX";
     this.Col_CT_NamSX.Visible = true;
     this.Col_CT_NamSX.Width = 48;
     //
     // Col_CT_Script
     //
     this.Col_CT_Script.Caption = "Script";
     this.Col_CT_Script.Name = "Col_CT_Script";
     this.Col_CT_Script.Visible = true;
     this.Col_CT_Script.Width = 39;
     //
     // Col_CT_Photos
     //
     this.Col_CT_Photos.Caption = "Photos";
     this.Col_CT_Photos.Name = "Col_CT_Photos";
     this.Col_CT_Photos.Visible = true;
     this.Col_CT_Photos.Width = 45;
     //
     // Col_CT_TrailerGoc
     //
     this.Col_CT_TrailerGoc.Caption = "Trailer gốc";
     this.Col_CT_TrailerGoc.Name = "Col_CT_TrailerGoc";
     this.Col_CT_TrailerGoc.Visible = true;
     this.Col_CT_TrailerGoc.Width = 62;
     //
     // Col_CT_BanQuyenHetHan
     //
     this.Col_CT_BanQuyenHetHan.Caption = "Hết hạn BQ";
     this.Col_CT_BanQuyenHetHan.Name = "Col_CT_BanQuyenHetHan";
     this.Col_CT_BanQuyenHetHan.ToolTip = "Bản quyền đối tác nước ngoài End (Năm)";
     this.Col_CT_BanQuyenHetHan.Visible = true;
     this.Col_CT_BanQuyenHetHan.Width = 67;
     //
     // Col_CT_BanQuyenThuoc
     //
     this.Col_CT_BanQuyenThuoc.Caption = "Bản quyền thuộc";
     this.Col_CT_BanQuyenThuoc.Name = "Col_CT_BanQuyenThuoc";
     this.Col_CT_BanQuyenThuoc.Visible = true;
     this.Col_CT_BanQuyenThuoc.Width = 93;
     //
     // Col_CT_BanQuyenHTV
     //
     this.Col_CT_BanQuyenHTV.Caption = "Bản quyền HTV";
     this.Col_CT_BanQuyenHTV.Name = "Col_CT_BanQuyenHTV";
     this.Col_CT_BanQuyenHTV.Visible = true;
     this.Col_CT_BanQuyenHTV.Width = 85;
     //
     // Col_CT_BanQuyenDIDStart
     //
     this.Col_CT_BanQuyenDIDStart.Caption = "Bản quyền DTTN Start";
     this.Col_CT_BanQuyenDIDStart.Name = "Col_CT_BanQuyenDIDStart";
     this.Col_CT_BanQuyenDIDStart.ToolTip = "Bản quyền đối tác trong nước Start";
     this.Col_CT_BanQuyenDIDStart.Visible = true;
     this.Col_CT_BanQuyenDIDStart.Width = 119;
     //
     // Col_CT_BanQuyenDIDEnd
     //
     this.Col_CT_BanQuyenDIDEnd.Caption = "Bản quyền DTTN End";
     this.Col_CT_BanQuyenDIDEnd.Name = "Col_CT_BanQuyenDIDEnd";
     this.Col_CT_BanQuyenDIDEnd.ToolTip = "Bản quyền đối tác trong nước End";
     this.Col_CT_BanQuyenDIDEnd.Visible = true;
     this.Col_CT_BanQuyenDIDEnd.Width = 113;
     //
     // Col_CT_BanQuyenDTNNStar
     //
     this.Col_CT_BanQuyenDTNNStar.Caption = "Bản quyền ĐTNN Start";
     this.Col_CT_BanQuyenDTNNStar.Name = "Col_CT_BanQuyenDTNNStar";
     this.Col_CT_BanQuyenDTNNStar.Visible = true;
     this.Col_CT_BanQuyenDTNNStar.Width = 121;
     //
     // Col_CT_BanQuyenDTNNEnd
     //
     this.Col_CT_BanQuyenDTNNEnd.Caption = "Bản quyền ĐTNN End";
     this.Col_CT_BanQuyenDTNNEnd.Name = "Col_CT_BanQuyenDTNNEnd";
     this.Col_CT_BanQuyenDTNNEnd.ToolTip = "Bản quyền đối tác nước ngoài End (Ngày)";
     this.Col_CT_BanQuyenDTNNEnd.Visible = true;
     this.Col_CT_BanQuyenDTNNEnd.Width = 115;
     //
     // Col_CT_NoteBQ
     //
     this.Col_CT_NoteBQ.Caption = "Note bản quyền";
     this.Col_CT_NoteBQ.Name = "Col_CT_NoteBQ";
     this.Col_CT_NoteBQ.Visible = true;
     this.Col_CT_NoteBQ.Width = 89;
     //
     // Col_CT_TongSoRun
     //
     this.Col_CT_TongSoRun.Caption = "Tổng số Run";
     this.Col_CT_TongSoRun.Name = "Col_CT_TongSoRun";
     this.Col_CT_TongSoRun.Visible = true;
     this.Col_CT_TongSoRun.Width = 72;
     //
     // Col_CT_SoLanPhat
     //
     this.Col_CT_SoLanPhat.Caption = "Tồng số lần đã phát (đã Run)";
     this.Col_CT_SoLanPhat.Name = "Col_CT_SoLanPhat";
     this.Col_CT_SoLanPhat.Visible = true;
     this.Col_CT_SoLanPhat.Width = 152;
     //
     // Col_CT_SoRunConLai
     //
     this.Col_CT_SoRunConLai.Caption = "Số Run còn lại";
     this.Col_CT_SoRunConLai.Name = "Col_CT_SoRunConLai";
     this.Col_CT_SoRunConLai.Visible = true;
     this.Col_CT_SoRunConLai.Width = 79;
     //
     // Col_CT_RunThu
     //
     this.Col_CT_RunThu.Caption = "Run thứ";
     this.Col_CT_RunThu.Name = "Col_CT_RunThu";
     this.Col_CT_RunThu.Visible = true;
     this.Col_CT_RunThu.Width = 51;
     //
     // Col_CT_ReleaseDate
     //
     this.Col_CT_ReleaseDate.Caption = "Release date";
     this.Col_CT_ReleaseDate.Name = "Col_CT_ReleaseDate";
     this.Col_CT_ReleaseDate.Visible = true;
     //
     // Col_CT_ReleaseRun
     //
     this.Col_CT_ReleaseRun.Caption = "Release run";
     this.Col_CT_ReleaseRun.Name = "Col_CT_ReleaseRun";
     this.Col_CT_ReleaseRun.Visible = true;
     this.Col_CT_ReleaseRun.Width = 69;
     //
     // Col_CT_ReleaseRule
     //
     this.Col_CT_ReleaseRule.Caption = "Release rule";
     this.Col_CT_ReleaseRule.Name = "Col_CT_ReleaseRule";
     this.Col_CT_ReleaseRule.Visible = true;
     this.Col_CT_ReleaseRule.Width = 71;
     //
     // Col_CT_MuaKem
     //
     this.Col_CT_MuaKem.Caption = "Mua kèm";
     this.Col_CT_MuaKem.Name = "Col_CT_MuaKem";
     this.Col_CT_MuaKem.Visible = true;
     this.Col_CT_MuaKem.Width = 54;
     //
     // Col_CT_GhiChu
     //
     this.Col_CT_GhiChu.Caption = "Ghi chú";
     this.Col_CT_GhiChu.Name = "Col_CT_GhiChu";
     this.Col_CT_GhiChu.Visible = true;
     this.Col_CT_GhiChu.Width = 47;
     //
     // Col_CT_HangSanXuat
     //
     this.Col_CT_HangSanXuat.Caption = "Hãng sản xuất";
     this.Col_CT_HangSanXuat.Name = "Col_CT_HangSanXuat";
     this.Col_CT_HangSanXuat.Visible = true;
     this.Col_CT_HangSanXuat.Width = 82;
     //
     // gridBandFirst
     //
     this.gridBandFirst.Columns.Add(this.Col_CT_Category);
     this.gridBandFirst.Columns.Add(this.Col_CT_NoiDung);
     this.gridBandFirst.Columns.Add(this.Col_CT_TenGoc);
     this.gridBandFirst.Columns.Add(this.Col_CT_TietMuc);
     this.gridBandFirst.Columns.Add(this.Col_CT_PhanLoaiDrama);
     this.gridBandFirst.Columns.Add(this.Col_CT_TimeSlot);
     this.gridBandFirst.Columns.Add(this.Col_CT_TuKhoa);
     this.gridBandFirst.Columns.Add(this.Col_CT_Nuoc);
     this.gridBandFirst.Columns.Add(this.Col_CT_Ranking);
     this.gridBandFirst.Columns.Add(this.Col_CT_TrongKho);
     this.gridBandFirst.Columns.Add(this.Col_CT_Class);
     this.gridBandFirst.Columns.Add(this.Col_CT_NguonTrading);
     this.gridBandFirst.Columns.Add(this.Col_CT_Period);
     this.gridBandFirst.Columns.Add(this.Col_CT_MoiThiTruong);
     this.gridBandFirst.Columns.Add(this.Col_CT_CodeCT);
     this.gridBandFirst.Name = "gridBandFirst";
     this.gridBandFirst.Width = 946;
     //
     // gridBandSecond
     //
     this.gridBandSecond.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandSecond.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandSecond.Columns.Add(this.Col_CT_ChanelRight);
     this.gridBandSecond.Columns.Add(this.Col_CT_DonViCungCap);
     this.gridBandSecond.Columns.Add(this.Col_CT_DonViHauKy);
     this.gridBandSecond.Columns.Add(this.Col_CT_HangSanXuat);
     this.gridBandSecond.Columns.Add(this.Col_CT_NamSX);
     this.gridBandSecond.Columns.Add(this.Col_CT_Script);
     this.gridBandSecond.Columns.Add(this.Col_CT_Photos);
     this.gridBandSecond.Columns.Add(this.Col_CT_TrailerGoc);
     this.gridBandSecond.Columns.Add(this.Col_CT_BanQuyenHetHan);
     this.gridBandSecond.Columns.Add(this.Col_CT_BanQuyenThuoc);
     this.gridBandSecond.Columns.Add(this.Col_CT_BanQuyenHTV);
     this.gridBandSecond.Columns.Add(this.Col_CT_BanQuyenDIDStart);
     this.gridBandSecond.Columns.Add(this.Col_CT_BanQuyenDIDEnd);
     this.gridBandSecond.Columns.Add(this.Col_CT_BanQuyenDTNNStar);
     this.gridBandSecond.Columns.Add(this.Col_CT_BanQuyenDTNNEnd);
     this.gridBandSecond.Columns.Add(this.Col_CT_NoteBQ);
     this.gridBandSecond.Columns.Add(this.Col_CT_TongSoRun);
     this.gridBandSecond.Columns.Add(this.Col_CT_SoLanPhat);
     this.gridBandSecond.Columns.Add(this.Col_CT_SoRunConLai);
     this.gridBandSecond.Columns.Add(this.Col_CT_RunThu);
     this.gridBandSecond.Name = "gridBandSecond";
     this.gridBandSecond.Width = 1739;
     //
     // gridBandInventory
     //
     this.gridBandInventory.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandInventory.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandInventory.Caption = "Inventory";
     this.gridBandInventory.Columns.Add(this.Col_CT_ReleaseDate);
     this.gridBandInventory.Columns.Add(this.Col_CT_ReleaseRun);
     this.gridBandInventory.Columns.Add(this.Col_CT_ReleaseRule);
     this.gridBandInventory.Name = "gridBandInventory";
     this.gridBandInventory.Width = 215;
     //
     // gridBandLast
     //
     this.gridBandLast.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandLast.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandLast.Columns.Add(this.Col_CT_MuaKem);
     this.gridBandLast.Columns.Add(this.Col_CT_GhiChu);
     this.gridBandLast.Name = "gridBandLast";
     this.gridBandLast.Width = 101;
     //
     // gridBandThongTinBan
     //
     this.gridBandThongTinBan.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinBan.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinBan.Caption = "Thông tin bán";
     this.gridBandThongTinBan.Name = "gridBandThongTinBan";
     this.gridBandThongTinBan.OptionsBand.ShowInCustomizationForm = false;
     this.gridBandThongTinBan.Visible = false;
     this.gridBandThongTinBan.Width = 67;
     //
     // FrmChuongTrinhViewQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1147, 545);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.dockPanel1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "FrmChuongTrinhViewQL";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Hiển thị Library";
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanel1.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TrongKho)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeslotTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRunTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenThuoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     this.ResumeLayout(false);
 }