void InventarioFisicoCalcEdit_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit editor = (DevExpress.XtraEditors.CalcEdit)sender;
     //if (!editor.IsModified)
     //    return;
     this.AjustesCalcEdit.Value = this.InventarioFisicoCalcEdit.Value - this.FinalCalcEdit.Value;
 }
Пример #2
0
 void EfectivoTextEdit_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit editor = (DevExpress.XtraEditors.CalcEdit)sender;
     factura.Efectivo = (double)editor.Value;
     factura.calcularSaldo();
     this.facturaBindingSource.ResetCurrentItem();
 }
 void CalcEdit_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit editor = (DevExpress.XtraEditors.CalcEdit)sender;
     //if (!editor.IsModified)
     //    return;
     this.libroInventarioBindingSource.EndEdit();
     registro.Calcular();
 }
Пример #4
0
 void txtTransferencia_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit editor = (DevExpress.XtraEditors.CalcEdit)sender;
     factura.Transferencia = (double)editor.Value;
     factura.TasaIva       = CalcularTasaIva();
     factura.Totalizar(false, 0);
     this.facturaBindingSource.ResetCurrentItem();
 }
 void MontoGravableCalcEdit_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit editor = (DevExpress.XtraEditors.CalcEdit)sender;
     //if (!editor.IsModified)
     //    return;
     this.libroVentaBindingSource.EndEdit();
     registro.MontoIva = registro.MontoGravable * registro.TasaIva / 100;
     registro.Calcular();
 }
Пример #6
0
 private void txtCostoRacion_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit Editor = (DevExpress.XtraEditors.CalcEdit) this.gridControl1.MainView.ActiveEditor;
     if (!Editor.IsModified)
     {
         return;
     }
     platoIngrediente.Total = platoIngrediente.Cantidad * (double)Editor.Value;
 }
Пример #7
0
 private void txtCantidadPlato_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit Editor = (DevExpress.XtraEditors.CalcEdit) this.gridControl2.MainView.ActiveEditor;
     if (!Editor.IsModified)
     {
         return;
     }
     platosCombo            = (PlatosCombo)this.platosComboBindingSource.Current;
     platosCombo.TotalCosto = (double)(double)Editor.Value * platosCombo.Costo;
 }
Пример #8
0
 private void txtCantidad_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit Editor = (DevExpress.XtraEditors.CalcEdit) this.gridControl1.MainView.ActiveEditor;
     if (!Editor.IsModified)
     {
         return;
     }
     platoIngrediente       = (PlatosIngrediente)this.platosIngredienteBindingSource.Current;
     platoIngrediente.Total = (double)(double)Editor.Value * platoIngrediente.CostoRacion;
 }
Пример #9
0
 void MontoExentoCalcEdit_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit editor = (DevExpress.XtraEditors.CalcEdit)sender;
     if (!editor.IsModified)
     {
         return;
     }
     this.libroVentaBindingSource.EndEdit();
     //    registro.Calcular();
 }
        void txtPrecioConIva_Validating(object sender, CancelEventArgs e)
        {
            DevExpress.XtraEditors.CalcEdit Editor = (DevExpress.XtraEditors.CalcEdit) this.gridControl1.MainView.ActiveEditor;
            if (!Editor.IsModified)
            {
                return;
            }
            Plato plato = (Plato)this.bs.Current;

            plato.PrecioConIva = Basicas.Round((double)Editor.Value);
            plato.Precio       = Basicas.Round(plato.PrecioConIva / (1 + (plato.TasaIva) / 100));
        }
 void txtCostoIva_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit Editor = (DevExpress.XtraEditors.CalcEdit) this.gridControl1.MainView.ActiveEditor;
     if (!Editor.IsModified)
     {
         return;
     }
     if (this.trasladosIngredienteBindingSource.Current == null)
     {
         return;
     }
     registroDetalle = (TrasladosIngrediente)this.trasladosIngredienteBindingSource.Current;
 }
 void txtCostoIva_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit Editor = (DevExpress.XtraEditors.CalcEdit) this.gridControl1.MainView.ActiveEditor;
     if (!Editor.IsModified)
     {
         return;
     }
     if (this.comprasIngredienteBindingSource.Current == null)
     {
         return;
     }
     registroDetalle       = (ComprasIngrediente)this.comprasIngredienteBindingSource.Current;
     registroDetalle.Costo = (double)Editor.Value / (1 + (registroDetalle.TasaIva / 100));
 }
 private void txtCantidad_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit Editor = (DevExpress.XtraEditors.CalcEdit) this.gridControl1.MainView.ActiveEditor;
     if (!Editor.IsModified)
     {
         return;
     }
     if ((double)Editor.Value <= 0)
     {
         Editor.Value = 1;
     }
     if (this.trasladosIngredienteBindingSource.Current == null)
     {
         return;
     }
     registroDetalle          = (TrasladosIngrediente)this.trasladosIngredienteBindingSource.Current;
     registroDetalle.Cantidad = (double)Editor.Value;
 }
Пример #14
0
 void txtCantidadNeta_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit Editor = (DevExpress.XtraEditors.CalcEdit) this.gridControl1.MainView.ActiveEditor;
     if (!Editor.IsModified)
     {
         return;
     }
     if (this.comprasIngredienteBindingSource.Current == null)
     {
         return;
     }
     registroDetalle = (ComprasIngrediente)this.comprasIngredienteBindingSource.Current;
     if ((double)Editor.Value == 0)
     {
         Editor.Value = (decimal)registroDetalle.Cantidad;
     }
     registroDetalle.CantidadNeta = (double)Editor.Value;
     CalcularMontoItem(registroDetalle);
 }
Пример #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Material));
     this.iclSmall = new DevExpress.Utils.ImageCollection(this.components);
     this.tabctrlMain = new DevExpress.XtraTab.XtraTabControl();
     this.tabpageMaterial = new DevExpress.XtraTab.XtraTabPage();
     this.cbxActive = new DevExpress.XtraEditors.CheckEdit();
     this.cbxBroken = new DevExpress.XtraEditors.CheckEdit();
     this.louResponsable = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.louCreator = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gdcoName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gdcoSurname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtName = new DevExpress.XtraEditors.TextEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.louSubType = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.louType = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.louCategory = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.louVehicle = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.louSupplier = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.memoDescription = new DevExpress.XtraEditors.MemoEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.txtInternalNumber = new DevExpress.XtraEditors.TextEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.txtSerieNumber = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.tabpageHistory = new DevExpress.XtraTab.XtraTabPage();
     this.btnRemoveMemo = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddMemo = new DevExpress.XtraEditors.SimpleButton();
     this.gdcMemo = new DevExpress.XtraGrid.GridControl();
     this.gdvMemo = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gdcoMemoDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gdcoMemo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.tabpageMaintenance = new DevExpress.XtraTab.XtraTabPage();
     this.btnRemoveMaintenance = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddMaintenance = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.spinMaintenanceFrequency = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.dteNextMaintenance = new DevExpress.XtraEditors.DateEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.gdcMaintenance = new DevExpress.XtraGrid.GridControl();
     this.gdvMaintenance = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gdcoDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gdcoRemark = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEditRemark = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.tabpageFinancial = new DevExpress.XtraTab.XtraTabPage();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.calcPrice = new DevExpress.XtraEditors.CalcEdit();
     this.dtePurchasedOn = new DevExpress.XtraEditors.DateEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.tabpageDocuments = new DevExpress.XtraTab.XtraTabPage();
     this.iclMedium = new DevExpress.Utils.ImageCollection(this.components);
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.gdcoMemoDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutViewField_gdcoMileage = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     ((System.ComponentModel.ISupportInitialize)(this.iclSmall)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabctrlMain)).BeginInit();
     this.tabctrlMain.SuspendLayout();
     this.tabpageMaterial.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxActive.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxBroken.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louResponsable.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louCreator.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.louSubType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louVehicle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.louSupplier.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInternalNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSerieNumber.Properties)).BeginInit();
     this.tabpageHistory.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gdcMemo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvMemo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit)).BeginInit();
     this.tabpageMaintenance.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinMaintenanceFrequency.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteNextMaintenance.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteNextMaintenance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdcMaintenance)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvMaintenance)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEditRemark)).BeginInit();
     this.tabpageFinancial.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.calcPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtePurchasedOn.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtePurchasedOn.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.iclMedium)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_gdcoMileage)).BeginInit();
     this.SuspendLayout();
     //
     // iclSmall
     //
     this.iclSmall.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("iclSmall.ImageStream")));
     this.iclSmall.Images.SetKeyName(0, "add_user_16.png");
     this.iclSmall.Images.SetKeyName(1, "arrow_left_16.png");
     this.iclSmall.Images.SetKeyName(2, "arrow_left_16_d.png");
     this.iclSmall.Images.SetKeyName(3, "arrow_left_16_h.png");
     this.iclSmall.Images.SetKeyName(4, "arrow_right_16.png");
     this.iclSmall.Images.SetKeyName(5, "arrow_right_16_d.png");
     this.iclSmall.Images.SetKeyName(6, "arrow_right_16_h.png");
     this.iclSmall.Images.SetKeyName(7, "copy_clipboard_16.png");
     this.iclSmall.Images.SetKeyName(8, "copy_clipboard_16_d.png");
     this.iclSmall.Images.SetKeyName(9, "copy_clipboard_16_h.png");
     this.iclSmall.Images.SetKeyName(10, "copy_clipboard_lined_16.png");
     this.iclSmall.Images.SetKeyName(11, "copy_clipboard_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(12, "copy_clipboard_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(13, "copy_to_folder_16.png");
     this.iclSmall.Images.SetKeyName(14, "copy_to_folder_16_d.png");
     this.iclSmall.Images.SetKeyName(15, "copy_to_folder_16_h.png");
     this.iclSmall.Images.SetKeyName(16, "cut_clipboard_16.png");
     this.iclSmall.Images.SetKeyName(17, "cut_clipboard_16_d.png");
     this.iclSmall.Images.SetKeyName(18, "cut_clipboard_16_h.png");
     this.iclSmall.Images.SetKeyName(19, "delete_16.png");
     this.iclSmall.Images.SetKeyName(20, "delete_16_d.png");
     this.iclSmall.Images.SetKeyName(21, "delete_16_h.png");
     this.iclSmall.Images.SetKeyName(22, "dollar_16.png");
     this.iclSmall.Images.SetKeyName(23, "equipment_16.png");
     this.iclSmall.Images.SetKeyName(24, "excel-16.png");
     this.iclSmall.Images.SetKeyName(25, "favorites_16.png");
     this.iclSmall.Images.SetKeyName(26, "favorites_16_d.png");
     this.iclSmall.Images.SetKeyName(27, "favorites_16_h.png");
     this.iclSmall.Images.SetKeyName(28, "folder_closed_16.png");
     this.iclSmall.Images.SetKeyName(29, "folder_closed_16_d.png");
     this.iclSmall.Images.SetKeyName(30, "folder_closed_16_h.png");
     this.iclSmall.Images.SetKeyName(31, "folder_open_16.png");
     this.iclSmall.Images.SetKeyName(32, "folder_open_16_d.png");
     this.iclSmall.Images.SetKeyName(33, "folder_open_16_h.png");
     this.iclSmall.Images.SetKeyName(34, "folder_options_16.png");
     this.iclSmall.Images.SetKeyName(35, "folder_options_16_d.png");
     this.iclSmall.Images.SetKeyName(36, "folder_options_16_h.png");
     this.iclSmall.Images.SetKeyName(37, "folder_options_b_16.png");
     this.iclSmall.Images.SetKeyName(38, "folder_options_b_16_d.png");
     this.iclSmall.Images.SetKeyName(39, "folder_options_b_16_h.png");
     this.iclSmall.Images.SetKeyName(40, "folders_16.png");
     this.iclSmall.Images.SetKeyName(41, "folders_16_d.png");
     this.iclSmall.Images.SetKeyName(42, "folders_16_h.png");
     this.iclSmall.Images.SetKeyName(43, "help-16.png");
     this.iclSmall.Images.SetKeyName(44, "history_1_16.png");
     this.iclSmall.Images.SetKeyName(45, "history_1_16_d.png");
     this.iclSmall.Images.SetKeyName(46, "history_1_16_h.png");
     this.iclSmall.Images.SetKeyName(47, "history_16.png");
     this.iclSmall.Images.SetKeyName(48, "history_16_d.png");
     this.iclSmall.Images.SetKeyName(49, "history_16_h.png");
     this.iclSmall.Images.SetKeyName(50, "history_b1_16.png");
     this.iclSmall.Images.SetKeyName(51, "history_b1_16_d.png");
     this.iclSmall.Images.SetKeyName(52, "history_b1_16_h.png");
     this.iclSmall.Images.SetKeyName(53, "history_b_16.png");
     this.iclSmall.Images.SetKeyName(54, "history_b_16_d.png");
     this.iclSmall.Images.SetKeyName(55, "history_b_16_h.png");
     this.iclSmall.Images.SetKeyName(56, "home_16.png");
     this.iclSmall.Images.SetKeyName(57, "home_16_d.png");
     this.iclSmall.Images.SetKeyName(58, "home_16_h.png");
     this.iclSmall.Images.SetKeyName(59, "info-16.png");
     this.iclSmall.Images.SetKeyName(60, "logout_16.png");
     this.iclSmall.Images.SetKeyName(61, "mail_16.png");
     this.iclSmall.Images.SetKeyName(62, "mail_16_d.png");
     this.iclSmall.Images.SetKeyName(63, "mail_16_h.png");
     this.iclSmall.Images.SetKeyName(64, "mail_b_16.png");
     this.iclSmall.Images.SetKeyName(65, "mail_b_16_d.png");
     this.iclSmall.Images.SetKeyName(66, "mail_b_16_h.png");
     this.iclSmall.Images.SetKeyName(67, "move_to_folder_16.png");
     this.iclSmall.Images.SetKeyName(68, "move_to_folder_16_d.png");
     this.iclSmall.Images.SetKeyName(69, "move_to_folder_16_h.png");
     this.iclSmall.Images.SetKeyName(70, "new_document_16.png");
     this.iclSmall.Images.SetKeyName(71, "new_document_16_d.png");
     this.iclSmall.Images.SetKeyName(72, "new_document_16_h.png");
     this.iclSmall.Images.SetKeyName(73, "new_document_lined_16.png");
     this.iclSmall.Images.SetKeyName(74, "new_document_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(75, "new_document_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(76, "ok_16.png");
     this.iclSmall.Images.SetKeyName(77, "open_document_16.png");
     this.iclSmall.Images.SetKeyName(78, "open_document_16_d.png");
     this.iclSmall.Images.SetKeyName(79, "open_document_16_h.png");
     this.iclSmall.Images.SetKeyName(80, "paste_clipboard_16.png");
     this.iclSmall.Images.SetKeyName(81, "paste_clipboard_16_d.png");
     this.iclSmall.Images.SetKeyName(82, "paste_clipboard_16_h.png");
     this.iclSmall.Images.SetKeyName(83, "paste_clipboard_lined_16.png");
     this.iclSmall.Images.SetKeyName(84, "paste_clipboard_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(85, "paste_clipboard_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(86, "print_16.png");
     this.iclSmall.Images.SetKeyName(87, "print_16_d.png");
     this.iclSmall.Images.SetKeyName(88, "print_16_h.png");
     this.iclSmall.Images.SetKeyName(89, "print_preview_16.png");
     this.iclSmall.Images.SetKeyName(90, "print_preview_16_d.png");
     this.iclSmall.Images.SetKeyName(91, "print_preview_16_h.png");
     this.iclSmall.Images.SetKeyName(92, "print_preview_lined_16.png");
     this.iclSmall.Images.SetKeyName(93, "print_preview_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(94, "print_preview_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(95, "properties_document_16.png");
     this.iclSmall.Images.SetKeyName(96, "properties_document_16_d.png");
     this.iclSmall.Images.SetKeyName(97, "properties_document_16_h.png");
     this.iclSmall.Images.SetKeyName(98, "properties_document_b_16.png");
     this.iclSmall.Images.SetKeyName(99, "properties_document_b_16_d.png");
     this.iclSmall.Images.SetKeyName(100, "properties_document_b_16_h.png");
     this.iclSmall.Images.SetKeyName(101, "properties_document_b_lined_16.png");
     this.iclSmall.Images.SetKeyName(102, "properties_document_b_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(103, "properties_document_b_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(104, "properties_document_lined_16.png");
     this.iclSmall.Images.SetKeyName(105, "properties_document_lined_16_d.png");
     this.iclSmall.Images.SetKeyName(106, "properties_document_lined_16_h.png");
     this.iclSmall.Images.SetKeyName(107, "redo_16.png");
     this.iclSmall.Images.SetKeyName(108, "redo_16_d.png");
     this.iclSmall.Images.SetKeyName(109, "redo_16_h.png");
     this.iclSmall.Images.SetKeyName(110, "redo_square_16.png");
     this.iclSmall.Images.SetKeyName(111, "redo_square_16_d.png");
     this.iclSmall.Images.SetKeyName(112, "redo_square_16_h.png");
     this.iclSmall.Images.SetKeyName(113, "refresh_document_16.png");
     this.iclSmall.Images.SetKeyName(114, "refresh_document_16_d.png");
     this.iclSmall.Images.SetKeyName(115, "refresh_document_16_h.png");
     this.iclSmall.Images.SetKeyName(116, "run_16.png");
     this.iclSmall.Images.SetKeyName(117, "save_16.png");
     this.iclSmall.Images.SetKeyName(118, "save_16_d.png");
     this.iclSmall.Images.SetKeyName(119, "save_16_h.png");
     this.iclSmall.Images.SetKeyName(120, "search_16.png");
     this.iclSmall.Images.SetKeyName(121, "search_16_d.png");
     this.iclSmall.Images.SetKeyName(122, "search_16_h.png");
     this.iclSmall.Images.SetKeyName(123, "stop_16.png");
     this.iclSmall.Images.SetKeyName(124, "stop_16_d.png");
     this.iclSmall.Images.SetKeyName(125, "stop_16_h.png");
     this.iclSmall.Images.SetKeyName(126, "undo_16.png");
     this.iclSmall.Images.SetKeyName(127, "undo_16_d.png");
     this.iclSmall.Images.SetKeyName(128, "undo_16_h.png");
     this.iclSmall.Images.SetKeyName(129, "undo_square_16.png");
     this.iclSmall.Images.SetKeyName(130, "undo_square_16_d.png");
     this.iclSmall.Images.SetKeyName(131, "undo_square_16_h.png");
     this.iclSmall.Images.SetKeyName(132, "up_folder_16.png");
     this.iclSmall.Images.SetKeyName(133, "up_folder_16_d.png");
     this.iclSmall.Images.SetKeyName(134, "up_folder_16_h.png");
     this.iclSmall.Images.SetKeyName(135, "user_16.png");
     this.iclSmall.Images.SetKeyName(136, "users_16.png");
     this.iclSmall.Images.SetKeyName(137, "view_16.png");
     this.iclSmall.Images.SetKeyName(138, "view_16_d.png");
     this.iclSmall.Images.SetKeyName(139, "view_16_h.png");
     this.iclSmall.Images.SetKeyName(140, "label_16.png");
     //
     // tabctrlMain
     //
     this.tabctrlMain.Location = new System.Drawing.Point(12, 12);
     this.tabctrlMain.Name = "tabctrlMain";
     this.tabctrlMain.SelectedTabPage = this.tabpageMaterial;
     this.tabctrlMain.Size = new System.Drawing.Size(754, 413);
     this.tabctrlMain.TabIndex = 0;
     this.tabctrlMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabpageMaterial,
     this.tabpageHistory,
     this.tabpageMaintenance,
     this.tabpageFinancial,
     this.tabpageDocuments});
     //
     // tabpageMaterial
     //
     this.tabpageMaterial.Controls.Add(this.cbxActive);
     this.tabpageMaterial.Controls.Add(this.cbxBroken);
     this.tabpageMaterial.Controls.Add(this.louResponsable);
     this.tabpageMaterial.Controls.Add(this.louCreator);
     this.tabpageMaterial.Controls.Add(this.labelControl4);
     this.tabpageMaterial.Controls.Add(this.labelControl2);
     this.tabpageMaterial.Controls.Add(this.labelControl1);
     this.tabpageMaterial.Controls.Add(this.txtName);
     this.tabpageMaterial.Controls.Add(this.panelControl1);
     this.tabpageMaterial.Name = "tabpageMaterial";
     this.tabpageMaterial.Size = new System.Drawing.Size(748, 385);
     this.tabpageMaterial.Text = "Algemeen";
     //
     // cbxActive
     //
     this.cbxActive.Location = new System.Drawing.Point(22, 63);
     this.cbxActive.Name = "cbxActive";
     this.cbxActive.Properties.Caption = "Actief";
     this.cbxActive.Size = new System.Drawing.Size(75, 19);
     this.cbxActive.TabIndex = 15;
     //
     // cbxBroken
     //
     this.cbxBroken.Location = new System.Drawing.Point(103, 63);
     this.cbxBroken.Name = "cbxBroken";
     this.cbxBroken.Properties.Caption = "Gebroken";
     this.cbxBroken.Size = new System.Drawing.Size(75, 19);
     this.cbxBroken.TabIndex = 14;
     //
     // louResponsable
     //
     this.louResponsable.Location = new System.Drawing.Point(537, 52);
     this.louResponsable.Name = "louResponsable";
     this.louResponsable.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louResponsable.Properties.DisplayMember = "DisplayName";
     this.louResponsable.Properties.NullText = "";
     this.louResponsable.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louResponsable.Properties.View = this.gridView1;
     this.louResponsable.Size = new System.Drawing.Size(180, 20);
     this.louResponsable.TabIndex = 2;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn3,
     this.gridColumn4});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowAutoFilterRow = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Naam";
     this.gridColumn3.FieldName = "Name";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 150;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Achternaam";
     this.gridColumn4.FieldName = "Surname";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     this.gridColumn4.Width = 150;
     //
     // louCreator
     //
     this.louCreator.Location = new System.Drawing.Point(537, 26);
     this.louCreator.Name = "louCreator";
     this.louCreator.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louCreator.Properties.DisplayMember = "DisplayName";
     this.louCreator.Properties.NullText = "";
     this.louCreator.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louCreator.Properties.View = this.gridLookUpEdit1View;
     this.louCreator.Size = new System.Drawing.Size(180, 20);
     this.louCreator.TabIndex = 1;
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gdcoName,
     this.gdcoSurname});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowAutoFilterRow = true;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // gdcoName
     //
     this.gdcoName.Caption = "Naam";
     this.gdcoName.FieldName = "Name";
     this.gdcoName.Name = "gdcoName";
     this.gdcoName.OptionsColumn.AllowEdit = false;
     this.gdcoName.Visible = true;
     this.gdcoName.VisibleIndex = 0;
     this.gdcoName.Width = 150;
     //
     // gdcoSurname
     //
     this.gdcoSurname.Caption = "Achternaam";
     this.gdcoSurname.FieldName = "Surname";
     this.gdcoSurname.Name = "gdcoSurname";
     this.gdcoSurname.Visible = true;
     this.gdcoSurname.VisibleIndex = 1;
     this.gdcoSurname.Width = 150;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(24, 29);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(31, 13);
     this.labelControl4.TabIndex = 8;
     this.labelControl4.Text = "Naam:";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(427, 55);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(90, 13);
     this.labelControl2.TabIndex = 6;
     this.labelControl2.Text = "Verantwoordelijke:";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(427, 29);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(89, 13);
     this.labelControl1.TabIndex = 5;
     this.labelControl1.Text = "Aangemaakt door:";
     //
     // txtName
     //
     this.txtName.Location = new System.Drawing.Point(79, 26);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(183, 20);
     this.txtName.TabIndex = 0;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.louSubType);
     this.panelControl1.Controls.Add(this.louType);
     this.panelControl1.Controls.Add(this.louCategory);
     this.panelControl1.Controls.Add(this.labelControl16);
     this.panelControl1.Controls.Add(this.labelControl15);
     this.panelControl1.Controls.Add(this.labelControl5);
     this.panelControl1.Controls.Add(this.louVehicle);
     this.panelControl1.Controls.Add(this.louSupplier);
     this.panelControl1.Controls.Add(this.labelControl14);
     this.panelControl1.Controls.Add(this.memoDescription);
     this.panelControl1.Controls.Add(this.labelControl10);
     this.panelControl1.Controls.Add(this.labelControl9);
     this.panelControl1.Controls.Add(this.txtInternalNumber);
     this.panelControl1.Controls.Add(this.labelControl7);
     this.panelControl1.Controls.Add(this.txtSerieNumber);
     this.panelControl1.Controls.Add(this.labelControl3);
     this.panelControl1.Location = new System.Drawing.Point(24, 88);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(693, 272);
     this.panelControl1.TabIndex = 13;
     //
     // louSubType
     //
     this.louSubType.Location = new System.Drawing.Point(503, 32);
     this.louSubType.Name = "louSubType";
     this.louSubType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louSubType.Properties.DisplayMember = "SubType";
     this.louSubType.Properties.NullText = "";
     this.louSubType.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louSubType.Properties.View = this.gridView6;
     this.louSubType.Size = new System.Drawing.Size(157, 20);
     this.louSubType.TabIndex = 5;
     //
     // gridView6
     //
     this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15});
     this.gridView6.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView6.Name = "gridView6";
     this.gridView6.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView6.OptionsView.ColumnAutoWidth = false;
     this.gridView6.OptionsView.ShowAutoFilterRow = true;
     this.gridView6.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Subtype";
     this.gridColumn15.FieldName = "SubType";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 150;
     //
     // louType
     //
     this.louType.Location = new System.Drawing.Point(312, 32);
     this.louType.Name = "louType";
     this.louType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louType.Properties.DisplayMember = "Type";
     this.louType.Properties.NullText = "";
     this.louType.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louType.Properties.View = this.gridView5;
     this.louType.Size = new System.Drawing.Size(185, 20);
     this.louType.TabIndex = 4;
     this.louType.EditValueChanged += new System.EventHandler(this.louType_EditValueChanged);
     //
     // gridView5
     //
     this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn14});
     this.gridView5.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView5.Name = "gridView5";
     this.gridView5.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView5.OptionsView.ColumnAutoWidth = false;
     this.gridView5.OptionsView.ShowAutoFilterRow = true;
     this.gridView5.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Type";
     this.gridColumn14.FieldName = "Type";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 0;
     this.gridColumn14.Width = 84;
     //
     // louCategory
     //
     this.louCategory.Location = new System.Drawing.Point(121, 32);
     this.louCategory.Name = "louCategory";
     this.louCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louCategory.Properties.DisplayMember = "Category";
     this.louCategory.Properties.NullText = "";
     this.louCategory.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louCategory.Properties.View = this.gridView4;
     this.louCategory.Size = new System.Drawing.Size(185, 20);
     this.louCategory.TabIndex = 3;
     this.louCategory.EditValueChanged += new System.EventHandler(this.louCategory_EditValueChanged);
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1});
     this.gridView4.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ColumnAutoWidth = false;
     this.gridView4.OptionsView.ShowAutoFilterRow = true;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Categorie";
     this.gridColumn1.FieldName = "Category";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 150;
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(499, 13);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(40, 13);
     this.labelControl16.TabIndex = 23;
     this.labelControl16.Text = "Subtype";
     //
     // labelControl15
     //
     this.labelControl15.Location = new System.Drawing.Point(310, 13);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(24, 13);
     this.labelControl15.TabIndex = 22;
     this.labelControl15.Text = "Type";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(121, 13);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(47, 13);
     this.labelControl5.TabIndex = 19;
     this.labelControl5.Text = "Categorie";
     //
     // louVehicle
     //
     this.louVehicle.Location = new System.Drawing.Point(121, 84);
     this.louVehicle.Name = "louVehicle";
     this.louVehicle.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louVehicle.Properties.DisplayMember = "Name";
     this.louVehicle.Properties.NullText = "";
     this.louVehicle.Properties.View = this.gridView3;
     this.louVehicle.Size = new System.Drawing.Size(185, 20);
     this.louVehicle.TabIndex = 7;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn7,
     this.gridColumn8});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowAutoFilterRow = true;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Naam";
     this.gridColumn7.FieldName = "Name";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 0;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Kenteken";
     this.gridColumn8.FieldName = "LicenseNumber";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 1;
     //
     // louSupplier
     //
     this.louSupplier.Location = new System.Drawing.Point(121, 58);
     this.louSupplier.Name = "louSupplier";
     this.louSupplier.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.louSupplier.Properties.DisplayMember = "Name";
     this.louSupplier.Properties.NullText = "";
     this.louSupplier.Properties.PopupFormSize = new System.Drawing.Size(300, 0);
     this.louSupplier.Properties.View = this.gridView2;
     this.louSupplier.Size = new System.Drawing.Size(185, 20);
     this.louSupplier.TabIndex = 6;
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5,
     this.gridColumn9,
     this.gridColumn10});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ColumnAutoWidth = false;
     this.gridView2.OptionsView.ShowAutoFilterRow = true;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Naam";
     this.gridColumn5.FieldName = "Name";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     this.gridColumn5.Width = 150;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "straat";
     this.gridColumn9.FieldName = "Street";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 1;
     this.gridColumn9.Width = 150;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "postcode";
     this.gridColumn10.FieldName = "Zipcode";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 2;
     this.gridColumn10.Width = 84;
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(17, 163);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(65, 13);
     this.labelControl14.TabIndex = 17;
     this.labelControl14.Text = "Omschrijving:";
     //
     // memoDescription
     //
     this.memoDescription.Location = new System.Drawing.Point(121, 160);
     this.memoDescription.Name = "memoDescription";
     this.memoDescription.Size = new System.Drawing.Size(539, 97);
     this.memoDescription.TabIndex = 10;
     this.memoDescription.UseOptimizedRendering = true;
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(17, 87);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(44, 13);
     this.labelControl10.TabIndex = 14;
     this.labelControl10.Text = "Voertuig:";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(17, 61);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(60, 13);
     this.labelControl9.TabIndex = 12;
     this.labelControl9.Text = "Leverancier:";
     //
     // txtInternalNumber
     //
     this.txtInternalNumber.Location = new System.Drawing.Point(121, 134);
     this.txtInternalNumber.Name = "txtInternalNumber";
     this.txtInternalNumber.Size = new System.Drawing.Size(185, 20);
     this.txtInternalNumber.TabIndex = 9;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(17, 137);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(75, 13);
     this.labelControl7.TabIndex = 9;
     this.labelControl7.Text = "Intern nummer:";
     //
     // txtSerieNumber
     //
     this.txtSerieNumber.Location = new System.Drawing.Point(121, 110);
     this.txtSerieNumber.Name = "txtSerieNumber";
     this.txtSerieNumber.Size = new System.Drawing.Size(185, 20);
     this.txtSerieNumber.TabIndex = 8;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(17, 113);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(69, 13);
     this.labelControl3.TabIndex = 7;
     this.labelControl3.Text = "Serie nummer:";
     //
     // tabpageHistory
     //
     this.tabpageHistory.Controls.Add(this.btnRemoveMemo);
     this.tabpageHistory.Controls.Add(this.btnAddMemo);
     this.tabpageHistory.Controls.Add(this.gdcMemo);
     this.tabpageHistory.Name = "tabpageHistory";
     this.tabpageHistory.Size = new System.Drawing.Size(748, 385);
     this.tabpageHistory.Text = "Historiek";
     //
     // btnRemoveMemo
     //
     this.btnRemoveMemo.ImageIndex = 21;
     this.btnRemoveMemo.ImageList = this.iclSmall;
     this.btnRemoveMemo.Location = new System.Drawing.Point(9, 44);
     this.btnRemoveMemo.Name = "btnRemoveMemo";
     this.btnRemoveMemo.Size = new System.Drawing.Size(24, 24);
     this.btnRemoveMemo.TabIndex = 20;
     this.btnRemoveMemo.Click += new System.EventHandler(this.btnRemoveMemo_Click);
     //
     // btnAddMemo
     //
     this.btnAddMemo.ImageIndex = 27;
     this.btnAddMemo.ImageList = this.iclSmall;
     this.btnAddMemo.Location = new System.Drawing.Point(9, 14);
     this.btnAddMemo.Name = "btnAddMemo";
     this.btnAddMemo.Size = new System.Drawing.Size(24, 24);
     this.btnAddMemo.TabIndex = 19;
     this.btnAddMemo.Click += new System.EventHandler(this.btnAddMemo_Click);
     //
     // gdcMemo
     //
     this.gdcMemo.Location = new System.Drawing.Point(39, 13);
     this.gdcMemo.MainView = this.gdvMemo;
     this.gdcMemo.Name = "gdcMemo";
     this.gdcMemo.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemMemoEdit});
     this.gdcMemo.Size = new System.Drawing.Size(707, 369);
     this.gdcMemo.TabIndex = 2;
     this.gdcMemo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gdvMemo});
     //
     // gdvMemo
     //
     this.gdvMemo.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gdcoMemoDateTime,
     this.gdcoMemo});
     this.gdvMemo.DetailHeight = 500;
     this.gdvMemo.GridControl = this.gdcMemo;
     this.gdvMemo.Name = "gdvMemo";
     this.gdvMemo.OptionsView.RowAutoHeight = true;
     this.gdvMemo.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.ShowAlways;
     this.gdvMemo.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gdcoMemoDateTime, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gdvMemo.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gdvMemo_RowUpdated);
     //
     // gdcoMemoDateTime
     //
     this.gdcoMemoDateTime.Caption = "Datum";
     this.gdcoMemoDateTime.DisplayFormat.FormatString = "g";
     this.gdcoMemoDateTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gdcoMemoDateTime.FieldName = "DateTime";
     this.gdcoMemoDateTime.Name = "gdcoMemoDateTime";
     this.gdcoMemoDateTime.OptionsColumn.AllowEdit = false;
     this.gdcoMemoDateTime.Visible = true;
     this.gdcoMemoDateTime.VisibleIndex = 0;
     //
     // gdcoMemo
     //
     this.gdcoMemo.Caption = "Memo";
     this.gdcoMemo.ColumnEdit = this.repositoryItemMemoEdit;
     this.gdcoMemo.FieldName = "Memo";
     this.gdcoMemo.Name = "gdcoMemo";
     this.gdcoMemo.Visible = true;
     this.gdcoMemo.VisibleIndex = 1;
     //
     // repositoryItemMemoEdit
     //
     this.repositoryItemMemoEdit.Name = "repositoryItemMemoEdit";
     //
     // tabpageMaintenance
     //
     this.tabpageMaintenance.Controls.Add(this.btnRemoveMaintenance);
     this.tabpageMaintenance.Controls.Add(this.btnAddMaintenance);
     this.tabpageMaintenance.Controls.Add(this.labelControl13);
     this.tabpageMaintenance.Controls.Add(this.spinMaintenanceFrequency);
     this.tabpageMaintenance.Controls.Add(this.labelControl12);
     this.tabpageMaintenance.Controls.Add(this.dteNextMaintenance);
     this.tabpageMaintenance.Controls.Add(this.labelControl11);
     this.tabpageMaintenance.Controls.Add(this.gdcMaintenance);
     this.tabpageMaintenance.Name = "tabpageMaintenance";
     this.tabpageMaintenance.Size = new System.Drawing.Size(748, 385);
     this.tabpageMaintenance.Text = "Onderhoud";
     //
     // btnRemoveMaintenance
     //
     this.btnRemoveMaintenance.ImageIndex = 21;
     this.btnRemoveMaintenance.ImageList = this.iclSmall;
     this.btnRemoveMaintenance.Location = new System.Drawing.Point(7, 103);
     this.btnRemoveMaintenance.Name = "btnRemoveMaintenance";
     this.btnRemoveMaintenance.Size = new System.Drawing.Size(24, 24);
     this.btnRemoveMaintenance.TabIndex = 18;
     this.btnRemoveMaintenance.Click += new System.EventHandler(this.btnRemoveMaintenance_Click);
     //
     // btnAddMaintenance
     //
     this.btnAddMaintenance.ImageIndex = 27;
     this.btnAddMaintenance.ImageList = this.iclSmall;
     this.btnAddMaintenance.Location = new System.Drawing.Point(7, 73);
     this.btnAddMaintenance.Name = "btnAddMaintenance";
     this.btnAddMaintenance.Size = new System.Drawing.Size(24, 24);
     this.btnAddMaintenance.TabIndex = 17;
     this.btnAddMaintenance.Click += new System.EventHandler(this.btnAddMaintenance_Click);
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(273, 40);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(30, 13);
     this.labelControl13.TabIndex = 16;
     this.labelControl13.Text = "dagen";
     //
     // spinMaintenanceFrequency
     //
     this.spinMaintenanceFrequency.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinMaintenanceFrequency.Location = new System.Drawing.Point(157, 37);
     this.spinMaintenanceFrequency.Name = "spinMaintenanceFrequency";
     this.spinMaintenanceFrequency.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.spinMaintenanceFrequency.Size = new System.Drawing.Size(99, 20);
     this.spinMaintenanceFrequency.TabIndex = 12;
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(13, 40);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(111, 13);
     this.labelControl12.TabIndex = 14;
     this.labelControl12.Text = "Onderhoud frequentie:";
     //
     // dteNextMaintenance
     //
     this.dteNextMaintenance.EditValue = null;
     this.dteNextMaintenance.Location = new System.Drawing.Point(157, 11);
     this.dteNextMaintenance.Name = "dteNextMaintenance";
     this.dteNextMaintenance.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dteNextMaintenance.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dteNextMaintenance.Properties.ReadOnly = true;
     this.dteNextMaintenance.Size = new System.Drawing.Size(146, 20);
     this.dteNextMaintenance.TabIndex = 11;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(13, 14);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(103, 13);
     this.labelControl11.TabIndex = 12;
     this.labelControl11.Text = "Volgende onderhoud:";
     //
     // gdcMaintenance
     //
     this.gdcMaintenance.Location = new System.Drawing.Point(37, 73);
     this.gdcMaintenance.MainView = this.gdvMaintenance;
     this.gdcMaintenance.Name = "gdcMaintenance";
     this.gdcMaintenance.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemMemoEditRemark});
     this.gdcMaintenance.Size = new System.Drawing.Size(695, 295);
     this.gdcMaintenance.TabIndex = 1;
     this.gdcMaintenance.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gdvMaintenance});
     //
     // gdvMaintenance
     //
     this.gdvMaintenance.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gdcoDate,
     this.gdcoRemark});
     this.gdvMaintenance.GridControl = this.gdcMaintenance;
     this.gdvMaintenance.Name = "gdvMaintenance";
     this.gdvMaintenance.OptionsView.RowAutoHeight = true;
     this.gdvMaintenance.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.ShowAlways;
     this.gdvMaintenance.OptionsView.ShowGroupPanel = false;
     this.gdvMaintenance.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gdvMaintenance_RowUpdated);
     this.gdvMaintenance.DoubleClick += new System.EventHandler(this.gdvMaintenance_DoubleClick);
     //
     // gdcoDate
     //
     this.gdcoDate.Caption = "Start onderhoud";
     this.gdcoDate.DisplayFormat.FormatString = "g";
     this.gdcoDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gdcoDate.FieldName = "StartMaintenance";
     this.gdcoDate.Name = "gdcoDate";
     this.gdcoDate.OptionsColumn.AllowEdit = false;
     this.gdcoDate.Visible = true;
     this.gdcoDate.VisibleIndex = 0;
     this.gdcoDate.Width = 100;
     //
     // gdcoRemark
     //
     this.gdcoRemark.Caption = "Opmerking";
     this.gdcoRemark.ColumnEdit = this.repositoryItemMemoEditRemark;
     this.gdcoRemark.FieldName = "Remark";
     this.gdcoRemark.Name = "gdcoRemark";
     this.gdcoRemark.Visible = true;
     this.gdcoRemark.VisibleIndex = 1;
     this.gdcoRemark.Width = 577;
     //
     // repositoryItemMemoEditRemark
     //
     this.repositoryItemMemoEditRemark.Name = "repositoryItemMemoEditRemark";
     //
     // tabpageFinancial
     //
     this.tabpageFinancial.Controls.Add(this.labelControl8);
     this.tabpageFinancial.Controls.Add(this.calcPrice);
     this.tabpageFinancial.Controls.Add(this.dtePurchasedOn);
     this.tabpageFinancial.Controls.Add(this.labelControl6);
     this.tabpageFinancial.Name = "tabpageFinancial";
     this.tabpageFinancial.Size = new System.Drawing.Size(748, 385);
     this.tabpageFinancial.Text = "Financieel";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(17, 49);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(24, 13);
     this.labelControl8.TabIndex = 13;
     this.labelControl8.Text = "Prijs:";
     //
     // calcPrice
     //
     this.calcPrice.Location = new System.Drawing.Point(109, 46);
     this.calcPrice.Name = "calcPrice";
     this.calcPrice.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.calcPrice.Properties.Mask.EditMask = "c";
     this.calcPrice.Size = new System.Drawing.Size(146, 20);
     this.calcPrice.TabIndex = 14;
     //
     // dtePurchasedOn
     //
     this.dtePurchasedOn.EditValue = null;
     this.dtePurchasedOn.Location = new System.Drawing.Point(109, 20);
     this.dtePurchasedOn.Name = "dtePurchasedOn";
     this.dtePurchasedOn.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtePurchasedOn.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtePurchasedOn.Size = new System.Drawing.Size(146, 20);
     this.dtePurchasedOn.TabIndex = 13;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(17, 23);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(76, 13);
     this.labelControl6.TabIndex = 10;
     this.labelControl6.Text = "Datum gekocht:";
     //
     // tabpageDocuments
     //
     this.tabpageDocuments.Name = "tabpageDocuments";
     this.tabpageDocuments.Size = new System.Drawing.Size(748, 385);
     this.tabpageDocuments.Text = "Documenten";
     //
     // iclMedium
     //
     this.iclMedium.ImageSize = new System.Drawing.Size(24, 24);
     this.iclMedium.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("iclMedium.ImageStream")));
     this.iclMedium.Images.SetKeyName(0, "add_user_24.png");
     this.iclMedium.Images.SetKeyName(1, "arrow_left_24.png");
     this.iclMedium.Images.SetKeyName(2, "arrow_left_24_d.png");
     this.iclMedium.Images.SetKeyName(3, "arrow_left_24_h.png");
     this.iclMedium.Images.SetKeyName(4, "arrow_right_24.png");
     this.iclMedium.Images.SetKeyName(5, "arrow_right_24_d.png");
     this.iclMedium.Images.SetKeyName(6, "arrow_right_24_h.png");
     this.iclMedium.Images.SetKeyName(7, "copy_clipboard_24.png");
     this.iclMedium.Images.SetKeyName(8, "copy_clipboard_24_d.png");
     this.iclMedium.Images.SetKeyName(9, "copy_clipboard_24_h.png");
     this.iclMedium.Images.SetKeyName(10, "copy_clipboard_lined_24.png");
     this.iclMedium.Images.SetKeyName(11, "copy_clipboard_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(12, "copy_clipboard_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(13, "copy_to_folder_24.png");
     this.iclMedium.Images.SetKeyName(14, "copy_to_folder_24_d.png");
     this.iclMedium.Images.SetKeyName(15, "copy_to_folder_24_h.png");
     this.iclMedium.Images.SetKeyName(16, "cut_clipboard_24.png");
     this.iclMedium.Images.SetKeyName(17, "cut_clipboard_24_d.png");
     this.iclMedium.Images.SetKeyName(18, "cut_clipboard_24_h.png");
     this.iclMedium.Images.SetKeyName(19, "delete_24.png");
     this.iclMedium.Images.SetKeyName(20, "delete_24_d.png");
     this.iclMedium.Images.SetKeyName(21, "delete_24_h.png");
     this.iclMedium.Images.SetKeyName(22, "equipment_24.png");
     this.iclMedium.Images.SetKeyName(23, "excel-24.png");
     this.iclMedium.Images.SetKeyName(24, "favorites_24.png");
     this.iclMedium.Images.SetKeyName(25, "favorites_24_d.png");
     this.iclMedium.Images.SetKeyName(26, "favorites_24_h.png");
     this.iclMedium.Images.SetKeyName(27, "folder_closed_24.png");
     this.iclMedium.Images.SetKeyName(28, "folder_closed_24_d.png");
     this.iclMedium.Images.SetKeyName(29, "folder_closed_24_h.png");
     this.iclMedium.Images.SetKeyName(30, "folder_open_24.png");
     this.iclMedium.Images.SetKeyName(31, "folder_open_24_d.png");
     this.iclMedium.Images.SetKeyName(32, "folder_open_24_h.png");
     this.iclMedium.Images.SetKeyName(33, "folder_options_24.png");
     this.iclMedium.Images.SetKeyName(34, "folder_options_24_d.png");
     this.iclMedium.Images.SetKeyName(35, "folder_options_24_h.png");
     this.iclMedium.Images.SetKeyName(36, "folder_options_b_24.png");
     this.iclMedium.Images.SetKeyName(37, "folder_options_b_24_d.png");
     this.iclMedium.Images.SetKeyName(38, "folder_options_b_24_h.png");
     this.iclMedium.Images.SetKeyName(39, "folders_24.png");
     this.iclMedium.Images.SetKeyName(40, "folders_24_d.png");
     this.iclMedium.Images.SetKeyName(41, "folders_24_h.png");
     this.iclMedium.Images.SetKeyName(42, "help-24.png");
     this.iclMedium.Images.SetKeyName(43, "history_1_24.png");
     this.iclMedium.Images.SetKeyName(44, "history_1_24_d.png");
     this.iclMedium.Images.SetKeyName(45, "history_1_24_h.png");
     this.iclMedium.Images.SetKeyName(46, "history_24.png");
     this.iclMedium.Images.SetKeyName(47, "history_24_d.png");
     this.iclMedium.Images.SetKeyName(48, "history_24_h.png");
     this.iclMedium.Images.SetKeyName(49, "history_b1_24.png");
     this.iclMedium.Images.SetKeyName(50, "history_b1_24_d.png");
     this.iclMedium.Images.SetKeyName(51, "history_b1_24_h.png");
     this.iclMedium.Images.SetKeyName(52, "history_b_24.png");
     this.iclMedium.Images.SetKeyName(53, "history_b_24_d.png");
     this.iclMedium.Images.SetKeyName(54, "history_b_24_h.png");
     this.iclMedium.Images.SetKeyName(55, "home_24.png");
     this.iclMedium.Images.SetKeyName(56, "home_24_d.png");
     this.iclMedium.Images.SetKeyName(57, "home_24_h.png");
     this.iclMedium.Images.SetKeyName(58, "info-24.png");
     this.iclMedium.Images.SetKeyName(59, "logo-24.png");
     this.iclMedium.Images.SetKeyName(60, "mail_24.png");
     this.iclMedium.Images.SetKeyName(61, "mail_24_d.png");
     this.iclMedium.Images.SetKeyName(62, "mail_24_h.png");
     this.iclMedium.Images.SetKeyName(63, "mail_b_24.png");
     this.iclMedium.Images.SetKeyName(64, "mail_b_24_d.png");
     this.iclMedium.Images.SetKeyName(65, "mail_b_24_h.png");
     this.iclMedium.Images.SetKeyName(66, "move_to_folder_24.png");
     this.iclMedium.Images.SetKeyName(67, "move_to_folder_24_d.png");
     this.iclMedium.Images.SetKeyName(68, "move_to_folder_24_h.png");
     this.iclMedium.Images.SetKeyName(69, "new_document_24.png");
     this.iclMedium.Images.SetKeyName(70, "new_document_24_d.png");
     this.iclMedium.Images.SetKeyName(71, "new_document_24_h.png");
     this.iclMedium.Images.SetKeyName(72, "new_document_lined_24.png");
     this.iclMedium.Images.SetKeyName(73, "new_document_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(74, "new_document_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(75, "open_document_24.png");
     this.iclMedium.Images.SetKeyName(76, "open_document_24_d.png");
     this.iclMedium.Images.SetKeyName(77, "open_document_24_h.png");
     this.iclMedium.Images.SetKeyName(78, "paste_clipboard_24.png");
     this.iclMedium.Images.SetKeyName(79, "paste_clipboard_24_d.png");
     this.iclMedium.Images.SetKeyName(80, "paste_clipboard_24_h.png");
     this.iclMedium.Images.SetKeyName(81, "paste_clipboard_lined_24.png");
     this.iclMedium.Images.SetKeyName(82, "paste_clipboard_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(83, "paste_clipboard_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(84, "print_24.png");
     this.iclMedium.Images.SetKeyName(85, "print_24_d.png");
     this.iclMedium.Images.SetKeyName(86, "print_24_h.png");
     this.iclMedium.Images.SetKeyName(87, "print_preview_24.png");
     this.iclMedium.Images.SetKeyName(88, "print_preview_24_d.png");
     this.iclMedium.Images.SetKeyName(89, "print_preview_24_h.png");
     this.iclMedium.Images.SetKeyName(90, "print_preview_lined_24.png");
     this.iclMedium.Images.SetKeyName(91, "print_preview_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(92, "print_preview_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(93, "properties_document_24.png");
     this.iclMedium.Images.SetKeyName(94, "properties_document_24_d.png");
     this.iclMedium.Images.SetKeyName(95, "properties_document_24_h.png");
     this.iclMedium.Images.SetKeyName(96, "properties_document_b_24.png");
     this.iclMedium.Images.SetKeyName(97, "properties_document_b_24_d.png");
     this.iclMedium.Images.SetKeyName(98, "properties_document_b_24_h.png");
     this.iclMedium.Images.SetKeyName(99, "properties_document_b_lined_24.png");
     this.iclMedium.Images.SetKeyName(100, "properties_document_b_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(101, "properties_document_b_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(102, "properties_document_lined_24.png");
     this.iclMedium.Images.SetKeyName(103, "properties_document_lined_24_d.png");
     this.iclMedium.Images.SetKeyName(104, "properties_document_lined_24_h.png");
     this.iclMedium.Images.SetKeyName(105, "redo_24.png");
     this.iclMedium.Images.SetKeyName(106, "redo_24_d.png");
     this.iclMedium.Images.SetKeyName(107, "redo_24_h.png");
     this.iclMedium.Images.SetKeyName(108, "redo_square_24.png");
     this.iclMedium.Images.SetKeyName(109, "redo_square_24_d.png");
     this.iclMedium.Images.SetKeyName(110, "redo_square_24_h.png");
     this.iclMedium.Images.SetKeyName(111, "refresh_document_24.png");
     this.iclMedium.Images.SetKeyName(112, "refresh_document_24_d.png");
     this.iclMedium.Images.SetKeyName(113, "refresh_document_24_h.png");
     this.iclMedium.Images.SetKeyName(114, "save_24.png");
     this.iclMedium.Images.SetKeyName(115, "save_24_d.png");
     this.iclMedium.Images.SetKeyName(116, "save_24_h.png");
     this.iclMedium.Images.SetKeyName(117, "search_24.png");
     this.iclMedium.Images.SetKeyName(118, "search_24_d.png");
     this.iclMedium.Images.SetKeyName(119, "search_24_h.png");
     this.iclMedium.Images.SetKeyName(120, "stop_24.png");
     this.iclMedium.Images.SetKeyName(121, "stop_24_d.png");
     this.iclMedium.Images.SetKeyName(122, "stop_24_h.png");
     this.iclMedium.Images.SetKeyName(123, "undo_24.png");
     this.iclMedium.Images.SetKeyName(124, "undo_24_d.png");
     this.iclMedium.Images.SetKeyName(125, "undo_24_h.png");
     this.iclMedium.Images.SetKeyName(126, "undo_square_24.png");
     this.iclMedium.Images.SetKeyName(127, "undo_square_24_d.png");
     this.iclMedium.Images.SetKeyName(128, "undo_square_24_h.png");
     this.iclMedium.Images.SetKeyName(129, "up_folder_24.png");
     this.iclMedium.Images.SetKeyName(130, "up_folder_24_d.png");
     this.iclMedium.Images.SetKeyName(131, "up_folder_24_h.png");
     this.iclMedium.Images.SetKeyName(132, "users_24.png");
     this.iclMedium.Images.SetKeyName(133, "view_24.png");
     this.iclMedium.Images.SetKeyName(134, "view_24_d.png");
     this.iclMedium.Images.SetKeyName(135, "view_24_h.png");
     this.iclMedium.Images.SetKeyName(136, "ok_24.png");
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.ImageIndex = 120;
     this.btnCancel.ImageList = this.iclMedium;
     this.btnCancel.Location = new System.Drawing.Point(674, 431);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(92, 32);
     this.btnCancel.TabIndex = 5;
     this.btnCancel.Text = "Annuleren";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnSave
     //
     this.btnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnSave.ImageIndex = 114;
     this.btnSave.ImageList = this.iclMedium;
     this.btnSave.Location = new System.Drawing.Point(593, 431);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 32);
     this.btnSave.TabIndex = 6;
     this.btnSave.Text = "Opslaan";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // gdcoMemoDate
     //
     this.gdcoMemoDate.Caption = "Datum";
     this.gdcoMemoDate.FieldName = "DateTime";
     this.gdcoMemoDate.Name = "gdcoMemoDate";
     this.gdcoMemoDate.OptionsColumn.AllowEdit = false;
     this.gdcoMemoDate.Visible = true;
     this.gdcoMemoDate.VisibleIndex = 0;
     this.gdcoMemoDate.Width = 450;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Memo";
     this.gridColumn2.FieldName = "Memo";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 150;
     //
     // layoutViewField_gdcoMileage
     //
     this.layoutViewField_gdcoMileage.EditorPreferredWidth = 0;
     this.layoutViewField_gdcoMileage.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_gdcoMileage.Name = "layoutViewField_gdcoMileage";
     this.layoutViewField_gdcoMileage.Size = new System.Drawing.Size(0, 0);
     this.layoutViewField_gdcoMileage.TextSize = new System.Drawing.Size(50, 20);
     this.layoutViewField_gdcoMileage.TextToControlDistance = 5;
     //
     // Material
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(778, 475);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.tabctrlMain);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.LookAndFeel.SkinName = "Office 2010 Blue";
     this.LookAndFeel.UseDefaultLookAndFeel = false;
     this.MaximizeBox = false;
     this.Name = "Material";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Materiaal";
     ((System.ComponentModel.ISupportInitialize)(this.iclSmall)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabctrlMain)).EndInit();
     this.tabctrlMain.ResumeLayout(false);
     this.tabpageMaterial.ResumeLayout(false);
     this.tabpageMaterial.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxActive.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxBroken.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louResponsable.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louCreator.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.louSubType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louVehicle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.louSupplier.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInternalNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSerieNumber.Properties)).EndInit();
     this.tabpageHistory.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gdcMemo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvMemo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit)).EndInit();
     this.tabpageMaintenance.ResumeLayout(false);
     this.tabpageMaintenance.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinMaintenanceFrequency.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteNextMaintenance.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dteNextMaintenance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdcMaintenance)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvMaintenance)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEditRemark)).EndInit();
     this.tabpageFinancial.ResumeLayout(false);
     this.tabpageFinancial.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.calcPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtePurchasedOn.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtePurchasedOn.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.iclMedium)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_gdcoMileage)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.calcEdit1 = new DevExpress.XtraEditors.CalcEdit();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(0, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(216, 24);
     this.label1.TabIndex = 0;
     this.label1.Text = "Remaining Mineral Water ";
     //
     // calcEdit1
     //
     this.calcEdit1.Location = new System.Drawing.Point(224, 16);
     this.calcEdit1.Name = "calcEdit1";
     this.calcEdit1.Properties.EditFormat.FormatString = "n";
     this.calcEdit1.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcEdit1.Properties.Mask.EditMask = "d4";
     this.calcEdit1.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.calcEdit1.Properties.Precision = 0;
     this.calcEdit1.Size = new System.Drawing.Size(176, 20);
     this.calcEdit1.TabIndex = 1;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(208, 56);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonCancel.TabIndex = 16;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(120, 56);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonOK.TabIndex = 15;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormMineralWaterClosingDayCount
     //
     this.AcceptButton = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.simpleButtonCancel;
     this.ClientSize = new System.Drawing.Size(424, 86);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.Controls.Add(this.calcEdit1);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormMineralWaterClosingDayCount";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Remaining Mineral Water";
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChuongTrinh));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteRealy = new DevExpress.XtraEditors.SimpleButton();
     this.btnRestore = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.InPhieu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuInPhieu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.NghiepVu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuNghiepVu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.Duyet = new ProtocolVN.Framework.Win.PLDuyetCombobox();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.label7 = new DevExpress.XtraEditors.LabelControl();
     this.label8 = new DevExpress.XtraEditors.LabelControl();
     this.KyHieuPhanLoai = new DevExpress.XtraEditors.TextEdit();
     this.label21 = new DevExpress.XtraEditors.LabelControl();
     this.label22 = new DevExpress.XtraEditors.LabelControl();
     this.label2 = new DevExpress.XtraEditors.LabelControl();
     this.label4 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.label15 = new DevExpress.XtraEditors.LabelControl();
     this.lblTitle = new DevExpress.XtraEditors.LabelControl();
     this.KyHieuXepKho_KHPL = new DevExpress.XtraEditors.TextEdit();
     this.groupControlThongTinPhatSong = new DevExpress.XtraEditors.GroupControl();
     this.ReleaseDate = new DevExpress.XtraEditors.DateEdit();
     this.SoRunConlai = new DevExpress.XtraEditors.SpinEdit();
     this.ReleaseRun = new DevExpress.XtraEditors.SpinEdit();
     this.Release = new DevExpress.XtraEditors.SpinEdit();
     this.SoDaRun = new DevExpress.XtraEditors.SpinEdit();
     this.gridControlPhatSongKhac = new DevExpress.XtraGrid.GridControl();
     this.gridviewPhatSongKhac = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColPSK_Kenh = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_TuNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_DenNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_LanPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlNgayPhatDauTien = new DevExpress.XtraGrid.GridControl();
     this.gridViewNgayPhatDauTien = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColKenhPhatSong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColIsPhatLai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayPhatStart = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayPhatEnd = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColTimeSlot = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColLanPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.RunThu = new DevExpress.XtraEditors.SpinEdit();
     this.TongSoRun = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.ReleaseRule = new DevExpress.XtraEditors.MemoEdit();
     this.MuaKem = new DevExpress.XtraEditors.MemoEdit();
     this.Rating = new DevExpress.XtraEditors.CalcEdit();
     this.DoiTuongKhanGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label14 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlNguonGoc = new DevExpress.XtraEditors.GroupControl();
     this.NoteBQ = new DevExpress.XtraEditors.MemoEdit();
     this.gridControlThongTinBan = new DevExpress.XtraGrid.GridControl();
     this.gridViewThongTinBan = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColKenhBan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayBanTu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayBanDen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
     this.DonViHauKy = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.HangSanXuat = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DonViSoHuu = new ProtocolVN.Framework.Win.PLDMGrid();
     this.NamSanXuat = new DevExpress.XtraEditors.PLSpinEdit();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label25 = new DevExpress.XtraEditors.LabelControl();
     this.KenhHanCheBan = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.BanQuyenHTV = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDIDEnd = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDTNNEnd = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDIDStart = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDTNNStart = new DevExpress.XtraEditors.DateEdit();
     this.ChanelRight = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.BanQuyenThuoc = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.DaoDien = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.groupControlThongTin = new DevExpress.XtraEditors.GroupControl();
     this.gridControlGhiChu = new DevExpress.XtraGrid.GridControl();
     this.gridViewGhiChu = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.colLoaiGhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNoiDungGhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.PhanLoaiDrama = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.NguonTrading = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.ClassName = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.Code = new DevExpress.XtraEditors.TextEdit();
     this.TenGoc = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.Period = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.TrailerGoc = new DevExpress.XtraEditors.CheckEdit();
     this.Photos = new DevExpress.XtraEditors.CheckEdit();
     this.Script = new DevExpress.XtraEditors.CheckEdit();
     this.ckcMoiTrenThiTruong = new DevExpress.XtraEditors.CheckEdit();
     this.ckcTrongKho = new DevExpress.XtraEditors.CheckEdit();
     this.ThanhLy = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl8 = new DevExpress.XtraEditors.GroupControl();
     this.KyHieuXepKho_NoiDung = new DevExpress.XtraEditors.TextEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.Ranking = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DienVien = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.label24 = new DevExpress.XtraEditors.LabelControl();
     this.TuKhoaSelect = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.NgayAWB = new DevExpress.XtraEditors.DateEdit();
     this.TomTatNoiDung = new DevExpress.XtraEditors.MemoEdit();
     this.GhiChu = new DevExpress.XtraEditors.MemoEdit();
     this.TuKhoaText = new DevExpress.XtraEditors.MemoEdit();
     this.label20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.label33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.label36 = new DevExpress.XtraEditors.LabelControl();
     this.Info = new ProtocolVN.Framework.Win.PLInfoBoxEtx();
     this.TinhTrangBang = new ProtocolVN.Framework.Win.PLDMGrid();
     this.TietMuc = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.MaChuongTrinh = new DevExpress.XtraEditors.TextEdit();
     this.label42 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabControlMain = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageChuongTrinh = new DevExpress.XtraTab.XtraTabPage();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage();
     this.popupMenuTab = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.flowLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinPhatSong)).BeginInit();
     this.groupControlThongTinPhatSong.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConlai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Release.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDaRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPhatSongKhac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridviewPhatSongKhac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RunThu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRule.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MuaKem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlNguonGoc)).BeginInit();
     this.groupControlNguonGoc.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoteBQ.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongTinBan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongTinBan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
     this.groupControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DonViHauKy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KenhHanCheBan.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChanelRight.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DaoDien.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).BeginInit();
     this.groupControlThongTin.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGhiChu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGhiChu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PhanLoaiDrama.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguonTrading.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ClassName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Code.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Period.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TrailerGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Photos.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Script.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcMoiTrenThiTruong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcTrongKho.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit();
     this.groupControl8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DienVien.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TomTatNoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaChuongTrinh.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMain)).BeginInit();
     this.xtraTabControlMain.SuspendLayout();
     this.xtraTabPageChuongTrinh.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuTab)).BeginInit();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnClose);
     this.flowLayoutPanel1.Controls.Add(this.btnDelete);
     this.flowLayoutPanel1.Controls.Add(this.btnDeleteRealy);
     this.flowLayoutPanel1.Controls.Add(this.btnRestore);
     this.flowLayoutPanel1.Controls.Add(this.btnSave);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(626, 716);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(415, 31);
     this.flowLayoutPanel1.TabIndex = 4;
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.Location = new System.Drawing.Point(337, 3);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 2;
     this.btnClose.Text = "Đ&óng";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.Location = new System.Drawing.Point(256, 3);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex = 1;
     this.btnDelete.Text = "&Xóa";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnDeleteRealy
     //
     this.btnDeleteRealy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDeleteRealy.Location = new System.Drawing.Point(175, 3);
     this.btnDeleteRealy.Name = "btnDeleteRealy";
     this.btnDeleteRealy.Size = new System.Drawing.Size(75, 23);
     this.btnDeleteRealy.TabIndex = 1;
     this.btnDeleteRealy.Text = "&Xóa hẳn";
     this.btnDeleteRealy.Visible = false;
     this.btnDeleteRealy.Click += new System.EventHandler(this.btnDeleteRealy_Click);
     //
     // btnRestore
     //
     this.btnRestore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRestore.Location = new System.Drawing.Point(94, 3);
     this.btnRestore.Name = "btnRestore";
     this.btnRestore.Size = new System.Drawing.Size(75, 23);
     this.btnRestore.TabIndex = 1;
     this.btnRestore.Text = "&Phục hồi";
     this.btnRestore.Visible = false;
     this.btnRestore.Click += new System.EventHandler(this.btnRestore_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Location = new System.Drawing.Point(13, 3);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 0;
     this.btnSave.Text = "&Lưu";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // InPhieu
     //
     this.InPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.InPhieu.Location = new System.Drawing.Point(30, 3);
     this.InPhieu.Name = "InPhieu";
     this.InPhieu.Size = new System.Drawing.Size(81, 23);
     this.InPhieu.TabIndex = 1;
     this.InPhieu.Text = "&In nhãn";
     //
     // ctMnuInPhieu
     //
     this.ctMnuInPhieu.Name = "contextMenuStrip2";
     this.ctMnuInPhieu.Size = new System.Drawing.Size(61, 4);
     //
     // NghiepVu
     //
     this.NghiepVu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.NghiepVu.Location = new System.Drawing.Point(117, 3);
     this.NghiepVu.Name = "NghiepVu";
     this.NghiepVu.Size = new System.Drawing.Size(81, 23);
     this.NghiepVu.TabIndex = 2;
     this.NghiepVu.Text = "Nghiệp vụ";
     this.NghiepVu.Visible = false;
     //
     // ctMnuNghiepVu
     //
     this.ctMnuNghiepVu.Name = "contextMenuStrip3";
     this.ctMnuNghiepVu.Size = new System.Drawing.Size(61, 4);
     //
     // Duyet
     //
     this.Duyet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.Duyet.Enabled = false;
     this.Duyet.Location = new System.Drawing.Point(3, 6);
     this.Duyet.Name = "Duyet";
     this.Duyet.Size = new System.Drawing.Size(21, 20);
     this.Duyet.TabIndex = 0;
     this.Duyet.Visible = false;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.flowLayoutPanel2.Controls.Add(this.Duyet);
     this.flowLayoutPanel2.Controls.Add(this.InPhieu);
     this.flowLayoutPanel2.Controls.Add(this.NghiepVu);
     this.flowLayoutPanel2.Location = new System.Drawing.Point(6, 716);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Size = new System.Drawing.Size(218, 31);
     this.flowLayoutPanel2.TabIndex = 3;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(638, 52);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(40, 13);
     this.label7.TabIndex = 0;
     this.label7.Text = "Tiết mục";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(9, 76);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(82, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Tên chương trình";
     //
     // KyHieuPhanLoai
     //
     this.KyHieuPhanLoai.Location = new System.Drawing.Point(405, 165);
     this.KyHieuPhanLoai.Name = "KyHieuPhanLoai";
     this.KyHieuPhanLoai.Properties.Appearance.Options.UseTextOptions = true;
     this.KyHieuPhanLoai.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuPhanLoai.Size = new System.Drawing.Size(227, 20);
     this.KyHieuPhanLoai.TabIndex = 11;
     this.KyHieuPhanLoai.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // label21
     //
     this.label21.Location = new System.Drawing.Point(343, 168);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(24, 13);
     this.label21.TabIndex = 0;
     this.label21.Text = "KHPL";
     this.label21.ToolTip = "Ký hiệu phân loại";
     //
     // label22
     //
     this.label22.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label22.Appearance.Options.UseForeColor = true;
     this.label22.Location = new System.Drawing.Point(345, 191);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(25, 13);
     this.label22.TabIndex = 0;
     this.label22.Text = "KHXK";
     this.label22.ToolTip = "Ký hiệu xếp kho";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(5, 33);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(67, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "Đơn vị sở hữu";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(5, 10);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "Đơn vị cung cấp";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(9, 100);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(43, 13);
     this.label5.TabIndex = 0;
     this.label5.Text = "Đạo diễn";
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(639, 122);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(46, 13);
     this.label15.TabIndex = 0;
     this.label15.Text = "Rating TB";
     this.label15.ToolTip = "Rating trung bình";
     //
     // lblTitle
     //
     this.lblTitle.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.Appearance.Options.UseFont = true;
     this.lblTitle.Appearance.Options.UseTextOptions = true;
     this.lblTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lblTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblTitle.Location = new System.Drawing.Point(0, 0);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(1049, 38);
     this.lblTitle.TabIndex = 0;
     this.lblTitle.Text = "CHƯƠNG TRÌNH";
     //
     // KyHieuXepKho_KHPL
     //
     this.KyHieuXepKho_KHPL.Location = new System.Drawing.Point(3, 1);
     this.KyHieuXepKho_KHPL.Name = "KyHieuXepKho_KHPL";
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_KHPL.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_KHPL.Properties.ReadOnly = true;
     this.KyHieuXepKho_KHPL.Size = new System.Drawing.Size(221, 18);
     this.KyHieuXepKho_KHPL.TabIndex = 0;
     this.KyHieuXepKho_KHPL.TabStop = false;
     //
     // groupControlThongTinPhatSong
     //
     this.groupControlThongTinPhatSong.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlThongTinPhatSong.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlThongTinPhatSong.AppearanceCaption.Options.UseFont = true;
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseDate);
     this.groupControlThongTinPhatSong.Controls.Add(this.SoRunConlai);
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.Release);
     this.groupControlThongTinPhatSong.Controls.Add(this.SoDaRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.gridControlPhatSongKhac);
     this.groupControlThongTinPhatSong.Controls.Add(this.gridControlNgayPhatDauTien);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl8);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl9);
     this.groupControlThongTinPhatSong.Controls.Add(this.RunThu);
     this.groupControlThongTinPhatSong.Controls.Add(this.TongSoRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl20);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl19);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl6);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl24);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl21);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl15);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl10);
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseRule);
     this.groupControlThongTinPhatSong.Controls.Add(this.MuaKem);
     this.groupControlThongTinPhatSong.Location = new System.Drawing.Point(3, 672);
     this.groupControlThongTinPhatSong.Name = "groupControlThongTinPhatSong";
     this.groupControlThongTinPhatSong.Size = new System.Drawing.Size(1000, 351);
     this.groupControlThongTinPhatSong.TabIndex = 2;
     this.groupControlThongTinPhatSong.Text = "Thông tin phát sóng";
     //
     // ReleaseDate
     //
     this.ReleaseDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseDate.EditValue = null;
     this.ReleaseDate.Location = new System.Drawing.Point(840, 150);
     this.ReleaseDate.Name = "ReleaseDate";
     this.ReleaseDate.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.ReleaseDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ReleaseDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.ReleaseDate.Size = new System.Drawing.Size(155, 20);
     this.ReleaseDate.TabIndex = 5;
     //
     // SoRunConlai
     //
     this.SoRunConlai.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.SoRunConlai.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunConlai.Location = new System.Drawing.Point(840, 102);
     this.SoRunConlai.Name = "SoRunConlai";
     this.SoRunConlai.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.SoRunConlai.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunConlai.Properties.ReadOnly = true;
     this.SoRunConlai.Size = new System.Drawing.Size(155, 20);
     this.SoRunConlai.TabIndex = 4;
     this.SoRunConlai.TabStop = false;
     //
     // ReleaseRun
     //
     this.ReleaseRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.ReleaseRun.Location = new System.Drawing.Point(841, 175);
     this.ReleaseRun.Name = "ReleaseRun";
     this.ReleaseRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.ReleaseRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.ReleaseRun.Size = new System.Drawing.Size(154, 20);
     this.ReleaseRun.TabIndex = 5;
     //
     // Release
     //
     this.Release.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.Release.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.Release.Location = new System.Drawing.Point(840, 125);
     this.Release.Name = "Release";
     this.Release.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.Release.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Release.Size = new System.Drawing.Size(155, 20);
     this.Release.TabIndex = 5;
     //
     // SoDaRun
     //
     this.SoDaRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.SoDaRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoDaRun.Location = new System.Drawing.Point(840, 78);
     this.SoDaRun.Name = "SoDaRun";
     this.SoDaRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.SoDaRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoDaRun.Size = new System.Drawing.Size(155, 20);
     this.SoDaRun.TabIndex = 3;
     this.SoDaRun.TabStop = false;
     this.SoDaRun.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // gridControlPhatSongKhac
     //
     this.gridControlPhatSongKhac.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlPhatSongKhac.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlPhatSongKhac.BackgroundImage")));
     this.gridControlPhatSongKhac.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlPhatSongKhac.Location = new System.Drawing.Point(450, 32);
     this.gridControlPhatSongKhac.MainView = this.gridviewPhatSongKhac;
     this.gridControlPhatSongKhac.Name = "gridControlPhatSongKhac";
     this.gridControlPhatSongKhac.Size = new System.Drawing.Size(305, 314);
     this.gridControlPhatSongKhac.TabIndex = 1;
     this.gridControlPhatSongKhac.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridviewPhatSongKhac});
     //
     // gridviewPhatSongKhac
     //
     this.gridviewPhatSongKhac.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridviewPhatSongKhac.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridviewPhatSongKhac.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColPSK_Kenh,
     this.ColPSK_TuNgay,
     this.ColPSK_DenNgay,
     this.ColPSK_LanPhat});
     this.gridviewPhatSongKhac.GridControl = this.gridControlPhatSongKhac;
     this.gridviewPhatSongKhac.GroupCount = 1;
     this.gridviewPhatSongKhac.IndicatorWidth = 40;
     this.gridviewPhatSongKhac.Name = "gridviewPhatSongKhac";
     this.gridviewPhatSongKhac.OptionsLayout.Columns.AddNewColumns = false;
     this.gridviewPhatSongKhac.OptionsNavigation.AutoFocusNewRow = true;
     this.gridviewPhatSongKhac.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridviewPhatSongKhac.OptionsPrint.UsePrintStyles = true;
     this.gridviewPhatSongKhac.OptionsView.EnableAppearanceEvenRow = true;
     this.gridviewPhatSongKhac.OptionsView.EnableAppearanceOddRow = true;
     this.gridviewPhatSongKhac.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridviewPhatSongKhac.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridviewPhatSongKhac.OptionsView.ShowFooter = true;
     this.gridviewPhatSongKhac.OptionsView.ShowGroupedColumns = true;
     this.gridviewPhatSongKhac.OptionsView.ShowGroupPanel = false;
     this.gridviewPhatSongKhac.OptionsView.ShowIndicator = false;
     this.gridviewPhatSongKhac.OptionsView.ShowViewCaption = true;
     this.gridviewPhatSongKhac.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColPSK_Kenh, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridviewPhatSongKhac.ViewCaption = "Thời gian phát sóng trên các kênh khác";
     this.gridviewPhatSongKhac.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewPhatSongKhac_ValidateRow);
     //
     // ColPSK_Kenh
     //
     this.ColPSK_Kenh.Caption = "Kênh phát sóng";
     this.ColPSK_Kenh.Name = "ColPSK_Kenh";
     this.ColPSK_Kenh.SummaryItem.DisplayFormat = "Số lần đã phát {0}";
     this.ColPSK_Kenh.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColPSK_Kenh.Visible = true;
     this.ColPSK_Kenh.VisibleIndex = 0;
     this.ColPSK_Kenh.Width = 100;
     //
     // ColPSK_TuNgay
     //
     this.ColPSK_TuNgay.Caption = "Từ ngày";
     this.ColPSK_TuNgay.Name = "ColPSK_TuNgay";
     this.ColPSK_TuNgay.Visible = true;
     this.ColPSK_TuNgay.VisibleIndex = 1;
     this.ColPSK_TuNgay.Width = 52;
     //
     // ColPSK_DenNgay
     //
     this.ColPSK_DenNgay.Caption = "Đến ngày";
     this.ColPSK_DenNgay.Name = "ColPSK_DenNgay";
     this.ColPSK_DenNgay.Visible = true;
     this.ColPSK_DenNgay.VisibleIndex = 2;
     this.ColPSK_DenNgay.Width = 59;
     //
     // ColPSK_LanPhat
     //
     this.ColPSK_LanPhat.Caption = "Run thứ";
     this.ColPSK_LanPhat.Name = "ColPSK_LanPhat";
     this.ColPSK_LanPhat.SummaryItem.DisplayFormat = "Run thứ:{0}";
     this.ColPSK_LanPhat.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.ColPSK_LanPhat.Visible = true;
     this.ColPSK_LanPhat.VisibleIndex = 3;
     this.ColPSK_LanPhat.Width = 52;
     //
     // gridControlNgayPhatDauTien
     //
     this.gridControlNgayPhatDauTien.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlNgayPhatDauTien.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlNgayPhatDauTien.BackgroundImage")));
     this.gridControlNgayPhatDauTien.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlNgayPhatDauTien.Location = new System.Drawing.Point(6, 32);
     this.gridControlNgayPhatDauTien.MainView = this.gridViewNgayPhatDauTien;
     this.gridControlNgayPhatDauTien.Name = "gridControlNgayPhatDauTien";
     this.gridControlNgayPhatDauTien.Size = new System.Drawing.Size(436, 314);
     this.gridControlNgayPhatDauTien.TabIndex = 0;
     this.gridControlNgayPhatDauTien.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewNgayPhatDauTien});
     //
     // gridViewNgayPhatDauTien
     //
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewNgayPhatDauTien.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColKenhPhatSong,
     this.ColIsPhatLai,
     this.ColNgayPhatStart,
     this.ColNgayPhatEnd,
     this.ColTimeSlot,
     this.ColLanPhat});
     this.gridViewNgayPhatDauTien.GridControl = this.gridControlNgayPhatDauTien;
     this.gridViewNgayPhatDauTien.GroupCount = 1;
     this.gridViewNgayPhatDauTien.IndicatorWidth = 40;
     this.gridViewNgayPhatDauTien.Name = "gridViewNgayPhatDauTien";
     this.gridViewNgayPhatDauTien.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewNgayPhatDauTien.OptionsMenu.EnableFooterMenu = false;
     this.gridViewNgayPhatDauTien.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewNgayPhatDauTien.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewNgayPhatDauTien.OptionsPrint.UsePrintStyles = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFooter = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupedColumns = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupPanel = false;
     this.gridViewNgayPhatDauTien.OptionsView.ShowIndicator = false;
     this.gridViewNgayPhatDauTien.OptionsView.ShowViewCaption = true;
     this.gridViewNgayPhatDauTien.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColKenhPhatSong, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewNgayPhatDauTien.ViewCaption = "Ngày phát sóng đầu tiên";
     this.gridViewNgayPhatDauTien.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewNgayPhatDauTien_CustomDrawGroupRow);
     this.gridViewNgayPhatDauTien.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridViewNgayPhatDauTien_RowUpdated);
     this.gridViewNgayPhatDauTien.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewNgayPhatDauTien_ValidateRow);
     //
     // ColKenhPhatSong
     //
     this.ColKenhPhatSong.Caption = "Kênh";
     this.ColKenhPhatSong.Name = "ColKenhPhatSong";
     this.ColKenhPhatSong.SummaryItem.DisplayFormat = "Phát chính: {0} lần";
     this.ColKenhPhatSong.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColKenhPhatSong.Visible = true;
     this.ColKenhPhatSong.VisibleIndex = 0;
     this.ColKenhPhatSong.Width = 83;
     //
     // ColIsPhatLai
     //
     this.ColIsPhatLai.Caption = "Phát lại";
     this.ColIsPhatLai.Name = "ColIsPhatLai";
     this.ColIsPhatLai.SummaryItem.DisplayFormat = "Phát lại: {0} lần";
     this.ColIsPhatLai.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColIsPhatLai.Visible = true;
     this.ColIsPhatLai.VisibleIndex = 1;
     this.ColIsPhatLai.Width = 68;
     //
     // ColNgayPhatStart
     //
     this.ColNgayPhatStart.Caption = "Từ ngày";
     this.ColNgayPhatStart.Name = "ColNgayPhatStart";
     this.ColNgayPhatStart.Visible = true;
     this.ColNgayPhatStart.VisibleIndex = 2;
     this.ColNgayPhatStart.Width = 52;
     //
     // ColNgayPhatEnd
     //
     this.ColNgayPhatEnd.Caption = "Đến ngày";
     this.ColNgayPhatEnd.Name = "ColNgayPhatEnd";
     this.ColNgayPhatEnd.Visible = true;
     this.ColNgayPhatEnd.VisibleIndex = 3;
     this.ColNgayPhatEnd.Width = 59;
     //
     // ColTimeSlot
     //
     this.ColTimeSlot.Caption = "Timeslot";
     this.ColTimeSlot.Name = "ColTimeSlot";
     this.ColTimeSlot.Visible = true;
     this.ColTimeSlot.VisibleIndex = 4;
     this.ColTimeSlot.Width = 51;
     //
     // ColLanPhat
     //
     this.ColLanPhat.Caption = "Run thứ";
     this.ColLanPhat.Name = "ColLanPhat";
     this.ColLanPhat.SummaryItem.DisplayFormat = "Run thứ:{0}";
     this.ColLanPhat.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.ColLanPhat.Visible = true;
     this.ColLanPhat.VisibleIndex = 5;
     this.ColLanPhat.Width = 52;
     //
     // 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(760, 105);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(52, 13);
     this.labelControl8.TabIndex = 137;
     this.labelControl8.Text = "Run còn lại";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.Location = new System.Drawing.Point(760, 81);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(49, 13);
     this.labelControl9.TabIndex = 137;
     this.labelControl9.Text = "Số đã Run";
     //
     // RunThu
     //
     this.RunThu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.RunThu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.RunThu.Location = new System.Drawing.Point(840, 32);
     this.RunThu.Name = "RunThu";
     this.RunThu.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.RunThu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.RunThu.Size = new System.Drawing.Size(155, 20);
     this.RunThu.TabIndex = 2;
     this.RunThu.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // TongSoRun
     //
     this.TongSoRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.TongSoRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TongSoRun.Location = new System.Drawing.Point(840, 55);
     this.TongSoRun.Name = "TongSoRun";
     this.TongSoRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.TongSoRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongSoRun.Size = new System.Drawing.Size(155, 20);
     this.TongSoRun.TabIndex = 2;
     this.TongSoRun.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // labelControl20
     //
     this.labelControl20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl20.Location = new System.Drawing.Point(760, 178);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(57, 13);
     this.labelControl20.TabIndex = 129;
     this.labelControl20.Text = "Release run";
     //
     // labelControl19
     //
     this.labelControl19.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl19.Location = new System.Drawing.Point(760, 151);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(63, 13);
     this.labelControl19.TabIndex = 129;
     this.labelControl19.Text = "Release date";
     //
     // 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(760, 127);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(74, 13);
     this.labelControl6.TabIndex = 129;
     this.labelControl6.Text = "Release (Ngày)";
     //
     // labelControl24
     //
     this.labelControl24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl24.Location = new System.Drawing.Point(760, 205);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(53, 13);
     this.labelControl24.TabIndex = 137;
     this.labelControl24.Text = "Realse rule";
     //
     // labelControl21
     //
     this.labelControl21.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl21.Location = new System.Drawing.Point(760, 276);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(42, 13);
     this.labelControl21.TabIndex = 137;
     this.labelControl21.Text = "Mua kèm";
     //
     // labelControl15
     //
     this.labelControl15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl15.Location = new System.Drawing.Point(760, 36);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(39, 13);
     this.labelControl15.TabIndex = 137;
     this.labelControl15.Text = "Run thứ";
     //
     // labelControl10
     //
     this.labelControl10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl10.Location = new System.Drawing.Point(760, 57);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(60, 13);
     this.labelControl10.TabIndex = 137;
     this.labelControl10.Text = "Tổng số Run";
     //
     // ReleaseRule
     //
     this.ReleaseRule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseRule.Location = new System.Drawing.Point(841, 201);
     this.ReleaseRule.Name = "ReleaseRule";
     this.ReleaseRule.Size = new System.Drawing.Size(152, 70);
     this.ReleaseRule.TabIndex = 6;
     //
     // MuaKem
     //
     this.MuaKem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.MuaKem.Location = new System.Drawing.Point(841, 277);
     this.MuaKem.Name = "MuaKem";
     this.MuaKem.Size = new System.Drawing.Size(155, 69);
     this.MuaKem.TabIndex = 6;
     //
     // Rating
     //
     this.Rating.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Rating.Location = new System.Drawing.Point(690, 120);
     this.Rating.Name = "Rating";
     this.Rating.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.Rating.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Rating.Size = new System.Drawing.Size(303, 20);
     this.Rating.TabIndex = 12;
     //
     // DoiTuongKhanGia
     //
     this.DoiTuongKhanGia.DataSource = null;
     this.DoiTuongKhanGia.DisplayField = null;
     this.DoiTuongKhanGia.EditValue = "";
     this.DoiTuongKhanGia.Location = new System.Drawing.Point(93, 120);
     this.DoiTuongKhanGia.Name = "DoiTuongKhanGia";
     this.DoiTuongKhanGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DoiTuongKhanGia.Size = new System.Drawing.Size(241, 20);
     this.DoiTuongKhanGia.TabIndex = 10;
     this.DoiTuongKhanGia.ValueField = null;
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(9, 124);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(57, 13);
     this.label14.TabIndex = 0;
     this.label14.Text = "ĐT khán giả";
     //
     // groupControlNguonGoc
     //
     this.groupControlNguonGoc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlNguonGoc.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlNguonGoc.AppearanceCaption.Options.UseFont = true;
     this.groupControlNguonGoc.Controls.Add(this.NoteBQ);
     this.groupControlNguonGoc.Controls.Add(this.gridControlThongTinBan);
     this.groupControlNguonGoc.Controls.Add(this.groupControl7);
     this.groupControlNguonGoc.Controls.Add(this.labelControl17);
     this.groupControlNguonGoc.Controls.Add(this.groupControl1);
     this.groupControlNguonGoc.Controls.Add(this.labelControl14);
     this.groupControlNguonGoc.Location = new System.Drawing.Point(4, 425);
     this.groupControlNguonGoc.Name = "groupControlNguonGoc";
     this.groupControlNguonGoc.Size = new System.Drawing.Size(999, 228);
     this.groupControlNguonGoc.TabIndex = 1;
     this.groupControlNguonGoc.Text = "Nguồn gốc - bản quyền";
     //
     // NoteBQ
     //
     this.NoteBQ.Location = new System.Drawing.Point(95, 180);
     this.NoteBQ.Name = "NoteBQ";
     this.NoteBQ.Size = new System.Drawing.Size(539, 43);
     this.NoteBQ.TabIndex = 136;
     //
     // gridControlThongTinBan
     //
     this.gridControlThongTinBan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlThongTinBan.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlThongTinBan.BackgroundImage")));
     this.gridControlThongTinBan.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlThongTinBan.Location = new System.Drawing.Point(645, 29);
     this.gridControlThongTinBan.MainView = this.gridViewThongTinBan;
     this.gridControlThongTinBan.Name = "gridControlThongTinBan";
     this.gridControlThongTinBan.Size = new System.Drawing.Size(350, 194);
     this.gridControlThongTinBan.TabIndex = 2;
     this.gridControlThongTinBan.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewThongTinBan});
     //
     // gridViewThongTinBan
     //
     this.gridViewThongTinBan.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewThongTinBan.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewThongTinBan.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColKenhBan,
     this.ColNgayBanTu,
     this.ColNgayBanDen});
     this.gridViewThongTinBan.GridControl = this.gridControlThongTinBan;
     this.gridViewThongTinBan.GroupCount = 1;
     this.gridViewThongTinBan.IndicatorWidth = 40;
     this.gridViewThongTinBan.Name = "gridViewThongTinBan";
     this.gridViewThongTinBan.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewThongTinBan.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewThongTinBan.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewThongTinBan.OptionsPrint.UsePrintStyles = true;
     this.gridViewThongTinBan.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewThongTinBan.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewThongTinBan.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewThongTinBan.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewThongTinBan.OptionsView.ShowGroupedColumns = true;
     this.gridViewThongTinBan.OptionsView.ShowGroupPanel = false;
     this.gridViewThongTinBan.OptionsView.ShowIndicator = false;
     this.gridViewThongTinBan.OptionsView.ShowViewCaption = true;
     this.gridViewThongTinBan.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColKenhBan, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewThongTinBan.ViewCaption = "Thông tin bán";
     this.gridViewThongTinBan.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewThongTinBan_CustomDrawGroupRow);
     this.gridViewThongTinBan.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewThongTinBan_ValidateRow);
     //
     // ColKenhBan
     //
     this.ColKenhBan.Caption = "Kênh bán";
     this.ColKenhBan.Name = "ColKenhBan";
     this.ColKenhBan.SummaryItem.DisplayFormat = "Tồng số lần đã bán {0}";
     this.ColKenhBan.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColKenhBan.Visible = true;
     this.ColKenhBan.VisibleIndex = 0;
     this.ColKenhBan.Width = 70;
     //
     // ColNgayBanTu
     //
     this.ColNgayBanTu.Caption = "Từ ngày";
     this.ColNgayBanTu.Name = "ColNgayBanTu";
     this.ColNgayBanTu.Visible = true;
     this.ColNgayBanTu.VisibleIndex = 1;
     this.ColNgayBanTu.Width = 52;
     //
     // ColNgayBanDen
     //
     this.ColNgayBanDen.Caption = "Đên ngày";
     this.ColNgayBanDen.Name = "ColNgayBanDen";
     this.ColNgayBanDen.Visible = true;
     this.ColNgayBanDen.VisibleIndex = 2;
     this.ColNgayBanDen.Width = 59;
     //
     // groupControl7
     //
     this.groupControl7.Controls.Add(this.DonViHauKy);
     this.groupControl7.Controls.Add(this.HangSanXuat);
     this.groupControl7.Controls.Add(this.DonViSoHuu);
     this.groupControl7.Controls.Add(this.NamSanXuat);
     this.groupControl7.Controls.Add(this.label4);
     this.groupControl7.Controls.Add(this.label2);
     this.groupControl7.Controls.Add(this.labelControl33);
     this.groupControl7.Controls.Add(this.labelControl32);
     this.groupControl7.Controls.Add(this.labelControl4);
     this.groupControl7.Controls.Add(this.labelControl7);
     this.groupControl7.Controls.Add(this.QuocGia);
     this.groupControl7.Controls.Add(this.label25);
     this.groupControl7.Controls.Add(this.KenhHanCheBan);
     this.groupControl7.Controls.Add(this.DonViCungCap);
     this.groupControl7.Location = new System.Drawing.Point(2, 29);
     this.groupControl7.Name = "groupControl7";
     this.groupControl7.ShowCaption = false;
     this.groupControl7.Size = new System.Drawing.Size(338, 147);
     this.groupControl7.TabIndex = 0;
     this.groupControl7.Text = "groupControl7";
     //
     // DonViHauKy
     //
     this.DonViHauKy._DataSource = null;
     this.DonViHauKy._GetField = null;
     this.DonViHauKy.Location = new System.Drawing.Point(92, 53);
     this.DonViHauKy.Name = "DonViHauKy";
     this.DonViHauKy.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.DonViHauKy.Size = new System.Drawing.Size(241, 20);
     this.DonViHauKy.TabIndex = 133;
     //
     // HangSanXuat
     //
     this.HangSanXuat.Location = new System.Drawing.Point(92, 78);
     this.HangSanXuat.Name = "HangSanXuat";
     this.HangSanXuat.Size = new System.Drawing.Size(241, 20);
     this.HangSanXuat.TabIndex = 1;
     this.HangSanXuat.ZZZWidthFactor = 2F;
     //
     // DonViSoHuu
     //
     this.DonViSoHuu.Location = new System.Drawing.Point(92, 31);
     this.DonViSoHuu.Name = "DonViSoHuu";
     this.DonViSoHuu.Size = new System.Drawing.Size(241, 20);
     this.DonViSoHuu.TabIndex = 1;
     this.DonViSoHuu.ZZZWidthFactor = 2F;
     //
     // NamSanXuat
     //
     this.NamSanXuat.EditValue = new decimal(new int[] {
     1999,
     0,
     0,
     0});
     this.NamSanXuat.Location = new System.Drawing.Point(278, 101);
     this.NamSanXuat.Name = "NamSanXuat";
     this.NamSanXuat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSanXuat.Properties.Mask.EditMask = "n0";
     this.NamSanXuat.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.NamSanXuat.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.NamSanXuat.Size = new System.Drawing.Size(55, 20);
     this.NamSanXuat.TabIndex = 3;
     //
     // labelControl33
     //
     this.labelControl33.Location = new System.Drawing.Point(6, 81);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(70, 13);
     this.labelControl33.TabIndex = 0;
     this.labelControl33.Text = "Hãng sản xuất";
     //
     // labelControl32
     //
     this.labelControl32.Location = new System.Drawing.Point(5, 55);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(66, 13);
     this.labelControl32.TabIndex = 0;
     this.labelControl32.Text = "Đơn vị hậu kỳ";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(5, 104);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(70, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "Nước sản xuất";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(5, 127);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(86, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "Kênh hạn chế bán";
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.EditValue = "";
     this.QuocGia.Location = new System.Drawing.Point(92, 101);
     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(137, 20);
     this.QuocGia.TabIndex = 2;
     this.QuocGia.ValueField = null;
     //
     // label25
     //
     this.label25.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Appearance.ForeColor = System.Drawing.Color.Black;
     this.label25.Appearance.Options.UseFont = true;
     this.label25.Appearance.Options.UseForeColor = true;
     this.label25.Location = new System.Drawing.Point(236, 104);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(36, 13);
     this.label25.TabIndex = 0;
     this.label25.Text = "Năm SX";
     //
     // KenhHanCheBan
     //
     this.KenhHanCheBan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.KenhHanCheBan.DataSource = null;
     this.KenhHanCheBan.DisplayField = null;
     this.KenhHanCheBan.EditValue = "";
     this.KenhHanCheBan.Location = new System.Drawing.Point(92, 123);
     this.KenhHanCheBan.Name = "KenhHanCheBan";
     this.KenhHanCheBan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.KenhHanCheBan.Size = new System.Drawing.Size(241, 20);
     this.KenhHanCheBan.TabIndex = 4;
     this.KenhHanCheBan.ValueField = null;
     //
     // DonViCungCap
     //
     this.DonViCungCap.Location = new System.Drawing.Point(92, 8);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Size = new System.Drawing.Size(241, 20);
     this.DonViCungCap.TabIndex = 0;
     this.DonViCungCap.ZZZWidthFactor = 2F;
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(436, 23);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(95, 13);
     this.labelControl17.TabIndex = 0;
     this.labelControl17.Text = "Thời hạn bản quyền";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.BanQuyenHTV);
     this.groupControl1.Controls.Add(this.BanQuyenDIDEnd);
     this.groupControl1.Controls.Add(this.BanQuyenDTNNEnd);
     this.groupControl1.Controls.Add(this.BanQuyenDIDStart);
     this.groupControl1.Controls.Add(this.BanQuyenDTNNStart);
     this.groupControl1.Controls.Add(this.ChanelRight);
     this.groupControl1.Controls.Add(this.labelControl25);
     this.groupControl1.Controls.Add(this.labelControl26);
     this.groupControl1.Controls.Add(this.labelControl27);
     this.groupControl1.Controls.Add(this.labelControl28);
     this.groupControl1.Controls.Add(this.labelControl29);
     this.groupControl1.Controls.Add(this.labelControl30);
     this.groupControl1.Controls.Add(this.BanQuyenThuoc);
     this.groupControl1.Controls.Add(this.labelControl31);
     this.groupControl1.Location = new System.Drawing.Point(345, 29);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(289, 145);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "groupControl5";
     //
     // BanQuyenHTV
     //
     this.BanQuyenHTV.EditValue = null;
     this.BanQuyenHTV.Location = new System.Drawing.Point(72, 83);
     this.BanQuyenHTV.Name = "BanQuyenHTV";
     this.BanQuyenHTV.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenHTV.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenHTV.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenHTV.Size = new System.Drawing.Size(213, 20);
     this.BanQuyenHTV.TabIndex = 5;
     //
     // BanQuyenDIDEnd
     //
     this.BanQuyenDIDEnd.EditValue = null;
     this.BanQuyenDIDEnd.Location = new System.Drawing.Point(192, 38);
     this.BanQuyenDIDEnd.Name = "BanQuyenDIDEnd";
     this.BanQuyenDIDEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDIDEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDIDEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDIDEnd.Size = new System.Drawing.Size(94, 20);
     this.BanQuyenDIDEnd.TabIndex = 2;
     this.BanQuyenDIDEnd.ToolTip = "Bản quyền đối với đối tác trong nước End";
     //
     // BanQuyenDTNNEnd
     //
     this.BanQuyenDTNNEnd.EditValue = null;
     this.BanQuyenDTNNEnd.Location = new System.Drawing.Point(192, 60);
     this.BanQuyenDTNNEnd.Name = "BanQuyenDTNNEnd";
     this.BanQuyenDTNNEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDTNNEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDTNNEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDTNNEnd.Size = new System.Drawing.Size(94, 20);
     this.BanQuyenDTNNEnd.TabIndex = 4;
     this.BanQuyenDTNNEnd.ToolTip = "Bản quyền với đối tác nước ngoài end";
     //
     // BanQuyenDIDStart
     //
     this.BanQuyenDIDStart.EditValue = null;
     this.BanQuyenDIDStart.Location = new System.Drawing.Point(71, 38);
     this.BanQuyenDIDStart.Name = "BanQuyenDIDStart";
     this.BanQuyenDIDStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDIDStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDIDStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDIDStart.Size = new System.Drawing.Size(91, 20);
     this.BanQuyenDIDStart.TabIndex = 1;
     this.BanQuyenDIDStart.ToolTip = "Bản quyền đối với đối tác trong nước start";
     //
     // BanQuyenDTNNStart
     //
     this.BanQuyenDTNNStart.EditValue = null;
     this.BanQuyenDTNNStart.Location = new System.Drawing.Point(71, 60);
     this.BanQuyenDTNNStart.Name = "BanQuyenDTNNStart";
     this.BanQuyenDTNNStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDTNNStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDTNNStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDTNNStart.Size = new System.Drawing.Size(90, 20);
     this.BanQuyenDTNNStart.TabIndex = 3;
     //
     // ChanelRight
     //
     this.ChanelRight.DataSource = null;
     this.ChanelRight.DisplayField = null;
     this.ChanelRight.EditValue = "";
     this.ChanelRight.Location = new System.Drawing.Point(72, 106);
     this.ChanelRight.Name = "ChanelRight";
     this.ChanelRight.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ChanelRight.Size = new System.Drawing.Size(213, 20);
     this.ChanelRight.TabIndex = 11;
     this.ChanelRight.ValueField = null;
     //
     // labelControl25
     //
     this.labelControl25.Location = new System.Drawing.Point(2, 110);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(64, 13);
     this.labelControl25.TabIndex = 0;
     this.labelControl25.Text = "Channel right";
     //
     // labelControl26
     //
     this.labelControl26.Location = new System.Drawing.Point(3, 20);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(44, 13);
     this.labelControl26.TabIndex = 0;
     this.labelControl26.Text = "BQ thuộc";
     this.labelControl26.ToolTip = "Bản quyền thuộc";
     //
     // labelControl27
     //
     this.labelControl27.Location = new System.Drawing.Point(3, 87);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(19, 13);
     this.labelControl27.TabIndex = 0;
     this.labelControl27.Text = "HTV";
     this.labelControl27.ToolTip = "Bản quyền HTV";
     //
     // labelControl28
     //
     this.labelControl28.Location = new System.Drawing.Point(3, 64);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(54, 13);
     this.labelControl28.TabIndex = 0;
     this.labelControl28.Text = "DTNN Start";
     this.labelControl28.ToolTip = "Bản quyền với đối tác nước ngoài Start";
     //
     // labelControl29
     //
     this.labelControl29.Location = new System.Drawing.Point(3, 42);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(53, 13);
     this.labelControl29.TabIndex = 0;
     this.labelControl29.Text = "DTTN Start";
     //
     // labelControl30
     //
     this.labelControl30.Location = new System.Drawing.Point(169, 64);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(18, 13);
     this.labelControl30.TabIndex = 0;
     this.labelControl30.Text = "End";
     //
     // BanQuyenThuoc
     //
     this.BanQuyenThuoc.Location = new System.Drawing.Point(71, 16);
     this.BanQuyenThuoc.Name = "BanQuyenThuoc";
     this.BanQuyenThuoc.Size = new System.Drawing.Size(217, 20);
     this.BanQuyenThuoc.TabIndex = 0;
     this.BanQuyenThuoc.ZZZWidthFactor = 2F;
     //
     // labelControl31
     //
     this.labelControl31.Location = new System.Drawing.Point(169, 42);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(18, 13);
     this.labelControl31.TabIndex = 0;
     this.labelControl31.Text = "End";
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(6, 182);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(40, 13);
     this.labelControl14.TabIndex = 0;
     this.labelControl14.Text = "Note BQ";
     //
     // DaoDien
     //
     this.DaoDien.DataSource = null;
     this.DaoDien.DisplayField = null;
     this.DaoDien.EditValue = "";
     this.DaoDien.Location = new System.Drawing.Point(93, 96);
     this.DaoDien.Name = "DaoDien";
     this.DaoDien.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DaoDien.Size = new System.Drawing.Size(239, 20);
     this.DaoDien.TabIndex = 7;
     this.DaoDien.ValueField = null;
     //
     // groupControlThongTin
     //
     this.groupControlThongTin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlThongTin.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlThongTin.AppearanceCaption.Options.UseFont = true;
     this.groupControlThongTin.Controls.Add(this.gridControlGhiChu);
     this.groupControlThongTin.Controls.Add(this.labelControl34);
     this.groupControlThongTin.Controls.Add(this.PhanLoaiDrama);
     this.groupControlThongTin.Controls.Add(this.labelControl18);
     this.groupControlThongTin.Controls.Add(this.NguonTrading);
     this.groupControlThongTin.Controls.Add(this.ClassName);
     this.groupControlThongTin.Controls.Add(this.labelControl23);
     this.groupControlThongTin.Controls.Add(this.labelControl13);
     this.groupControlThongTin.Controls.Add(this.Code);
     this.groupControlThongTin.Controls.Add(this.TenGoc);
     this.groupControlThongTin.Controls.Add(this.NoiDung);
     this.groupControlThongTin.Controls.Add(this.Period);
     this.groupControlThongTin.Controls.Add(this.Category);
     this.groupControlThongTin.Controls.Add(this.TrailerGoc);
     this.groupControlThongTin.Controls.Add(this.Photos);
     this.groupControlThongTin.Controls.Add(this.Script);
     this.groupControlThongTin.Controls.Add(this.ckcMoiTrenThiTruong);
     this.groupControlThongTin.Controls.Add(this.ckcTrongKho);
     this.groupControlThongTin.Controls.Add(this.ThanhLy);
     this.groupControlThongTin.Controls.Add(this.groupControl8);
     this.groupControlThongTin.Controls.Add(this.label22);
     this.groupControlThongTin.Controls.Add(this.Ranking);
     this.groupControlThongTin.Controls.Add(this.Rating);
     this.groupControlThongTin.Controls.Add(this.DienVien);
     this.groupControlThongTin.Controls.Add(this.DaoDien);
     this.groupControlThongTin.Controls.Add(this.KyHieuPhanLoai);
     this.groupControlThongTin.Controls.Add(this.labelControl22);
     this.groupControlThongTin.Controls.Add(this.labelControl16);
     this.groupControlThongTin.Controls.Add(this.label21);
     this.groupControlThongTin.Controls.Add(this.labelControl12);
     this.groupControlThongTin.Controls.Add(this.label15);
     this.groupControlThongTin.Controls.Add(this.label5);
     this.groupControlThongTin.Controls.Add(this.label24);
     this.groupControlThongTin.Controls.Add(this.TuKhoaSelect);
     this.groupControlThongTin.Controls.Add(this.DoiTuongKhanGia);
     this.groupControlThongTin.Controls.Add(this.labelControl11);
     this.groupControlThongTin.Controls.Add(this.label14);
     this.groupControlThongTin.Controls.Add(this.NgayAWB);
     this.groupControlThongTin.Controls.Add(this.TomTatNoiDung);
     this.groupControlThongTin.Controls.Add(this.GhiChu);
     this.groupControlThongTin.Controls.Add(this.TuKhoaText);
     this.groupControlThongTin.Controls.Add(this.label20);
     this.groupControlThongTin.Controls.Add(this.labelControl2);
     this.groupControlThongTin.Controls.Add(this.label33);
     this.groupControlThongTin.Controls.Add(this.labelControl5);
     this.groupControlThongTin.Controls.Add(this.label36);
     this.groupControlThongTin.Controls.Add(this.Info);
     this.groupControlThongTin.Controls.Add(this.TinhTrangBang);
     this.groupControlThongTin.Controls.Add(this.TietMuc);
     this.groupControlThongTin.Controls.Add(this.labelControl3);
     this.groupControlThongTin.Controls.Add(this.MaChuongTrinh);
     this.groupControlThongTin.Controls.Add(this.label7);
     this.groupControlThongTin.Controls.Add(this.label42);
     this.groupControlThongTin.Controls.Add(this.labelControl1);
     this.groupControlThongTin.Controls.Add(this.label8);
     this.groupControlThongTin.Location = new System.Drawing.Point(3, 0);
     this.groupControlThongTin.Name = "groupControlThongTin";
     this.groupControlThongTin.Size = new System.Drawing.Size(1000, 410);
     this.groupControlThongTin.TabIndex = 0;
     this.groupControlThongTin.Text = "Thông tin chính";
     //
     // gridControlGhiChu
     //
     this.gridControlGhiChu.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlGhiChu.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlGhiChu.BackgroundImage")));
     this.gridControlGhiChu.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlGhiChu.Location = new System.Drawing.Point(405, 241);
     this.gridControlGhiChu.MainView = this.gridViewGhiChu;
     this.gridControlGhiChu.Name = "gridControlGhiChu";
     this.gridControlGhiChu.Size = new System.Drawing.Size(588, 152);
     this.gridControlGhiChu.TabIndex = 138;
     this.gridControlGhiChu.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewGhiChu});
     //
     // gridViewGhiChu
     //
     this.gridViewGhiChu.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewGhiChu.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewGhiChu.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colLoaiGhiChu,
     this.colNoiDungGhiChu});
     this.gridViewGhiChu.GridControl = this.gridControlGhiChu;
     this.gridViewGhiChu.IndicatorWidth = 40;
     this.gridViewGhiChu.Name = "gridViewGhiChu";
     this.gridViewGhiChu.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewGhiChu.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewGhiChu.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewGhiChu.OptionsPrint.UsePrintStyles = true;
     this.gridViewGhiChu.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewGhiChu.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewGhiChu.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewGhiChu.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewGhiChu.OptionsView.ShowGroupedColumns = true;
     this.gridViewGhiChu.OptionsView.ShowGroupPanel = false;
     this.gridViewGhiChu.OptionsView.ShowIndicator = false;
     this.gridViewGhiChu.ViewCaption = "Thông tin bán";
     //
     // colLoaiGhiChu
     //
     this.colLoaiGhiChu.Caption = "Loại ghi chú";
     this.colLoaiGhiChu.Name = "colLoaiGhiChu";
     this.colLoaiGhiChu.SummaryItem.DisplayFormat = "Tồng số lần đã bán {0}";
     this.colLoaiGhiChu.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.colLoaiGhiChu.Visible = true;
     this.colLoaiGhiChu.VisibleIndex = 0;
     this.colLoaiGhiChu.Width = 68;
     //
     // colNoiDungGhiChu
     //
     this.colNoiDungGhiChu.Caption = "Nội dung";
     this.colNoiDungGhiChu.Name = "colNoiDungGhiChu";
     this.colNoiDungGhiChu.Visible = true;
     this.colNoiDungGhiChu.VisibleIndex = 1;
     this.colNoiDungGhiChu.Width = 54;
     //
     // labelControl34
     //
     this.labelControl34.Location = new System.Drawing.Point(342, 245);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(60, 13);
     this.labelControl34.TabIndex = 139;
     this.labelControl34.Text = "Ghi chú khác";
     //
     // PhanLoaiDrama
     //
     this.PhanLoaiDrama._DataSource = null;
     this.PhanLoaiDrama._GetField = null;
     this.PhanLoaiDrama.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.PhanLoaiDrama.Location = new System.Drawing.Point(690, 142);
     this.PhanLoaiDrama.MenuManager = this.barManager1;
     this.PhanLoaiDrama.Name = "PhanLoaiDrama";
     this.PhanLoaiDrama.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)});
     this.PhanLoaiDrama.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.PhanLoaiDrama.Size = new System.Drawing.Size(303, 20);
     this.PhanLoaiDrama.TabIndex = 137;
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.MaxItemId = 2;
     //
     // 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(1049, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 750);
     this.barDockControlBottom.Size = new System.Drawing.Size(1049, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 750);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1049, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 750);
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(639, 144);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(49, 13);
     this.labelControl18.TabIndex = 136;
     this.labelControl18.Text = "P/L Drama";
     this.labelControl18.ToolTip = "Phân loại Drama";
     //
     // NguonTrading
     //
     this.NguonTrading._DataSource = null;
     this.NguonTrading._GetField = null;
     this.NguonTrading.Location = new System.Drawing.Point(93, 191);
     this.NguonTrading.Name = "NguonTrading";
     this.NguonTrading.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, false)});
     this.NguonTrading.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NguonTrading.Size = new System.Drawing.Size(239, 20);
     this.NguonTrading.TabIndex = 135;
     //
     // ClassName
     //
     this.ClassName._DataSource = null;
     this.ClassName._GetField = null;
     this.ClassName.Location = new System.Drawing.Point(405, 119);
     this.ClassName.MenuManager = this.barManager1;
     this.ClassName.Name = "ClassName";
     this.ClassName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, false)});
     this.ClassName.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.ClassName.Size = new System.Drawing.Size(227, 20);
     this.ClassName.TabIndex = 135;
     //
     // labelControl23
     //
     this.labelControl23.Location = new System.Drawing.Point(8, 192);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(70, 13);
     this.labelControl23.TabIndex = 134;
     this.labelControl23.Text = "Nguồn Trading";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(9, 170);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(41, 13);
     this.labelControl13.TabIndex = 134;
     this.labelControl13.Text = "Code CT";
     this.labelControl13.ToolTip = "Mã code kế toán";
     //
     // Code
     //
     this.Code.Location = new System.Drawing.Point(93, 168);
     this.Code.MenuManager = this.barManager1;
     this.Code.Name = "Code";
     this.Code.Size = new System.Drawing.Size(239, 20);
     this.Code.TabIndex = 133;
     //
     // TenGoc
     //
     this.TenGoc._DataSource = null;
     this.TenGoc._GetField = null;
     this.TenGoc.Location = new System.Drawing.Point(405, 73);
     this.TenGoc.Name = "TenGoc";
     this.TenGoc.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenGoc.Size = new System.Drawing.Size(227, 20);
     this.TenGoc.TabIndex = 132;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(93, 73);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(240, 20);
     this.NoiDung.TabIndex = 132;
     this.NoiDung.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // Period
     //
     this.Period._DataSource = null;
     this.Period._GetField = null;
     this.Period.Location = new System.Drawing.Point(405, 142);
     this.Period.Name = "Period";
     this.Period.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, false)});
     this.Period.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Period.Size = new System.Drawing.Size(228, 20);
     this.Period.TabIndex = 6;
     //
     // Category
     //
     this.Category._DataSource = null;
     this.Category._GetField = null;
     this.Category.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Category.Location = new System.Drawing.Point(690, 72);
     this.Category.MenuManager = this.barManager1;
     this.Category.Name = "Category";
     this.Category.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, false)});
     this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Category.Size = new System.Drawing.Size(303, 20);
     this.Category.TabIndex = 6;
     //
     // TrailerGoc
     //
     this.TrailerGoc.Location = new System.Drawing.Point(260, 215);
     this.TrailerGoc.Name = "TrailerGoc";
     this.TrailerGoc.Properties.Caption = "Trailer gốc";
     this.TrailerGoc.Size = new System.Drawing.Size(72, 19);
     this.TrailerGoc.TabIndex = 16;
     //
     // Photos
     //
     this.Photos.Location = new System.Drawing.Point(174, 215);
     this.Photos.Name = "Photos";
     this.Photos.Properties.Caption = "Photo";
     this.Photos.Size = new System.Drawing.Size(56, 19);
     this.Photos.TabIndex = 15;
     //
     // Script
     //
     this.Script.Location = new System.Drawing.Point(93, 215);
     this.Script.MenuManager = this.barManager1;
     this.Script.Name = "Script";
     this.Script.Properties.Caption = "Script";
     this.Script.Size = new System.Drawing.Size(48, 19);
     this.Script.TabIndex = 14;
     //
     // ckcMoiTrenThiTruong
     //
     this.ckcMoiTrenThiTruong.Location = new System.Drawing.Point(313, 25);
     this.ckcMoiTrenThiTruong.Name = "ckcMoiTrenThiTruong";
     this.ckcMoiTrenThiTruong.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ckcMoiTrenThiTruong.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ckcMoiTrenThiTruong.Properties.Appearance.Options.UseFont = true;
     this.ckcMoiTrenThiTruong.Properties.Appearance.Options.UseForeColor = true;
     this.ckcMoiTrenThiTruong.Properties.Caption = "Mới trên thị trường";
     this.ckcMoiTrenThiTruong.Size = new System.Drawing.Size(142, 19);
     this.ckcMoiTrenThiTruong.TabIndex = 0;
     //
     // ckcTrongKho
     //
     this.ckcTrongKho.Location = new System.Drawing.Point(204, 24);
     this.ckcTrongKho.Name = "ckcTrongKho";
     this.ckcTrongKho.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ckcTrongKho.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ckcTrongKho.Properties.Appearance.Options.UseFont = true;
     this.ckcTrongKho.Properties.Appearance.Options.UseForeColor = true;
     this.ckcTrongKho.Properties.Caption = "Có trong kho";
     this.ckcTrongKho.Size = new System.Drawing.Size(98, 19);
     this.ckcTrongKho.TabIndex = 0;
     //
     // ThanhLy
     //
     this.ThanhLy.Location = new System.Drawing.Point(91, 24);
     this.ThanhLy.Name = "ThanhLy";
     this.ThanhLy.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ThanhLy.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ThanhLy.Properties.Appearance.Options.UseFont = true;
     this.ThanhLy.Properties.Appearance.Options.UseForeColor = true;
     this.ThanhLy.Properties.Caption = "Thanh lý";
     this.ThanhLy.Size = new System.Drawing.Size(88, 19);
     this.ThanhLy.TabIndex = 0;
     //
     // groupControl8
     //
     this.groupControl8.Controls.Add(this.KyHieuXepKho_KHPL);
     this.groupControl8.Controls.Add(this.KyHieuXepKho_NoiDung);
     this.groupControl8.Controls.Add(this.textEdit1);
     this.groupControl8.Location = new System.Drawing.Point(405, 188);
     this.groupControl8.Name = "groupControl8";
     this.groupControl8.ShowCaption = false;
     this.groupControl8.Size = new System.Drawing.Size(227, 46);
     this.groupControl8.TabIndex = 17;
     this.groupControl8.Text = "groupControl8";
     //
     // KyHieuXepKho_NoiDung
     //
     this.KyHieuXepKho_NoiDung.Location = new System.Drawing.Point(2, 26);
     this.KyHieuXepKho_NoiDung.Name = "KyHieuXepKho_NoiDung";
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_NoiDung.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_NoiDung.Properties.ReadOnly = true;
     this.KyHieuXepKho_NoiDung.Size = new System.Drawing.Size(220, 18);
     this.KyHieuXepKho_NoiDung.TabIndex = 2;
     this.KyHieuXepKho_NoiDung.TabStop = false;
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "___________________";
     this.textEdit1.Location = new System.Drawing.Point(2, 9);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Properties.AllowFocused = false;
     this.textEdit1.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.textEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.textEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.textEdit1.Properties.ReadOnly = true;
     this.textEdit1.Size = new System.Drawing.Size(220, 18);
     this.textEdit1.TabIndex = 5;
     this.textEdit1.TabStop = false;
     //
     // Ranking
     //
     this.Ranking.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Ranking.Location = new System.Drawing.Point(690, 96);
     this.Ranking.Name = "Ranking";
     this.Ranking.Size = new System.Drawing.Size(305, 20);
     this.Ranking.TabIndex = 9;
     this.Ranking.ZZZWidthFactor = 2F;
     //
     // DienVien
     //
     this.DienVien.DataSource = null;
     this.DienVien.DisplayField = null;
     this.DienVien.EditValue = "";
     this.DienVien.Location = new System.Drawing.Point(405, 96);
     this.DienVien.Name = "DienVien";
     this.DienVien.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DienVien.Size = new System.Drawing.Size(227, 20);
     this.DienVien.TabIndex = 8;
     this.DienVien.ValueField = null;
     //
     // labelControl22
     //
     this.labelControl22.Location = new System.Drawing.Point(344, 122);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(24, 13);
     this.labelControl22.TabIndex = 0;
     this.labelControl22.Text = "Điểm";
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(343, 145);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(30, 13);
     this.labelControl16.TabIndex = 0;
     this.labelControl16.Text = "Period";
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(640, 98);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(38, 13);
     this.labelControl12.TabIndex = 0;
     this.labelControl12.Text = "Ranking";
     //
     // label24
     //
     this.label24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label24.Location = new System.Drawing.Point(968, 125);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(19, 13);
     this.label24.TabIndex = 0;
     this.label24.Text = "(%)";
     //
     // TuKhoaSelect
     //
     this.TuKhoaSelect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TuKhoaSelect.DataSource = null;
     this.TuKhoaSelect.DisplayField = null;
     this.TuKhoaSelect.EditValue = "";
     this.TuKhoaSelect.Location = new System.Drawing.Point(690, 216);
     this.TuKhoaSelect.Name = "TuKhoaSelect";
     this.TuKhoaSelect.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TuKhoaSelect.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.TuKhoaSelect.Size = new System.Drawing.Size(303, 19);
     this.TuKhoaSelect.TabIndex = 18;
     this.TuKhoaSelect.TabStop = false;
     this.TuKhoaSelect.ValueField = null;
     this.TuKhoaSelect.EditValueChanged += new System.EventHandler(this.TuKhoaSelect_EditValueChanged);
     this.TuKhoaSelect.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(this.TuKhoaSelect_CloseUp);
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(638, 74);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(45, 13);
     this.labelControl11.TabIndex = 0;
     this.labelControl11.Text = "Category";
     //
     // NgayAWB
     //
     this.NgayAWB.EditValue = null;
     this.NgayAWB.Location = new System.Drawing.Point(405, 48);
     this.NgayAWB.Name = "NgayAWB";
     this.NgayAWB.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.NgayAWB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NgayAWB.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NgayAWB.Size = new System.Drawing.Size(227, 20);
     this.NgayAWB.TabIndex = 2;
     //
     // TomTatNoiDung
     //
     this.TomTatNoiDung.Location = new System.Drawing.Point(93, 242);
     this.TomTatNoiDung.Name = "TomTatNoiDung";
     this.TomTatNoiDung.Size = new System.Drawing.Size(241, 80);
     this.TomTatNoiDung.TabIndex = 20;
     //
     // GhiChu
     //
     this.GhiChu.Location = new System.Drawing.Point(91, 326);
     this.GhiChu.Name = "GhiChu";
     this.GhiChu.Size = new System.Drawing.Size(243, 78);
     this.GhiChu.TabIndex = 21;
     this.GhiChu.EditValueChanged += new System.EventHandler(this.GhiChu_EditValueChanged);
     //
     // TuKhoaText
     //
     this.TuKhoaText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TuKhoaText.Location = new System.Drawing.Point(690, 167);
     this.TuKhoaText.Name = "TuKhoaText";
     this.TuKhoaText.Properties.ReadOnly = true;
     this.TuKhoaText.Size = new System.Drawing.Size(303, 50);
     this.TuKhoaText.TabIndex = 19;
     this.TuKhoaText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TuKhoaText_KeyDown);
     //
     // label20
     //
     this.label20.Location = new System.Drawing.Point(639, 169);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 131;
     this.label20.Text = "Từ khóa";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(343, 100);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(44, 13);
     this.labelControl2.TabIndex = 129;
     this.labelControl2.Text = "Diễn viên";
     //
     // label33
     //
     this.label33.Location = new System.Drawing.Point(343, 52);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(51, 13);
     this.label33.TabIndex = 129;
     this.label33.Text = "Ngày AWB";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(8, 244);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 129;
     this.labelControl5.Text = "Tóm tắt nội dung";
     //
     // label36
     //
     this.label36.Location = new System.Drawing.Point(12, 329);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(35, 13);
     this.label36.TabIndex = 129;
     this.label36.Text = "Ghi chú";
     //
     // Info
     //
     this.Info.Location = new System.Drawing.Point(308, 46);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(24, 21);
     this.Info.TabIndex = 1;
     //
     // TinhTrangBang
     //
     this.TinhTrangBang.Location = new System.Drawing.Point(93, 144);
     this.TinhTrangBang.Name = "TinhTrangBang";
     this.TinhTrangBang.Size = new System.Drawing.Size(241, 20);
     this.TinhTrangBang.TabIndex = 13;
     this.TinhTrangBang.ZZZWidthFactor = 2F;
     //
     // TietMuc
     //
     this.TietMuc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TietMuc.Location = new System.Drawing.Point(690, 48);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Size = new System.Drawing.Size(303, 20);
     this.TietMuc.TabIndex = 3;
     this.TietMuc.ZZZWidthFactor = 2F;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(9, 148);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(39, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "TT băng";
     this.labelControl3.ToolTip = "Tình trạng băng";
     //
     // MaChuongTrinh
     //
     this.MaChuongTrinh.Location = new System.Drawing.Point(93, 48);
     this.MaChuongTrinh.Name = "MaChuongTrinh";
     this.MaChuongTrinh.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.MaChuongTrinh.Properties.Appearance.Options.UseBackColor = true;
     this.MaChuongTrinh.Properties.MaxLength = 100;
     this.MaChuongTrinh.Properties.ReadOnly = true;
     this.MaChuongTrinh.Size = new System.Drawing.Size(209, 20);
     this.MaChuongTrinh.TabIndex = 1;
     this.MaChuongTrinh.TabStop = false;
     this.MaChuongTrinh.ToolTip = "Mã chương trình";
     //
     // label42
     //
     this.label42.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.Appearance.Options.UseFont = true;
     this.label42.Location = new System.Drawing.Point(342, 76);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(38, 13);
     this.label42.TabIndex = 0;
     this.label42.Text = "Tên gốc";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(9, 52);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(78, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Mã chương trình";
     //
     // xtraTabControlMain
     //
     this.xtraTabControlMain.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.xtraTabControlMain.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabControlMain.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabControlMain.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.Blue;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Options.UseFont = true;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Options.UseForeColor = true;
     this.xtraTabControlMain.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders;
     this.xtraTabControlMain.Location = new System.Drawing.Point(6, 44);
     this.xtraTabControlMain.Name = "xtraTabControlMain";
     this.xtraTabControlMain.SelectedTabPage = this.xtraTabPageChuongTrinh;
     this.xtraTabControlMain.Size = new System.Drawing.Size(1043, 666);
     this.xtraTabControlMain.TabIndex = 130;
     this.xtraTabControlMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageChuongTrinh,
     this.xtraTabPageAdd});
     this.xtraTabControlMain.SelectedPageChanging += new DevExpress.XtraTab.TabPageChangingEventHandler(this.xtraTabControl1_SelectedPageChanging);
     this.xtraTabControlMain.CloseButtonClick += new System.EventHandler(this.xtraTabControlMain_CloseButtonClick);
     //
     // xtraTabPageChuongTrinh
     //
     this.xtraTabPageChuongTrinh.AutoScroll = true;
     this.xtraTabPageChuongTrinh.Controls.Add(this.xtraScrollableControl1);
     this.xtraTabPageChuongTrinh.FireScrollEventOnMouseWheel = true;
     this.xtraTabPageChuongTrinh.Name = "xtraTabPageChuongTrinh";
     this.xtraTabPageChuongTrinh.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabPageChuongTrinh.Size = new System.Drawing.Size(1036, 637);
     this.xtraTabPageChuongTrinh.Text = "Thông tin chương trình";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.groupControlThongTinPhatSong);
     this.xtraScrollableControl1.Controls.Add(this.groupControlNguonGoc);
     this.xtraScrollableControl1.Controls.Add(this.groupControlThongTin);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.FireScrollEventOnMouseWheel = true;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(1036, 637);
     this.xtraScrollableControl1.TabIndex = 130;
     //
     // xtraTabPageAdd
     //
     this.xtraTabPageAdd.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabPageAdd.Appearance.Header.Options.UseFont = true;
     this.xtraTabPageAdd.Name = "xtraTabPageAdd";
     this.xtraTabPageAdd.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabPageAdd.Size = new System.Drawing.Size(1036, 637);
     this.xtraTabPageAdd.Text = "+";
     //
     // popupMenuTab
     //
     this.popupMenuTab.Manager = this.barManager1;
     this.popupMenuTab.Name = "popupMenuTab";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Text";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // FrmChuongTrinh
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(1049, 750);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.flowLayoutPanel2);
     this.Controls.Add(this.xtraTabControlMain);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Name = "FrmChuongTrinh";
     this.Text = "Chương trình";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmPhuongAnDeXuatTour_Load);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinPhatSong)).EndInit();
     this.groupControlThongTinPhatSong.ResumeLayout(false);
     this.groupControlThongTinPhatSong.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConlai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Release.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDaRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPhatSongKhac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridviewPhatSongKhac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RunThu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRule.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MuaKem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlNguonGoc)).EndInit();
     this.groupControlNguonGoc.ResumeLayout(false);
     this.groupControlNguonGoc.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoteBQ.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongTinBan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongTinBan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
     this.groupControl7.ResumeLayout(false);
     this.groupControl7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DonViHauKy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KenhHanCheBan.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChanelRight.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DaoDien.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).EndInit();
     this.groupControlThongTin.ResumeLayout(false);
     this.groupControlThongTin.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGhiChu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGhiChu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PhanLoaiDrama.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguonTrading.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ClassName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Code.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Period.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TrailerGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Photos.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Script.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcMoiTrenThiTruong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcTrongKho.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit();
     this.groupControl8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DienVien.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TomTatNoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaChuongTrinh.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMain)).EndInit();
     this.xtraTabControlMain.ResumeLayout(false);
     this.xtraTabPageChuongTrinh.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuTab)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.txtEdtRefNo   = new DevExpress.XtraEditors.TextEdit();
     this.label6        = new System.Windows.Forms.Label();
     this.calcEdtQty    = new DevExpress.XtraEditors.CalcEdit();
     this.lkpEdtItemFreebiePromotionCode = new DevExpress.XtraEditors.LookUpEdit();
     this.lkpEdtDiscount           = new DevExpress.XtraEditors.LookUpEdit();
     this.Label5                   = new System.Windows.Forms.Label();
     this.Label4                   = new System.Windows.Forms.Label();
     this.txtEdtUnitPrice          = new DevExpress.XtraEditors.TextEdit();
     this.txtEdtDescription        = new DevExpress.XtraEditors.TextEdit();
     this.txtEdtItemCode           = new DevExpress.XtraEditors.TextEdit();
     this.Label3                   = new System.Windows.Forms.Label();
     this.Label2                   = new System.Windows.Forms.Label();
     this.Label1                   = new System.Windows.Forms.Label();
     this.Label41                  = new System.Windows.Forms.Label();
     this.panelControl2            = new DevExpress.XtraEditors.PanelControl();
     this.panelControl4            = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl1          = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1             = new DevExpress.XtraTab.XtraTabPage();
     this.gridControl1             = new DevExpress.XtraGrid.GridControl();
     this.gridView1                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn1              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit2  = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.xtraTabPage2             = new DevExpress.XtraTab.XtraTabPage();
     this.gridControl2             = new DevExpress.XtraGrid.GridControl();
     this.gridView2                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn3              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1  = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.panelControl3            = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK           = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdtQty.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtItemFreebiePromotionCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtDiscount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtUnitPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtItemCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl1.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.txtEdtRefNo);
     this.panelControl1.Controls.Add(this.label6);
     this.panelControl1.Controls.Add(this.calcEdtQty);
     this.panelControl1.Controls.Add(this.lkpEdtItemFreebiePromotionCode);
     this.panelControl1.Controls.Add(this.lkpEdtDiscount);
     this.panelControl1.Controls.Add(this.Label5);
     this.panelControl1.Controls.Add(this.Label4);
     this.panelControl1.Controls.Add(this.txtEdtUnitPrice);
     this.panelControl1.Controls.Add(this.txtEdtDescription);
     this.panelControl1.Controls.Add(this.txtEdtItemCode);
     this.panelControl1.Controls.Add(this.Label3);
     this.panelControl1.Controls.Add(this.Label2);
     this.panelControl1.Controls.Add(this.Label1);
     this.panelControl1.Controls.Add(this.Label41);
     this.panelControl1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(552, 216);
     this.panelControl1.TabIndex = 28;
     //
     // txtEdtRefNo
     //
     this.txtEdtRefNo.EditValue = "";
     this.txtEdtRefNo.Location  = new System.Drawing.Point(136, 188);
     this.txtEdtRefNo.Name      = "txtEdtRefNo";
     this.txtEdtRefNo.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.txtEdtRefNo.Properties.Appearance.Options.UseFont = true;
     this.txtEdtRefNo.Properties.MaxLength = 49;
     this.txtEdtRefNo.Size     = new System.Drawing.Size(250, 23);
     this.txtEdtRefNo.TabIndex = 38;
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(10, 188);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(109, 26);
     this.label6.TabIndex = 39;
     this.label6.Text     = "Ref No";
     //
     // calcEdtQty
     //
     this.calcEdtQty.EditValue = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.calcEdtQty.Location = new System.Drawing.Point(136, 66);
     this.calcEdtQty.Name     = "calcEdtQty";
     this.calcEdtQty.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.calcEdtQty.Properties.Appearance.Options.UseFont = true;
     this.calcEdtQty.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
     this.calcEdtQty.Size              = new System.Drawing.Size(250, 23);
     this.calcEdtQty.TabIndex          = 2;
     this.calcEdtQty.EditValueChanged += new System.EventHandler(this.calcEdtQty_EditValueChanged);
     //
     // lkpEdtItemFreebiePromotionCode
     //
     this.lkpEdtItemFreebiePromotionCode.EditValue = "";
     this.lkpEdtItemFreebiePromotionCode.Location  = new System.Drawing.Point(136, 156);
     this.lkpEdtItemFreebiePromotionCode.Name      = "lkpEdtItemFreebiePromotionCode";
     this.lkpEdtItemFreebiePromotionCode.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.lkpEdtItemFreebiePromotionCode.Properties.Appearance.Options.UseFont = true;
     this.lkpEdtItemFreebiePromotionCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtItemFreebiePromotionCode.Size              = new System.Drawing.Size(250, 23);
     this.lkpEdtItemFreebiePromotionCode.TabIndex          = 5;
     this.lkpEdtItemFreebiePromotionCode.EditValueChanged += new System.EventHandler(this.lkpEdtItemFreebiePromotionCode_EditValueChanged);
     //
     // lkpEdtDiscount
     //
     this.lkpEdtDiscount.EditValue = "";
     this.lkpEdtDiscount.Location  = new System.Drawing.Point(136, 126);
     this.lkpEdtDiscount.Name      = "lkpEdtDiscount";
     this.lkpEdtDiscount.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.lkpEdtDiscount.Properties.Appearance.Options.UseFont = true;
     this.lkpEdtDiscount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtDiscount.Size     = new System.Drawing.Size(250, 23);
     this.lkpEdtDiscount.TabIndex = 4;
     //
     // Label5
     //
     this.Label5.AutoSize = true;
     this.Label5.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label5.Location = new System.Drawing.Point(10, 156);
     this.Label5.Name     = "Label5";
     this.Label5.Size     = new System.Drawing.Size(80, 23);
     this.Label5.TabIndex = 37;
     this.Label5.Text     = "Freebie";
     //
     // Label4
     //
     this.Label4.AutoSize = true;
     this.Label4.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label4.Location = new System.Drawing.Point(10, 126);
     this.Label4.Name     = "Label4";
     this.Label4.Size     = new System.Drawing.Size(94, 23);
     this.Label4.TabIndex = 36;
     this.Label4.Text     = "Discount";
     //
     // txtEdtUnitPrice
     //
     this.txtEdtUnitPrice.EditValue = "";
     this.txtEdtUnitPrice.Enabled   = false;
     this.txtEdtUnitPrice.Location  = new System.Drawing.Point(136, 96);
     this.txtEdtUnitPrice.Name      = "txtEdtUnitPrice";
     this.txtEdtUnitPrice.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.txtEdtUnitPrice.Properties.Appearance.Options.UseFont = true;
     this.txtEdtUnitPrice.Size     = new System.Drawing.Size(250, 23);
     this.txtEdtUnitPrice.TabIndex = 3;
     //
     // txtEdtDescription
     //
     this.txtEdtDescription.EditValue = "";
     this.txtEdtDescription.Enabled   = false;
     this.txtEdtDescription.Location  = new System.Drawing.Point(136, 36);
     this.txtEdtDescription.Name      = "txtEdtDescription";
     this.txtEdtDescription.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.txtEdtDescription.Properties.Appearance.Options.UseFont = true;
     this.txtEdtDescription.Properties.MaxLength = 250;
     this.txtEdtDescription.Size     = new System.Drawing.Size(250, 23);
     this.txtEdtDescription.TabIndex = 1;
     //
     // txtEdtItemCode
     //
     this.txtEdtItemCode.EditValue = "";
     this.txtEdtItemCode.Enabled   = false;
     this.txtEdtItemCode.Location  = new System.Drawing.Point(136, 6);
     this.txtEdtItemCode.Name      = "txtEdtItemCode";
     this.txtEdtItemCode.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.txtEdtItemCode.Properties.Appearance.Options.UseFont = true;
     this.txtEdtItemCode.Size     = new System.Drawing.Size(250, 23);
     this.txtEdtItemCode.TabIndex = 0;
     //
     // Label3
     //
     this.Label3.AutoSize = true;
     this.Label3.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label3.Location = new System.Drawing.Point(10, 96);
     this.Label3.Name     = "Label3";
     this.Label3.Size     = new System.Drawing.Size(103, 23);
     this.Label3.TabIndex = 31;
     this.Label3.Text     = "Unit Price";
     //
     // Label2
     //
     this.Label2.AutoSize = true;
     this.Label2.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label2.Location = new System.Drawing.Point(10, 66);
     this.Label2.Name     = "Label2";
     this.Label2.Size     = new System.Drawing.Size(93, 23);
     this.Label2.TabIndex = 30;
     this.Label2.Text     = "Quantity";
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.Location = new System.Drawing.Point(10, 36);
     this.Label1.Name     = "Label1";
     this.Label1.Size     = new System.Drawing.Size(119, 23);
     this.Label1.TabIndex = 29;
     this.Label1.Text     = "Description";
     //
     // Label41
     //
     this.Label41.AutoSize = true;
     this.Label41.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label41.Location = new System.Drawing.Point(10, 6);
     this.Label41.Name     = "Label41";
     this.Label41.Size     = new System.Drawing.Size(110, 23);
     this.Label41.TabIndex = 28;
     this.Label41.Text     = "Item Code";
     //
     // panelControl2
     //
     this.panelControl2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl2.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.panelControl4);
     this.panelControl2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 216);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(552, 204);
     this.panelControl2.TabIndex = 29;
     //
     // panelControl4
     //
     this.panelControl4.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl4.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.xtraTabControl1);
     this.panelControl4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelControl4.Location = new System.Drawing.Point(0, 0);
     this.panelControl4.Name     = "panelControl4";
     this.panelControl4.Size     = new System.Drawing.Size(552, 204);
     this.panelControl4.TabIndex = 6;
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xtraTabControl1.Location        = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name            = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size            = new System.Drawing.Size(552, 204);
     this.xtraTabControl1.TabIndex        = 3;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.xtraTabPage1,
         this.xtraTabPage2
     });
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.gridControl1);
     this.xtraTabPage1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(543, 173);
     this.xtraTabPage1.Text = "Freebie-Package";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit2,
         this.repositoryItemTextEdit2
     });
     this.gridControl1.Size     = new System.Drawing.Size(543, 173);
     this.gridControl1.TabIndex = 1;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn6,
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn8
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.LostFocus  += new System.EventHandler(this.gridView1_LostFocus);
     //
     // gridColumn6
     //
     this.gridColumn6.ColumnEdit   = this.repositoryItemCheckEdit2;
     this.gridColumn6.FieldName    = "Checked";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width        = 36;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name       = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption   = "Package Code";
     this.gridColumn1.FieldName = "strPackageCode";
     this.gridColumn1.Name      = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width        = 126;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption   = "Package Description";
     this.gridColumn2.FieldName = "strDescription";
     this.gridColumn2.Name      = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 2;
     this.gridColumn2.Width        = 260;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption    = "Quantity";
     this.gridColumn8.ColumnEdit = this.repositoryItemTextEdit2;
     this.gridColumn8.FieldName  = "nQuantity";
     this.gridColumn8.Name       = "gridColumn8";
     this.gridColumn8.OptionsFilter.AllowFilter = false;
     this.gridColumn8.Visible      = true;
     this.gridColumn8.VisibleIndex = 3;
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name       = "repositoryItemTextEdit2";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.gridControl2);
     this.xtraTabPage2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(543, 173);
     this.xtraTabPage2.Text = "Freebie-Product";
     //
     // gridControl2
     //
     this.gridControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl2.EmbeddedNavigator.Name = "";
     this.gridControl2.Location = new System.Drawing.Point(0, 0);
     this.gridControl2.MainView = this.gridView2;
     this.gridControl2.Name     = "gridControl2";
     this.gridControl2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit1,
         this.repositoryItemTextEdit1
     });
     this.gridControl2.Size     = new System.Drawing.Size(543, 173);
     this.gridControl2.TabIndex = 1;
     this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView2
     });
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn5,
         this.gridColumn3,
         this.gridColumn4,
         this.gridColumn7
     });
     this.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name        = "gridView2";
     this.gridView2.LostFocus  += new System.EventHandler(this.gridView2_LostFocus);
     //
     // gridColumn5
     //
     this.gridColumn5.ColumnEdit   = this.repositoryItemCheckEdit1;
     this.gridColumn5.FieldName    = "Checked";
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 0;
     this.gridColumn5.Width        = 36;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name       = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption   = "Product Code";
     this.gridColumn3.FieldName = "strProductCode";
     this.gridColumn3.Name      = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width        = 115;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption   = "Product Description";
     this.gridColumn4.FieldName = "strDescription";
     this.gridColumn4.Name      = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width        = 271;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption    = "Quantity";
     this.gridColumn7.ColumnEdit = this.repositoryItemTextEdit1;
     this.gridColumn7.FieldName  = "nQuantity";
     this.gridColumn7.Name       = "gridColumn7";
     this.gridColumn7.OptionsFilter.AllowFilter = false;
     this.gridColumn7.Visible      = true;
     this.gridColumn7.VisibleIndex = 3;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name       = "repositoryItemTextEdit1";
     //
     // panelControl3
     //
     this.panelControl3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl3.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.simpleButtonCancel);
     this.panelControl3.Controls.Add(this.simpleButtonOK);
     this.panelControl3.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl3.Location = new System.Drawing.Point(0, 420);
     this.panelControl3.Name     = "panelControl3";
     this.panelControl3.Size     = new System.Drawing.Size(552, 32);
     this.panelControl3.TabIndex = 30;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(468, 5);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.Size         = new System.Drawing.Size(75, 23);
     this.simpleButtonCancel.TabIndex     = 1;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(384, 5);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.Size         = new System.Drawing.Size(75, 23);
     this.simpleButtonOK.TabIndex     = 0;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormAddItemFreebiesAndDiscount
     //
     this.AcceptButton      = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.simpleButtonCancel;
     this.ClientSize        = new System.Drawing.Size(552, 452);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormAddItemFreebiesAndDiscount";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Edit Item";
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdtQty.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtItemFreebiePromotionCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtDiscount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtUnitPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtItemCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1             = new System.Windows.Forms.Label();
     this.calcEdit1          = new DevExpress.XtraEditors.CalcEdit();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK     = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(0, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(216, 24);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Remaining Mineral Water ";
     //
     // calcEdit1
     //
     this.calcEdit1.Location = new System.Drawing.Point(224, 16);
     this.calcEdit1.Name     = "calcEdit1";
     //
     // calcEdit1.Properties
     //
     this.calcEdit1.Properties.EditFormat.FormatString     = "n";
     this.calcEdit1.Properties.EditFormat.FormatType       = DevExpress.Utils.FormatType.Numeric;
     this.calcEdit1.Properties.Mask.EditMask               = "d4";
     this.calcEdit1.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.calcEdit1.Properties.Precision = 0;
     this.calcEdit1.Size     = new System.Drawing.Size(176, 20);
     this.calcEdit1.TabIndex = 1;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(208, 56);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex     = 16;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(120, 56);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.TabIndex     = 15;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormMineralWaterClosingDayCount
     //
     this.AcceptButton      = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.simpleButtonCancel;
     this.ClientSize        = new System.Drawing.Size(424, 86);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.Controls.Add(this.calcEdit1);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormMineralWaterClosingDayCount";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Remaining Mineral Water";
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.layoutControl1      = new DevExpress.XtraLayout.LayoutControl();
     this.dateEdit1           = new DevExpress.XtraEditors.DateEdit();
     this.colorEdit1          = new DevExpress.XtraEditors.ColorEdit();
     this.checkEdit1          = new DevExpress.XtraEditors.CheckEdit();
     this.buttonEdit1         = new DevExpress.XtraEditors.ButtonEdit();
     this.calcEdit1           = new DevExpress.XtraEditors.CalcEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4  = new DevExpress.XtraLayout.LayoutControlItem();
     this.simpleButton1       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2       = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.colorEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.dateEdit1);
     this.layoutControl1.Controls.Add(this.colorEdit1);
     this.layoutControl1.Controls.Add(this.checkEdit1);
     this.layoutControl1.Controls.Add(this.buttonEdit1);
     this.layoutControl1.Controls.Add(this.calcEdit1);
     this.layoutControl1.Cursor           = System.Windows.Forms.Cursors.Arrow;
     this.layoutControl1.Dock             = System.Windows.Forms.DockStyle.Top;
     this.layoutControl1.Location         = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name             = "layoutControl1";
     this.layoutControl1.Root             = this.layoutControlGroup1;
     this.layoutControl1.Size             = new System.Drawing.Size(520, 128);
     this.layoutControl1.TabIndex         = 0;
     this.layoutControl1.Text             = "layoutControl1";
     this.layoutControl1.ShowContextMenu += new DevExpress.XtraLayout.LayoutMenuEventHandler(this.layoutControl1_ShowContextMenu);
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location  = new System.Drawing.Point(363, 65);
     this.dateEdit1.Name      = "dateEdit1";
     //
     // dateEdit1.Properties
     //
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEdit1.Size            = new System.Drawing.Size(151, 20);
     this.dateEdit1.StyleController = this.layoutControl1;
     this.dateEdit1.TabIndex        = 7;
     //
     // colorEdit1
     //
     this.colorEdit1.EditValue = System.Drawing.Color.Empty;
     this.colorEdit1.Location  = new System.Drawing.Point(104, 65);
     this.colorEdit1.Name      = "colorEdit1";
     //
     // colorEdit1.Properties
     //
     this.colorEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.colorEdit1.Size            = new System.Drawing.Size(151, 20);
     this.colorEdit1.StyleController = this.layoutControl1;
     this.colorEdit1.TabIndex        = 6;
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(6, 36);
     this.checkEdit1.Name     = "checkEdit1";
     //
     // checkEdit1.Properties
     //
     this.checkEdit1.Properties.Caption = "checkEdit1";
     this.checkEdit1.Size            = new System.Drawing.Size(508, 19);
     this.checkEdit1.StyleController = this.layoutControl1;
     this.checkEdit1.TabIndex        = 5;
     //
     // buttonEdit1
     //
     this.buttonEdit1.Location = new System.Drawing.Point(363, 6);
     this.buttonEdit1.Name     = "buttonEdit1";
     //
     // buttonEdit1.Properties
     //
     this.buttonEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.buttonEdit1.Size            = new System.Drawing.Size(151, 20);
     this.buttonEdit1.StyleController = this.layoutControl1;
     this.buttonEdit1.TabIndex        = 4;
     //
     // calcEdit1
     //
     this.calcEdit1.Location = new System.Drawing.Point(104, 6);
     this.calcEdit1.Name     = "calcEdit1";
     //
     // calcEdit1.Properties
     //
     this.calcEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.calcEdit1.Size            = new System.Drawing.Size(151, 20);
     this.calcEdit1.StyleController = this.layoutControl1;
     this.calcEdit1.TabIndex        = 3;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1,
         this.layoutControlItem2,
         this.layoutControlItem3,
         this.layoutControlItem5,
         this.layoutControlItem4
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Padding     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size        = new System.Drawing.Size(520, 128);
     this.layoutControlGroup1.Spacing     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control     = this.calcEdit1;
     this.layoutControlItem1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name        = "layoutControlItem1";
     this.layoutControlItem1.Padding     = new DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5);
     this.layoutControlItem1.Size        = new System.Drawing.Size(259, 30);
     this.layoutControlItem1.Spacing     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlItem1.Text        = "layoutControlItem1";
     this.layoutControlItem1.TextSize    = new System.Drawing.Size(93, 20);
     this.layoutControlItem1.TextVisible = true;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control     = this.buttonEdit1;
     this.layoutControlItem2.Location    = new System.Drawing.Point(259, 0);
     this.layoutControlItem2.Name        = "layoutControlItem2";
     this.layoutControlItem2.Padding     = new DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5);
     this.layoutControlItem2.Size        = new System.Drawing.Size(259, 30);
     this.layoutControlItem2.Spacing     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlItem2.Text        = "layoutControlItem2";
     this.layoutControlItem2.TextSize    = new System.Drawing.Size(93, 20);
     this.layoutControlItem2.TextVisible = true;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control  = this.checkEdit1;
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 30);
     this.layoutControlItem3.Name     = "layoutControlItem3";
     this.layoutControlItem3.Padding  = new DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5);
     this.layoutControlItem3.Size     = new System.Drawing.Size(518, 29);
     this.layoutControlItem3.Spacing  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlItem3.Text     = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible           = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control     = this.dateEdit1;
     this.layoutControlItem5.Location    = new System.Drawing.Point(259, 59);
     this.layoutControlItem5.Name        = "layoutControlItem5";
     this.layoutControlItem5.Padding     = new DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5);
     this.layoutControlItem5.Size        = new System.Drawing.Size(259, 67);
     this.layoutControlItem5.Spacing     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlItem5.Text        = "layoutControlItem5";
     this.layoutControlItem5.TextSize    = new System.Drawing.Size(93, 20);
     this.layoutControlItem5.TextVisible = true;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control     = this.colorEdit1;
     this.layoutControlItem4.Location    = new System.Drawing.Point(0, 59);
     this.layoutControlItem4.Name        = "layoutControlItem4";
     this.layoutControlItem4.Padding     = new DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5);
     this.layoutControlItem4.Size        = new System.Drawing.Size(259, 67);
     this.layoutControlItem4.Spacing     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlItem4.Text        = "layoutControlItem4";
     this.layoutControlItem4.TextSize    = new System.Drawing.Size(93, 20);
     this.layoutControlItem4.TextVisible = true;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(24, 168);
     this.simpleButton1.Name     = "simpleButton1";
     this.simpleButton1.Size     = new System.Drawing.Size(144, 23);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text     = "Start the Customization";
     this.simpleButton1.Click   += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(264, 168);
     this.simpleButton2.Name     = "simpleButton2";
     this.simpleButton2.Size     = new System.Drawing.Size(128, 23);
     this.simpleButton2.TabIndex = 2;
     this.simpleButton2.Text     = "Stop the Customization";
     this.simpleButton2.Click   += new System.EventHandler(this.simpleButton2_Click);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(520, 230);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.layoutControl1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.colorEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     this.ResumeLayout(false);
 }
Пример #21
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(CauHinhCSDL));
     this.txtMayChuSQL = new DevExpress.XtraEditors.TextEdit();
     this.txtTaiKhoanSQL = new DevExpress.XtraEditors.TextEdit();
     this.txtPassword = new DevExpress.XtraEditors.TextEdit();
     this.txtTenCSDL = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.btnDangNhap = new DevExpress.XtraEditors.SimpleButton();
     this.btnThoat = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.cbSuDungTaiKhoanWindows = new DevExpress.XtraEditors.CheckEdit();
     this.txtBienNhanCamDo = new DevExpress.XtraEditors.TextEdit();
     this.txtLaiSuat = new DevExpress.XtraEditors.CalcEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.txtDiaChi = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.txtDienThoai = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.txtThoiHanQuyDinh = new DevExpress.XtraEditors.CalcEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.txtTenTiem = new DevExpress.XtraEditors.TextEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.txtMayChuSQL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTaiKhoanSQL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTenCSDL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSuDungTaiKhoanWindows.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBienNhanCamDo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLaiSuat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiaChi.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDienThoai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtThoiHanQuyDinh.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTenTiem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     this.SuspendLayout();
     //
     // txtMayChuSQL
     //
     this.txtMayChuSQL.Location = new System.Drawing.Point(144, 43);
     this.txtMayChuSQL.Name = "txtMayChuSQL";
     this.txtMayChuSQL.Size = new System.Drawing.Size(326, 20);
     this.txtMayChuSQL.TabIndex = 0;
     //
     // txtTaiKhoanSQL
     //
     this.txtTaiKhoanSQL.Location = new System.Drawing.Point(144, 94);
     this.txtTaiKhoanSQL.Name = "txtTaiKhoanSQL";
     this.txtTaiKhoanSQL.Size = new System.Drawing.Size(326, 20);
     this.txtTaiKhoanSQL.TabIndex = 1;
     //
     // txtPassword
     //
     this.txtPassword.Location = new System.Drawing.Point(144, 120);
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.Properties.PasswordChar = '*';
     this.txtPassword.Size = new System.Drawing.Size(326, 20);
     this.txtPassword.TabIndex = 2;
     //
     // txtTenCSDL
     //
     this.txtTenCSDL.Location = new System.Drawing.Point(144, 146);
     this.txtTenCSDL.Name = "txtTenCSDL";
     this.txtTenCSDL.Size = new System.Drawing.Size(326, 20);
     this.txtTenCSDL.TabIndex = 3;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(12, 46);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(66, 13);
     this.labelControl1.TabIndex = 4;
     this.labelControl1.Text = "Máy chủ SQL:";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(12, 97);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(72, 13);
     this.labelControl2.TabIndex = 4;
     this.labelControl2.Text = "Tài khoản SQL:";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(12, 123);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(50, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "Password:"******"labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(85, 13);
     this.labelControl4.TabIndex = 4;
     this.labelControl4.Text = "Tên cơ sở dữ liệu:";
     //
     // btnDangNhap
     //
     this.btnDangNhap.ImageIndex = 2;
     this.btnDangNhap.ImageList = this.img;
     this.btnDangNhap.Location = new System.Drawing.Point(167, 329);
     this.btnDangNhap.Name = "btnDangNhap";
     this.btnDangNhap.Size = new System.Drawing.Size(85, 23);
     this.btnDangNhap.TabIndex = 5;
     this.btnDangNhap.Text = "Đăng nhập";
     this.btnDangNhap.Click += new System.EventHandler(this.btnDangNhap_Click);
     //
     // btnThoat
     //
     this.btnThoat.ImageIndex = 16;
     this.btnThoat.ImageList = this.img;
     this.btnThoat.Location = new System.Drawing.Point(258, 329);
     this.btnThoat.Name = "btnThoat";
     this.btnThoat.Size = new System.Drawing.Size(85, 23);
     this.btnThoat.TabIndex = 6;
     this.btnThoat.Text = "Thoát";
     this.btnThoat.Click += new System.EventHandler(this.btnThoat_Click);
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 16F, System.Drawing.FontStyle.Bold);
     this.labelControl5.Location = new System.Drawing.Point(104, 9);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(293, 27);
     this.labelControl5.TabIndex = 7;
     this.labelControl5.Text = "CẤU HÌNH CƠ SỞ DỮ LIỆU";
     //
     // cbSuDungTaiKhoanWindows
     //
     this.cbSuDungTaiKhoanWindows.Location = new System.Drawing.Point(12, 69);
     this.cbSuDungTaiKhoanWindows.Name = "cbSuDungTaiKhoanWindows";
     this.cbSuDungTaiKhoanWindows.Properties.Caption = "Sử dụng tài khoản windows";
     this.cbSuDungTaiKhoanWindows.Size = new System.Drawing.Size(329, 19);
     this.cbSuDungTaiKhoanWindows.TabIndex = 8;
     this.cbSuDungTaiKhoanWindows.CheckedChanged += new System.EventHandler(this.cbSuDungTaiKhoanWindows_CheckedChanged);
     //
     // txtBienNhanCamDo
     //
     this.txtBienNhanCamDo.Location = new System.Drawing.Point(144, 172);
     this.txtBienNhanCamDo.Name = "txtBienNhanCamDo";
     this.txtBienNhanCamDo.Size = new System.Drawing.Size(326, 20);
     this.txtBienNhanCamDo.TabIndex = 3;
     //
     // txtLaiSuat
     //
     this.txtLaiSuat.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txtLaiSuat.Location = new System.Drawing.Point(144, 276);
     this.txtLaiSuat.Name = "txtLaiSuat";
     this.txtLaiSuat.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txtLaiSuat.Properties.Appearance.Options.UseFont = true;
     this.txtLaiSuat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtLaiSuat.Properties.DisplayFormat.FormatString = "{0:##,##0.###} %";
     this.txtLaiSuat.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtLaiSuat.Properties.EditFormat.FormatString = "{0:##,##0.###}";
     this.txtLaiSuat.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtLaiSuat.Size = new System.Drawing.Size(326, 20);
     this.txtLaiSuat.TabIndex = 9;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(12, 175);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(126, 13);
     this.labelControl6.TabIndex = 4;
     this.labelControl6.Text = "Biên nhận cầm đồ (Bên B):";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(12, 279);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(41, 13);
     this.labelControl7.TabIndex = 4;
     this.labelControl7.Text = "Lãi suất:";
     //
     // txtDiaChi
     //
     this.txtDiaChi.Location = new System.Drawing.Point(144, 224);
     this.txtDiaChi.Name = "txtDiaChi";
     this.txtDiaChi.Size = new System.Drawing.Size(326, 20);
     this.txtDiaChi.TabIndex = 10;
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(12, 227);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(36, 13);
     this.labelControl8.TabIndex = 4;
     this.labelControl8.Text = "Địa chỉ:";
     //
     // txtDienThoai
     //
     this.txtDienThoai.Location = new System.Drawing.Point(144, 250);
     this.txtDienThoai.Name = "txtDienThoai";
     this.txtDienThoai.Size = new System.Drawing.Size(326, 20);
     this.txtDienThoai.TabIndex = 10;
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(12, 253);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(53, 13);
     this.labelControl9.TabIndex = 4;
     this.labelControl9.Text = "Điện thoại:";
     //
     // txtThoiHanQuyDinh
     //
     this.txtThoiHanQuyDinh.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txtThoiHanQuyDinh.Location = new System.Drawing.Point(144, 303);
     this.txtThoiHanQuyDinh.Name = "txtThoiHanQuyDinh";
     this.txtThoiHanQuyDinh.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txtThoiHanQuyDinh.Properties.Appearance.Options.UseFont = true;
     this.txtThoiHanQuyDinh.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtThoiHanQuyDinh.Properties.DisplayFormat.FormatString = "{0:##,##0.###} tháng";
     this.txtThoiHanQuyDinh.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtThoiHanQuyDinh.Properties.EditFormat.FormatString = "{0:##,##0.###}";
     this.txtThoiHanQuyDinh.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtThoiHanQuyDinh.Size = new System.Drawing.Size(326, 20);
     this.txtThoiHanQuyDinh.TabIndex = 9;
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(12, 306);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(89, 13);
     this.labelControl10.TabIndex = 4;
     this.labelControl10.Text = "Thời hạn quy định:";
     //
     // txtTenTiem
     //
     this.txtTenTiem.Location = new System.Drawing.Point(144, 198);
     this.txtTenTiem.Name = "txtTenTiem";
     this.txtTenTiem.Size = new System.Drawing.Size(326, 20);
     this.txtTenTiem.TabIndex = 3;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(12, 201);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(45, 13);
     this.labelControl11.TabIndex = 4;
     this.labelControl11.Text = "Tên tiệm:";
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     this.img.Images.SetKeyName(54, "Excel-icon.png");
     //
     // CauHinhCSDL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(482, 359);
     this.Controls.Add(this.txtDienThoai);
     this.Controls.Add(this.txtDiaChi);
     this.Controls.Add(this.txtThoiHanQuyDinh);
     this.Controls.Add(this.txtLaiSuat);
     this.Controls.Add(this.cbSuDungTaiKhoanWindows);
     this.Controls.Add(this.labelControl5);
     this.Controls.Add(this.btnThoat);
     this.Controls.Add(this.btnDangNhap);
     this.Controls.Add(this.labelControl9);
     this.Controls.Add(this.labelControl10);
     this.Controls.Add(this.labelControl7);
     this.Controls.Add(this.labelControl8);
     this.Controls.Add(this.labelControl11);
     this.Controls.Add(this.labelControl6);
     this.Controls.Add(this.labelControl4);
     this.Controls.Add(this.labelControl3);
     this.Controls.Add(this.labelControl2);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.txtTenTiem);
     this.Controls.Add(this.txtBienNhanCamDo);
     this.Controls.Add(this.txtTenCSDL);
     this.Controls.Add(this.txtPassword);
     this.Controls.Add(this.txtTaiKhoanSQL);
     this.Controls.Add(this.txtMayChuSQL);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "CauHinhCSDL";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Quản lý cầm đồ";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.CauHinhCSDL_FormClosed);
     ((System.ComponentModel.ISupportInitialize)(this.txtMayChuSQL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTaiKhoanSQL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTenCSDL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbSuDungTaiKhoanWindows.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBienNhanCamDo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLaiSuat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiaChi.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDienThoai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtThoiHanQuyDinh.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTenTiem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).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.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.txtEdtRefNo = new DevExpress.XtraEditors.TextEdit();
     this.label6 = new System.Windows.Forms.Label();
     this.calcEdtQty = new DevExpress.XtraEditors.CalcEdit();
     this.lkpEdtItemFreebiePromotionCode = new DevExpress.XtraEditors.LookUpEdit();
     this.lkpEdtDiscount = new DevExpress.XtraEditors.LookUpEdit();
     this.Label5 = new System.Windows.Forms.Label();
     this.Label4 = new System.Windows.Forms.Label();
     this.txtEdtUnitPrice = new DevExpress.XtraEditors.TextEdit();
     this.txtEdtDescription = new DevExpress.XtraEditors.TextEdit();
     this.txtEdtItemCode = new DevExpress.XtraEditors.TextEdit();
     this.Label3 = new System.Windows.Forms.Label();
     this.Label2 = new System.Windows.Forms.Label();
     this.Label1 = new System.Windows.Forms.Label();
     this.Label41 = new System.Windows.Forms.Label();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.gridControl2 = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdtQty.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtItemFreebiePromotionCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtDiscount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtUnitPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtItemCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.txtEdtRefNo);
     this.panelControl1.Controls.Add(this.label6);
     this.panelControl1.Controls.Add(this.calcEdtQty);
     this.panelControl1.Controls.Add(this.lkpEdtItemFreebiePromotionCode);
     this.panelControl1.Controls.Add(this.lkpEdtDiscount);
     this.panelControl1.Controls.Add(this.Label5);
     this.panelControl1.Controls.Add(this.Label4);
     this.panelControl1.Controls.Add(this.txtEdtUnitPrice);
     this.panelControl1.Controls.Add(this.txtEdtDescription);
     this.panelControl1.Controls.Add(this.txtEdtItemCode);
     this.panelControl1.Controls.Add(this.Label3);
     this.panelControl1.Controls.Add(this.Label2);
     this.panelControl1.Controls.Add(this.Label1);
     this.panelControl1.Controls.Add(this.Label41);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(552, 216);
     this.panelControl1.TabIndex = 28;
     //
     // txtEdtRefNo
     //
     this.txtEdtRefNo.EditValue = "";
     this.txtEdtRefNo.Location = new System.Drawing.Point(136, 188);
     this.txtEdtRefNo.Name = "txtEdtRefNo";
     this.txtEdtRefNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.txtEdtRefNo.Properties.Appearance.Options.UseFont = true;
     this.txtEdtRefNo.Properties.MaxLength = 49;
     this.txtEdtRefNo.Size = new System.Drawing.Size(250, 23);
     this.txtEdtRefNo.TabIndex = 38;
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(10, 188);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(109, 26);
     this.label6.TabIndex = 39;
     this.label6.Text = "Ref No";
     //
     // calcEdtQty
     //
     this.calcEdtQty.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.calcEdtQty.Location = new System.Drawing.Point(136, 66);
     this.calcEdtQty.Name = "calcEdtQty";
     this.calcEdtQty.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.calcEdtQty.Properties.Appearance.Options.UseFont = true;
     this.calcEdtQty.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcEdtQty.Size = new System.Drawing.Size(250, 23);
     this.calcEdtQty.TabIndex = 2;
     this.calcEdtQty.EditValueChanged += new System.EventHandler(this.calcEdtQty_EditValueChanged);
     //
     // lkpEdtItemFreebiePromotionCode
     //
     this.lkpEdtItemFreebiePromotionCode.EditValue = "";
     this.lkpEdtItemFreebiePromotionCode.Location = new System.Drawing.Point(136, 156);
     this.lkpEdtItemFreebiePromotionCode.Name = "lkpEdtItemFreebiePromotionCode";
     this.lkpEdtItemFreebiePromotionCode.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.lkpEdtItemFreebiePromotionCode.Properties.Appearance.Options.UseFont = true;
     this.lkpEdtItemFreebiePromotionCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtItemFreebiePromotionCode.Size = new System.Drawing.Size(250, 23);
     this.lkpEdtItemFreebiePromotionCode.TabIndex = 5;
     this.lkpEdtItemFreebiePromotionCode.EditValueChanged += new System.EventHandler(this.lkpEdtItemFreebiePromotionCode_EditValueChanged);
     //
     // lkpEdtDiscount
     //
     this.lkpEdtDiscount.EditValue = "";
     this.lkpEdtDiscount.Location = new System.Drawing.Point(136, 126);
     this.lkpEdtDiscount.Name = "lkpEdtDiscount";
     this.lkpEdtDiscount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.lkpEdtDiscount.Properties.Appearance.Options.UseFont = true;
     this.lkpEdtDiscount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtDiscount.Size = new System.Drawing.Size(250, 23);
     this.lkpEdtDiscount.TabIndex = 4;
     //
     // Label5
     //
     this.Label5.AutoSize = true;
     this.Label5.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label5.Location = new System.Drawing.Point(10, 156);
     this.Label5.Name = "Label5";
     this.Label5.Size = new System.Drawing.Size(80, 23);
     this.Label5.TabIndex = 37;
     this.Label5.Text = "Freebie";
     //
     // Label4
     //
     this.Label4.AutoSize = true;
     this.Label4.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label4.Location = new System.Drawing.Point(10, 126);
     this.Label4.Name = "Label4";
     this.Label4.Size = new System.Drawing.Size(94, 23);
     this.Label4.TabIndex = 36;
     this.Label4.Text = "Discount";
     //
     // txtEdtUnitPrice
     //
     this.txtEdtUnitPrice.EditValue = "";
     this.txtEdtUnitPrice.Enabled = false;
     this.txtEdtUnitPrice.Location = new System.Drawing.Point(136, 96);
     this.txtEdtUnitPrice.Name = "txtEdtUnitPrice";
     this.txtEdtUnitPrice.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.txtEdtUnitPrice.Properties.Appearance.Options.UseFont = true;
     this.txtEdtUnitPrice.Size = new System.Drawing.Size(250, 23);
     this.txtEdtUnitPrice.TabIndex = 3;
     //
     // txtEdtDescription
     //
     this.txtEdtDescription.EditValue = "";
     this.txtEdtDescription.Enabled = false;
     this.txtEdtDescription.Location = new System.Drawing.Point(136, 36);
     this.txtEdtDescription.Name = "txtEdtDescription";
     this.txtEdtDescription.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.txtEdtDescription.Properties.Appearance.Options.UseFont = true;
     this.txtEdtDescription.Properties.MaxLength = 250;
     this.txtEdtDescription.Size = new System.Drawing.Size(250, 23);
     this.txtEdtDescription.TabIndex = 1;
     //
     // txtEdtItemCode
     //
     this.txtEdtItemCode.EditValue = "";
     this.txtEdtItemCode.Enabled = false;
     this.txtEdtItemCode.Location = new System.Drawing.Point(136, 6);
     this.txtEdtItemCode.Name = "txtEdtItemCode";
     this.txtEdtItemCode.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.txtEdtItemCode.Properties.Appearance.Options.UseFont = true;
     this.txtEdtItemCode.Size = new System.Drawing.Size(250, 23);
     this.txtEdtItemCode.TabIndex = 0;
     //
     // Label3
     //
     this.Label3.AutoSize = true;
     this.Label3.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label3.Location = new System.Drawing.Point(10, 96);
     this.Label3.Name = "Label3";
     this.Label3.Size = new System.Drawing.Size(103, 23);
     this.Label3.TabIndex = 31;
     this.Label3.Text = "Unit Price";
     //
     // Label2
     //
     this.Label2.AutoSize = true;
     this.Label2.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label2.Location = new System.Drawing.Point(10, 66);
     this.Label2.Name = "Label2";
     this.Label2.Size = new System.Drawing.Size(93, 23);
     this.Label2.TabIndex = 30;
     this.Label2.Text = "Quantity";
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.Location = new System.Drawing.Point(10, 36);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(119, 23);
     this.Label1.TabIndex = 29;
     this.Label1.Text = "Description";
     //
     // Label41
     //
     this.Label41.AutoSize = true;
     this.Label41.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label41.Location = new System.Drawing.Point(10, 6);
     this.Label41.Name = "Label41";
     this.Label41.Size = new System.Drawing.Size(110, 23);
     this.Label41.TabIndex = 28;
     this.Label41.Text = "Item Code";
     //
     // panelControl2
     //
     this.panelControl2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.panelControl4);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 216);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(552, 204);
     this.panelControl2.TabIndex = 29;
     //
     // panelControl4
     //
     this.panelControl4.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.xtraTabControl1);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl4.Location = new System.Drawing.Point(0, 0);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(552, 204);
     this.panelControl4.TabIndex = 6;
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(552, 204);
     this.xtraTabControl1.TabIndex = 3;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2});
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.gridControl1);
     this.xtraTabPage1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(543, 173);
     this.xtraTabPage1.Text = "Freebie-Package";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit2,
     this.repositoryItemTextEdit2});
     this.gridControl1.Size = new System.Drawing.Size(543, 173);
     this.gridControl1.TabIndex = 1;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn6,
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn8});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.LostFocus += new System.EventHandler(this.gridView1_LostFocus);
     //
     // gridColumn6
     //
     this.gridColumn6.ColumnEdit = this.repositoryItemCheckEdit2;
     this.gridColumn6.FieldName = "Checked";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width = 36;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Package Code";
     this.gridColumn1.FieldName = "strPackageCode";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width = 126;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Package Description";
     this.gridColumn2.FieldName = "strDescription";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 2;
     this.gridColumn2.Width = 260;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Quantity";
     this.gridColumn8.ColumnEdit = this.repositoryItemTextEdit2;
     this.gridColumn8.FieldName = "nQuantity";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsFilter.AllowFilter = false;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 3;
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.gridControl2);
     this.xtraTabPage2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(543, 173);
     this.xtraTabPage2.Text = "Freebie-Product";
     //
     // gridControl2
     //
     this.gridControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl2.EmbeddedNavigator.Name = "";
     this.gridControl2.Location = new System.Drawing.Point(0, 0);
     this.gridControl2.MainView = this.gridView2;
     this.gridControl2.Name = "gridControl2";
     this.gridControl2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemTextEdit1});
     this.gridControl2.Size = new System.Drawing.Size(543, 173);
     this.gridControl2.TabIndex = 1;
     this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn7});
     this.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name = "gridView2";
     this.gridView2.LostFocus += new System.EventHandler(this.gridView2_LostFocus);
     //
     // gridColumn5
     //
     this.gridColumn5.ColumnEdit = this.repositoryItemCheckEdit1;
     this.gridColumn5.FieldName = "Checked";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     this.gridColumn5.Width = 36;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Product Code";
     this.gridColumn3.FieldName = "strProductCode";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width = 115;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Product Description";
     this.gridColumn4.FieldName = "strDescription";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 271;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Quantity";
     this.gridColumn7.ColumnEdit = this.repositoryItemTextEdit1;
     this.gridColumn7.FieldName = "nQuantity";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsFilter.AllowFilter = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 3;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // panelControl3
     //
     this.panelControl3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.simpleButtonCancel);
     this.panelControl3.Controls.Add(this.simpleButtonOK);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl3.Location = new System.Drawing.Point(0, 420);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(552, 32);
     this.panelControl3.TabIndex = 30;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(468, 5);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonCancel.TabIndex = 1;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(384, 5);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonOK.TabIndex = 0;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormAddItemFreebiesAndDiscount
     //
     this.AcceptButton = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.simpleButtonCancel;
     this.ClientSize = new System.Drawing.Size(552, 452);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormAddItemFreebiesAndDiscount";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Edit Item";
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdtQty.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtItemFreebiePromotionCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtDiscount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtUnitPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtItemCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #23
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PhieuCamDo));
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.cbInThongTinRutGon = new DevExpress.XtraEditors.CheckEdit();
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar3 = new DevExpress.XtraBars.Bar();
     this.bbiTaoMoi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiLuu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiLuuVaIn = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     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.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoaTatCa = new DevExpress.XtraBars.BarButtonItem();
     this.txtKhachHang = new DevExpress.XtraEditors.TextEdit();
     this.txtSoTienCamBangChu = new DevExpress.XtraEditors.TextEdit();
     this.txtNgaySinh = new DevExpress.XtraEditors.TextEdit();
     this.btnChonHangHoa = new DevExpress.XtraEditors.SimpleButton();
     this.txtLien = new DevExpress.XtraEditors.TextEdit();
     this.btnTimDiaChi = new DevExpress.XtraEditors.SimpleButton();
     this.txtGhiChu = new DevExpress.XtraEditors.TextEdit();
     this.gcList_HangHoa = new DevExpress.XtraGrid.GridControl();
     this.dANHSACHHANGHOABindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsCamDo = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDo();
     this.gbList_HangHoa = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTen_Tai_San1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.txtBo = new DevExpress.XtraEditors.SimpleButton();
     this.btnTimKhachHang = new DevExpress.XtraEditors.SimpleButton();
     this.txtTuNgay = new DevExpress.XtraEditors.TextEdit();
     this.layoutControl3 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.txtDenNgay = new DevExpress.XtraEditors.TextEdit();
     this.txtSo = new DevExpress.XtraEditors.TextEdit();
     this.txtChuTiem = new DevExpress.XtraEditors.TextEdit();
     this.txtSoDienThoai = new DevExpress.XtraEditors.TextEdit();
     this.txtNoiCap = new DevExpress.XtraEditors.TextEdit();
     this.txtNgayCap = new DevExpress.XtraEditors.TextEdit();
     this.txtCMNDSo = new DevExpress.XtraEditors.TextEdit();
     this.txtSoTienCam = new DevExpress.XtraEditors.CalcEdit();
     this.txtDiaChi = new DevExpress.XtraEditors.TextEdit();
     this.txtNgay = new DevExpress.XtraEditors.DateEdit();
     this.txtMaChungTu = new DevExpress.XtraEditors.TextEdit();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.cHUNGTUCHITIETBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gbList = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colMa_Chi_Tiet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colMa_Chung_Tu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTen_Tai_San = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptTenTaiSan = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.colLoai_Vang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptLoaiVang = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colTrong_Luong_Vang_18k = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colTrong_Luong_Vang_24k = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong_Khac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colChuan_Do = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colGia_Tri_Vat_Cam = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSap_Xep = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.txtHangHoa = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.txtLoaiVang = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.txtLaiSuatNgay = new DevExpress.XtraEditors.CalcEdit();
     this.txtLaiSuatThang = new DevExpress.XtraEditors.CalcEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.splitterItem1 = new DevExpress.XtraLayout.SplitterItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem18 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem19 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem20 = new DevExpress.XtraLayout.LayoutControlItem();
     this.splitterItem2 = new DevExpress.XtraLayout.SplitterItem();
     this.layoutControlItem21 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem22 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem23 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem26 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem25 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem27 = new DevExpress.XtraLayout.LayoutControlItem();
     this.cHUNG_TU_CHI_TIETTableAdapter = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDoTableAdapters.CHUNG_TU_CHI_TIETTableAdapter();
     this.pm = new DevExpress.XtraBars.PopupMenu(this.components);
     this.dANH_SACH_HANG_HOATableAdapter = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDoTableAdapters.DANH_SACH_HANG_HOATableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbInThongTinRutGon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhachHang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSoTienCamBangChu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgaySinh.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLien.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGhiChu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList_HangHoa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dANHSACHHANGHOABindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCamDo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList_HangHoa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTuNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDenNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtChuTiem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSoDienThoai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNoiCap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgayCap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCMNDSo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSoTienCam.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiaChi.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgay.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaChungTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cHUNGTUCHITIETBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptTenTaiSan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptLoaiVang)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtHangHoa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoaiVang)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLaiSuatNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLaiSuatThang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pm)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.cbInThongTinRutGon);
     this.layoutControl1.Controls.Add(this.txtKhachHang);
     this.layoutControl1.Controls.Add(this.txtSoTienCamBangChu);
     this.layoutControl1.Controls.Add(this.txtNgaySinh);
     this.layoutControl1.Controls.Add(this.btnChonHangHoa);
     this.layoutControl1.Controls.Add(this.txtLien);
     this.layoutControl1.Controls.Add(this.btnTimDiaChi);
     this.layoutControl1.Controls.Add(this.txtGhiChu);
     this.layoutControl1.Controls.Add(this.gcList_HangHoa);
     this.layoutControl1.Controls.Add(this.txtBo);
     this.layoutControl1.Controls.Add(this.btnTimKhachHang);
     this.layoutControl1.Controls.Add(this.txtTuNgay);
     this.layoutControl1.Controls.Add(this.layoutControl3);
     this.layoutControl1.Controls.Add(this.txtDenNgay);
     this.layoutControl1.Controls.Add(this.txtSo);
     this.layoutControl1.Controls.Add(this.txtChuTiem);
     this.layoutControl1.Controls.Add(this.txtSoDienThoai);
     this.layoutControl1.Controls.Add(this.txtNoiCap);
     this.layoutControl1.Controls.Add(this.txtNgayCap);
     this.layoutControl1.Controls.Add(this.txtCMNDSo);
     this.layoutControl1.Controls.Add(this.txtSoTienCam);
     this.layoutControl1.Controls.Add(this.txtDiaChi);
     this.layoutControl1.Controls.Add(this.txtNgay);
     this.layoutControl1.Controls.Add(this.txtMaChungTu);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Controls.Add(this.txtLaiSuatNgay);
     this.layoutControl1.Controls.Add(this.txtLaiSuatThang);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1091, 612);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // cbInThongTinRutGon
     //
     this.cbInThongTinRutGon.EditValue = true;
     this.cbInThongTinRutGon.Location = new System.Drawing.Point(870, 98);
     this.cbInThongTinRutGon.MenuManager = this.bm;
     this.cbInThongTinRutGon.Name = "cbInThongTinRutGon";
     this.cbInThongTinRutGon.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.cbInThongTinRutGon.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.cbInThongTinRutGon.Properties.Appearance.Options.UseFont = true;
     this.cbInThongTinRutGon.Properties.Appearance.Options.UseForeColor = true;
     this.cbInThongTinRutGon.Properties.Caption = "In thông tin rút gọn trên liên 1";
     this.cbInThongTinRutGon.Size = new System.Drawing.Size(219, 19);
     this.cbInThongTinRutGon.StyleController = this.layoutControl1;
     this.cbInThongTinRutGon.TabIndex = 28;
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar3});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiTaoMoi,
     this.bbiLuu,
     this.bbiDong,
     this.bbiXoa,
     this.bbiXoaTatCa,
     this.bbiLuuVaIn});
     this.bm.LargeImages = this.img;
     this.bm.MaxItemId = 6;
     this.bm.StatusBar = this.bar3;
     //
     // bar3
     //
     this.bar3.BarItemHorzIndent = 20;
     this.bar3.BarName = "Status bar";
     this.bar3.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar3.DockCol = 0;
     this.bar3.DockRow = 0;
     this.bar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiTaoMoi),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiLuu),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiLuuVaIn),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar3.OptionsBar.AllowQuickCustomization = false;
     this.bar3.OptionsBar.DrawDragBorder = false;
     this.bar3.OptionsBar.UseWholeRow = true;
     this.bar3.Text = "Status bar";
     //
     // bbiTaoMoi
     //
     this.bbiTaoMoi.Border = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.bbiTaoMoi.Caption = "Tạo Mới";
     this.bbiTaoMoi.Id = 0;
     this.bbiTaoMoi.ImageIndex = 1;
     this.bbiTaoMoi.Name = "bbiTaoMoi";
     this.bbiTaoMoi.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiTaoMoi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTaoMoi_ItemClick);
     //
     // bbiLuu
     //
     this.bbiLuu.Border = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.bbiLuu.Caption = "Lưu";
     this.bbiLuu.Id = 1;
     this.bbiLuu.ImageIndex = 4;
     this.bbiLuu.Name = "bbiLuu";
     this.bbiLuu.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiLuu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiLuu_ItemClick);
     //
     // bbiLuuVaIn
     //
     this.bbiLuuVaIn.Caption = "Lưu và In";
     this.bbiLuuVaIn.Id = 5;
     this.bbiLuuVaIn.ImageIndex = 3;
     this.bbiLuuVaIn.Name = "bbiLuuVaIn";
     this.bbiLuuVaIn.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiLuuVaIn.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiLuuVaIn_ItemClick);
     //
     // bbiDong
     //
     this.bbiDong.Border = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 2;
     this.bbiDong.ImageIndex = 7;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiDong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiDong_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1091, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 612);
     this.barDockControlBottom.Size = new System.Drawing.Size(1091, 29);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 612);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1091, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 612);
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "add.png");
     this.img.Images.SetKeyName(1, "create.png");
     this.img.Images.SetKeyName(2, "plus.png");
     this.img.Images.SetKeyName(3, "accept.png");
     this.img.Images.SetKeyName(4, "apply.png");
     this.img.Images.SetKeyName(5, "OK.png");
     this.img.Images.SetKeyName(6, "yes.png");
     this.img.Images.SetKeyName(7, "cancel.png");
     this.img.Images.SetKeyName(8, "close.png");
     this.img.Images.SetKeyName(9, "no.png");
     this.img.Images.SetKeyName(10, "stop.png");
     this.img.Images.SetKeyName(11, "turn off.png");
     this.img.Images.SetKeyName(12, "delete_red.png");
     this.img.Images.SetKeyName(13, "next_arrow_1.png");
     this.img.Images.SetKeyName(14, "next_arrow_2.png");
     //
     // bbiXoa
     //
     this.bbiXoa.Caption = "Xóa";
     this.bbiXoa.Id = 3;
     this.bbiXoa.ImageIndex = 12;
     this.bbiXoa.Name = "bbiXoa";
     this.bbiXoa.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXoa_ItemClick);
     //
     // bbiXoaTatCa
     //
     this.bbiXoaTatCa.Caption = "Xóa tất cả";
     this.bbiXoaTatCa.Id = 4;
     this.bbiXoaTatCa.ImageIndex = 12;
     this.bbiXoaTatCa.Name = "bbiXoaTatCa";
     this.bbiXoaTatCa.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXoaTatCa_ItemClick);
     //
     // txtKhachHang
     //
     this.txtKhachHang.Location = new System.Drawing.Point(227, 2);
     this.txtKhachHang.MenuManager = this.bm;
     this.txtKhachHang.Name = "txtKhachHang";
     this.txtKhachHang.Size = new System.Drawing.Size(256, 20);
     this.txtKhachHang.StyleController = this.layoutControl1;
     this.txtKhachHang.TabIndex = 27;
     //
     // txtSoTienCamBangChu
     //
     this.txtSoTienCamBangChu.Location = new System.Drawing.Point(402, 535);
     this.txtSoTienCamBangChu.MenuManager = this.bm;
     this.txtSoTienCamBangChu.Name = "txtSoTienCamBangChu";
     this.txtSoTienCamBangChu.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txtSoTienCamBangChu.Properties.Appearance.Options.UseFont = true;
     this.txtSoTienCamBangChu.Properties.ReadOnly = true;
     this.txtSoTienCamBangChu.Size = new System.Drawing.Size(687, 20);
     this.txtSoTienCamBangChu.StyleController = this.layoutControl1;
     this.txtSoTienCamBangChu.TabIndex = 20;
     //
     // txtNgaySinh
     //
     this.txtNgaySinh.Location = new System.Drawing.Point(712, 2);
     this.txtNgaySinh.MenuManager = this.bm;
     this.txtNgaySinh.Name = "txtNgaySinh";
     this.txtNgaySinh.Size = new System.Drawing.Size(149, 20);
     this.txtNgaySinh.StyleController = this.layoutControl1;
     this.txtNgaySinh.TabIndex = 3;
     //
     // btnChonHangHoa
     //
     this.btnChonHangHoa.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnChonHangHoa.Appearance.Options.UseFont = true;
     this.btnChonHangHoa.ImageIndex = 13;
     this.btnChonHangHoa.ImageList = this.img;
     this.btnChonHangHoa.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleRight;
     this.btnChonHangHoa.Location = new System.Drawing.Point(2, 126);
     this.btnChonHangHoa.Name = "btnChonHangHoa";
     this.btnChonHangHoa.Size = new System.Drawing.Size(279, 22);
     this.btnChonHangHoa.StyleController = this.layoutControl1;
     this.btnChonHangHoa.TabIndex = 16;
     this.btnChonHangHoa.Text = "Chọn hàng hóa";
     this.btnChonHangHoa.Click += new System.EventHandler(this.btnChonHangHoa_Click);
     //
     // txtLien
     //
     this.txtLien.Location = new System.Drawing.Point(955, 50);
     this.txtLien.MenuManager = this.bm;
     this.txtLien.Name = "txtLien";
     this.txtLien.Size = new System.Drawing.Size(134, 20);
     this.txtLien.StyleController = this.layoutControl1;
     this.txtLien.TabIndex = 14;
     //
     // btnTimDiaChi
     //
     this.btnTimDiaChi.Location = new System.Drawing.Point(485, 52);
     this.btnTimDiaChi.MaximumSize = new System.Drawing.Size(90, 0);
     this.btnTimDiaChi.MinimumSize = new System.Drawing.Size(90, 0);
     this.btnTimDiaChi.Name = "btnTimDiaChi";
     this.btnTimDiaChi.Size = new System.Drawing.Size(90, 22);
     this.btnTimDiaChi.StyleController = this.layoutControl1;
     this.btnTimDiaChi.TabIndex = 8;
     this.btnTimDiaChi.Text = "Tìm";
     this.btnTimDiaChi.Click += new System.EventHandler(this.btnTimDiaChi_Click);
     //
     // txtGhiChu
     //
     this.txtGhiChu.Location = new System.Drawing.Point(57, 102);
     this.txtGhiChu.MenuManager = this.bm;
     this.txtGhiChu.Name = "txtGhiChu";
     this.txtGhiChu.Size = new System.Drawing.Size(804, 20);
     this.txtGhiChu.StyleController = this.layoutControl1;
     this.txtGhiChu.TabIndex = 11;
     //
     // gcList_HangHoa
     //
     this.gcList_HangHoa.DataSource = this.dANHSACHHANGHOABindingSource;
     this.gcList_HangHoa.Location = new System.Drawing.Point(2, 152);
     this.gcList_HangHoa.MainView = this.gbList_HangHoa;
     this.gcList_HangHoa.MenuManager = this.bm;
     this.gcList_HangHoa.Name = "gcList_HangHoa";
     this.gcList_HangHoa.Size = new System.Drawing.Size(279, 379);
     this.gcList_HangHoa.TabIndex = 17;
     this.gcList_HangHoa.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList_HangHoa});
     //
     // dANHSACHHANGHOABindingSource
     //
     this.dANHSACHHANGHOABindingSource.DataMember = "DANH_SACH_HANG_HOA";
     this.dANHSACHHANGHOABindingSource.DataSource = this.dsCamDo;
     //
     // dsCamDo
     //
     this.dsCamDo.DataSetName = "dsCamDo";
     this.dsCamDo.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList_HangHoa
     //
     this.gbList_HangHoa.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colTen_Tai_San1});
     this.gbList_HangHoa.GridControl = this.gcList_HangHoa;
     this.gbList_HangHoa.IndicatorWidth = 40;
     this.gbList_HangHoa.Name = "gbList_HangHoa";
     this.gbList_HangHoa.OptionsSelection.InvertSelection = true;
     this.gbList_HangHoa.OptionsView.ShowAutoFilterRow = true;
     this.gbList_HangHoa.OptionsView.ShowFooter = true;
     this.gbList_HangHoa.OptionsView.ShowGroupPanel = false;
     this.gbList_HangHoa.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_HangHoa_CustomDrawRowIndicator);
     //
     // colTen_Tai_San1
     //
     this.colTen_Tai_San1.Caption = "Tên Tài Sản";
     this.colTen_Tai_San1.FieldName = "Ten_Tai_San";
     this.colTen_Tai_San1.Name = "colTen_Tai_San1";
     this.colTen_Tai_San1.OptionsColumn.ReadOnly = true;
     this.colTen_Tai_San1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Tai_San1.Visible = true;
     this.colTen_Tai_San1.VisibleIndex = 0;
     //
     // txtBo
     //
     this.txtBo.Location = new System.Drawing.Point(567, 2);
     this.txtBo.Name = "txtBo";
     this.txtBo.Size = new System.Drawing.Size(76, 22);
     this.txtBo.StyleController = this.layoutControl1;
     this.txtBo.TabIndex = 2;
     this.txtBo.Text = "Bỏ";
     this.txtBo.Click += new System.EventHandler(this.txtBo_Click);
     //
     // btnTimKhachHang
     //
     this.btnTimKhachHang.Location = new System.Drawing.Point(487, 2);
     this.btnTimKhachHang.Name = "btnTimKhachHang";
     this.btnTimKhachHang.Size = new System.Drawing.Size(76, 22);
     this.btnTimKhachHang.StyleController = this.layoutControl1;
     this.btnTimKhachHang.TabIndex = 1;
     this.btnTimKhachHang.Text = "Tìm";
     this.btnTimKhachHang.Click += new System.EventHandler(this.btnTimKhachHang_Click);
     //
     // txtTuNgay
     //
     this.txtTuNgay.Location = new System.Drawing.Point(167, 564);
     this.txtTuNgay.MenuManager = this.bm;
     this.txtTuNgay.Name = "txtTuNgay";
     this.txtTuNgay.Size = new System.Drawing.Size(131, 20);
     this.txtTuNgay.StyleController = this.layoutControl1;
     this.txtTuNgay.TabIndex = 21;
     //
     // layoutControl3
     //
     this.layoutControl3.Location = new System.Drawing.Point(360, 589);
     this.layoutControl3.Name = "layoutControl3";
     this.layoutControl3.Root = this.layoutControlGroup3;
     this.layoutControl3.Size = new System.Drawing.Size(729, 21);
     this.layoutControl3.TabIndex = 25;
     this.layoutControl3.Text = "layoutControl3";
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup3.GroupBordersVisible = false;
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Size = new System.Drawing.Size(729, 21);
     this.layoutControlGroup3.Text = "layoutControlGroup3";
     this.layoutControlGroup3.TextVisible = false;
     //
     // txtDenNgay
     //
     this.txtDenNgay.Location = new System.Drawing.Point(367, 564);
     this.txtDenNgay.MenuManager = this.bm;
     this.txtDenNgay.Name = "txtDenNgay";
     this.txtDenNgay.Size = new System.Drawing.Size(231, 20);
     this.txtDenNgay.StyleController = this.layoutControl1;
     this.txtDenNgay.TabIndex = 22;
     //
     // txtSo
     //
     this.txtSo.Location = new System.Drawing.Point(955, 26);
     this.txtSo.MenuManager = this.bm;
     this.txtSo.Name = "txtSo";
     this.txtSo.Size = new System.Drawing.Size(134, 20);
     this.txtSo.StyleController = this.layoutControl1;
     this.txtSo.TabIndex = 13;
     //
     // txtChuTiem
     //
     this.txtChuTiem.Location = new System.Drawing.Point(157, 78);
     this.txtChuTiem.MenuManager = this.bm;
     this.txtChuTiem.Name = "txtChuTiem";
     this.txtChuTiem.Size = new System.Drawing.Size(704, 20);
     this.txtChuTiem.StyleController = this.layoutControl1;
     this.txtChuTiem.TabIndex = 10;
     //
     // txtSoDienThoai
     //
     this.txtSoDienThoai.Location = new System.Drawing.Point(664, 52);
     this.txtSoDienThoai.MenuManager = this.bm;
     this.txtSoDienThoai.Name = "txtSoDienThoai";
     this.txtSoDienThoai.Size = new System.Drawing.Size(197, 20);
     this.txtSoDienThoai.StyleController = this.layoutControl1;
     this.txtSoDienThoai.TabIndex = 9;
     //
     // txtNoiCap
     //
     this.txtNoiCap.Location = new System.Drawing.Point(431, 28);
     this.txtNoiCap.MenuManager = this.bm;
     this.txtNoiCap.Name = "txtNoiCap";
     this.txtNoiCap.Size = new System.Drawing.Size(430, 20);
     this.txtNoiCap.StyleController = this.layoutControl1;
     this.txtNoiCap.TabIndex = 6;
     //
     // txtNgayCap
     //
     this.txtNgayCap.Location = new System.Drawing.Point(282, 28);
     this.txtNgayCap.MenuManager = this.bm;
     this.txtNgayCap.Name = "txtNgayCap";
     this.txtNgayCap.Size = new System.Drawing.Size(80, 20);
     this.txtNgayCap.StyleController = this.layoutControl1;
     this.txtNgayCap.TabIndex = 5;
     //
     // txtCMNDSo
     //
     this.txtCMNDSo.Location = new System.Drawing.Point(57, 28);
     this.txtCMNDSo.MenuManager = this.bm;
     this.txtCMNDSo.Name = "txtCMNDSo";
     this.txtCMNDSo.Size = new System.Drawing.Size(161, 20);
     this.txtCMNDSo.StyleController = this.layoutControl1;
     this.txtCMNDSo.TabIndex = 4;
     //
     // txtSoTienCam
     //
     this.txtSoTienCam.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txtSoTienCam.Location = new System.Drawing.Point(84, 535);
     this.txtSoTienCam.Name = "txtSoTienCam";
     this.txtSoTienCam.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txtSoTienCam.Properties.Appearance.Options.UseFont = true;
     this.txtSoTienCam.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtSoTienCam.Properties.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.txtSoTienCam.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtSoTienCam.Properties.EditFormat.FormatString = "{0:##,##0.###}";
     this.txtSoTienCam.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtSoTienCam.Size = new System.Drawing.Size(314, 20);
     this.txtSoTienCam.StyleController = this.layoutControl1;
     this.txtSoTienCam.TabIndex = 19;
     this.txtSoTienCam.EditValueChanged += new System.EventHandler(this.txtSoTienCam_EditValueChanged);
     //
     // txtDiaChi
     //
     this.txtDiaChi.Location = new System.Drawing.Point(57, 52);
     this.txtDiaChi.MenuManager = this.bm;
     this.txtDiaChi.Name = "txtDiaChi";
     this.txtDiaChi.Size = new System.Drawing.Size(424, 20);
     this.txtDiaChi.StyleController = this.layoutControl1;
     this.txtDiaChi.TabIndex = 7;
     //
     // txtNgay
     //
     this.txtNgay.EditValue = null;
     this.txtNgay.Location = new System.Drawing.Point(955, 74);
     this.txtNgay.Name = "txtNgay";
     this.txtNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtNgay.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtNgay.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.txtNgay.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.txtNgay.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.txtNgay.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.txtNgay.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.txtNgay.Size = new System.Drawing.Size(134, 20);
     this.txtNgay.StyleController = this.layoutControl1;
     this.txtNgay.TabIndex = 15;
     this.txtNgay.EditValueChanged += new System.EventHandler(this.txtNgay_EditValueChanged);
     //
     // txtMaChungTu
     //
     this.txtMaChungTu.Location = new System.Drawing.Point(955, 2);
     this.txtMaChungTu.Name = "txtMaChungTu";
     this.txtMaChungTu.Size = new System.Drawing.Size(134, 20);
     this.txtMaChungTu.StyleController = this.layoutControl1;
     this.txtMaChungTu.TabIndex = 12;
     //
     // gcList
     //
     this.gcList.DataSource = this.cHUNGTUCHITIETBindingSource;
     this.gcList.Location = new System.Drawing.Point(290, 126);
     this.gcList.MainView = this.gbList;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptMayTinh,
     this.rptTenTaiSan,
     this.rptLoaiVang,
     this.txtHangHoa,
     this.txtLoaiVang});
     this.gcList.Size = new System.Drawing.Size(799, 405);
     this.gcList.TabIndex = 18;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // cHUNGTUCHITIETBindingSource
     //
     this.cHUNGTUCHITIETBindingSource.DataMember = "CHUNG_TU_CHI_TIET";
     this.cHUNGTUCHITIETBindingSource.DataSource = this.dsCamDo;
     //
     // gbList
     //
     this.gbList.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand3,
     this.gridBand2});
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.colMa_Chi_Tiet,
     this.colMa_Chung_Tu,
     this.colTen_Tai_San,
     this.colLoai_Vang,
     this.colTrong_Luong,
     this.colChuan_Do,
     this.colGia_Tri_Vat_Cam,
     this.colSap_Xep,
     this.colTrong_Luong_Vang_18k,
     this.colTrong_Luong_Vang_24k,
     this.colTrong_Luong_Khac});
     this.gbList.CustomizationFormBounds = new System.Drawing.Rectangle(592, 274, 216, 178);
     this.gbList.GridControl = this.gcList;
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gbList.OptionsCustomization.AllowFilter = false;
     this.gbList.OptionsCustomization.AllowGroup = false;
     this.gbList.OptionsCustomization.AllowRowSizing = true;
     this.gbList.OptionsCustomization.AllowSort = false;
     this.gbList.OptionsNavigation.EnterMoveNextColumn = true;
     this.gbList.OptionsSelection.InvertSelection = true;
     this.gbList.OptionsSelection.MultiSelect = true;
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gbList.OptionsView.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.OptionsView.ShowGroupPanel = false;
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     this.gbList.ShownEditor += new System.EventHandler(this.gbList_ShownEditor);
     this.gbList.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gbList_CellValueChanged);
     //
     // gridBand1
     //
     this.gridBand1.Columns.Add(this.colMa_Chi_Tiet);
     this.gridBand1.Columns.Add(this.colMa_Chung_Tu);
     this.gridBand1.Columns.Add(this.colTen_Tai_San);
     this.gridBand1.Columns.Add(this.colLoai_Vang);
     this.gridBand1.MinWidth = 20;
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.VisibleIndex = 0;
     this.gridBand1.Width = 325;
     //
     // colMa_Chi_Tiet
     //
     this.colMa_Chi_Tiet.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Chi_Tiet.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Chi_Tiet.FieldName = "Ma_Chi_Tiet";
     this.colMa_Chi_Tiet.Name = "colMa_Chi_Tiet";
     //
     // colMa_Chung_Tu
     //
     this.colMa_Chung_Tu.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Chung_Tu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Chung_Tu.FieldName = "Ma_Chung_Tu";
     this.colMa_Chung_Tu.Name = "colMa_Chung_Tu";
     //
     // colTen_Tai_San
     //
     this.colTen_Tai_San.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Tai_San.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Tai_San.Caption = "Tên tài sản";
     this.colTen_Tai_San.ColumnEdit = this.rptTenTaiSan;
     this.colTen_Tai_San.FieldName = "Ten_Tai_San";
     this.colTen_Tai_San.Name = "colTen_Tai_San";
     this.colTen_Tai_San.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.colTen_Tai_San.Visible = true;
     this.colTen_Tai_San.Width = 249;
     //
     // rptTenTaiSan
     //
     this.rptTenTaiSan.AutoComplete = false;
     this.rptTenTaiSan.AutoHeight = false;
     this.rptTenTaiSan.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus, "Chọn", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", "Chọn", null, true)});
     this.rptTenTaiSan.ImmediatePopup = true;
     this.rptTenTaiSan.Name = "rptTenTaiSan";
     this.rptTenTaiSan.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.rptTenTaiSan_ButtonClick);
     //
     // colLoai_Vang
     //
     this.colLoai_Vang.AppearanceHeader.Options.UseTextOptions = true;
     this.colLoai_Vang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLoai_Vang.Caption = "Loại Vàng";
     this.colLoai_Vang.ColumnEdit = this.rptLoaiVang;
     this.colLoai_Vang.FieldName = "Loai_Vang";
     this.colLoai_Vang.Name = "colLoai_Vang";
     this.colLoai_Vang.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.colLoai_Vang.Visible = true;
     this.colLoai_Vang.Width = 76;
     //
     // rptLoaiVang
     //
     this.rptLoaiVang.AutoComplete = false;
     this.rptLoaiVang.AutoHeight = false;
     this.rptLoaiVang.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", "Chọn", null, true)});
     this.rptLoaiVang.Name = "rptLoaiVang";
     this.rptLoaiVang.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.rptLoaiVang_ButtonClick);
     //
     // gridBand3
     //
     this.gridBand3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand3.Caption = "Trọng Lượng (Đơn vị: Chỉ)";
     this.gridBand3.Columns.Add(this.colTrong_Luong_Vang_18k);
     this.gridBand3.Columns.Add(this.colTrong_Luong_Vang_24k);
     this.gridBand3.Columns.Add(this.colTrong_Luong_Khac);
     this.gridBand3.Columns.Add(this.colTrong_Luong);
     this.gridBand3.MinWidth = 20;
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.VisibleIndex = 1;
     this.gridBand3.Width = 353;
     //
     // colTrong_Luong_Vang_18k
     //
     this.colTrong_Luong_Vang_18k.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Vang_18k.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Vang_18k.Caption = "18k";
     this.colTrong_Luong_Vang_18k.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Vang_18k.FieldName = "Trong_Luong_Vang_18k";
     this.colTrong_Luong_Vang_18k.Name = "colTrong_Luong_Vang_18k";
     this.colTrong_Luong_Vang_18k.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Vang_18k", "{0:##,##0.###}")});
     this.colTrong_Luong_Vang_18k.Visible = true;
     this.colTrong_Luong_Vang_18k.Width = 68;
     //
     // rptMayTinh
     //
     this.rptMayTinh.AutoHeight = false;
     this.rptMayTinh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinh.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.Name = "rptMayTinh";
     this.rptMayTinh.NullText = "0";
     this.rptMayTinh.ShowCloseButton = true;
     //
     // colTrong_Luong_Vang_24k
     //
     this.colTrong_Luong_Vang_24k.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Vang_24k.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Vang_24k.Caption = "24k";
     this.colTrong_Luong_Vang_24k.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Vang_24k.FieldName = "Trong_Luong_Vang_24k";
     this.colTrong_Luong_Vang_24k.Name = "colTrong_Luong_Vang_24k";
     this.colTrong_Luong_Vang_24k.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Vang_24k", "{0:##,##0.###}")});
     this.colTrong_Luong_Vang_24k.Visible = true;
     //
     // colTrong_Luong_Khac
     //
     this.colTrong_Luong_Khac.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Khac.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Khac.Caption = "Khác";
     this.colTrong_Luong_Khac.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Khac.FieldName = "Trong_Luong_Khac";
     this.colTrong_Luong_Khac.Name = "colTrong_Luong_Khac";
     this.colTrong_Luong_Khac.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Khac", "{0:##,##0.###}")});
     this.colTrong_Luong_Khac.Visible = true;
     //
     // colTrong_Luong
     //
     this.colTrong_Luong.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong.Caption = "Trọng Lượng";
     this.colTrong_Luong.FieldName = "Trong_Luong";
     this.colTrong_Luong.Name = "colTrong_Luong";
     this.colTrong_Luong.Visible = true;
     this.colTrong_Luong.Width = 135;
     //
     // gridBand2
     //
     this.gridBand2.Columns.Add(this.colChuan_Do);
     this.gridBand2.Columns.Add(this.colGia_Tri_Vat_Cam);
     this.gridBand2.Columns.Add(this.colSap_Xep);
     this.gridBand2.MinWidth = 20;
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.VisibleIndex = 2;
     this.gridBand2.Width = 167;
     //
     // colChuan_Do
     //
     this.colChuan_Do.AppearanceHeader.Options.UseTextOptions = true;
     this.colChuan_Do.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colChuan_Do.Caption = "Chuẩn Độ";
     this.colChuan_Do.FieldName = "Chuan_Do";
     this.colChuan_Do.Name = "colChuan_Do";
     this.colChuan_Do.Visible = true;
     this.colChuan_Do.Width = 82;
     //
     // colGia_Tri_Vat_Cam
     //
     this.colGia_Tri_Vat_Cam.AppearanceHeader.Options.UseTextOptions = true;
     this.colGia_Tri_Vat_Cam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colGia_Tri_Vat_Cam.Caption = "Giá Trị Vật Cầm";
     this.colGia_Tri_Vat_Cam.ColumnEdit = this.rptMayTinh;
     this.colGia_Tri_Vat_Cam.FieldName = "Gia_Tri_Vat_Cam";
     this.colGia_Tri_Vat_Cam.Name = "colGia_Tri_Vat_Cam";
     this.colGia_Tri_Vat_Cam.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Gia_Tri_Vat_Cam", "{0:##,##0.###}")});
     this.colGia_Tri_Vat_Cam.Visible = true;
     this.colGia_Tri_Vat_Cam.Width = 85;
     //
     // colSap_Xep
     //
     this.colSap_Xep.AppearanceHeader.Options.UseTextOptions = true;
     this.colSap_Xep.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSap_Xep.FieldName = "Sap_Xep";
     this.colSap_Xep.Name = "colSap_Xep";
     //
     // txtHangHoa
     //
     this.txtHangHoa.AutoHeight = false;
     this.txtHangHoa.Name = "txtHangHoa";
     //
     // txtLoaiVang
     //
     this.txtLoaiVang.AutoHeight = false;
     this.txtLoaiVang.Name = "txtLoaiVang";
     //
     // txtLaiSuatNgay
     //
     this.txtLaiSuatNgay.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txtLaiSuatNgay.Location = new System.Drawing.Point(87, 589);
     this.txtLaiSuatNgay.MenuManager = this.bm;
     this.txtLaiSuatNgay.Name = "txtLaiSuatNgay";
     this.txtLaiSuatNgay.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txtLaiSuatNgay.Properties.Appearance.Options.UseFont = true;
     this.txtLaiSuatNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtLaiSuatNgay.Properties.DisplayFormat.FormatString = "{0:##,##0.###} %";
     this.txtLaiSuatNgay.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtLaiSuatNgay.Properties.EditFormat.FormatString = "{0:##,##0.###}";
     this.txtLaiSuatNgay.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtLaiSuatNgay.Size = new System.Drawing.Size(91, 20);
     this.txtLaiSuatNgay.StyleController = this.layoutControl1;
     this.txtLaiSuatNgay.TabIndex = 23;
     this.txtLaiSuatNgay.TabStop = false;
     //
     // txtLaiSuatThang
     //
     this.txtLaiSuatThang.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txtLaiSuatThang.Location = new System.Drawing.Point(227, 589);
     this.txtLaiSuatThang.MenuManager = this.bm;
     this.txtLaiSuatThang.Name = "txtLaiSuatThang";
     this.txtLaiSuatThang.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txtLaiSuatThang.Properties.Appearance.Options.UseFont = true;
     this.txtLaiSuatThang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtLaiSuatThang.Properties.DisplayFormat.FormatString = "{0:##,##0.###} %";
     this.txtLaiSuatThang.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtLaiSuatThang.Properties.EditFormat.FormatString = "{0:##,##0.###}";
     this.txtLaiSuatThang.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtLaiSuatThang.Size = new System.Drawing.Size(91, 20);
     this.txtLaiSuatThang.StyleController = this.layoutControl1;
     this.txtLaiSuatThang.TabIndex = 24;
     this.txtLaiSuatThang.TabStop = false;
     this.txtLaiSuatThang.EditValueChanged += new System.EventHandler(this.txtLaiSuatThang_EditValueChanged);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Root";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem4,
     this.splitterItem1,
     this.layoutControlItem5,
     this.layoutControlItem7,
     this.layoutControlItem14,
     this.layoutControlItem15,
     this.layoutControlItem16,
     this.layoutControlItem17,
     this.layoutControlItem6,
     this.layoutControlItem9,
     this.layoutControlItem10,
     this.layoutControlItem18,
     this.layoutControlItem8,
     this.layoutControlItem12,
     this.layoutControlItem19,
     this.layoutControlItem11,
     this.layoutControlItem13,
     this.layoutControlItem20,
     this.splitterItem2,
     this.layoutControlItem21,
     this.layoutControlItem22,
     this.layoutControlItem23,
     this.layoutControlItem24,
     this.layoutControlItem26,
     this.layoutControlItem25,
     this.layoutControlItem3,
     this.layoutControlItem27});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1091, 612);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(288, 124);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(803, 409);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem2.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem2.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem2.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem2.Control = this.txtMaChungTu;
     this.layoutControlItem2.CustomizationFormText = "Mã chứng từ:";
     this.layoutControlItem2.Location = new System.Drawing.Point(868, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(223, 24);
     this.layoutControlItem2.Text = "Mã chứng từ:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(80, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem4.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem4.Control = this.txtNgay;
     this.layoutControlItem4.CustomizationFormText = "Ngày:";
     this.layoutControlItem4.Location = new System.Drawing.Point(868, 72);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(223, 24);
     this.layoutControlItem4.Text = "Ngày:";
     this.layoutControlItem4.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(80, 13);
     this.layoutControlItem4.TextToControlDistance = 5;
     //
     // splitterItem1
     //
     this.splitterItem1.AllowHotTrack = true;
     this.splitterItem1.CustomizationFormText = "splitterItem1";
     this.splitterItem1.Location = new System.Drawing.Point(863, 0);
     this.splitterItem1.Name = "splitterItem1";
     this.splitterItem1.Size = new System.Drawing.Size(5, 124);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem5.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem5.Control = this.txtCMNDSo;
     this.layoutControlItem5.CustomizationFormText = "CMND số:";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(220, 24);
     this.layoutControlItem5.Text = "CMND số:";
     this.layoutControlItem5.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem5.TextToControlDistance = 5;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem7.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem7.Control = this.txtNgayCap;
     this.layoutControlItem7.CustomizationFormText = "Ngày cấp:";
     this.layoutControlItem7.Location = new System.Drawing.Point(220, 26);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(144, 24);
     this.layoutControlItem7.Text = "Ngày cấp:";
     this.layoutControlItem7.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(55, 20);
     this.layoutControlItem7.TextToControlDistance = 5;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem14.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem14.Control = this.txtNoiCap;
     this.layoutControlItem14.CustomizationFormText = "Nơi cấp:";
     this.layoutControlItem14.Location = new System.Drawing.Point(364, 26);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(499, 24);
     this.layoutControlItem14.Text = "Nơi cấp:";
     this.layoutControlItem14.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem14.TextSize = new System.Drawing.Size(60, 20);
     this.layoutControlItem14.TextToControlDistance = 5;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem15.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem15.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem15.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem15.Control = this.txtDiaChi;
     this.layoutControlItem15.CustomizationFormText = "Địa chỉ:";
     this.layoutControlItem15.Location = new System.Drawing.Point(0, 50);
     this.layoutControlItem15.Name = "layoutControlItem15";
     this.layoutControlItem15.Size = new System.Drawing.Size(483, 26);
     this.layoutControlItem15.Text = "Địa chỉ:";
     this.layoutControlItem15.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem15.TextSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem15.TextToControlDistance = 5;
     //
     // layoutControlItem16
     //
     this.layoutControlItem16.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem16.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem16.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem16.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem16.Control = this.txtSoDienThoai;
     this.layoutControlItem16.CustomizationFormText = "Số điện thoại:";
     this.layoutControlItem16.Location = new System.Drawing.Point(577, 50);
     this.layoutControlItem16.Name = "layoutControlItem16";
     this.layoutControlItem16.Size = new System.Drawing.Size(286, 26);
     this.layoutControlItem16.Text = "Số điện thoại:";
     this.layoutControlItem16.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem16.TextSize = new System.Drawing.Size(80, 20);
     this.layoutControlItem16.TextToControlDistance = 5;
     //
     // layoutControlItem17
     //
     this.layoutControlItem17.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem17.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem17.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem17.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem17.Control = this.txtChuTiem;
     this.layoutControlItem17.CustomizationFormText = "Biên nhận cầm đồ (Bên B):";
     this.layoutControlItem17.Location = new System.Drawing.Point(0, 76);
     this.layoutControlItem17.Name = "layoutControlItem17";
     this.layoutControlItem17.Size = new System.Drawing.Size(863, 24);
     this.layoutControlItem17.Text = "Biên nhận cầm đồ (Bên B):";
     this.layoutControlItem17.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem17.TextSize = new System.Drawing.Size(150, 20);
     this.layoutControlItem17.TextToControlDistance = 5;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem6.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem6.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem6.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem6.Control = this.txtSo;
     this.layoutControlItem6.CustomizationFormText = "Số:";
     this.layoutControlItem6.Location = new System.Drawing.Point(868, 24);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(223, 24);
     this.layoutControlItem6.Text = "Số:";
     this.layoutControlItem6.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(80, 20);
     this.layoutControlItem6.TextToControlDistance = 5;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem9.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem9.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem9.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem9.Control = this.txtLaiSuatNgay;
     this.layoutControlItem9.CustomizationFormText = "- Lãi suất cầm";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 587);
     this.layoutControlItem9.MaxSize = new System.Drawing.Size(180, 25);
     this.layoutControlItem9.MinSize = new System.Drawing.Size(1, 25);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(180, 25);
     this.layoutControlItem9.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem9.Text = "- Lãi suất cầm";
     this.layoutControlItem9.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem9.TextSize = new System.Drawing.Size(80, 20);
     this.layoutControlItem9.TextToControlDistance = 5;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem10.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem10.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem10.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem10.Control = this.txtLaiSuatThang;
     this.layoutControlItem10.CustomizationFormText = "ngày";
     this.layoutControlItem10.Location = new System.Drawing.Point(180, 587);
     this.layoutControlItem10.MaxSize = new System.Drawing.Size(140, 25);
     this.layoutControlItem10.MinSize = new System.Drawing.Size(1, 25);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(140, 25);
     this.layoutControlItem10.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem10.Text = "ngày,";
     this.layoutControlItem10.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem10.TextSize = new System.Drawing.Size(40, 20);
     this.layoutControlItem10.TextToControlDistance = 5;
     //
     // layoutControlItem18
     //
     this.layoutControlItem18.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem18.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem18.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem18.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem18.Control = this.layoutControl3;
     this.layoutControlItem18.CustomizationFormText = "tháng";
     this.layoutControlItem18.Location = new System.Drawing.Point(320, 587);
     this.layoutControlItem18.MaxSize = new System.Drawing.Size(0, 25);
     this.layoutControlItem18.MinSize = new System.Drawing.Size(137, 25);
     this.layoutControlItem18.Name = "layoutControlItem18";
     this.layoutControlItem18.Size = new System.Drawing.Size(771, 25);
     this.layoutControlItem18.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem18.Text = "tháng";
     this.layoutControlItem18.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem18.TextSize = new System.Drawing.Size(33, 13);
     this.layoutControlItem18.TextToControlDistance = 5;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem8.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem8.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem8.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem8.Control = this.txtSoTienCam;
     this.layoutControlItem8.CustomizationFormText = "Thành Tiền:";
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 533);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(400, 29);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(116, 29);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(400, 29);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.Text = "- Số tiền cầm:";
     this.layoutControlItem8.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem8.TextSize = new System.Drawing.Size(77, 13);
     this.layoutControlItem8.TextToControlDistance = 5;
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem12.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem12.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem12.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem12.Control = this.txtDenNgay;
     this.layoutControlItem12.CustomizationFormText = "đến ngày";
     this.layoutControlItem12.Location = new System.Drawing.Point(300, 562);
     this.layoutControlItem12.MaxSize = new System.Drawing.Size(300, 25);
     this.layoutControlItem12.MinSize = new System.Drawing.Size(1, 25);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Size = new System.Drawing.Size(791, 25);
     this.layoutControlItem12.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem12.Text = "đến ngày";
     this.layoutControlItem12.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem12.TextSize = new System.Drawing.Size(60, 20);
     this.layoutControlItem12.TextToControlDistance = 5;
     //
     // layoutControlItem19
     //
     this.layoutControlItem19.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem19.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem19.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem19.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem19.Control = this.txtTuNgay;
     this.layoutControlItem19.CustomizationFormText = "Thời gian cầm kể từ ngày";
     this.layoutControlItem19.Location = new System.Drawing.Point(0, 562);
     this.layoutControlItem19.MaxSize = new System.Drawing.Size(300, 25);
     this.layoutControlItem19.MinSize = new System.Drawing.Size(1, 25);
     this.layoutControlItem19.Name = "layoutControlItem19";
     this.layoutControlItem19.Size = new System.Drawing.Size(300, 25);
     this.layoutControlItem19.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem19.Text = "- Thời gian cầm kể từ ngày";
     this.layoutControlItem19.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem19.TextSize = new System.Drawing.Size(160, 20);
     this.layoutControlItem19.TextToControlDistance = 5;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.btnTimKhachHang;
     this.layoutControlItem11.CustomizationFormText = "layoutControlItem11";
     this.layoutControlItem11.Location = new System.Drawing.Point(485, 0);
     this.layoutControlItem11.MaxSize = new System.Drawing.Size(80, 26);
     this.layoutControlItem11.MinSize = new System.Drawing.Size(80, 26);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(80, 26);
     this.layoutControlItem11.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem11.Text = "layoutControlItem11";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem11.TextToControlDistance = 0;
     this.layoutControlItem11.TextVisible = false;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.txtBo;
     this.layoutControlItem13.CustomizationFormText = "layoutControlItem13";
     this.layoutControlItem13.Location = new System.Drawing.Point(565, 0);
     this.layoutControlItem13.MaxSize = new System.Drawing.Size(80, 26);
     this.layoutControlItem13.MinSize = new System.Drawing.Size(80, 26);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(80, 26);
     this.layoutControlItem13.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem13.Text = "layoutControlItem13";
     this.layoutControlItem13.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem13.TextToControlDistance = 0;
     this.layoutControlItem13.TextVisible = false;
     //
     // layoutControlItem20
     //
     this.layoutControlItem20.Control = this.gcList_HangHoa;
     this.layoutControlItem20.CustomizationFormText = "layoutControlItem20";
     this.layoutControlItem20.Location = new System.Drawing.Point(0, 150);
     this.layoutControlItem20.Name = "layoutControlItem20";
     this.layoutControlItem20.Size = new System.Drawing.Size(283, 383);
     this.layoutControlItem20.Text = "layoutControlItem20";
     this.layoutControlItem20.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem20.TextToControlDistance = 0;
     this.layoutControlItem20.TextVisible = false;
     //
     // splitterItem2
     //
     this.splitterItem2.AllowHotTrack = true;
     this.splitterItem2.CustomizationFormText = "splitterItem2";
     this.splitterItem2.Location = new System.Drawing.Point(283, 124);
     this.splitterItem2.Name = "splitterItem2";
     this.splitterItem2.Size = new System.Drawing.Size(5, 409);
     //
     // layoutControlItem21
     //
     this.layoutControlItem21.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem21.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem21.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem21.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem21.Control = this.txtGhiChu;
     this.layoutControlItem21.CustomizationFormText = "Ghi chú:";
     this.layoutControlItem21.Location = new System.Drawing.Point(0, 100);
     this.layoutControlItem21.Name = "layoutControlItem21";
     this.layoutControlItem21.Size = new System.Drawing.Size(863, 24);
     this.layoutControlItem21.Text = "Ghi chú:";
     this.layoutControlItem21.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem21.TextSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem21.TextToControlDistance = 5;
     //
     // layoutControlItem22
     //
     this.layoutControlItem22.Control = this.btnTimDiaChi;
     this.layoutControlItem22.CustomizationFormText = "layoutControlItem22";
     this.layoutControlItem22.Location = new System.Drawing.Point(483, 50);
     this.layoutControlItem22.Name = "layoutControlItem22";
     this.layoutControlItem22.Size = new System.Drawing.Size(94, 26);
     this.layoutControlItem22.Text = "layoutControlItem22";
     this.layoutControlItem22.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem22.TextToControlDistance = 0;
     this.layoutControlItem22.TextVisible = false;
     //
     // layoutControlItem23
     //
     this.layoutControlItem23.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem23.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem23.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem23.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem23.Control = this.txtLien;
     this.layoutControlItem23.CustomizationFormText = "Liên:";
     this.layoutControlItem23.Location = new System.Drawing.Point(868, 48);
     this.layoutControlItem23.Name = "layoutControlItem23";
     this.layoutControlItem23.Size = new System.Drawing.Size(223, 24);
     this.layoutControlItem23.Text = "Liên:";
     this.layoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem23.TextSize = new System.Drawing.Size(80, 20);
     this.layoutControlItem23.TextToControlDistance = 5;
     //
     // layoutControlItem24
     //
     this.layoutControlItem24.Control = this.btnChonHangHoa;
     this.layoutControlItem24.CustomizationFormText = "layoutControlItem24";
     this.layoutControlItem24.Location = new System.Drawing.Point(0, 124);
     this.layoutControlItem24.Name = "layoutControlItem24";
     this.layoutControlItem24.Size = new System.Drawing.Size(283, 26);
     this.layoutControlItem24.Text = "layoutControlItem24";
     this.layoutControlItem24.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem24.TextToControlDistance = 0;
     this.layoutControlItem24.TextVisible = false;
     //
     // layoutControlItem26
     //
     this.layoutControlItem26.Control = this.txtSoTienCamBangChu;
     this.layoutControlItem26.CustomizationFormText = "layoutControlItem26";
     this.layoutControlItem26.Location = new System.Drawing.Point(400, 533);
     this.layoutControlItem26.Name = "layoutControlItem26";
     this.layoutControlItem26.Size = new System.Drawing.Size(691, 29);
     this.layoutControlItem26.Text = "layoutControlItem26";
     this.layoutControlItem26.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem26.TextToControlDistance = 0;
     this.layoutControlItem26.TextVisible = false;
     //
     // layoutControlItem25
     //
     this.layoutControlItem25.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem25.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem25.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem25.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem25.Control = this.txtNgaySinh;
     this.layoutControlItem25.CustomizationFormText = "Ngày sinh:";
     this.layoutControlItem25.Location = new System.Drawing.Point(645, 0);
     this.layoutControlItem25.Name = "layoutControlItem25";
     this.layoutControlItem25.Size = new System.Drawing.Size(218, 26);
     this.layoutControlItem25.Text = "Ngày sinh:";
     this.layoutControlItem25.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem25.TextSize = new System.Drawing.Size(60, 20);
     this.layoutControlItem25.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem3.AppearanceItemCaption.ForeColor = System.Drawing.Color.Red;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem3.Control = this.txtKhachHang;
     this.layoutControlItem3.CustomizationFormText = "Bên có tài sản cầm đồ (Bên A) Ông (Bà):";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(485, 26);
     this.layoutControlItem3.Text = "Bên có tài sản cầm đồ (Bên A) Ông (Bà):";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(222, 13);
     //
     // layoutControlItem27
     //
     this.layoutControlItem27.Control = this.cbInThongTinRutGon;
     this.layoutControlItem27.CustomizationFormText = "layoutControlItem27";
     this.layoutControlItem27.Location = new System.Drawing.Point(868, 96);
     this.layoutControlItem27.Name = "layoutControlItem27";
     this.layoutControlItem27.Size = new System.Drawing.Size(223, 28);
     this.layoutControlItem27.Text = "layoutControlItem27";
     this.layoutControlItem27.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem27.TextToControlDistance = 0;
     this.layoutControlItem27.TextVisible = false;
     //
     // cHUNG_TU_CHI_TIETTableAdapter
     //
     this.cHUNG_TU_CHI_TIETTableAdapter.ClearBeforeFill = true;
     //
     // pm
     //
     this.pm.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXoa),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXoaTatCa)});
     this.pm.Manager = this.bm;
     this.pm.Name = "pm";
     //
     // dANH_SACH_HANG_HOATableAdapter
     //
     this.dANH_SACH_HANG_HOATableAdapter.ClearBeforeFill = true;
     //
     // PhieuCamDo
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1091, 641);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "PhieuCamDo";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Cầm Đồ";
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cbInThongTinRutGon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhachHang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSoTienCamBangChu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgaySinh.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLien.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGhiChu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList_HangHoa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dANHSACHHANGHOABindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCamDo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList_HangHoa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTuNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDenNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtChuTiem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSoDienThoai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNoiCap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgayCap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCMNDSo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSoTienCam.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiaChi.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgay.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaChungTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cHUNGTUCHITIETBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptTenTaiSan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptLoaiVang)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtHangHoa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoaiVang)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLaiSuatNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLaiSuatThang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitterItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pm)).EndInit();
     this.ResumeLayout(false);
 }
Пример #24
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pnlCtrlTop = new DevExpress.XtraEditors.PanelControl();
     this.calcEdit1 = new DevExpress.XtraEditors.CalcEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.pnlCtrlCenter = new DevExpress.XtraEditors.PanelControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlCtrlBottom = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).BeginInit();
     this.pnlCtrlTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).BeginInit();
     this.pnlCtrlCenter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).BeginInit();
     this.pnlCtrlBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlCtrlTop
     //
     this.pnlCtrlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlTop.Controls.Add(this.calcEdit1);
     this.pnlCtrlTop.Controls.Add(this.label1);
     this.pnlCtrlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlCtrlTop.Location = new System.Drawing.Point(0, 0);
     this.pnlCtrlTop.Name = "pnlCtrlTop";
     this.pnlCtrlTop.Size = new System.Drawing.Size(590, 36);
     this.pnlCtrlTop.TabIndex = 0;
     this.pnlCtrlTop.Text = "panelControl1";
     //
     // calcEdit1
     //
     this.calcEdit1.Location = new System.Drawing.Point(234, 8);
     this.calcEdit1.Name = "calcEdit1";
     //
     // calcEdit1.Properties
     //
     this.calcEdit1.Properties.Mask.EditMask = "d2";
     this.calcEdit1.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.calcEdit1.Properties.MaxLength = 3;
     this.calcEdit1.Properties.Precision = 0;
     this.calcEdit1.Size = new System.Drawing.Size(106, 20);
     this.calcEdit1.TabIndex = 1;
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(18, 6);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(208, 23);
     this.label1.TabIndex = 0;
     this.label1.Text = "Month(s) To Extend:";
     //
     // pnlCtrlCenter
     //
     this.pnlCtrlCenter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlCenter.Controls.Add(this.gridControl1);
     this.pnlCtrlCenter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlCtrlCenter.Location = new System.Drawing.Point(0, 36);
     this.pnlCtrlCenter.Name = "pnlCtrlCenter";
     this.pnlCtrlCenter.Size = new System.Drawing.Size(590, 216);
     this.pnlCtrlCenter.TabIndex = 1;
     this.pnlCtrlCenter.Text = "panelControl2";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                           this.repositoryItemDateEdit1});
     this.gridControl1.Size = new System.Drawing.Size(590, 216);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn1,
                                                                                      this.gridColumn2,
                                                                                      this.gridColumn3,
                                                                                      this.gridColumn4,
                                                                                      this.gridColumn5,
                                                                                      this.gridColumn6,
                                                                                      this.gridColumn7});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Branch Code";
     this.gridColumn1.FieldName = "strBranchCode";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsFilter.AllowFilter = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 93;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Locker No";
     this.gridColumn2.FieldName = "nLockerNo";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsFilter.AllowFilter = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 74;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Membership ID";
     this.gridColumn3.FieldName = "strMembershipID";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn3.OptionsFilter.AllowFilter = false;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Receipt No";
     this.gridColumn4.FieldName = "strReceiptNo";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.OptionsFilter.AllowFilter = false;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 113;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Status ID";
     this.gridColumn5.FieldName = "nStatusID";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn5.OptionsFilter.AllowFilter = false;
     this.gridColumn5.Width = 112;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Expiry Date";
     this.gridColumn6.ColumnEdit = this.repositoryItemDateEdit1;
     this.gridColumn6.FieldName = "dtExpiry";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsFilter.AllowFilter = false;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 3;
     this.gridColumn6.Width = 114;
     //
     // repositoryItemDateEdit1
     //
     this.repositoryItemDateEdit1.AutoHeight = false;
     this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit1.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit1.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Remark";
     this.gridColumn7.FieldName = "strRemarks";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsFilter.AllowFilter = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 4;
     this.gridColumn7.Width = 182;
     //
     // pnlCtrlBottom
     //
     this.pnlCtrlBottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonCancel);
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonOK);
     this.pnlCtrlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlCtrlBottom.Location = new System.Drawing.Point(0, 252);
     this.pnlCtrlBottom.Name = "pnlCtrlBottom";
     this.pnlCtrlBottom.Size = new System.Drawing.Size(590, 44);
     this.pnlCtrlBottom.TabIndex = 2;
     this.pnlCtrlBottom.Text = "panelControl3";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(504, 12);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex = 8;
     this.simpleButtonCancel.Text = "Cancel";
     this.simpleButtonCancel.Click += new System.EventHandler(this.simpleButtonCancel_Click);
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(418, 12);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.TabIndex = 7;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormExtendLocker
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(590, 296);
     this.Controls.Add(this.pnlCtrlCenter);
     this.Controls.Add(this.pnlCtrlTop);
     this.Controls.Add(this.pnlCtrlBottom);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormExtendLocker";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Extend Locker";
     this.Load += new System.EventHandler(this.FormNew_ExtendLocker_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).EndInit();
     this.pnlCtrlTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).EndInit();
     this.pnlCtrlCenter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).EndInit();
     this.pnlCtrlBottom.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #25
0
 void PrecioCalcEdit_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit editor = (DevExpress.XtraEditors.CalcEdit)sender;
     registro.Precio       = (double)editor.Value;
     registro.PrecioConIva = registro.Precio.GetValueOrDefault(0) + (registro.Precio.GetValueOrDefault(0) * registro.TasaIva.GetValueOrDefault(0) / 100);
 }
Пример #26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPOS2));
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.pnlTop = new DevExpress.XtraEditors.PanelControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.lblLocation = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.sBtnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.sBtnSubtract = new DevExpress.XtraEditors.SimpleButton();
     this.GroupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.label13 = new System.Windows.Forms.Label();
     this.lblUpgradeFrom = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.lblTherapistName = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.lblTherapistID = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.lblSalesPersonName = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.lblBillReward = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.lblBillFB = new System.Windows.Forms.Label();
     this.lblBillDiscCode = new System.Windows.Forms.Label();
     this.lblDateTime = new System.Windows.Forms.Label();
     this.lblSalesperson = new System.Windows.Forms.Label();
     this.GroupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
     this.lblUsageBal = new System.Windows.Forms.Label();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.lblNettAmt = new System.Windows.Forms.Label();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.lblGST = new System.Windows.Forms.Label();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.lblDiscountAmt = new System.Windows.Forms.Label();
     this.lblTotalAmt = new System.Windows.Forms.Label();
     this.lblAmountPayable = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.lblMemberName = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.lblMembershipID = new System.Windows.Forms.Label();
     this.pnlCtrlBarScanner = new DevExpress.XtraEditors.PanelControl();
     this.calcEditQty = new DevExpress.XtraEditors.CalcEdit();
     this.Label12 = new System.Windows.Forms.Label();
     this.txtScannedCode = new DevExpress.XtraEditors.TextEdit();
     this.Label11 = new System.Windows.Forms.Label();
     this.btnEnter = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnF9 = new DevExpress.XtraEditors.SimpleButton();
     this.btnF8 = new DevExpress.XtraEditors.SimpleButton();
     this.btnF7 = new DevExpress.XtraEditors.SimpleButton();
     this.btnF6 = new DevExpress.XtraEditors.SimpleButton();
     this.btnF5 = new DevExpress.XtraEditors.SimpleButton();
     this.btnF4 = new DevExpress.XtraEditors.SimpleButton();
     this.btnF3 = new DevExpress.XtraEditors.SimpleButton();
     this.btnF2 = new DevExpress.XtraEditors.SimpleButton();
     this.btnF1 = new DevExpress.XtraEditors.SimpleButton();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.pnlLeft = new DevExpress.XtraEditors.PanelControl();
     this.NavBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
     this.nbgPackage = new DevExpress.XtraNavBar.NavBarGroup();
     this.nbiPackage001 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPackage002 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPackage003 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPackage004 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPackage005 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPackage006 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPackage007 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPackage008 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPackage009 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPackage010 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPackage011 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPackage012 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPackage036 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiPackage037 = new DevExpress.XtraNavBar.NavBarItem();
     this.navGiro = new DevExpress.XtraNavBar.NavBarItem();
     this.navSpaGiro = new DevExpress.XtraNavBar.NavBarItem();
     this.navConvertSpa = new DevExpress.XtraNavBar.NavBarItem();
     this.nbgProduct = new DevExpress.XtraNavBar.NavBarGroup();
     this.nbiProduct001 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiProduct002 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbgMiscellaneous = new DevExpress.XtraNavBar.NavBarGroup();
     this.nbiMiscellaneous001 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiMiscellaneous002 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiMiscellaneous004 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiMiscellaneous005 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiMiscellaneous006 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiMiscellaneous007 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiMiscellaneous008 = new DevExpress.XtraNavBar.NavBarItem();
     this.nbiMiscellaneous009 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem1 = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarMaintainSpaGiro = new DevExpress.XtraNavBar.NavBarItem();
     this.navDeposit = new DevExpress.XtraNavBar.NavBarItem();
     this.pnlGrid = new DevExpress.XtraEditors.PanelControl();
     this.gridItem = new DevExpress.XtraGrid.GridControl();
     this.GridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnStrCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnDesc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnListPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnQty = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnDiscountCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnDiscountAmt = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnFreebieCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSubTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnExchange = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnBillDiscount = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.pnlTop)).BeginInit();
     this.pnlTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl1)).BeginInit();
     this.GroupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl2)).BeginInit();
     this.GroupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
     this.groupControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBarScanner)).BeginInit();
     this.pnlCtrlBarScanner.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.calcEditQty.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtScannedCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlLeft)).BeginInit();
     this.pnlLeft.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NavBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlGrid)).BeginInit();
     this.pnlGrid.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView1)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // pnlTop
     //
     this.pnlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlTop.Controls.Add(this.panelControl2);
     this.pnlTop.Controls.Add(this.panelControl1);
     this.pnlTop.Controls.Add(this.splitterControl1);
     this.pnlTop.Controls.Add(this.pnlLeft);
     this.pnlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlTop.Location = new System.Drawing.Point(0, 0);
     this.pnlTop.Name = "pnlTop";
     this.pnlTop.Size = new System.Drawing.Size(1030, 387);
     this.pnlTop.TabIndex = 0;
     //
     // panelControl2
     //
     this.panelControl2.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.panelControl2.Appearance.Options.UseBackColor = true;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.lblLocation);
     this.panelControl2.Controls.Add(this.label9);
     this.panelControl2.Controls.Add(this.simpleButton1);
     this.panelControl2.Controls.Add(this.sBtnAdd);
     this.panelControl2.Controls.Add(this.sBtnSubtract);
     this.panelControl2.Controls.Add(this.GroupControl1);
     this.panelControl2.Controls.Add(this.GroupControl2);
     this.panelControl2.Controls.Add(this.label7);
     this.panelControl2.Controls.Add(this.lblMemberName);
     this.panelControl2.Controls.Add(this.label6);
     this.panelControl2.Controls.Add(this.lblMembershipID);
     this.panelControl2.Controls.Add(this.pnlCtrlBarScanner);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(182, 113);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(848, 274);
     this.panelControl2.TabIndex = 48;
     //
     // lblLocation
     //
     this.lblLocation.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblLocation.Location = new System.Drawing.Point(662, 5);
     this.lblLocation.Name = "lblLocation";
     this.lblLocation.Size = new System.Drawing.Size(138, 16);
     this.lblLocation.TabIndex = 57;
     this.lblLocation.Text = "--";
     //
     // label9
     //
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label9.Location = new System.Drawing.Point(605, 5);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(90, 14);
     this.label9.TabIndex = 56;
     this.label9.Text = "Location:";
     //
     // simpleButton1
     //
     this.simpleButton1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.simpleButton1.Appearance.Options.UseFont = true;
     this.simpleButton1.Location = new System.Drawing.Point(748, 245);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(52, 30);
     this.simpleButton1.TabIndex = 54;
     this.simpleButton1.Text = "Delete";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // sBtnAdd
     //
     this.sBtnAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.sBtnAdd.Appearance.Options.UseFont = true;
     this.sBtnAdd.Appearance.Options.UseTextOptions = true;
     this.sBtnAdd.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.sBtnAdd.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.sBtnAdd.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.sBtnAdd.ImageIndex = 0;
     this.sBtnAdd.ImageList = this.imageList1;
     this.sBtnAdd.Location = new System.Drawing.Point(718, 245);
     this.sBtnAdd.Name = "sBtnAdd";
     this.sBtnAdd.Size = new System.Drawing.Size(30, 30);
     this.sBtnAdd.TabIndex = 53;
     this.sBtnAdd.Click += new System.EventHandler(this.sBtnAdd_Click);
     //
     // sBtnSubtract
     //
     this.sBtnSubtract.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.sBtnSubtract.Appearance.Options.UseFont = true;
     this.sBtnSubtract.Appearance.Options.UseTextOptions = true;
     this.sBtnSubtract.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.sBtnSubtract.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.sBtnSubtract.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.sBtnSubtract.ImageIndex = 1;
     this.sBtnSubtract.ImageList = this.imageList1;
     this.sBtnSubtract.Location = new System.Drawing.Point(688, 245);
     this.sBtnSubtract.Name = "sBtnSubtract";
     this.sBtnSubtract.Size = new System.Drawing.Size(30, 30);
     this.sBtnSubtract.TabIndex = 52;
     this.sBtnSubtract.Click += new System.EventHandler(this.sBtnSubtract_Click);
     //
     // GroupControl1
     //
     this.GroupControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.GroupControl1.Appearance.BorderColor = System.Drawing.Color.Black;
     this.GroupControl1.Appearance.ForeColor = System.Drawing.SystemColors.ControlText;
     this.GroupControl1.Appearance.Options.UseBackColor = true;
     this.GroupControl1.Appearance.Options.UseBorderColor = true;
     this.GroupControl1.Appearance.Options.UseForeColor = true;
     this.GroupControl1.Controls.Add(this.label13);
     this.GroupControl1.Controls.Add(this.lblUpgradeFrom);
     this.GroupControl1.Controls.Add(this.label14);
     this.GroupControl1.Controls.Add(this.lblTherapistName);
     this.GroupControl1.Controls.Add(this.label10);
     this.GroupControl1.Controls.Add(this.lblTherapistID);
     this.GroupControl1.Controls.Add(this.label8);
     this.GroupControl1.Controls.Add(this.lblSalesPersonName);
     this.GroupControl1.Controls.Add(this.label5);
     this.GroupControl1.Controls.Add(this.lblBillReward);
     this.GroupControl1.Controls.Add(this.label4);
     this.GroupControl1.Controls.Add(this.label3);
     this.GroupControl1.Controls.Add(this.label2);
     this.GroupControl1.Controls.Add(this.lblBillFB);
     this.GroupControl1.Controls.Add(this.lblBillDiscCode);
     this.GroupControl1.Controls.Add(this.lblDateTime);
     this.GroupControl1.Controls.Add(this.lblSalesperson);
     this.GroupControl1.Location = new System.Drawing.Point(7, 22);
     this.GroupControl1.Name = "GroupControl1";
     this.GroupControl1.Size = new System.Drawing.Size(379, 217);
     this.GroupControl1.TabIndex = 45;
     //
     // label13
     //
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label13.Location = new System.Drawing.Point(5, 165);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(98, 16);
     this.label13.TabIndex = 45;
     this.label13.Text = "Upgrade From:";
     //
     // lblUpgradeFrom
     //
     this.lblUpgradeFrom.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblUpgradeFrom.Location = new System.Drawing.Point(103, 165);
     this.lblUpgradeFrom.Name = "lblUpgradeFrom";
     this.lblUpgradeFrom.Size = new System.Drawing.Size(269, 50);
     this.lblUpgradeFrom.TabIndex = 44;
     //
     // label14
     //
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label14.Location = new System.Drawing.Point(5, 105);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(98, 14);
     this.label14.TabIndex = 43;
     this.label14.Text = "Name:";
     //
     // lblTherapistName
     //
     this.lblTherapistName.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTherapistName.Location = new System.Drawing.Point(103, 105);
     this.lblTherapistName.Name = "lblTherapistName";
     this.lblTherapistName.Size = new System.Drawing.Size(254, 18);
     this.lblTherapistName.TabIndex = 42;
     this.lblTherapistName.Text = "--";
     //
     // label10
     //
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label10.Location = new System.Drawing.Point(5, 85);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(98, 14);
     this.label10.TabIndex = 41;
     this.label10.Text = "Therapist ID:";
     //
     // lblTherapistID
     //
     this.lblTherapistID.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTherapistID.Location = new System.Drawing.Point(103, 85);
     this.lblTherapistID.Name = "lblTherapistID";
     this.lblTherapistID.Size = new System.Drawing.Size(110, 18);
     this.lblTherapistID.TabIndex = 40;
     this.lblTherapistID.Text = "--";
     //
     // label8
     //
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label8.Location = new System.Drawing.Point(5, 65);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(98, 14);
     this.label8.TabIndex = 39;
     this.label8.Text = "Name:";
     //
     // lblSalesPersonName
     //
     this.lblSalesPersonName.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSalesPersonName.Location = new System.Drawing.Point(103, 65);
     this.lblSalesPersonName.Name = "lblSalesPersonName";
     this.lblSalesPersonName.Size = new System.Drawing.Size(252, 18);
     this.lblSalesPersonName.TabIndex = 38;
     this.lblSalesPersonName.Text = "--";
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location = new System.Drawing.Point(212, 145);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(92, 16);
     this.label5.TabIndex = 37;
     this.label5.Text = "Reward Code :";
     //
     // lblBillReward
     //
     this.lblBillReward.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblBillReward.Location = new System.Drawing.Point(295, 145);
     this.lblBillReward.Name = "lblBillReward";
     this.lblBillReward.Size = new System.Drawing.Size(81, 18);
     this.lblBillReward.TabIndex = 36;
     this.lblBillReward.Text = "--";
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label4.Location = new System.Drawing.Point(5, 145);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(98, 16);
     this.label4.TabIndex = 35;
     this.label4.Text = "Freebie Code :";
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location = new System.Drawing.Point(5, 125);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(98, 15);
     this.label3.TabIndex = 34;
     this.label3.Text = "Discount Code:";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(5, 45);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(114, 18);
     this.label2.TabIndex = 33;
     this.label2.Text = "Sales Person ID:";
     //
     // lblBillFB
     //
     this.lblBillFB.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblBillFB.Location = new System.Drawing.Point(103, 145);
     this.lblBillFB.Name = "lblBillFB";
     this.lblBillFB.Size = new System.Drawing.Size(96, 18);
     this.lblBillFB.TabIndex = 27;
     this.lblBillFB.Text = "--";
     //
     // lblBillDiscCode
     //
     this.lblBillDiscCode.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblBillDiscCode.Location = new System.Drawing.Point(103, 125);
     this.lblBillDiscCode.Name = "lblBillDiscCode";
     this.lblBillDiscCode.Size = new System.Drawing.Size(96, 18);
     this.lblBillDiscCode.TabIndex = 26;
     this.lblBillDiscCode.Text = "--";
     //
     // lblDateTime
     //
     this.lblDateTime.AutoSize = true;
     this.lblDateTime.BackColor = System.Drawing.SystemColors.Control;
     this.lblDateTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDateTime.Location = new System.Drawing.Point(5, 22);
     this.lblDateTime.Name = "lblDateTime";
     this.lblDateTime.Size = new System.Drawing.Size(163, 17);
     this.lblDateTime.TabIndex = 24;
     this.lblDateTime.Text = "31/08/2005 11:30 AM";
     //
     // lblSalesperson
     //
     this.lblSalesperson.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblSalesperson.Location = new System.Drawing.Point(117, 45);
     this.lblSalesperson.Name = "lblSalesperson";
     this.lblSalesperson.Size = new System.Drawing.Size(110, 18);
     this.lblSalesperson.TabIndex = 32;
     this.lblSalesperson.Text = "--";
     //
     // GroupControl2
     //
     this.GroupControl2.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.GroupControl2.Appearance.BorderColor = System.Drawing.Color.Black;
     this.GroupControl2.Appearance.ForeColor = System.Drawing.SystemColors.ControlText;
     this.GroupControl2.Appearance.Options.UseBackColor = true;
     this.GroupControl2.Appearance.Options.UseBorderColor = true;
     this.GroupControl2.Appearance.Options.UseForeColor = true;
     this.GroupControl2.Controls.Add(this.groupControl6);
     this.GroupControl2.Controls.Add(this.groupControl5);
     this.GroupControl2.Controls.Add(this.groupControl4);
     this.GroupControl2.Controls.Add(this.groupControl3);
     this.GroupControl2.Controls.Add(this.lblTotalAmt);
     this.GroupControl2.Controls.Add(this.lblAmountPayable);
     this.GroupControl2.Controls.Add(this.label1);
     this.GroupControl2.Location = new System.Drawing.Point(389, 22);
     this.GroupControl2.Name = "GroupControl2";
     this.GroupControl2.Size = new System.Drawing.Size(411, 217);
     this.GroupControl2.TabIndex = 46;
     //
     // groupControl6
     //
     this.groupControl6.Controls.Add(this.lblUsageBal);
     this.groupControl6.Location = new System.Drawing.Point(112, 140);
     this.groupControl6.Name = "groupControl6";
     this.groupControl6.Size = new System.Drawing.Size(93, 62);
     this.groupControl6.TabIndex = 37;
     this.groupControl6.Text = "Usage Bal:";
     this.groupControl6.Visible = false;
     //
     // lblUsageBal
     //
     this.lblUsageBal.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblUsageBal.Location = new System.Drawing.Point(13, 30);
     this.lblUsageBal.Name = "lblUsageBal";
     this.lblUsageBal.Size = new System.Drawing.Size(82, 23);
     this.lblUsageBal.TabIndex = 33;
     this.lblUsageBal.Text = "0";
     this.lblUsageBal.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupControl5
     //
     this.groupControl5.Controls.Add(this.lblNettAmt);
     this.groupControl5.Location = new System.Drawing.Point(102, 140);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(104, 62);
     this.groupControl5.TabIndex = 36;
     this.groupControl5.Text = "Nett Amt:";
     //
     // lblNettAmt
     //
     this.lblNettAmt.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblNettAmt.Location = new System.Drawing.Point(13, 30);
     this.lblNettAmt.Name = "lblNettAmt";
     this.lblNettAmt.Size = new System.Drawing.Size(82, 23);
     this.lblNettAmt.TabIndex = 33;
     this.lblNettAmt.Text = "0";
     this.lblNettAmt.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.lblGST);
     this.groupControl4.Location = new System.Drawing.Point(302, 140);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(100, 62);
     this.groupControl4.TabIndex = 35;
     this.groupControl4.Text = "GST:";
     //
     // lblGST
     //
     this.lblGST.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGST.Location = new System.Drawing.Point(22, 28);
     this.lblGST.Name = "lblGST";
     this.lblGST.Size = new System.Drawing.Size(70, 23);
     this.lblGST.TabIndex = 32;
     this.lblGST.Text = "0";
     this.lblGST.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.lblDiscountAmt);
     this.groupControl3.Location = new System.Drawing.Point(204, 140);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(100, 62);
     this.groupControl3.TabIndex = 34;
     this.groupControl3.Text = "Total Discount:";
     //
     // lblDiscountAmt
     //
     this.lblDiscountAmt.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDiscountAmt.Location = new System.Drawing.Point(23, 30);
     this.lblDiscountAmt.Name = "lblDiscountAmt";
     this.lblDiscountAmt.Size = new System.Drawing.Size(72, 23);
     this.lblDiscountAmt.TabIndex = 31;
     this.lblDiscountAmt.Text = "0";
     this.lblDiscountAmt.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblTotalAmt
     //
     this.lblTotalAmt.AutoSize = true;
     this.lblTotalAmt.Font = new System.Drawing.Font("Microsoft Sans Serif", 38F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTotalAmt.Location = new System.Drawing.Point(141, 66);
     this.lblTotalAmt.Name = "lblTotalAmt";
     this.lblTotalAmt.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblTotalAmt.Size = new System.Drawing.Size(54, 59);
     this.lblTotalAmt.TabIndex = 27;
     this.lblTotalAmt.Text = "0";
     this.lblTotalAmt.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblAmountPayable
     //
     this.lblAmountPayable.AutoSize = true;
     this.lblAmountPayable.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblAmountPayable.Location = new System.Drawing.Point(8, 20);
     this.lblAmountPayable.Name = "lblAmountPayable";
     this.lblAmountPayable.Size = new System.Drawing.Size(170, 31);
     this.lblAmountPayable.TabIndex = 26;
     this.lblAmountPayable.Text = "Sales Total:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(8, 128);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(0, 18);
     this.label1.TabIndex = 25;
     //
     // label7
     //
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label7.Location = new System.Drawing.Point(289, 4);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(90, 14);
     this.label7.TabIndex = 43;
     this.label7.Text = "Member Name:";
     //
     // lblMemberName
     //
     this.lblMemberName.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblMemberName.Location = new System.Drawing.Point(378, 5);
     this.lblMemberName.Name = "lblMemberName";
     this.lblMemberName.Size = new System.Drawing.Size(224, 16);
     this.lblMemberName.TabIndex = 42;
     this.lblMemberName.Text = "--";
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label6.Location = new System.Drawing.Point(9, 5);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(96, 16);
     this.label6.TabIndex = 41;
     this.label6.Text = "Membership ID:";
     //
     // lblMembershipID
     //
     this.lblMembershipID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblMembershipID.Location = new System.Drawing.Point(113, 5);
     this.lblMembershipID.Name = "lblMembershipID";
     this.lblMembershipID.Size = new System.Drawing.Size(178, 16);
     this.lblMembershipID.TabIndex = 40;
     this.lblMembershipID.Text = "--";
     //
     // pnlCtrlBarScanner
     //
     this.pnlCtrlBarScanner.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlBarScanner.Controls.Add(this.calcEditQty);
     this.pnlCtrlBarScanner.Controls.Add(this.Label12);
     this.pnlCtrlBarScanner.Controls.Add(this.txtScannedCode);
     this.pnlCtrlBarScanner.Controls.Add(this.Label11);
     this.pnlCtrlBarScanner.Controls.Add(this.btnEnter);
     this.pnlCtrlBarScanner.Location = new System.Drawing.Point(7, 241);
     this.pnlCtrlBarScanner.Name = "pnlCtrlBarScanner";
     this.pnlCtrlBarScanner.Size = new System.Drawing.Size(508, 36);
     this.pnlCtrlBarScanner.TabIndex = 55;
     this.pnlCtrlBarScanner.Visible = false;
     //
     // calcEditQty
     //
     this.calcEditQty.Location = new System.Drawing.Point(382, 4);
     this.calcEditQty.Name = "calcEditQty";
     this.calcEditQty.Properties.AutoHeight = false;
     this.calcEditQty.Properties.Precision = 0;
     this.calcEditQty.Size = new System.Drawing.Size(64, 28);
     this.calcEditQty.TabIndex = 52;
     this.calcEditQty.KeyDown += new System.Windows.Forms.KeyEventHandler(this.calcEditQty_KeyDown);
     //
     // Label12
     //
     this.Label12.AutoSize = true;
     this.Label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Label12.Location = new System.Drawing.Point(350, 12);
     this.Label12.Name = "Label12";
     this.Label12.Size = new System.Drawing.Size(32, 13);
     this.Label12.TabIndex = 49;
     this.Label12.Text = "QTY";
     //
     // txtScannedCode
     //
     this.txtScannedCode.EditValue = "";
     this.txtScannedCode.Location = new System.Drawing.Point(114, 4);
     this.txtScannedCode.Name = "txtScannedCode";
     this.txtScannedCode.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtScannedCode.Properties.Appearance.Options.UseFont = true;
     this.txtScannedCode.Size = new System.Drawing.Size(226, 29);
     this.txtScannedCode.TabIndex = 48;
     this.txtScannedCode.EditValueChanged += new System.EventHandler(this.txtScannedCode_EditValueChanged);
     this.txtScannedCode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtScannedCode_KeyDown);
     //
     // Label11
     //
     this.Label11.AutoSize = true;
     this.Label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Label11.Location = new System.Drawing.Point(4, 12);
     this.Label11.Name = "Label11";
     this.Label11.Size = new System.Drawing.Size(112, 13);
     this.Label11.TabIndex = 47;
     this.Label11.Text = "SCAN ITEM CODE";
     //
     // btnEnter
     //
     this.btnEnter.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnEnter.Appearance.Options.UseFont = true;
     this.btnEnter.Appearance.Options.UseTextOptions = true;
     this.btnEnter.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnEnter.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnEnter.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnEnter.ImageIndex = 6;
     this.btnEnter.ImageList = this.imageList1;
     this.btnEnter.Location = new System.Drawing.Point(454, 4);
     this.btnEnter.Name = "btnEnter";
     this.btnEnter.Size = new System.Drawing.Size(30, 30);
     this.btnEnter.TabIndex = 51;
     this.btnEnter.Click += new System.EventHandler(this.btnEnter_Click);
     //
     // panelControl1
     //
     this.panelControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.panelControl1.Appearance.Options.UseBackColor = true;
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.btnF9);
     this.panelControl1.Controls.Add(this.btnF8);
     this.panelControl1.Controls.Add(this.btnF7);
     this.panelControl1.Controls.Add(this.btnF6);
     this.panelControl1.Controls.Add(this.btnF5);
     this.panelControl1.Controls.Add(this.btnF4);
     this.panelControl1.Controls.Add(this.btnF3);
     this.panelControl1.Controls.Add(this.btnF2);
     this.panelControl1.Controls.Add(this.btnF1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(182, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(848, 113);
     this.panelControl1.TabIndex = 47;
     //
     // btnF9
     //
     this.btnF9.Appearance.Font = new System.Drawing.Font("Tahoma", 14.35F, System.Drawing.FontStyle.Bold);
     this.btnF9.Appearance.Options.UseFont = true;
     this.btnF9.Location = new System.Drawing.Point(5, 76);
     this.btnF9.Name = "btnF9";
     this.btnF9.Size = new System.Drawing.Size(190, 32);
     this.btnF9.TabIndex = 48;
     this.btnF9.Text = "F9-Convert";
     this.btnF9.Click += new System.EventHandler(this.btnF9_Click);
     //
     // btnF8
     //
     this.btnF8.Appearance.Font = new System.Drawing.Font("Tahoma", 14.35F, System.Drawing.FontStyle.Bold);
     this.btnF8.Appearance.Options.UseFont = true;
     this.btnF8.Location = new System.Drawing.Point(608, 40);
     this.btnF8.Name = "btnF8";
     this.btnF8.Size = new System.Drawing.Size(190, 32);
     this.btnF8.TabIndex = 47;
     this.btnF8.Text = "F8-Cancel";
     this.btnF8.Click += new System.EventHandler(this.btnF8_Click);
     //
     // btnF7
     //
     this.btnF7.Appearance.Font = new System.Drawing.Font("Tahoma", 14.35F, System.Drawing.FontStyle.Bold);
     this.btnF7.Appearance.Options.UseFont = true;
     this.btnF7.Location = new System.Drawing.Point(406, 40);
     this.btnF7.Name = "btnF7";
     this.btnF7.Size = new System.Drawing.Size(190, 32);
     this.btnF7.TabIndex = 46;
     this.btnF7.Text = "F7-Tender";
     this.btnF7.Click += new System.EventHandler(this.btnF7_Click);
     //
     // btnF6
     //
     this.btnF6.Appearance.Font = new System.Drawing.Font("Tahoma", 14.35F, System.Drawing.FontStyle.Bold);
     this.btnF6.Appearance.Options.UseFont = true;
     this.btnF6.Location = new System.Drawing.Point(206, 40);
     this.btnF6.Name = "btnF6";
     this.btnF6.Size = new System.Drawing.Size(190, 32);
     this.btnF6.TabIndex = 45;
     this.btnF6.Text = "F6-IPP";
     this.btnF6.Click += new System.EventHandler(this.btnF6_Click);
     //
     // btnF5
     //
     this.btnF5.Appearance.Font = new System.Drawing.Font("Tahoma", 14.35F, System.Drawing.FontStyle.Bold);
     this.btnF5.Appearance.Options.UseFont = true;
     this.btnF5.Location = new System.Drawing.Point(5, 40);
     this.btnF5.Name = "btnF5";
     this.btnF5.Size = new System.Drawing.Size(190, 32);
     this.btnF5.TabIndex = 44;
     this.btnF5.Text = "F5-Rewards";
     this.btnF5.Click += new System.EventHandler(this.btnF5_Click);
     //
     // btnF4
     //
     this.btnF4.Appearance.Font = new System.Drawing.Font("Tahoma", 14.35F, System.Drawing.FontStyle.Bold);
     this.btnF4.Appearance.Options.UseFont = true;
     this.btnF4.Location = new System.Drawing.Point(608, 4);
     this.btnF4.Name = "btnF4";
     this.btnF4.Size = new System.Drawing.Size(190, 32);
     this.btnF4.TabIndex = 43;
     this.btnF4.Text = "F4-Bill Freebie";
     this.btnF4.Click += new System.EventHandler(this.btnF4_Click);
     //
     // btnF3
     //
     this.btnF3.Appearance.Font = new System.Drawing.Font("Tahoma", 14.35F, System.Drawing.FontStyle.Bold);
     this.btnF3.Appearance.Options.UseFont = true;
     this.btnF3.Location = new System.Drawing.Point(406, 4);
     this.btnF3.Name = "btnF3";
     this.btnF3.Size = new System.Drawing.Size(190, 32);
     this.btnF3.TabIndex = 42;
     this.btnF3.Text = "F3-Bill Discount";
     this.btnF3.Click += new System.EventHandler(this.btnF3_Click);
     //
     // btnF2
     //
     this.btnF2.Appearance.Font = new System.Drawing.Font("Tahoma", 14.35F, System.Drawing.FontStyle.Bold);
     this.btnF2.Appearance.Options.UseFont = true;
     this.btnF2.Location = new System.Drawing.Point(206, 4);
     this.btnF2.Name = "btnF2";
     this.btnF2.Size = new System.Drawing.Size(190, 32);
     this.btnF2.TabIndex = 41;
     this.btnF2.Text = "F2-Sales ID";
     this.btnF2.Click += new System.EventHandler(this.btnF2_Click);
     //
     // btnF1
     //
     this.btnF1.Appearance.Font = new System.Drawing.Font("Tahoma", 14.35F, System.Drawing.FontStyle.Bold);
     this.btnF1.Appearance.Options.UseFont = true;
     this.btnF1.Location = new System.Drawing.Point(5, 4);
     this.btnF1.Name = "btnF1";
     this.btnF1.Size = new System.Drawing.Size(190, 32);
     this.btnF1.TabIndex = 40;
     this.btnF1.Text = "F1-Item Discount";
     this.btnF1.Click += new System.EventHandler(this.btnF1_Click);
     //
     // splitterControl1
     //
     this.splitterControl1.Location = new System.Drawing.Point(176, 0);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(6, 387);
     this.splitterControl1.TabIndex = 46;
     this.splitterControl1.TabStop = false;
     //
     // pnlLeft
     //
     this.pnlLeft.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlLeft.Controls.Add(this.NavBarControl1);
     this.pnlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.pnlLeft.Location = new System.Drawing.Point(0, 0);
     this.pnlLeft.Name = "pnlLeft";
     this.pnlLeft.Size = new System.Drawing.Size(176, 387);
     this.pnlLeft.TabIndex = 45;
     //
     // NavBarControl1
     //
     this.NavBarControl1.ActiveGroup = this.nbgPackage;
     this.NavBarControl1.Appearance.Background.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.NavBarControl1.Appearance.Background.Options.UseFont = true;
     this.NavBarControl1.Appearance.Background.Options.UseTextOptions = true;
     this.NavBarControl1.Appearance.Background.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.NavBarControl1.Appearance.Background.TextOptions.Trimming = DevExpress.Utils.Trimming.Word;
     this.NavBarControl1.Appearance.Background.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.NavBarControl1.Appearance.Background.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.NavBarControl1.Appearance.Item.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.NavBarControl1.Appearance.Item.Options.UseFont = true;
     this.NavBarControl1.Appearance.ItemActive.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.NavBarControl1.Appearance.ItemActive.Options.UseFont = true;
     this.NavBarControl1.ContentButtonHint = null;
     this.NavBarControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.NavBarControl1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.NavBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.nbgPackage,
     this.nbgProduct,
     this.nbgMiscellaneous});
     this.NavBarControl1.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
     this.nbiPackage001,
     this.nbiPackage002,
     this.nbiPackage003,
     this.nbiPackage004,
     this.nbiPackage005,
     this.nbiPackage006,
     this.nbiPackage007,
     this.nbiPackage008,
     this.nbiPackage009,
     this.nbiPackage010,
     this.nbiPackage011,
     this.nbiPackage012,
     this.nbiProduct001,
     this.nbiProduct002,
     this.nbiMiscellaneous001,
     this.nbiMiscellaneous002,
     this.nbiMiscellaneous004,
     this.nbiMiscellaneous005,
     this.nbiMiscellaneous006,
     this.nbiMiscellaneous007,
     this.nbiMiscellaneous008,
     this.nbiMiscellaneous009,
     this.navGiro,
     this.navBarItem1,
     this.navDeposit,
     this.navSpaGiro,
     this.navBarMaintainSpaGiro,
     this.navConvertSpa,
     this.nbiPackage036,
     this.nbiPackage037});
     this.NavBarControl1.Location = new System.Drawing.Point(0, 0);
     this.NavBarControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.NavBarControl1.Name = "NavBarControl1";
     this.NavBarControl1.OptionsNavPane.ExpandedWidth = 176;
     this.NavBarControl1.Size = new System.Drawing.Size(176, 387);
     this.NavBarControl1.StoreDefaultPaintStyleName = true;
     this.NavBarControl1.TabIndex = 44;
     this.NavBarControl1.Text = "MANTAIN GIROPKG  ";
     this.NavBarControl1.Click += new System.EventHandler(this.NavBarControl1_Click);
     //
     // nbgPackage
     //
     this.nbgPackage.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.nbgPackage.Appearance.Options.UseFont = true;
     this.nbgPackage.Caption = "PACKAGE";
     this.nbgPackage.Expanded = true;
     this.nbgPackage.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPackage001),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPackage002),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPackage003),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPackage004),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPackage005),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPackage006),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPackage007),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPackage008),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPackage009),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPackage010),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPackage011),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPackage012),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPackage036),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiPackage037),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navGiro),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navSpaGiro),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navConvertSpa)});
     this.nbgPackage.Name = "nbgPackage";
     this.nbgPackage.TopVisibleLinkIndex = 6;
     //
     // nbiPackage001
     //
     this.nbiPackage001.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.nbiPackage001.Appearance.Options.UseFont = true;
     this.nbiPackage001.Caption = "FITNESS PKG";
     this.nbiPackage001.Name = "nbiPackage001";
     this.nbiPackage001.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPackage001_LinkClicked_1);
     //
     // nbiPackage002
     //
     this.nbiPackage002.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.nbiPackage002.Appearance.Options.UseFont = true;
     this.nbiPackage002.Caption = "FITNESS GIRO";
     this.nbiPackage002.Name = "nbiPackage002";
     this.nbiPackage002.Visible = false;
     this.nbiPackage002.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPackage002_LinkClicked);
     //
     // nbiPackage003
     //
     this.nbiPackage003.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.nbiPackage003.Appearance.Options.UseFont = true;
     this.nbiPackage003.Caption = "PT PKG";
     this.nbiPackage003.Name = "nbiPackage003";
     this.nbiPackage003.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPackage003_LinkClicked);
     //
     // nbiPackage004
     //
     this.nbiPackage004.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.nbiPackage004.Appearance.Options.UseFont = true;
     this.nbiPackage004.Caption = "SPA SINGLE TX";
     this.nbiPackage004.Name = "nbiPackage004";
     this.nbiPackage004.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPackage004_LinkClicked);
     //
     // nbiPackage005
     //
     this.nbiPackage005.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiPackage005.Appearance.Options.UseFont = true;
     this.nbiPackage005.Caption = "SPA PKG";
     this.nbiPackage005.Name = "nbiPackage005";
     this.nbiPackage005.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPackage005_LinkClicked);
     //
     // nbiPackage006
     //
     this.nbiPackage006.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiPackage006.Appearance.Options.UseFont = true;
     this.nbiPackage006.Caption = "IPL PKG";
     this.nbiPackage006.Name = "nbiPackage006";
     this.nbiPackage006.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPackage006_LinkClicked);
     //
     // nbiPackage007
     //
     this.nbiPackage007.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiPackage007.Appearance.Options.UseFont = true;
     this.nbiPackage007.Caption = "SPA CREDIT";
     this.nbiPackage007.Name = "nbiPackage007";
     this.nbiPackage007.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPackage007_LinkClicked);
     //
     // nbiPackage008
     //
     this.nbiPackage008.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiPackage008.Appearance.Options.UseFont = true;
     this.nbiPackage008.Appearance.Options.UseTextOptions = true;
     this.nbiPackage008.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.nbiPackage008.Caption = "FITNESS COMBO PKG";
     this.nbiPackage008.Name = "nbiPackage008";
     this.nbiPackage008.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPackage008_LinkClicked);
     //
     // nbiPackage009
     //
     this.nbiPackage009.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiPackage009.Appearance.Options.UseFont = true;
     this.nbiPackage009.Appearance.Options.UseTextOptions = true;
     this.nbiPackage009.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.nbiPackage009.Caption = "SPA COMBO PKG";
     this.nbiPackage009.Name = "nbiPackage009";
     this.nbiPackage009.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPackage009_LinkClicked);
     //
     // nbiPackage010
     //
     this.nbiPackage010.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiPackage010.Appearance.Options.UseFont = true;
     this.nbiPackage010.Caption = "UPGRADE PKG";
     this.nbiPackage010.Name = "nbiPackage010";
     this.nbiPackage010.Visible = false;
     this.nbiPackage010.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPackage010_LinkClicked);
     //
     // nbiPackage011
     //
     this.nbiPackage011.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiPackage011.Appearance.Options.UseFont = true;
     this.nbiPackage011.Caption = "TOP-UP SINGLE TREATMENT";
     this.nbiPackage011.Name = "nbiPackage011";
     this.nbiPackage011.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPackage011_LinkClicked);
     //
     // nbiPackage012
     //
     this.nbiPackage012.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiPackage012.Appearance.Options.UseFont = true;
     this.nbiPackage012.Caption = "TOP-UP SPA CREDIT";
     this.nbiPackage012.Name = "nbiPackage012";
     this.nbiPackage012.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPackage012_LinkClicked);
     //
     // nbiPackage036
     //
     this.nbiPackage036.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiPackage036.Appearance.Options.UseFont = true;
     this.nbiPackage036.Caption = "HOLISTIC FITNESS CREDIT";
     this.nbiPackage036.Name = "nbiPackage036";
     this.nbiPackage036.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPackage036_LinkClicked);
     //
     // nbiPackage037
     //
     this.nbiPackage037.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiPackage037.Appearance.Options.UseFont = true;
     this.nbiPackage037.Caption = "HOLISTIC SPA CREDIT";
     this.nbiPackage037.Name = "nbiPackage037";
     this.nbiPackage037.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiPackage037_LinkClicked);
     //
     // navGiro
     //
     this.navGiro.Caption = "GIRO PKG";
     this.navGiro.Name = "navGiro";
     this.navGiro.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navGiro_LinkClicked);
     //
     // navSpaGiro
     //
     this.navSpaGiro.Caption = "SPA GIRO";
     this.navSpaGiro.Name = "navSpaGiro";
     this.navSpaGiro.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navSpaGiro_LinkClicked);
     //
     // navConvertSpa
     //
     this.navConvertSpa.Caption = "CONVERT SPA PKG";
     this.navConvertSpa.Name = "navConvertSpa";
     this.navConvertSpa.Visible = false;
     this.navConvertSpa.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navConvertSpa_LinkClicked);
     //
     // nbgProduct
     //
     this.nbgProduct.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.nbgProduct.Appearance.Options.UseFont = true;
     this.nbgProduct.AppearanceBackground.Font = new System.Drawing.Font("Tahoma", 14.25F);
     this.nbgProduct.AppearanceBackground.Options.UseFont = true;
     this.nbgProduct.Caption = "PRODUCT";
     this.nbgProduct.Expanded = true;
     this.nbgProduct.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiProduct001),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiProduct002)});
     this.nbgProduct.Name = "nbgProduct";
     //
     // nbiProduct001
     //
     this.nbiProduct001.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.nbiProduct001.Appearance.Options.UseFont = true;
     this.nbiProduct001.Caption = "FITNESS PRODUCT";
     this.nbiProduct001.Name = "nbiProduct001";
     this.nbiProduct001.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiProduct001_LinkClicked);
     //
     // nbiProduct002
     //
     this.nbiProduct002.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.nbiProduct002.Appearance.Options.UseFont = true;
     this.nbiProduct002.Caption = "SPA PRODUCT";
     this.nbiProduct002.Name = "nbiProduct002";
     this.nbiProduct002.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiProduct002_LinkClicked);
     //
     // nbgMiscellaneous
     //
     this.nbgMiscellaneous.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.nbgMiscellaneous.Appearance.Options.UseFont = true;
     this.nbgMiscellaneous.Caption = "MISCELLANEOUS";
     this.nbgMiscellaneous.Expanded = true;
     this.nbgMiscellaneous.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiMiscellaneous009),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiMiscellaneous001),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiMiscellaneous002),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiMiscellaneous004),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiMiscellaneous005),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiMiscellaneous006),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiMiscellaneous007),
     new DevExpress.XtraNavBar.NavBarItemLink(this.nbiMiscellaneous008),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem1),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navBarMaintainSpaGiro),
     new DevExpress.XtraNavBar.NavBarItemLink(this.navDeposit)});
     this.nbgMiscellaneous.Name = "nbgMiscellaneous";
     //
     // nbiMiscellaneous001
     //
     this.nbiMiscellaneous001.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.nbiMiscellaneous001.Appearance.Options.UseFont = true;
     this.nbiMiscellaneous001.Appearance.Options.UseTextOptions = true;
     this.nbiMiscellaneous001.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.nbiMiscellaneous001.Caption = "COURSES & EVENTS";
     this.nbiMiscellaneous001.Name = "nbiMiscellaneous001";
     this.nbiMiscellaneous001.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiMiscellaneous001_LinkClicked);
     //
     // nbiMiscellaneous002
     //
     this.nbiMiscellaneous002.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiMiscellaneous002.Appearance.Options.UseFont = true;
     this.nbiMiscellaneous002.Appearance.Options.UseTextOptions = true;
     this.nbiMiscellaneous002.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.nbiMiscellaneous002.Caption = "LOCKER RENTAL";
     this.nbiMiscellaneous002.Name = "nbiMiscellaneous002";
     this.nbiMiscellaneous002.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiMiscellaneous002_LinkClicked);
     //
     // nbiMiscellaneous004
     //
     this.nbiMiscellaneous004.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiMiscellaneous004.Appearance.Options.UseFont = true;
     this.nbiMiscellaneous004.Appearance.Options.UseTextOptions = true;
     this.nbiMiscellaneous004.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.nbiMiscellaneous004.Caption = "FORGET CARD";
     this.nbiMiscellaneous004.Name = "nbiMiscellaneous004";
     this.nbiMiscellaneous004.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiMiscellaneous004_LinkClicked);
     //
     // nbiMiscellaneous005
     //
     this.nbiMiscellaneous005.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiMiscellaneous005.Appearance.Options.UseFont = true;
     this.nbiMiscellaneous005.Appearance.Options.UseTextOptions = true;
     this.nbiMiscellaneous005.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.nbiMiscellaneous005.Caption = "LOST CARD";
     this.nbiMiscellaneous005.Name = "nbiMiscellaneous005";
     this.nbiMiscellaneous005.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiMiscellaneous005_LinkClicked);
     //
     // nbiMiscellaneous006
     //
     this.nbiMiscellaneous006.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiMiscellaneous006.Appearance.Options.UseFont = true;
     this.nbiMiscellaneous006.Appearance.Options.UseTextOptions = true;
     this.nbiMiscellaneous006.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.nbiMiscellaneous006.Caption = "MINERAL WATER";
     this.nbiMiscellaneous006.Name = "nbiMiscellaneous006";
     this.nbiMiscellaneous006.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiMiscellaneous006_LinkClicked);
     //
     // nbiMiscellaneous007
     //
     this.nbiMiscellaneous007.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiMiscellaneous007.Appearance.Options.UseFont = true;
     this.nbiMiscellaneous007.Appearance.Options.UseTextOptions = true;
     this.nbiMiscellaneous007.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.nbiMiscellaneous007.Caption = "OTHERS";
     this.nbiMiscellaneous007.Name = "nbiMiscellaneous007";
     this.nbiMiscellaneous007.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiMiscellaneous007_LinkClicked);
     //
     // nbiMiscellaneous008
     //
     this.nbiMiscellaneous008.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiMiscellaneous008.Appearance.Options.UseFont = true;
     this.nbiMiscellaneous008.Appearance.Options.UseTextOptions = true;
     this.nbiMiscellaneous008.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.nbiMiscellaneous008.Caption = "PAY OUTSTANDING";
     this.nbiMiscellaneous008.Name = "nbiMiscellaneous008";
     this.nbiMiscellaneous008.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiMiscellaneous008_LinkClicked);
     //
     // nbiMiscellaneous009
     //
     this.nbiMiscellaneous009.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.nbiMiscellaneous009.Appearance.Options.UseFont = true;
     this.nbiMiscellaneous009.Appearance.Options.UseTextOptions = true;
     this.nbiMiscellaneous009.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.nbiMiscellaneous009.Caption = "CASH VOUCHER";
     this.nbiMiscellaneous009.Name = "nbiMiscellaneous009";
     this.nbiMiscellaneous009.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.nbiMiscellaneous009_LinkClicked);
     //
     // navBarItem1
     //
     this.navBarItem1.Caption = "MAINTAIN GIRO PKG";
     this.navBarItem1.Name = "navBarItem1";
     this.navBarItem1.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem1_LinkClicked);
     //
     // navBarMaintainSpaGiro
     //
     this.navBarMaintainSpaGiro.Caption = "MAINTAIN SPA GIRO";
     this.navBarMaintainSpaGiro.Name = "navBarMaintainSpaGiro";
     this.navBarMaintainSpaGiro.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarMaintainSpaGiro_LinkClicked);
     //
     // navDeposit
     //
     this.navDeposit.Caption = "DEPOSIT";
     this.navDeposit.Name = "navDeposit";
     this.navDeposit.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navDeposit_LinkClicked);
     //
     // pnlGrid
     //
     this.pnlGrid.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlGrid.Controls.Add(this.gridItem);
     this.pnlGrid.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlGrid.Location = new System.Drawing.Point(0, 387);
     this.pnlGrid.Name = "pnlGrid";
     this.pnlGrid.Size = new System.Drawing.Size(1030, 355);
     this.pnlGrid.TabIndex = 1;
     //
     // gridItem
     //
     this.gridItem.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridItem.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridItem.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridItem.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridItem.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridItem.Location = new System.Drawing.Point(0, 0);
     this.gridItem.MainView = this.GridView1;
     this.gridItem.Name = "gridItem";
     this.gridItem.Size = new System.Drawing.Size(990, 269);
     this.gridItem.TabIndex = 40;
     this.gridItem.UseEmbeddedNavigator = true;
     this.gridItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.GridView1});
     //
     // GridView1
     //
     this.GridView1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.GridView1.ColumnPanelRowHeight = 25;
     this.GridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnStrCode,
     this.gridColumnDesc,
     this.gridColumnListPrice,
     this.gridColumn8,
     this.gridColumnQty,
     this.gridColumnDiscountCode,
     this.gridColumnDiscountAmt,
     this.gridColumnFreebieCode,
     this.gridColumnSubTotal,
     this.gridColumnExchange,
     this.gridColumnBillDiscount});
     this.GridView1.CustomizationFormBounds = new System.Drawing.Rectangle(322, 464, 208, 156);
     this.GridView1.GridControl = this.gridItem;
     this.GridView1.Name = "GridView1";
     this.GridView1.RowHeight = 25;
     //
     // gridColumnStrCode
     //
     this.gridColumnStrCode.Caption = "Code";
     this.gridColumnStrCode.FieldName = "strCode";
     this.gridColumnStrCode.Name = "gridColumnStrCode";
     this.gridColumnStrCode.OptionsColumn.AllowEdit = false;
     this.gridColumnStrCode.OptionsFilter.AllowFilter = false;
     this.gridColumnStrCode.Visible = true;
     this.gridColumnStrCode.VisibleIndex = 0;
     this.gridColumnStrCode.Width = 104;
     //
     // gridColumnDesc
     //
     this.gridColumnDesc.Caption = "Description";
     this.gridColumnDesc.FieldName = "strDescription";
     this.gridColumnDesc.Name = "gridColumnDesc";
     this.gridColumnDesc.OptionsColumn.AllowEdit = false;
     this.gridColumnDesc.OptionsFilter.AllowFilter = false;
     this.gridColumnDesc.Visible = true;
     this.gridColumnDesc.VisibleIndex = 1;
     this.gridColumnDesc.Width = 166;
     //
     // gridColumnListPrice
     //
     this.gridColumnListPrice.Caption = "List Price";
     this.gridColumnListPrice.DisplayFormat.FormatString = "n2";
     this.gridColumnListPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnListPrice.FieldName = "mUnitPrice";
     this.gridColumnListPrice.Name = "gridColumnListPrice";
     this.gridColumnListPrice.OptionsColumn.AllowEdit = false;
     this.gridColumnListPrice.OptionsFilter.AllowFilter = false;
     this.gridColumnListPrice.Visible = true;
     this.gridColumnListPrice.VisibleIndex = 2;
     this.gridColumnListPrice.Width = 98;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Old Package Price";
     this.gridColumn8.FieldName = "OldPackagePrice";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Width = 101;
     //
     // gridColumnQty
     //
     this.gridColumnQty.Caption = "Quantity";
     this.gridColumnQty.FieldName = "nQuantity";
     this.gridColumnQty.Name = "gridColumnQty";
     this.gridColumnQty.OptionsFilter.AllowFilter = false;
     this.gridColumnQty.Visible = true;
     this.gridColumnQty.VisibleIndex = 3;
     this.gridColumnQty.Width = 58;
     //
     // gridColumnDiscountCode
     //
     this.gridColumnDiscountCode.Caption = "Discount Code";
     this.gridColumnDiscountCode.FieldName = "strDiscountCode";
     this.gridColumnDiscountCode.Name = "gridColumnDiscountCode";
     this.gridColumnDiscountCode.OptionsColumn.AllowEdit = false;
     this.gridColumnDiscountCode.OptionsFilter.AllowFilter = false;
     this.gridColumnDiscountCode.Visible = true;
     this.gridColumnDiscountCode.VisibleIndex = 4;
     this.gridColumnDiscountCode.Width = 82;
     //
     // gridColumnDiscountAmt
     //
     this.gridColumnDiscountAmt.Caption = "Discount Amt";
     this.gridColumnDiscountAmt.DisplayFormat.FormatString = "n2";
     this.gridColumnDiscountAmt.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnDiscountAmt.FieldName = "DiscountAmt";
     this.gridColumnDiscountAmt.Name = "gridColumnDiscountAmt";
     this.gridColumnDiscountAmt.OptionsColumn.AllowEdit = false;
     this.gridColumnDiscountAmt.OptionsFilter.AllowFilter = false;
     this.gridColumnDiscountAmt.Visible = true;
     this.gridColumnDiscountAmt.VisibleIndex = 5;
     this.gridColumnDiscountAmt.Width = 84;
     //
     // gridColumnFreebieCode
     //
     this.gridColumnFreebieCode.Caption = "Freebie Code";
     this.gridColumnFreebieCode.FieldName = "strFreebieCode";
     this.gridColumnFreebieCode.Name = "gridColumnFreebieCode";
     this.gridColumnFreebieCode.OptionsColumn.AllowEdit = false;
     this.gridColumnFreebieCode.OptionsFilter.AllowFilter = false;
     this.gridColumnFreebieCode.Visible = true;
     this.gridColumnFreebieCode.VisibleIndex = 6;
     this.gridColumnFreebieCode.Width = 108;
     //
     // gridColumnSubTotal
     //
     this.gridColumnSubTotal.Caption = "SubTotal";
     this.gridColumnSubTotal.DisplayFormat.FormatString = "n2";
     this.gridColumnSubTotal.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnSubTotal.FieldName = "mSubTotal";
     this.gridColumnSubTotal.Name = "gridColumnSubTotal";
     this.gridColumnSubTotal.OptionsColumn.AllowEdit = false;
     this.gridColumnSubTotal.OptionsFilter.AllowFilter = false;
     this.gridColumnSubTotal.Visible = true;
     this.gridColumnSubTotal.VisibleIndex = 7;
     this.gridColumnSubTotal.Width = 95;
     //
     // gridColumnExchange
     //
     this.gridColumnExchange.Caption = "Item Ref";
     this.gridColumnExchange.FieldName = "strReferenceNo";
     this.gridColumnExchange.Name = "gridColumnExchange";
     this.gridColumnExchange.OptionsFilter.AllowFilter = false;
     this.gridColumnExchange.Visible = true;
     this.gridColumnExchange.VisibleIndex = 8;
     this.gridColumnExchange.Width = 86;
     //
     // gridColumnBillDiscount
     //
     this.gridColumnBillDiscount.Caption = "Bill Ref";
     this.gridColumnBillDiscount.FieldName = "strBillReferenceNo";
     this.gridColumnBillDiscount.Name = "gridColumnBillDiscount";
     this.gridColumnBillDiscount.OptionsFilter.AllowFilter = false;
     this.gridColumnBillDiscount.Visible = true;
     this.gridColumnBillDiscount.VisibleIndex = 9;
     this.gridColumnBillDiscount.Width = 88;
     //
     // FormPOS2
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(1030, 742);
     this.Controls.Add(this.pnlGrid);
     this.Controls.Add(this.pnlTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview = true;
     this.MinimizeBox = false;
     this.Name = "FormPOS2";
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "ACMS POS";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FormPOS2_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.pnlTop)).EndInit();
     this.pnlTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl1)).EndInit();
     this.GroupControl1.ResumeLayout(false);
     this.GroupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl2)).EndInit();
     this.GroupControl2.ResumeLayout(false);
     this.GroupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
     this.groupControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBarScanner)).EndInit();
     this.pnlCtrlBarScanner.ResumeLayout(false);
     this.pnlCtrlBarScanner.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.calcEditQty.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtScannedCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlLeft)).EndInit();
     this.pnlLeft.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.NavBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlGrid)).EndInit();
     this.pnlGrid.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView1)).EndInit();
     this.ResumeLayout(false);
 }
Пример #27
0
 void Editor_Enter(object sender, EventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit editor = (DevExpress.XtraEditors.CalcEdit)sender;
     editor.Value = (decimal)factura.Saldo.GetValueOrDefault();
     editor.SelectAll();
 }
Пример #28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pnlCtrlTop              = new DevExpress.XtraEditors.PanelControl();
     this.calcEdit1               = new DevExpress.XtraEditors.CalcEdit();
     this.label1                  = new System.Windows.Forms.Label();
     this.pnlCtrlCenter           = new DevExpress.XtraEditors.PanelControl();
     this.gridControl1            = new DevExpress.XtraGrid.GridControl();
     this.gridView1               = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn7             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlCtrlBottom           = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel      = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK          = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).BeginInit();
     this.pnlCtrlTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).BeginInit();
     this.pnlCtrlCenter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).BeginInit();
     this.pnlCtrlBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlCtrlTop
     //
     this.pnlCtrlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlTop.Controls.Add(this.calcEdit1);
     this.pnlCtrlTop.Controls.Add(this.label1);
     this.pnlCtrlTop.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pnlCtrlTop.Location = new System.Drawing.Point(0, 0);
     this.pnlCtrlTop.Name     = "pnlCtrlTop";
     this.pnlCtrlTop.Size     = new System.Drawing.Size(590, 36);
     this.pnlCtrlTop.TabIndex = 0;
     this.pnlCtrlTop.Text     = "panelControl1";
     //
     // calcEdit1
     //
     this.calcEdit1.Location = new System.Drawing.Point(234, 8);
     this.calcEdit1.Name     = "calcEdit1";
     //
     // calcEdit1.Properties
     //
     this.calcEdit1.Properties.Mask.EditMask = "d2";
     this.calcEdit1.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.calcEdit1.Properties.MaxLength = 3;
     this.calcEdit1.Properties.Precision = 0;
     this.calcEdit1.Size     = new System.Drawing.Size(106, 20);
     this.calcEdit1.TabIndex = 1;
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(18, 6);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(208, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Month(s) To Rent:";
     //
     // pnlCtrlCenter
     //
     this.pnlCtrlCenter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlCenter.Controls.Add(this.gridControl1);
     this.pnlCtrlCenter.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlCtrlCenter.Location = new System.Drawing.Point(0, 36);
     this.pnlCtrlCenter.Name     = "pnlCtrlCenter";
     this.pnlCtrlCenter.Size     = new System.Drawing.Size(590, 216);
     this.pnlCtrlCenter.TabIndex = 1;
     this.pnlCtrlCenter.Text     = "panelControl2";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemDateEdit1
     });
     this.gridControl1.Size     = new System.Drawing.Size(590, 216);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumn4,
         this.gridColumn5,
         this.gridColumn6,
         this.gridColumn7
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption   = "Branch Code";
     this.gridColumn1.FieldName = "strBranchCode";
     this.gridColumn1.Name      = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit   = false;
     this.gridColumn1.OptionsFilter.AllowFilter = false;
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width        = 93;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption   = "Locker No";
     this.gridColumn2.FieldName = "nLockerNo";
     this.gridColumn2.Name      = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit   = false;
     this.gridColumn2.OptionsFilter.AllowFilter = false;
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width        = 74;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption   = "Membership ID";
     this.gridColumn3.FieldName = "strMembershipID";
     this.gridColumn3.Name      = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn3.OptionsFilter.AllowFilter             = false;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption   = "Receipt No";
     this.gridColumn4.FieldName = "strReceiptNo";
     this.gridColumn4.Name      = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit   = false;
     this.gridColumn4.OptionsFilter.AllowFilter = false;
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width        = 113;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption   = "Status ID";
     this.gridColumn5.FieldName = "nStatusID";
     this.gridColumn5.Name      = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn5.OptionsFilter.AllowFilter             = false;
     this.gridColumn5.Width = 112;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption    = "Expiry Date";
     this.gridColumn6.ColumnEdit = this.repositoryItemDateEdit1;
     this.gridColumn6.FieldName  = "dtExpiry";
     this.gridColumn6.Name       = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit   = false;
     this.gridColumn6.OptionsFilter.AllowFilter = false;
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 3;
     this.gridColumn6.Width        = 114;
     //
     // repositoryItemDateEdit1
     //
     this.repositoryItemDateEdit1.AutoHeight = false;
     this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemDateEdit1.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEdit1.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit1.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEdit1.Name          = "repositoryItemDateEdit1";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption   = "Remark";
     this.gridColumn7.FieldName = "strRemarks";
     this.gridColumn7.Name      = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit   = false;
     this.gridColumn7.OptionsFilter.AllowFilter = false;
     this.gridColumn7.Visible      = true;
     this.gridColumn7.VisibleIndex = 4;
     this.gridColumn7.Width        = 182;
     //
     // pnlCtrlBottom
     //
     this.pnlCtrlBottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonCancel);
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonOK);
     this.pnlCtrlBottom.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.pnlCtrlBottom.Location = new System.Drawing.Point(0, 252);
     this.pnlCtrlBottom.Name     = "pnlCtrlBottom";
     this.pnlCtrlBottom.Size     = new System.Drawing.Size(590, 44);
     this.pnlCtrlBottom.TabIndex = 2;
     this.pnlCtrlBottom.Text     = "panelControl3";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(504, 12);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex     = 8;
     this.simpleButtonCancel.Text         = "Cancel";
     this.simpleButtonCancel.Click       += new System.EventHandler(this.simpleButtonCancel_Click);
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(418, 12);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.TabIndex     = 7;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormNewLocker
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(590, 296);
     this.Controls.Add(this.pnlCtrlCenter);
     this.Controls.Add(this.pnlCtrlTop);
     this.Controls.Add(this.pnlCtrlBottom);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormNewLocker";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "New Locker";
     this.Load           += new System.EventHandler(this.FormNew_ExtendLocker_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).EndInit();
     this.pnlCtrlTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.calcEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).EndInit();
     this.pnlCtrlCenter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).EndInit();
     this.pnlCtrlBottom.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #29
0
 void ChequeTextEdit_Validating(object sender, CancelEventArgs e)
 {
     DevExpress.XtraEditors.CalcEdit editor = (DevExpress.XtraEditors.CalcEdit)sender;
     factura.Cheque = (double)editor.Value;
     this.facturaBindingSource.ResetCurrentItem();
 }
Пример #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DivStreamForm));
     this.gridDivs            = new DevExpress.XtraGrid.GridControl();
     this.gridDividends       = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDivDate          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDivAmount        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.label1        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     this.label3        = new System.Windows.Forms.Label();
     this.OK            = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel     = new DevExpress.XtraEditors.SimpleButton();
     this.tbAmount      = new DevExpress.XtraEditors.CalcEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.tbDateStep    = new DevExpress.XtraEditors.TextEdit();
     this.dtDate        = new DevExpress.XtraEditors.DateEdit();
     this.btnAdd        = new DevExpress.XtraEditors.SimpleButton();
     this.btnRemove     = new DevExpress.XtraEditors.SimpleButton();
     this.btnRemoveAll  = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridDivs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDividends)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbDateStep.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridDivs
     //
     this.gridDivs.EmbeddedNavigator.Name = "";
     this.gridDivs.Location = new System.Drawing.Point(8, 121);
     this.gridDivs.MainView = this.gridDividends;
     this.gridDivs.Name     = "gridDivs";
     this.gridDivs.Size     = new System.Drawing.Size(256, 343);
     this.gridDivs.TabIndex = 5;
     this.gridDivs.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridDividends
     });
     //
     // gridDividends
     //
     this.gridDividends.Appearance.ColumnFilterButton.BackColor                    = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.ColumnFilterButton.BorderColor                  = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.ColumnFilterButton.ForeColor                    = System.Drawing.Color.DimGray;
     this.gridDividends.Appearance.ColumnFilterButton.Options.UseBackColor         = true;
     this.gridDividends.Appearance.ColumnFilterButton.Options.UseBorderColor       = true;
     this.gridDividends.Appearance.ColumnFilterButton.Options.UseForeColor         = true;
     this.gridDividends.Appearance.ColumnFilterButtonActive.BackColor              = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.ColumnFilterButtonActive.BorderColor            = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.ColumnFilterButtonActive.ForeColor              = System.Drawing.Color.Gainsboro;
     this.gridDividends.Appearance.ColumnFilterButtonActive.Options.UseBackColor   = true;
     this.gridDividends.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridDividends.Appearance.ColumnFilterButtonActive.Options.UseForeColor   = true;
     this.gridDividends.Appearance.Empty.BackColor                          = System.Drawing.Color.White;
     this.gridDividends.Appearance.Empty.BackColor2                         = System.Drawing.Color.WhiteSmoke;
     this.gridDividends.Appearance.Empty.GradientMode                       = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridDividends.Appearance.Empty.Options.UseBackColor               = true;
     this.gridDividends.Appearance.EvenRow.BackColor                        = System.Drawing.Color.White;
     this.gridDividends.Appearance.EvenRow.Options.UseBackColor             = true;
     this.gridDividends.Appearance.FilterCloseButton.BackColor              = System.Drawing.Color.Gray;
     this.gridDividends.Appearance.FilterCloseButton.BorderColor            = System.Drawing.Color.Gray;
     this.gridDividends.Appearance.FilterCloseButton.Options.UseBackColor   = true;
     this.gridDividends.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridDividends.Appearance.FilterPanel.BackColor                    = System.Drawing.Color.Gray;
     this.gridDividends.Appearance.FilterPanel.ForeColor                    = System.Drawing.Color.Black;
     this.gridDividends.Appearance.FilterPanel.Options.UseBackColor         = true;
     this.gridDividends.Appearance.FilterPanel.Options.UseForeColor         = true;
     this.gridDividends.Appearance.FocusedRow.BackColor                     = System.Drawing.Color.Black;
     this.gridDividends.Appearance.FocusedRow.ForeColor                     = System.Drawing.Color.White;
     this.gridDividends.Appearance.FocusedRow.Options.UseBackColor          = true;
     this.gridDividends.Appearance.FocusedRow.Options.UseForeColor          = true;
     this.gridDividends.Appearance.FooterPanel.BackColor                    = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.FooterPanel.BorderColor                  = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.FooterPanel.Options.UseBackColor         = true;
     this.gridDividends.Appearance.FooterPanel.Options.UseBorderColor       = true;
     this.gridDividends.Appearance.GroupButton.BackColor                    = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupButton.BorderColor                  = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupButton.Options.UseBackColor         = true;
     this.gridDividends.Appearance.GroupButton.Options.UseBorderColor       = true;
     this.gridDividends.Appearance.GroupFooter.BackColor                    = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupFooter.BorderColor                  = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupFooter.Options.UseBackColor         = true;
     this.gridDividends.Appearance.GroupFooter.Options.UseBorderColor       = true;
     this.gridDividends.Appearance.GroupPanel.BackColor                     = System.Drawing.Color.WhiteSmoke;
     this.gridDividends.Appearance.GroupPanel.ForeColor                     = System.Drawing.Color.White;
     this.gridDividends.Appearance.GroupPanel.Options.UseBackColor          = true;
     this.gridDividends.Appearance.GroupPanel.Options.UseForeColor          = true;
     this.gridDividends.Appearance.GroupRow.BackColor                       = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridDividends.Appearance.GroupRow.Options.UseBackColor         = true;
     this.gridDividends.Appearance.GroupRow.Options.UseFont              = true;
     this.gridDividends.Appearance.HeaderPanel.BackColor                 = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.HeaderPanel.BorderColor               = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.HeaderPanel.Options.UseBackColor      = true;
     this.gridDividends.Appearance.HeaderPanel.Options.UseBorderColor    = true;
     this.gridDividends.Appearance.HideSelectionRow.BackColor            = System.Drawing.Color.LightSlateGray;
     this.gridDividends.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridDividends.Appearance.HorzLine.BackColor            = System.Drawing.Color.LightGray;
     this.gridDividends.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridDividends.Appearance.OddRow.BackColor             = System.Drawing.Color.WhiteSmoke;
     this.gridDividends.Appearance.OddRow.Options.UseBackColor  = true;
     this.gridDividends.Appearance.Preview.BackColor            = System.Drawing.Color.Gainsboro;
     this.gridDividends.Appearance.Preview.ForeColor            = System.Drawing.Color.DimGray;
     this.gridDividends.Appearance.Preview.Options.UseBackColor = true;
     this.gridDividends.Appearance.Preview.Options.UseForeColor = true;
     this.gridDividends.Appearance.Row.BackColor                     = System.Drawing.Color.White;
     this.gridDividends.Appearance.Row.Options.UseBackColor          = true;
     this.gridDividends.Appearance.RowSeparator.BackColor            = System.Drawing.Color.DimGray;
     this.gridDividends.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridDividends.Appearance.SelectedRow.BackColor             = System.Drawing.Color.DimGray;
     this.gridDividends.Appearance.SelectedRow.Options.UseBackColor  = true;
     this.gridDividends.Appearance.VertLine.BackColor                = System.Drawing.Color.LightGray;
     this.gridDividends.Appearance.VertLine.Options.UseBackColor     = true;
     this.gridDividends.BestFitMaxRowCount = 10;
     this.gridDividends.BorderStyle        = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.gridDividends.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colDivDate,
         this.colDivAmount
     });
     this.gridDividends.GridControl = this.gridDivs;
     this.gridDividends.Name        = "gridDividends";
     this.gridDividends.OptionsCustomization.AllowColumnMoving = false;
     this.gridDividends.OptionsMenu.EnableColumnMenu           = false;
     this.gridDividends.OptionsView.EnableAppearanceEvenRow    = true;
     this.gridDividends.OptionsView.EnableAppearanceOddRow     = true;
     this.gridDividends.OptionsView.ShowFilterPanel            = false;
     this.gridDividends.OptionsView.ShowGroupPanel             = false;
     this.gridDividends.OptionsView.ShowIndicator = false;
     this.gridDividends.PaintStyleName            = "MixedXP";
     this.gridDividends.ShowButtonMode            = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowForFocusedRow;
     //
     // colDivDate
     //
     this.colDivDate.Caption = "Dates";
     this.colDivDate.Name    = "colDivDate";
     this.colDivDate.OptionsColumn.ShowInCustomizationForm = false;
     this.colDivDate.Visible      = true;
     this.colDivDate.VisibleIndex = 0;
     //
     // colDivAmount
     //
     this.colDivAmount.Caption = "Amounts";
     this.colDivAmount.Name    = "colDivAmount";
     this.colDivAmount.OptionsColumn.ShowInCustomizationForm = false;
     this.colDivAmount.Visible      = true;
     this.colDivAmount.VisibleIndex = 1;
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName          = "Money Twins";
     this.defaultLookAndFeel1.LookAndFeel.Style             = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.defaultLookAndFeel1.LookAndFeel.UseWindowsXPTheme = false;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(79, 28);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(35, 16);
     this.label1.TabIndex = 9;
     this.label1.Text     = "Date:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(50, 51);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(64, 16);
     this.label2.TabIndex = 10;
     this.label2.Text     = "Amount ($):";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 74);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(110, 16);
     this.label3.TabIndex = 14;
     this.label3.Text     = "Add with step (days):";
     //
     // OK
     //
     this.OK.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.OK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.OK.Location     = new System.Drawing.Point(270, 410);
     this.OK.Name         = "OK";
     this.OK.Size         = new System.Drawing.Size(88, 24);
     this.OK.TabIndex     = 9;
     this.OK.Text         = "OK";
     this.OK.Click       += new System.EventHandler(this.OK_Click);
     //
     // btnCancel
     //
     this.btnCancel.ButtonStyle          = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnCancel.DialogResult         = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location             = new System.Drawing.Point(270, 440);
     this.btnCancel.LookAndFeel.SkinName = "Coffee";
     this.btnCancel.LookAndFeel.Style    = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(88, 24);
     this.btnCancel.TabIndex = 10;
     this.btnCancel.Text     = "Cancel";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // tbAmount
     //
     this.tbAmount.EditValue = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.tbAmount.Location = new System.Drawing.Point(122, 51);
     this.tbAmount.Name     = "tbAmount";
     this.tbAmount.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.tbAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.tbAmount.Properties.Mask.EditMask = "c5";
     this.tbAmount.Size     = new System.Drawing.Size(128, 20);
     this.tbAmount.TabIndex = 3;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.tbDateStep);
     this.groupControl1.Controls.Add(this.dtDate);
     this.groupControl1.Controls.Add(this.tbAmount);
     this.groupControl1.Controls.Add(this.label1);
     this.groupControl1.Controls.Add(this.label3);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Location = new System.Drawing.Point(8, 8);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(256, 107);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text     = "Add";
     //
     // tbDateStep
     //
     this.tbDateStep.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.tbDateStep.EditValue = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.tbDateStep.Location = new System.Drawing.Point(121, 77);
     this.tbDateStep.Name     = "tbDateStep";
     this.tbDateStep.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.tbDateStep.Properties.BorderStyle    = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.tbDateStep.Properties.Mask.EditMask  = "d";
     this.tbDateStep.Properties.Mask.MaskType  = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.tbDateStep.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.tbDateStep.Size        = new System.Drawing.Size(130, 20);
     this.tbDateStep.TabIndex    = 4;
     //
     // dtDate
     //
     this.dtDate.EditValue = new System.DateTime(2005, 12, 6, 0, 0, 0, 0);
     this.dtDate.Location  = new System.Drawing.Point(122, 24);
     this.dtDate.Name      = "dtDate";
     this.dtDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.dtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtDate.Size     = new System.Drawing.Size(128, 20);
     this.dtDate.TabIndex = 2;
     //
     // btnAdd
     //
     this.btnAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnAdd.Location    = new System.Drawing.Point(270, 91);
     this.btnAdd.Name        = "btnAdd";
     this.btnAdd.Size        = new System.Drawing.Size(88, 24);
     this.btnAdd.TabIndex    = 6;
     this.btnAdd.Text        = "Add";
     this.btnAdd.Click      += new System.EventHandler(this.btnAdd_Click);
     //
     // btnRemove
     //
     this.btnRemove.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnRemove.Location    = new System.Drawing.Point(270, 121);
     this.btnRemove.Name        = "btnRemove";
     this.btnRemove.Size        = new System.Drawing.Size(88, 24);
     this.btnRemove.TabIndex    = 7;
     this.btnRemove.Text        = "Delete";
     this.btnRemove.Click      += new System.EventHandler(this.btnRemove_Click);
     //
     // btnRemoveAll
     //
     this.btnRemoveAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnRemoveAll.Location    = new System.Drawing.Point(270, 151);
     this.btnRemoveAll.Name        = "btnRemoveAll";
     this.btnRemoveAll.Size        = new System.Drawing.Size(88, 24);
     this.btnRemoveAll.TabIndex    = 8;
     this.btnRemoveAll.Text        = "Delete All";
     this.btnRemoveAll.Click      += new System.EventHandler(this.btnRemoveAll_Click);
     //
     // DivStreamForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.Gainsboro;
     this.ClientSize        = new System.Drawing.Size(365, 472);
     this.Controls.Add(this.btnRemoveAll);
     this.Controls.Add(this.btnRemove);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.OK);
     this.Controls.Add(this.gridDivs);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "DivStreamForm";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Dividend Stream";
     this.Load           += new System.EventHandler(this.DivStreamForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridDivs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDividends)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbDateStep.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Пример #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBienMuc));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteRealy = new DevExpress.XtraEditors.SimpleButton();
     this.btnRestore = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.InPhieu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuInPhieu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.NghiepVu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuNghiepVu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.Duyet = new ProtocolVN.Framework.Win.PLDuyetCombobox();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.label3 = new DevExpress.XtraEditors.LabelControl();
     this.MaBang = new DevExpress.XtraEditors.TextEdit();
     this.label7 = new DevExpress.XtraEditors.LabelControl();
     this.label8 = new DevExpress.XtraEditors.LabelControl();
     this.label11 = new DevExpress.XtraEditors.LabelControl();
     this.LoaiBang = new ProtocolVN.Framework.Win.PLDMGrid();
     this.label13 = new DevExpress.XtraEditors.LabelControl();
     this.ThongSoLoaiBang = new ProtocolVN.Framework.Win.PLDMGrid();
     this.label16 = new DevExpress.XtraEditors.LabelControl();
     this.label18 = new DevExpress.XtraEditors.LabelControl();
     this.label19 = new DevExpress.XtraEditors.LabelControl();
     this.KyHieuPhanLoai = new DevExpress.XtraEditors.TextEdit();
     this.label21 = new DevExpress.XtraEditors.LabelControl();
     this.label22 = new DevExpress.XtraEditors.LabelControl();
     this.label23 = new DevExpress.XtraEditors.LabelControl();
     this.label2 = new DevExpress.XtraEditors.LabelControl();
     this.label4 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.label15 = new DevExpress.XtraEditors.LabelControl();
     this.lblTitle = new DevExpress.XtraEditors.LabelControl();
     this.SODKHD = new ProtocolVN.Framework.Win.PLCombobox();
     this.PostMaster = new DevExpress.XtraEditors.RadioGroup();
     this.KyHieuXepKho_KHPL = new DevExpress.XtraEditors.TextEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.NoiLuuTru = new DevExpress.XtraEditors.ButtonEdit();
     this.label38 = new DevExpress.XtraEditors.LabelControl();
     this.label34 = new DevExpress.XtraEditors.LabelControl();
     this.label27 = new DevExpress.XtraEditors.LabelControl();
     this.label32 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlNgayPhatDauTien = new DevExpress.XtraGrid.GridControl();
     this.gridViewNgayPhatDauTien = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.CotDaiTruyenHinh = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotNgayPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Rating = new DevExpress.XtraEditors.CalcEdit();
     this.DoiTuongKhanGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label14 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.ThoiHanBanQuyen = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyen_Other = new DevExpress.XtraEditors.TextEdit();
     this.BanQuyen = new DevExpress.XtraEditors.ComboBoxEdit();
     this.label1 = new DevExpress.XtraEditors.LabelControl();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViSoHuu = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLDMGrid();
     this.label25 = new DevExpress.XtraEditors.LabelControl();
     this.NamSanXuat = new DevExpress.XtraEditors.PLSpinEdit();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.ThanhLy = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl8 = new DevExpress.XtraEditors.GroupControl();
     this.KyHieuXepKho_NoiDung = new DevExpress.XtraEditors.TextEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.Tang = new DevExpress.XtraEditors.SpinEdit();
     this.label24 = new DevExpress.XtraEditors.LabelControl();
     this.Ngan = new DevExpress.XtraEditors.SpinEdit();
     this.SoBang = new DevExpress.XtraEditors.SpinEdit();
     this.ThoiLuong = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.Ke = new DevExpress.XtraEditors.SpinEdit();
     this.TuKhoaSelect = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label12 = new DevExpress.XtraEditors.LabelControl();
     this.NgayNhap = new DevExpress.XtraEditors.DateEdit();
     this.TongTap = new DevExpress.XtraEditors.PLSpinEdit();
     this.label30 = new DevExpress.XtraEditors.LabelControl();
     this.GhiChu = new DevExpress.XtraEditors.MemoEdit();
     this.DinhKem = new DevExpress.XtraEditors.MemoEdit();
     this.TuKhoaText = new DevExpress.XtraEditors.MemoEdit();
     this.label31 = new DevExpress.XtraEditors.LabelControl();
     this.label20 = new DevExpress.XtraEditors.LabelControl();
     this.label9 = new DevExpress.XtraEditors.LabelControl();
     this.label10 = new DevExpress.XtraEditors.LabelControl();
     this.SoTap = new DevExpress.XtraEditors.PLSpinEdit();
     this.PopUp = new DevExpress.XtraEditors.RadioGroup();
     this.label33 = new DevExpress.XtraEditors.LabelControl();
     this.label36 = new DevExpress.XtraEditors.LabelControl();
     this.label17 = new DevExpress.XtraEditors.LabelControl();
     this.Info = new ProtocolVN.Framework.Win.PLInfoBox();
     this.TietMuc = new ProtocolVN.Framework.Win.PLDMGrid();
     this.TenGoc = new DevExpress.XtraEditors.TextEdit();
     this.label42 = new DevExpress.XtraEditors.LabelControl();
     this.NgayMuon = new DevExpress.XtraEditors.DateEdit();
     this.label28 = new DevExpress.XtraEditors.LabelControl();
     this.label29 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
     this.btnNhapTimeCode = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.TimeCode_Betacam_Duration = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.TimeCode_Betacam_Out = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.label37 = new DevExpress.XtraEditors.LabelControl();
     this.TimeCode_Betacam_In = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
     this.TimeCode_File_Duration = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.TimeCode_File_In = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.TimeCode_File_Out = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl();
     this.DoiTuongMuon = new DevExpress.XtraEditors.TextEdit();
     this.ThongTinMuon = new DevExpress.XtraEditors.MemoEdit();
     this.label41 = new DevExpress.XtraEditors.LabelControl();
     this.label40 = new DevExpress.XtraEditors.LabelControl();
     this.label39 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl10 = new DevExpress.XtraEditors.GroupControl();
     this.flowLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoiLuuTru.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ThoiHanBanQuyen.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThoiHanBanQuyen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyen_Other.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit();
     this.groupControl8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Tang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngan.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoBang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThoiLuong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ke.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayNhap.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayNhap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongTap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DinhKem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoTap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PopUp.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
     this.groupControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Duration.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Out.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_In.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
     this.groupControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Duration.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_In.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Out.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongMuon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThongTinMuon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl10)).BeginInit();
     this.groupControl10.SuspendLayout();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnClose);
     this.flowLayoutPanel1.Controls.Add(this.btnDelete);
     this.flowLayoutPanel1.Controls.Add(this.btnDeleteRealy);
     this.flowLayoutPanel1.Controls.Add(this.btnRestore);
     this.flowLayoutPanel1.Controls.Add(this.btnSave);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(443, 614);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(415, 31);
     this.flowLayoutPanel1.TabIndex = 26;
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.Location = new System.Drawing.Point(337, 3);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 2;
     this.btnClose.Text = "Đ&óng";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.Location = new System.Drawing.Point(256, 3);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex = 1;
     this.btnDelete.Text = "&Xóa";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnDeleteRealy
     //
     this.btnDeleteRealy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDeleteRealy.Location = new System.Drawing.Point(175, 3);
     this.btnDeleteRealy.Name = "btnDeleteRealy";
     this.btnDeleteRealy.Size = new System.Drawing.Size(75, 23);
     this.btnDeleteRealy.TabIndex = 1;
     this.btnDeleteRealy.Text = "&Xóa hẳn";
     this.btnDeleteRealy.Visible = false;
     this.btnDeleteRealy.Click += new System.EventHandler(this.btnDeleteRealy_Click);
     //
     // btnRestore
     //
     this.btnRestore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRestore.Location = new System.Drawing.Point(94, 3);
     this.btnRestore.Name = "btnRestore";
     this.btnRestore.Size = new System.Drawing.Size(75, 23);
     this.btnRestore.TabIndex = 1;
     this.btnRestore.Text = "&Phục hồi";
     this.btnRestore.Visible = false;
     this.btnRestore.Click += new System.EventHandler(this.btnRestore_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Location = new System.Drawing.Point(13, 3);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 0;
     this.btnSave.Text = "&Lưu";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // InPhieu
     //
     this.InPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.InPhieu.Location = new System.Drawing.Point(151, 3);
     this.InPhieu.Name = "InPhieu";
     this.InPhieu.Size = new System.Drawing.Size(81, 23);
     this.InPhieu.TabIndex = 1;
     this.InPhieu.Text = "&In nhãn";
     //
     // ctMnuInPhieu
     //
     this.ctMnuInPhieu.Name = "contextMenuStrip2";
     this.ctMnuInPhieu.Size = new System.Drawing.Size(61, 4);
     //
     // NghiepVu
     //
     this.NghiepVu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.NghiepVu.Location = new System.Drawing.Point(238, 3);
     this.NghiepVu.Name = "NghiepVu";
     this.NghiepVu.Size = new System.Drawing.Size(81, 23);
     this.NghiepVu.TabIndex = 2;
     this.NghiepVu.Text = "Nghiệp vụ";
     this.NghiepVu.Visible = false;
     //
     // ctMnuNghiepVu
     //
     this.ctMnuNghiepVu.Name = "contextMenuStrip3";
     this.ctMnuNghiepVu.Size = new System.Drawing.Size(61, 4);
     //
     // Duyet
     //
     this.Duyet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.Duyet.Enabled = false;
     this.Duyet.Location = new System.Drawing.Point(3, 6);
     this.Duyet.Name = "Duyet";
     this.Duyet.Size = new System.Drawing.Size(142, 20);
     this.Duyet.TabIndex = 0;
     this.Duyet.Visible = false;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.flowLayoutPanel2.Controls.Add(this.Duyet);
     this.flowLayoutPanel2.Controls.Add(this.InPhieu);
     this.flowLayoutPanel2.Controls.Add(this.NghiepVu);
     this.flowLayoutPanel2.Location = new System.Drawing.Point(6, 614);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Size = new System.Drawing.Size(335, 31);
     this.flowLayoutPanel2.TabIndex = 25;
     //
     // label3
     //
     this.label3.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label3.Appearance.Options.UseForeColor = true;
     this.label3.Location = new System.Drawing.Point(9, 52);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(41, 13);
     this.label3.TabIndex = 0;
     this.label3.Text = "Mã băng";
     //
     // MaBang
     //
     this.MaBang.Location = new System.Drawing.Point(85, 48);
     this.MaBang.Name = "MaBang";
     this.MaBang.Properties.MaxLength = 100;
     this.MaBang.Properties.ReadOnly = true;
     this.MaBang.Size = new System.Drawing.Size(124, 20);
     this.MaBang.TabIndex = 0;
     this.MaBang.TabStop = false;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(8, 128);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(40, 13);
     this.label7.TabIndex = 0;
     this.label7.Text = "Tiết mục";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(9, 77);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(42, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Nội dung";
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(293, 128);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(39, 13);
     this.label11.TabIndex = 0;
     this.label11.Text = "Số băng";
     //
     // LoaiBang
     //
     this.LoaiBang.Location = new System.Drawing.Point(85, 150);
     this.LoaiBang.Name = "LoaiBang";
     this.LoaiBang.Size = new System.Drawing.Size(199, 20);
     this.LoaiBang.TabIndex = 120;
     this.LoaiBang.ZZZWidthFactor = 2F;
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(9, 154);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(55, 13);
     this.label13.TabIndex = 0;
     this.label13.Text = "Loại lưu trữ";
     //
     // ThongSoLoaiBang
     //
     this.ThongSoLoaiBang.Location = new System.Drawing.Point(352, 150);
     this.ThongSoLoaiBang.Name = "ThongSoLoaiBang";
     this.ThongSoLoaiBang.Size = new System.Drawing.Size(145, 20);
     this.ThongSoLoaiBang.TabIndex = 120;
     this.ThongSoLoaiBang.ZZZWidthFactor = 2F;
     //
     // label16
     //
     this.label16.Appearance.ForeColor = System.Drawing.Color.Red;
     this.label16.Appearance.Options.UseForeColor = true;
     this.label16.Location = new System.Drawing.Point(8, 202);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(49, 13);
     this.label16.TabIndex = 0;
     this.label16.Text = "Tình trạng";
     //
     // label18
     //
     this.label18.Location = new System.Drawing.Point(8, 32);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(59, 13);
     this.label18.TabIndex = 0;
     this.label18.Text = "Số ĐKCB HD";
     //
     // label19
     //
     this.label19.Location = new System.Drawing.Point(9, 59);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(51, 13);
     this.label19.TabIndex = 0;
     this.label19.Text = "Nơi lưu trữ";
     //
     // KyHieuPhanLoai
     //
     this.KyHieuPhanLoai.Location = new System.Drawing.Point(85, 253);
     this.KyHieuPhanLoai.Name = "KyHieuPhanLoai";
     this.KyHieuPhanLoai.Properties.Appearance.Options.UseTextOptions = true;
     this.KyHieuPhanLoai.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuPhanLoai.Size = new System.Drawing.Size(199, 20);
     this.KyHieuPhanLoai.TabIndex = 5;
     this.KyHieuPhanLoai.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // label21
     //
     this.label21.Location = new System.Drawing.Point(9, 253);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(24, 13);
     this.label21.TabIndex = 0;
     this.label21.Text = "KHPL";
     this.label21.ToolTip = "Ký hiệu phân loại";
     //
     // label22
     //
     this.label22.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label22.Appearance.Options.UseForeColor = true;
     this.label22.Location = new System.Drawing.Point(293, 254);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(25, 13);
     this.label22.TabIndex = 0;
     this.label22.Text = "KHXK";
     this.label22.ToolTip = "Ký hiệu xếp kho";
     //
     // label23
     //
     this.label23.Location = new System.Drawing.Point(8, 229);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(66, 13);
     this.label23.TabIndex = 0;
     this.label23.Text = "Kệ,ngăn,tầng";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(9, 54);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(67, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "Đơn vị sở hữu";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 28);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "Đơn vị cung cấp";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(8, 79);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(70, 13);
     this.label5.TabIndex = 0;
     this.label5.Text = "Nước sản xuất";
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(293, 229);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(46, 13);
     this.label15.TabIndex = 0;
     this.label15.Text = "Rating TB";
     this.label15.ToolTip = "Rating trung bình";
     //
     // lblTitle
     //
     this.lblTitle.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.Appearance.Options.UseFont = true;
     this.lblTitle.Appearance.Options.UseTextOptions = true;
     this.lblTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lblTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblTitle.Location = new System.Drawing.Point(0, 0);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(866, 29);
     this.lblTitle.TabIndex = 0;
     this.lblTitle.Text = "BIÊN MỤC";
     //
     // SODKHD
     //
     this.SODKHD.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.SODKHD.DataSource = null;
     this.SODKHD.DisplayField = null;
     this.SODKHD.Location = new System.Drawing.Point(112, 28);
     this.SODKHD.Name = "SODKHD";
     this.SODKHD.Size = new System.Drawing.Size(218, 22);
     this.SODKHD.TabIndex = 12;
     this.SODKHD.ValueField = null;
     this.SODKHD.SelectedIndexChanged += new System.EventHandler(this.SODKHD_SelectedIndexChanged);
     //
     // PostMaster
     //
     this.PostMaster.EditValue = "Y";
     this.PostMaster.Location = new System.Drawing.Point(85, 202);
     this.PostMaster.Name = "PostMaster";
     this.PostMaster.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem("Y", "POST"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("N", "MASTER"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("A", "BOTH")});
     this.PostMaster.Size = new System.Drawing.Size(199, 20);
     this.PostMaster.TabIndex = 125;
     //
     // KyHieuXepKho_KHPL
     //
     this.KyHieuXepKho_KHPL.Location = new System.Drawing.Point(2, 2);
     this.KyHieuXepKho_KHPL.Name = "KyHieuXepKho_KHPL";
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_KHPL.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_KHPL.Properties.ReadOnly = true;
     this.KyHieuXepKho_KHPL.Size = new System.Drawing.Size(137, 18);
     this.KyHieuXepKho_KHPL.TabIndex = 5;
     this.KyHieuXepKho_KHPL.TabStop = false;
     //
     // groupControl1
     //
     this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl1.AppearanceCaption.Options.UseFont = true;
     this.groupControl1.Controls.Add(this.NoiLuuTru);
     this.groupControl1.Controls.Add(this.label38);
     this.groupControl1.Controls.Add(this.label19);
     this.groupControl1.Controls.Add(this.label18);
     this.groupControl1.Controls.Add(this.SODKHD);
     this.groupControl1.Location = new System.Drawing.Point(523, 512);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(335, 96);
     this.groupControl1.TabIndex = 126;
     this.groupControl1.Text = "Thông tin HD";
     //
     // NoiLuuTru
     //
     this.NoiLuuTru.Location = new System.Drawing.Point(112, 52);
     this.NoiLuuTru.Name = "NoiLuuTru";
     this.NoiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete),
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NoiLuuTru.Properties.ReadOnly = true;
     this.NoiLuuTru.Size = new System.Drawing.Size(218, 20);
     this.NoiLuuTru.TabIndex = 196;
     this.NoiLuuTru.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.buttonEdit1_ButtonClick);
     //
     // label38
     //
     this.label38.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic);
     this.label38.Appearance.Options.UseFont = true;
     this.label38.Location = new System.Drawing.Point(109, 74);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(139, 13);
     this.label38.TabIndex = 0;
     this.label38.Text = "(Đường dẫn đầy đủ trên HD)";
     //
     // label34
     //
     this.label34.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label34.Appearance.Options.UseForeColor = true;
     this.label34.Location = new System.Drawing.Point(4, 81);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(17, 13);
     this.label34.TabIndex = 0;
     this.label34.Text = "Dur";
     //
     // label27
     //
     this.label27.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label27.Appearance.Options.UseForeColor = true;
     this.label27.Location = new System.Drawing.Point(4, 58);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(69, 13);
     this.label27.TabIndex = 130;
     this.label27.Text = "Time code Out";
     //
     // label32
     //
     this.label32.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label32.Appearance.Options.UseForeColor = true;
     this.label32.Location = new System.Drawing.Point(4, 33);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(61, 13);
     this.label32.TabIndex = 132;
     this.label32.Text = "Time code In";
     //
     // groupControl2
     //
     this.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl2.AppearanceCaption.Options.UseFont = true;
     this.groupControl2.Controls.Add(this.gridControlNgayPhatDauTien);
     this.groupControl2.Location = new System.Drawing.Point(523, 312);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(333, 194);
     this.groupControl2.TabIndex = 127;
     this.groupControl2.Text = "Ngày phát sóng đầu tiên";
     //
     // gridControlNgayPhatDauTien
     //
     this.gridControlNgayPhatDauTien.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlNgayPhatDauTien.BackgroundImage")));
     this.gridControlNgayPhatDauTien.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlNgayPhatDauTien.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlNgayPhatDauTien.Location = new System.Drawing.Point(2, 22);
     this.gridControlNgayPhatDauTien.MainView = this.gridViewNgayPhatDauTien;
     this.gridControlNgayPhatDauTien.Name = "gridControlNgayPhatDauTien";
     this.gridControlNgayPhatDauTien.Size = new System.Drawing.Size(329, 170);
     this.gridControlNgayPhatDauTien.TabIndex = 136;
     this.gridControlNgayPhatDauTien.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewNgayPhatDauTien});
     //
     // gridViewNgayPhatDauTien
     //
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewNgayPhatDauTien.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.CotDaiTruyenHinh,
     this.CotNgayPhat});
     this.gridViewNgayPhatDauTien.GridControl = this.gridControlNgayPhatDauTien;
     this.gridViewNgayPhatDauTien.GroupCount = 1;
     this.gridViewNgayPhatDauTien.IndicatorWidth = 40;
     this.gridViewNgayPhatDauTien.Name = "gridViewNgayPhatDauTien";
     this.gridViewNgayPhatDauTien.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewNgayPhatDauTien.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewNgayPhatDauTien.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewNgayPhatDauTien.OptionsPrint.UsePrintStyles = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFooter = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupedColumns = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupPanel = false;
     this.gridViewNgayPhatDauTien.OptionsView.ShowIndicator = false;
     this.gridViewNgayPhatDauTien.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CotDaiTruyenHinh, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewNgayPhatDauTien.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewNgayPhatDauTien_CustomDrawGroupRow);
     this.gridViewNgayPhatDauTien.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewNgayPhatDauTien_ValidateRow);
     //
     // CotDaiTruyenHinh
     //
     this.CotDaiTruyenHinh.Caption = "Kênh phát sóng";
     this.CotDaiTruyenHinh.Name = "CotDaiTruyenHinh";
     this.CotDaiTruyenHinh.SummaryItem.DisplayFormat = "Tồng số lần đã phát {0}";
     this.CotDaiTruyenHinh.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.CotDaiTruyenHinh.Visible = true;
     this.CotDaiTruyenHinh.VisibleIndex = 0;
     this.CotDaiTruyenHinh.Width = 107;
     //
     // CotNgayPhat
     //
     this.CotNgayPhat.Caption = "Ngày phát";
     this.CotNgayPhat.Name = "CotNgayPhat";
     this.CotNgayPhat.Visible = true;
     this.CotNgayPhat.VisibleIndex = 1;
     this.CotNgayPhat.Width = 62;
     //
     // Rating
     //
     this.Rating.Location = new System.Drawing.Point(352, 227);
     this.Rating.Name = "Rating";
     this.Rating.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.Rating.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Rating.Size = new System.Drawing.Size(117, 20);
     this.Rating.TabIndex = 136;
     //
     // DoiTuongKhanGia
     //
     this.DoiTuongKhanGia.DataSource = null;
     this.DoiTuongKhanGia.DisplayField = null;
     this.DoiTuongKhanGia.EditValue = "";
     this.DoiTuongKhanGia.Location = new System.Drawing.Point(85, 354);
     this.DoiTuongKhanGia.Name = "DoiTuongKhanGia";
     this.DoiTuongKhanGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DoiTuongKhanGia.Size = new System.Drawing.Size(412, 20);
     this.DoiTuongKhanGia.TabIndex = 132;
     this.DoiTuongKhanGia.ValueField = null;
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(9, 357);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(57, 13);
     this.label14.TabIndex = 0;
     this.label14.Text = "ĐT khán giả";
     //
     // groupControl3
     //
     this.groupControl3.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl3.AppearanceCaption.Options.UseFont = true;
     this.groupControl3.Controls.Add(this.ThoiHanBanQuyen);
     this.groupControl3.Controls.Add(this.BanQuyen_Other);
     this.groupControl3.Controls.Add(this.BanQuyen);
     this.groupControl3.Controls.Add(this.label1);
     this.groupControl3.Controls.Add(this.QuocGia);
     this.groupControl3.Controls.Add(this.DonViSoHuu);
     this.groupControl3.Controls.Add(this.DonViCungCap);
     this.groupControl3.Controls.Add(this.label25);
     this.groupControl3.Controls.Add(this.label5);
     this.groupControl3.Controls.Add(this.label2);
     this.groupControl3.Controls.Add(this.label4);
     this.groupControl3.Controls.Add(this.NamSanXuat);
     this.groupControl3.Location = new System.Drawing.Point(523, 177);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(333, 129);
     this.groupControl3.TabIndex = 128;
     this.groupControl3.Text = "Nguồn gốc";
     //
     // ThoiHanBanQuyen
     //
     this.ThoiHanBanQuyen.EditValue = new System.DateTime(2010, 8, 30, 14, 57, 59, 852);
     this.ThoiHanBanQuyen.Location = new System.Drawing.Point(207, 103);
     this.ThoiHanBanQuyen.Name = "ThoiHanBanQuyen";
     this.ThoiHanBanQuyen.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.ThoiHanBanQuyen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ThoiHanBanQuyen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.ThoiHanBanQuyen.Size = new System.Drawing.Size(119, 20);
     this.ThoiHanBanQuyen.TabIndex = 122;
     //
     // BanQuyen_Other
     //
     this.BanQuyen_Other.EditValue = "";
     this.BanQuyen_Other.Location = new System.Drawing.Point(207, 103);
     this.BanQuyen_Other.Name = "BanQuyen_Other";
     this.BanQuyen_Other.Size = new System.Drawing.Size(119, 20);
     this.BanQuyen_Other.TabIndex = 5;
     this.BanQuyen_Other.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // BanQuyen
     //
     this.BanQuyen.Location = new System.Drawing.Point(112, 103);
     this.BanQuyen.Name = "BanQuyen";
     this.BanQuyen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyen.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.BanQuyen.Size = new System.Drawing.Size(89, 20);
     this.BanQuyen.TabIndex = 121;
     //
     // label1
     //
     this.label1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Appearance.ForeColor = System.Drawing.Color.Red;
     this.label1.Appearance.Options.UseFont = true;
     this.label1.Appearance.Options.UseForeColor = true;
     this.label1.Location = new System.Drawing.Point(8, 106);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(95, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Thời hạn bản quyền";
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.EditValue = "";
     this.QuocGia.Location = new System.Drawing.Point(112, 77);
     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(89, 20);
     this.QuocGia.TabIndex = 132;
     this.QuocGia.ValueField = null;
     //
     // DonViSoHuu
     //
     this.DonViSoHuu.Location = new System.Drawing.Point(112, 51);
     this.DonViSoHuu.Name = "DonViSoHuu";
     this.DonViSoHuu.Size = new System.Drawing.Size(214, 20);
     this.DonViSoHuu.TabIndex = 120;
     this.DonViSoHuu.ZZZWidthFactor = 2F;
     //
     // DonViCungCap
     //
     this.DonViCungCap.Location = new System.Drawing.Point(112, 24);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Size = new System.Drawing.Size(214, 20);
     this.DonViCungCap.TabIndex = 120;
     this.DonViCungCap.ZZZWidthFactor = 2F;
     //
     // label25
     //
     this.label25.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Appearance.ForeColor = System.Drawing.Color.Black;
     this.label25.Appearance.Options.UseFont = true;
     this.label25.Appearance.Options.UseForeColor = true;
     this.label25.Location = new System.Drawing.Point(207, 80);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(36, 13);
     this.label25.TabIndex = 0;
     this.label25.Text = "Năm SX";
     //
     // NamSanXuat
     //
     this.NamSanXuat.EditValue = new decimal(new int[] {
     1999,
     0,
     0,
     0});
     this.NamSanXuat.Location = new System.Drawing.Point(254, 77);
     this.NamSanXuat.Name = "NamSanXuat";
     this.NamSanXuat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSanXuat.Properties.Mask.EditMask = "n0";
     this.NamSanXuat.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.NamSanXuat.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.NamSanXuat.Size = new System.Drawing.Size(72, 20);
     this.NamSanXuat.TabIndex = 135;
     //
     // groupControl4
     //
     this.groupControl4.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl4.AppearanceCaption.Options.UseFont = true;
     this.groupControl4.Controls.Add(this.NoiDung);
     this.groupControl4.Controls.Add(this.ThanhLy);
     this.groupControl4.Controls.Add(this.groupControl8);
     this.groupControl4.Controls.Add(this.label22);
     this.groupControl4.Controls.Add(this.Rating);
     this.groupControl4.Controls.Add(this.KyHieuPhanLoai);
     this.groupControl4.Controls.Add(this.Tang);
     this.groupControl4.Controls.Add(this.label21);
     this.groupControl4.Controls.Add(this.label15);
     this.groupControl4.Controls.Add(this.label24);
     this.groupControl4.Controls.Add(this.Ngan);
     this.groupControl4.Controls.Add(this.SoBang);
     this.groupControl4.Controls.Add(this.ThoiLuong);
     this.groupControl4.Controls.Add(this.Ke);
     this.groupControl4.Controls.Add(this.TuKhoaSelect);
     this.groupControl4.Controls.Add(this.label12);
     this.groupControl4.Controls.Add(this.DoiTuongKhanGia);
     this.groupControl4.Controls.Add(this.LoaiBang);
     this.groupControl4.Controls.Add(this.label23);
     this.groupControl4.Controls.Add(this.label13);
     this.groupControl4.Controls.Add(this.label14);
     this.groupControl4.Controls.Add(this.ThongSoLoaiBang);
     this.groupControl4.Controls.Add(this.NgayNhap);
     this.groupControl4.Controls.Add(this.TongTap);
     this.groupControl4.Controls.Add(this.label30);
     this.groupControl4.Controls.Add(this.GhiChu);
     this.groupControl4.Controls.Add(this.DinhKem);
     this.groupControl4.Controls.Add(this.TuKhoaText);
     this.groupControl4.Controls.Add(this.label31);
     this.groupControl4.Controls.Add(this.label20);
     this.groupControl4.Controls.Add(this.label9);
     this.groupControl4.Controls.Add(this.label10);
     this.groupControl4.Controls.Add(this.SoTap);
     this.groupControl4.Controls.Add(this.PopUp);
     this.groupControl4.Controls.Add(this.label33);
     this.groupControl4.Controls.Add(this.label36);
     this.groupControl4.Controls.Add(this.label17);
     this.groupControl4.Controls.Add(this.Info);
     this.groupControl4.Controls.Add(this.TietMuc);
     this.groupControl4.Controls.Add(this.MaBang);
     this.groupControl4.Controls.Add(this.label7);
     this.groupControl4.Controls.Add(this.PostMaster);
     this.groupControl4.Controls.Add(this.label11);
     this.groupControl4.Controls.Add(this.label3);
     this.groupControl4.Controls.Add(this.label16);
     this.groupControl4.Controls.Add(this.TenGoc);
     this.groupControl4.Controls.Add(this.label42);
     this.groupControl4.Controls.Add(this.label8);
     this.groupControl4.Location = new System.Drawing.Point(12, 44);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(505, 419);
     this.groupControl4.TabIndex = 129;
     this.groupControl4.Text = "Thông tin chính";
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(85, 74);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)});
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(412, 20);
     this.NoiDung.TabIndex = 199;
     //
     // ThanhLy
     //
     this.ThanhLy.Location = new System.Drawing.Point(83, 26);
     this.ThanhLy.Name = "ThanhLy";
     this.ThanhLy.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ThanhLy.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ThanhLy.Properties.Appearance.Options.UseFont = true;
     this.ThanhLy.Properties.Appearance.Options.UseForeColor = true;
     this.ThanhLy.Properties.Caption = "Thanh lý";
     this.ThanhLy.Size = new System.Drawing.Size(88, 19);
     this.ThanhLy.TabIndex = 136;
     //
     // groupControl8
     //
     this.groupControl8.Controls.Add(this.KyHieuXepKho_KHPL);
     this.groupControl8.Controls.Add(this.KyHieuXepKho_NoiDung);
     this.groupControl8.Controls.Add(this.textEdit1);
     this.groupControl8.Location = new System.Drawing.Point(352, 254);
     this.groupControl8.Name = "groupControl8";
     this.groupControl8.ShowCaption = false;
     this.groupControl8.Size = new System.Drawing.Size(145, 46);
     this.groupControl8.TabIndex = 132;
     this.groupControl8.Text = "groupControl8";
     //
     // KyHieuXepKho_NoiDung
     //
     this.KyHieuXepKho_NoiDung.Location = new System.Drawing.Point(2, 26);
     this.KyHieuXepKho_NoiDung.Name = "KyHieuXepKho_NoiDung";
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_NoiDung.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_NoiDung.Properties.ReadOnly = true;
     this.KyHieuXepKho_NoiDung.Size = new System.Drawing.Size(137, 18);
     this.KyHieuXepKho_NoiDung.TabIndex = 17;
     this.KyHieuXepKho_NoiDung.TabStop = false;
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "___________________";
     this.textEdit1.Location = new System.Drawing.Point(2, 8);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Properties.AllowFocused = false;
     this.textEdit1.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.textEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.textEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.textEdit1.Properties.ReadOnly = true;
     this.textEdit1.Size = new System.Drawing.Size(137, 18);
     this.textEdit1.TabIndex = 5;
     this.textEdit1.TabStop = false;
     //
     // Tang
     //
     this.Tang.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.Tang.Location = new System.Drawing.Point(222, 227);
     this.Tang.Name = "Tang";
     this.Tang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Tang.Size = new System.Drawing.Size(62, 20);
     this.Tang.TabIndex = 198;
     //
     // label24
     //
     this.label24.Location = new System.Drawing.Point(478, 230);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(19, 13);
     this.label24.TabIndex = 0;
     this.label24.Text = "(%)";
     //
     // Ngan
     //
     this.Ngan.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.Ngan.Location = new System.Drawing.Point(157, 227);
     this.Ngan.Name = "Ngan";
     this.Ngan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Ngan.Size = new System.Drawing.Size(59, 20);
     this.Ngan.TabIndex = 198;
     //
     // SoBang
     //
     this.SoBang.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.SoBang.Location = new System.Drawing.Point(352, 125);
     this.SoBang.Name = "SoBang";
     this.SoBang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoBang.Size = new System.Drawing.Size(145, 20);
     this.SoBang.TabIndex = 198;
     //
     // ThoiLuong
     //
     this.ThoiLuong.EditValue = "00:00:00:00";
     this.ThoiLuong.Location = new System.Drawing.Point(85, 176);
     this.ThoiLuong.Name = "ThoiLuong";
     this.ThoiLuong.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.ThoiLuong.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.ThoiLuong.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.ThoiLuong.Properties.ReadOnly = true;
     this.ThoiLuong.Size = new System.Drawing.Size(200, 20);
     this.ThoiLuong.TabIndex = 197;
     this.ThoiLuong.TabStop = false;
     this.ThoiLuong.TimeCode.Frame = 0;
     this.ThoiLuong.TimeCode.Hour = 0;
     this.ThoiLuong.TimeCode.Minute = 0;
     this.ThoiLuong.TimeCode.Second = 0;
     this.ThoiLuong.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // Ke
     //
     this.Ke.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.Ke.Location = new System.Drawing.Point(85, 227);
     this.Ke.Name = "Ke";
     this.Ke.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Ke.Size = new System.Drawing.Size(66, 20);
     this.Ke.TabIndex = 198;
     //
     // TuKhoaSelect
     //
     this.TuKhoaSelect.DataSource = null;
     this.TuKhoaSelect.DisplayField = null;
     this.TuKhoaSelect.EditValue = "";
     this.TuKhoaSelect.Location = new System.Drawing.Point(85, 330);
     this.TuKhoaSelect.Name = "TuKhoaSelect";
     this.TuKhoaSelect.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TuKhoaSelect.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.TuKhoaSelect.Size = new System.Drawing.Size(199, 19);
     this.TuKhoaSelect.TabIndex = 132;
     this.TuKhoaSelect.TabStop = false;
     this.TuKhoaSelect.ValueField = null;
     this.TuKhoaSelect.EditValueChanged += new System.EventHandler(this.TuKhoaSelect_EditValueChanged);
     this.TuKhoaSelect.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(this.TuKhoaSelect_CloseUp);
     //
     // label12
     //
     this.label12.Location = new System.Drawing.Point(293, 154);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(44, 13);
     this.label12.TabIndex = 0;
     this.label12.Text = "Thông số";
     //
     // NgayNhap
     //
     this.NgayNhap.EditValue = null;
     this.NgayNhap.Location = new System.Drawing.Point(352, 48);
     this.NgayNhap.Name = "NgayNhap";
     this.NgayNhap.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.NgayNhap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NgayNhap.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NgayNhap.Size = new System.Drawing.Size(145, 20);
     this.NgayNhap.TabIndex = 141;
     //
     // TongTap
     //
     this.TongTap.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.TongTap.Location = new System.Drawing.Point(450, 176);
     this.TongTap.Name = "TongTap";
     this.TongTap.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.TongTap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongTap.Properties.Mask.EditMask = "n0";
     this.TongTap.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.TongTap.Properties.MaxLength = 1;
     this.TongTap.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.TongTap.Properties.MinValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.TongTap.Size = new System.Drawing.Size(47, 20);
     this.TongTap.TabIndex = 135;
     //
     // label30
     //
     this.label30.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label30.Appearance.Options.UseForeColor = true;
     this.label30.Location = new System.Drawing.Point(8, 178);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(50, 13);
     this.label30.TabIndex = 133;
     this.label30.Text = "Thời lượng";
     //
     // GhiChu
     //
     this.GhiChu.Location = new System.Drawing.Point(85, 380);
     this.GhiChu.Name = "GhiChu";
     this.GhiChu.Size = new System.Drawing.Size(412, 34);
     this.GhiChu.TabIndex = 134;
     //
     // DinhKem
     //
     this.DinhKem.Location = new System.Drawing.Point(352, 305);
     this.DinhKem.Name = "DinhKem";
     this.DinhKem.Size = new System.Drawing.Size(145, 44);
     this.DinhKem.TabIndex = 134;
     //
     // TuKhoaText
     //
     this.TuKhoaText.Location = new System.Drawing.Point(85, 278);
     this.TuKhoaText.Name = "TuKhoaText";
     this.TuKhoaText.Properties.ReadOnly = true;
     this.TuKhoaText.Size = new System.Drawing.Size(199, 50);
     this.TuKhoaText.TabIndex = 134;
     this.TuKhoaText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TuKhoaText_KeyDown);
     //
     // label31
     //
     this.label31.Location = new System.Drawing.Point(290, 300);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(59, 13);
     this.label31.TabIndex = 131;
     this.label31.Text = "TT Đính kèm";
     //
     // label20
     //
     this.label20.Location = new System.Drawing.Point(8, 280);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 131;
     this.label20.Text = "Từ khóa";
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(293, 180);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(32, 13);
     this.label9.TabIndex = 128;
     this.label9.Text = "Tập số";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(403, 179);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(43, 13);
     this.label10.TabIndex = 127;
     this.label10.Text = "Tổng tập";
     //
     // SoTap
     //
     this.SoTap.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.SoTap.Location = new System.Drawing.Point(352, 176);
     this.SoTap.Name = "SoTap";
     this.SoTap.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.SoTap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoTap.Properties.Mask.EditMask = "n0";
     this.SoTap.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.SoTap.Properties.MaxLength = 1;
     this.SoTap.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.SoTap.Properties.MinValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.SoTap.Size = new System.Drawing.Size(50, 20);
     this.SoTap.TabIndex = 136;
     //
     // PopUp
     //
     this.PopUp.EditValue = "Y";
     this.PopUp.Location = new System.Drawing.Point(352, 202);
     this.PopUp.Name = "PopUp";
     this.PopUp.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem("Y", "Yes"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("N", "No")});
     this.PopUp.Size = new System.Drawing.Size(145, 20);
     this.PopUp.TabIndex = 140;
     //
     // label33
     //
     this.label33.Location = new System.Drawing.Point(287, 48);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(52, 13);
     this.label33.TabIndex = 129;
     this.label33.Text = "Ngày nhập";
     //
     // label36
     //
     this.label36.Location = new System.Drawing.Point(9, 382);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(35, 13);
     this.label36.TabIndex = 129;
     this.label36.Text = "Ghi chú";
     //
     // label17
     //
     this.label17.Location = new System.Drawing.Point(293, 205);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(36, 13);
     this.label17.TabIndex = 129;
     this.label17.Text = "POP Up";
     //
     // Info
     //
     this.Info.Location = new System.Drawing.Point(243, 48);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(24, 21);
     this.Info.TabIndex = 126;
     //
     // TietMuc
     //
     this.TietMuc.Location = new System.Drawing.Point(85, 125);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Size = new System.Drawing.Size(199, 20);
     this.TietMuc.TabIndex = 120;
     this.TietMuc.ZZZWidthFactor = 2F;
     //
     // TenGoc
     //
     this.TenGoc.EditValue = "";
     this.TenGoc.Location = new System.Drawing.Point(85, 99);
     this.TenGoc.Name = "TenGoc";
     this.TenGoc.Size = new System.Drawing.Size(412, 20);
     this.TenGoc.TabIndex = 5;
     this.TenGoc.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // label42
     //
     this.label42.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.Appearance.Options.UseFont = true;
     this.label42.Location = new System.Drawing.Point(8, 102);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(38, 13);
     this.label42.TabIndex = 0;
     this.label42.Text = "Tên gốc";
     //
     // NgayMuon
     //
     this.NgayMuon.EditValue = null;
     this.NgayMuon.Location = new System.Drawing.Point(112, 25);
     this.NgayMuon.Name = "NgayMuon";
     this.NgayMuon.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NgayMuon.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NgayMuon.Size = new System.Drawing.Size(213, 20);
     this.NgayMuon.TabIndex = 141;
     //
     // label28
     //
     this.label28.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label28.Appearance.Options.UseForeColor = true;
     this.label28.Location = new System.Drawing.Point(6, 33);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(61, 13);
     this.label28.TabIndex = 132;
     this.label28.Text = "Time code In";
     //
     // label29
     //
     this.label29.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label29.Appearance.Options.UseForeColor = true;
     this.label29.Location = new System.Drawing.Point(6, 58);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(69, 13);
     this.label29.TabIndex = 130;
     this.label29.Text = "Time code Out";
     //
     // groupControl6
     //
     this.groupControl6.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl6.AppearanceCaption.Options.UseFont = true;
     this.groupControl6.Controls.Add(this.btnNhapTimeCode);
     this.groupControl6.Controls.Add(this.groupControl5);
     this.groupControl6.Controls.Add(this.groupControl7);
     this.groupControl6.Location = new System.Drawing.Point(12, 469);
     this.groupControl6.Name = "groupControl6";
     this.groupControl6.Size = new System.Drawing.Size(505, 140);
     this.groupControl6.TabIndex = 131;
     this.groupControl6.Text = "Thông tin timecode";
     //
     // btnNhapTimeCode
     //
     this.btnNhapTimeCode.Location = new System.Drawing.Point(232, 51);
     this.btnNhapTimeCode.Name = "btnNhapTimeCode";
     this.btnNhapTimeCode.Size = new System.Drawing.Size(60, 45);
     this.btnNhapTimeCode.TabIndex = 199;
     this.btnNhapTimeCode.Text = "Timecode";
     this.btnNhapTimeCode.Click += new System.EventHandler(this.btnNhapTimeCode_Click);
     //
     // groupControl5
     //
     this.groupControl5.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline);
     this.groupControl5.AppearanceCaption.Options.UseFont = true;
     this.groupControl5.Controls.Add(this.TimeCode_Betacam_Duration);
     this.groupControl5.Controls.Add(this.TimeCode_Betacam_Out);
     this.groupControl5.Controls.Add(this.label37);
     this.groupControl5.Controls.Add(this.TimeCode_Betacam_In);
     this.groupControl5.Controls.Add(this.label29);
     this.groupControl5.Controls.Add(this.label28);
     this.groupControl5.Location = new System.Drawing.Point(8, 25);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(218, 108);
     this.groupControl5.TabIndex = 121;
     this.groupControl5.Text = "Timecode BETACAM";
     //
     // TimeCode_Betacam_Duration
     //
     this.TimeCode_Betacam_Duration.EditValue = "00:00:00:00";
     this.TimeCode_Betacam_Duration.Location = new System.Drawing.Point(83, 81);
     this.TimeCode_Betacam_Duration.Name = "TimeCode_Betacam_Duration";
     this.TimeCode_Betacam_Duration.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_Betacam_Duration.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_Betacam_Duration.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_Betacam_Duration.Properties.ReadOnly = true;
     this.TimeCode_Betacam_Duration.Size = new System.Drawing.Size(118, 20);
     this.TimeCode_Betacam_Duration.TabIndex = 197;
     this.TimeCode_Betacam_Duration.TabStop = false;
     this.TimeCode_Betacam_Duration.TimeCode.Frame = 0;
     this.TimeCode_Betacam_Duration.TimeCode.Hour = 0;
     this.TimeCode_Betacam_Duration.TimeCode.Minute = 0;
     this.TimeCode_Betacam_Duration.TimeCode.Second = 0;
     this.TimeCode_Betacam_Duration.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // TimeCode_Betacam_Out
     //
     this.TimeCode_Betacam_Out.EditValue = "00:00:00:00";
     this.TimeCode_Betacam_Out.Location = new System.Drawing.Point(83, 55);
     this.TimeCode_Betacam_Out.Name = "TimeCode_Betacam_Out";
     this.TimeCode_Betacam_Out.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_Betacam_Out.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_Betacam_Out.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_Betacam_Out.Properties.ReadOnly = true;
     this.TimeCode_Betacam_Out.Size = new System.Drawing.Size(118, 20);
     this.TimeCode_Betacam_Out.TabIndex = 197;
     this.TimeCode_Betacam_Out.TimeCode.Frame = 0;
     this.TimeCode_Betacam_Out.TimeCode.Hour = 0;
     this.TimeCode_Betacam_Out.TimeCode.Minute = 0;
     this.TimeCode_Betacam_Out.TimeCode.Second = 0;
     this.TimeCode_Betacam_Out.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // label37
     //
     this.label37.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label37.Appearance.Options.UseForeColor = true;
     this.label37.Location = new System.Drawing.Point(6, 84);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(17, 13);
     this.label37.TabIndex = 0;
     this.label37.Text = "Dur";
     //
     // TimeCode_Betacam_In
     //
     this.TimeCode_Betacam_In.EditValue = "00:00:00:00";
     this.TimeCode_Betacam_In.Location = new System.Drawing.Point(83, 30);
     this.TimeCode_Betacam_In.Name = "TimeCode_Betacam_In";
     this.TimeCode_Betacam_In.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_Betacam_In.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_Betacam_In.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_Betacam_In.Properties.ReadOnly = true;
     this.TimeCode_Betacam_In.Size = new System.Drawing.Size(118, 20);
     this.TimeCode_Betacam_In.TabIndex = 197;
     this.TimeCode_Betacam_In.TimeCode.Frame = 0;
     this.TimeCode_Betacam_In.TimeCode.Hour = 0;
     this.TimeCode_Betacam_In.TimeCode.Minute = 0;
     this.TimeCode_Betacam_In.TimeCode.Second = 0;
     this.TimeCode_Betacam_In.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // groupControl7
     //
     this.groupControl7.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline);
     this.groupControl7.AppearanceCaption.Options.UseFont = true;
     this.groupControl7.Controls.Add(this.TimeCode_File_Duration);
     this.groupControl7.Controls.Add(this.TimeCode_File_In);
     this.groupControl7.Controls.Add(this.label32);
     this.groupControl7.Controls.Add(this.label27);
     this.groupControl7.Controls.Add(this.TimeCode_File_Out);
     this.groupControl7.Controls.Add(this.label34);
     this.groupControl7.Location = new System.Drawing.Point(300, 22);
     this.groupControl7.Name = "groupControl7";
     this.groupControl7.Size = new System.Drawing.Size(200, 108);
     this.groupControl7.TabIndex = 122;
     this.groupControl7.Text = "Timecode FILE";
     //
     // TimeCode_File_Duration
     //
     this.TimeCode_File_Duration.EditValue = "00:00:00:00";
     this.TimeCode_File_Duration.Location = new System.Drawing.Point(86, 81);
     this.TimeCode_File_Duration.Name = "TimeCode_File_Duration";
     this.TimeCode_File_Duration.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_File_Duration.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_File_Duration.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_File_Duration.Properties.ReadOnly = true;
     this.TimeCode_File_Duration.Size = new System.Drawing.Size(111, 20);
     this.TimeCode_File_Duration.TabIndex = 197;
     this.TimeCode_File_Duration.TabStop = false;
     this.TimeCode_File_Duration.TimeCode.Frame = 0;
     this.TimeCode_File_Duration.TimeCode.Hour = 0;
     this.TimeCode_File_Duration.TimeCode.Minute = 0;
     this.TimeCode_File_Duration.TimeCode.Second = 0;
     this.TimeCode_File_Duration.TimeCode.TimeCodeString = "00:00:00:00";
     //
     // TimeCode_File_In
     //
     this.TimeCode_File_In.EditValue = "00:00:00:00";
     this.TimeCode_File_In.Location = new System.Drawing.Point(86, 30);
     this.TimeCode_File_In.Name = "TimeCode_File_In";
     this.TimeCode_File_In.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_File_In.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_File_In.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_File_In.Properties.ReadOnly = true;
     this.TimeCode_File_In.Size = new System.Drawing.Size(111, 20);
     this.TimeCode_File_In.TabIndex = 197;
     this.TimeCode_File_In.TimeCode.Frame = 0;
     this.TimeCode_File_In.TimeCode.Hour = 0;
     this.TimeCode_File_In.TimeCode.Minute = 0;
     this.TimeCode_File_In.TimeCode.Second = 0;
     this.TimeCode_File_In.TimeCode.TimeCodeString = "00:00:00:00";
     this.TimeCode_File_In.EditValueChanged += new System.EventHandler(this.TimeCode_File_In_EditValueChanged);
     //
     // TimeCode_File_Out
     //
     this.TimeCode_File_Out.EditValue = "00:00:00:00";
     this.TimeCode_File_Out.Location = new System.Drawing.Point(86, 55);
     this.TimeCode_File_Out.Name = "TimeCode_File_Out";
     this.TimeCode_File_Out.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
     this.TimeCode_File_Out.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
     this.TimeCode_File_Out.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.TimeCode_File_Out.Properties.ReadOnly = true;
     this.TimeCode_File_Out.Size = new System.Drawing.Size(111, 20);
     this.TimeCode_File_Out.TabIndex = 197;
     this.TimeCode_File_Out.TimeCode.Frame = 0;
     this.TimeCode_File_Out.TimeCode.Hour = 0;
     this.TimeCode_File_Out.TimeCode.Minute = 0;
     this.TimeCode_File_Out.TimeCode.Second = 0;
     this.TimeCode_File_Out.TimeCode.TimeCodeString = "00:00:00:00";
     this.TimeCode_File_Out.EditValueChanged += new System.EventHandler(this.TimeCode_File_In_EditValueChanged);
     //
     // DoiTuongMuon
     //
     this.DoiTuongMuon.EditValue = "";
     this.DoiTuongMuon.Location = new System.Drawing.Point(112, 50);
     this.DoiTuongMuon.Name = "DoiTuongMuon";
     this.DoiTuongMuon.Size = new System.Drawing.Size(213, 20);
     this.DoiTuongMuon.TabIndex = 5;
     this.DoiTuongMuon.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // ThongTinMuon
     //
     this.ThongTinMuon.Location = new System.Drawing.Point(112, 75);
     this.ThongTinMuon.Name = "ThongTinMuon";
     this.ThongTinMuon.Size = new System.Drawing.Size(213, 47);
     this.ThongTinMuon.TabIndex = 134;
     //
     // label41
     //
     this.label41.Location = new System.Drawing.Point(10, 28);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(55, 13);
     this.label41.TabIndex = 0;
     this.label41.Text = "Ngày mượn";
     //
     // label40
     //
     this.label40.Location = new System.Drawing.Point(10, 53);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(48, 13);
     this.label40.TabIndex = 0;
     this.label40.Text = "Đối tượng";
     //
     // label39
     //
     this.label39.Location = new System.Drawing.Point(10, 79);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(75, 13);
     this.label39.TabIndex = 0;
     this.label39.Text = "Thông tin mượn";
     //
     // groupControl10
     //
     this.groupControl10.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControl10.AppearanceCaption.Options.UseFont = true;
     this.groupControl10.Controls.Add(this.NgayMuon);
     this.groupControl10.Controls.Add(this.DoiTuongMuon);
     this.groupControl10.Controls.Add(this.label39);
     this.groupControl10.Controls.Add(this.ThongTinMuon);
     this.groupControl10.Controls.Add(this.label40);
     this.groupControl10.Controls.Add(this.label41);
     this.groupControl10.Location = new System.Drawing.Point(523, 44);
     this.groupControl10.Name = "groupControl10";
     this.groupControl10.Size = new System.Drawing.Size(330, 127);
     this.groupControl10.TabIndex = 132;
     this.groupControl10.Text = "Thông tin mượn trả";
     //
     // frmBienMuc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(866, 648);
     this.Controls.Add(this.groupControl10);
     this.Controls.Add(this.groupControl4);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.groupControl3);
     this.Controls.Add(this.flowLayoutPanel2);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl6);
     this.Controls.Add(this.groupControl1);
     this.Name = "frmBienMuc";
     this.Text = "Biên mục";
     this.Load += new System.EventHandler(this.frmPhuongAnDeXuatTour_Load);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoiLuuTru.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ThoiHanBanQuyen.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThoiHanBanQuyen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyen_Other.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit();
     this.groupControl8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Tang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngan.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoBang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThoiLuong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ke.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayNhap.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayNhap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongTap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DinhKem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoTap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PopUp.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
     this.groupControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     this.groupControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Duration.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Out.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_In.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
     this.groupControl7.ResumeLayout(false);
     this.groupControl7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Duration.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_In.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Out.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongMuon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThongTinMuon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl10)).EndInit();
     this.groupControl10.ResumeLayout(false);
     this.groupControl10.PerformLayout();
     this.ResumeLayout(false);
 }