protected virtual BaseEdit CreateEditorEx(BaseEdit e) { BaseEdit edit; if (this.column.RealColumnEdit is RepositoryItemProgressBar) { edit = new SpinEdit(); } else if (this.column.RealColumnEdit is RepositoryItemMemoEdit) { edit = new MemoExEdit(); ((MemoExEdit) edit).Properties.ShowIcon = false; } else if (this.IsLookUpEditors() && this.IsDisplayTextFilter()) { RepositoryItem item = GridCriteriaHelper.CreateDisplayTextEditor(this.CurrentColumn); edit = item.CreateEditor(); edit.Properties.Assign(item); } else { edit = this.column.RealColumnEdit.CreateEditor(); edit.Properties.ResetEvents(); edit.Properties.Assign(this.column.RealColumnEdit); } if (edit is ComboBoxEdit) { ((ComboBoxEdit) edit).Properties.UseCtrlScroll = false; } if (edit is ImageComboBoxEdit) { ((ImageComboBoxEdit) edit).Properties.UseCtrlScroll = false; } TextEdit edit2 = edit as TextEdit; if (edit2 != null) { edit2.Properties.AllowNullInput = DefaultBoolean.True; } return edit; }
public static void Format(this SpinEdit spnMain, int DecimalScale = 0, bool LeftAlight = true, bool NotNegative = true, bool FormatNumber = true) { spnMain.Properties.Buttons.Clear(); spnMain.Properties.Mask.UseMaskAsDisplayFormat = true; spnMain.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric; spnMain.Properties.AppearanceReadOnly.TextOptions.HAlignment = spnMain.Properties.AppearanceFocused.TextOptions.HAlignment = spnMain.Properties.Appearance.TextOptions.HAlignment = LeftAlight ? HorzAlignment.Near : HorzAlignment.Far; spnMain.Properties.Mask.EditMask = spnMain.Properties.DisplayFormat.FormatString = spnMain.Properties.EditFormat.FormatString = "N" + DecimalScale.ToString(); if (NotNegative) { spnMain.KeyPress += NotNegative_KeyPress; if (spnMain.Properties.MinValue == spnMain.Properties.MaxValue) { spnMain.Properties.MaxValue = decimal.MaxValue; } if (spnMain.Properties.MinValue < 0) { spnMain.Properties.MinValue = 0; } } if (FormatNumber) { spnMain.Properties.DisplayFormat.FormatType = FormatType.Custom; spnMain.Properties.DisplayFormat.FormatString = "{0:###,###,###.####}"; } }
public ToolBarSpinEdit(Codon codon, object caller) : base(new PopupContainerControl()) { this.menuCommand = null; this.RightToLeft = RightToLeft.Inherit; this.caller = caller; this.codon = codon; this.spinEdit = new SpinEdit(); if (!codon.Properties.Contains("width")) { this.spinEdit.Width = 40; } else { this.spinEdit.Width = Convert.ToInt32(codon.Properties["width"]); } this.spinEdit.EditValue = 1; this.spinEdit.EditValueChanged += new EventHandler(this.EditValueChanged); base.Control.Controls.Add(this.spinEdit); try { this.CreateCommand(); } catch (Exception exception) { LoggingService.Error(exception); } this.UpdateStatus(); this.UpdateText(); }
private void repositoryItemSpinEdit_EditValueChanged(object sender, EventArgs e) { SpinEdit edit = sender as SpinEdit; if (this.codon != null && edit != null) { ICommand command = this.Command; if (command != null) { if (command.CheckPermission()) { command.Run(sender, e); string functionInfo = this.Command.CommandID; if (this.Command.CommandName != null && this.Command.CommandName != "") { functionInfo = StringParser.Parse(this.Command.CommandName); } LoggingService.Info("Function " + functionInfo + " run."); return; } else { XtraMessageBox.Show(StringParser.Parse("${res:ModeNoAuth}"), StringParser.Parse("${res:View_Prompt}")); } } } }
public virtual void CheckEditor(SpinEdit editor) { if (editor.Value.GetInt() <= 0) { ErrorProvider.SetError(editor, "Bitte einen gültigen Wert angeben", ErrorType.Warning); } }
/// <summary> /// Настройка внешнего вида. /// </summary> public override void Customize() { /* Настройка таблиц */ foreach (DevExpress.XtraGrid.Columns.GridColumn iCol in Grid_Service.Columns) { iCol.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Center; } ICardControl.HideTableBarItem(RefApplicationCard.Service.Alias, 2, true); /* Настройка полей Оплаты */ foreach (String S in new String[] { RefApplicationCard.MainInfo.DeliveryCost, RefApplicationCard.MainInfo.Sum, RefApplicationCard.MainInfo.SumNDS }) { SpinEdit Edit = ICardControl.FindPropertyItem <SpinEdit>(S); Edit.Properties.Mask.EditMask = "c2"; Edit.Properties.Mask.UseMaskAsDisplayFormat = true; } /* Настройка кнопок */ ICardControl.RibbonControl.Items[RefApplicationCard.RibbonItems.ShowClientInfo].Hint = "Показать данные о клиенте."; ICardControl.RibbonControl.Items[RefApplicationCard.RibbonItems.PrintAcceptanceAct].Hint = "Печать акта приемки на СО."; ICardControl.RibbonControl.Items[RefApplicationCard.RibbonItems.PrintDeliveryAct].Hint = "Печать акта сдачи после СО."; ICardControl.RibbonControl.Items[RefApplicationCard.RibbonItems.Calibrate].Hint = "Передать на калибровку."; ICardControl.RibbonControl.Items[RefApplicationCard.RibbonItems.Revoke].Hint = "Отозвать из калибровки."; ICardControl.RibbonControl.Items[RefApplicationCard.RibbonItems.CreateAccountCard].Hint = "Сформировать договор/счет сбыта."; ICardControl.RibbonControl.Items[RefApplicationCard.RibbonItems.Marketing].Hint = "Передать в отдел сбыта."; }
private void spin_qty_ValueChanged(object sender, EventArgs e) { int[] indexgrid = gridView1.GetSelectedRows(); string barang = gridView1.GetRowCellDisplayText(indexgrid[0], "nama").ToString(); if (barang != "") { SpinEdit spin = (SpinEdit)sender; int qty = Convert.ToInt32(spin.EditValue); if (qty > Convert.ToInt32(gridView1.GetRowCellValue(indexgrid[0], "stok"))) { Helpers.Generic.MsgEx("Stok tidak mencukupi, sisa stok " + gridView1.GetRowCellValue(indexgrid[0], "stok")); return; } int harga = Convert.ToInt32(gridView1.GetRowCellValue(indexgrid[0], "harga")); double ukuran = Convert.ToDouble(gridView1.GetRowCellValue(indexgrid[0], "ukuran")); double liter = qty * ukuran; int total = Convert.ToInt32(liter * harga); gridView1.SetRowCellValue(indexgrid[0], "liter", liter); gridView1.SetRowCellValue(indexgrid[0], "total", total); this.HitungTotal(); } }
public virtual void OnMouseMove(MouseEventArgs e) { if (SpinEdit.IsDesignMode) { return; } if (e.Button != MouseButtons.Left) { return; } if (State == ScrollableSpinEditState.Normal) { if (GetDelta(e.Location) > DragDelta) { State = ScrollableSpinEditState.Drag; LastPoint = e.Location; Cursor.Hide(); } } else { int delta = e.Location.X - DownPoint.X; if (delta == 0) { return; } SpinEdit.Properties.EditValueChangedFiringMode = EditValueChangedFiringMode.Default; SpinEdit.Value = Math.Max(SpinEdit.Properties.MinValue, Math.Min(SpinEdit.Properties.MaxValue, SpinEdit.Value + delta * SpinEdit.Properties.Increment * SpinEdit.Properties.SpeedDivider)); SpinEdit.Properties.EditValueChangedFiringMode = EditValueChangedFiringMode.Buffered; SpinEdit.Invalidate(); SpinEdit.Update(); Cursor.Position = SpinEdit.PointToScreen(DownPoint); } }
public static void ButtonHide(this SpinEdit edit) { foreach (EditorButton btn in edit.Properties.Buttons) { btn.Visible = false; } }
/// <summary> /// Customize SpinEdit up/down behavior based on increment step. /// For example, when increment step is 5, and current value is 13: /// Click up button will set the value to 15, click down button will set valut to 10. /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void integer_Spin(object sender, DevExpress.XtraEditors.Controls.SpinEventArgs e) { SpinEdit spin = sender as SpinEdit; int divisor = 5; int compliment = 0; int percent = 1; if (spin.Properties.Increment < 1) { //The value of spin is percentage. percent = 100; } divisor = (int)(spin.Properties.Increment * percent); compliment = (int)(spin.Value * percent) % divisor; if (compliment > 0) { if (e.IsSpinUp) { int result = (int)(spin.Value * percent) - compliment; spin.Value = result / percent; //spin.Value -= (compliment / percent); } else { //This event is earlier than default spin actions. int result = (int)(spin.Value * percent) + divisor - compliment; spin.Value = result / percent; //spin.Value += ((divisor - compliment) / percent); } } }
public static Nullable <Int32> Ex_EditValueToInt(this SpinEdit se) { if (se.EditValue == null) { return(new Nullable <Int32>()); } return(Convert.ToInt32(se.EditValue)); }
void ceLop_EditValueChanged(object sender, EventArgs e) { //if (ceLop.Properties.ReadOnly) //return; if (ceLop.EditValue == null || ceLop.EditValue.ToString() == "") { return; } SpinEdit glu = sender as SpinEdit; switch (Convert.ToInt32(glu.EditValue)) { case 3: foreach (GridLookUpEdit gl in lstGiay) { if (gl.Name == "Mat_Giay" || gl.Name == "SB_Giay" || gl.Name == "MB_Giay") { gl.Enabled = true; } else { gl.Enabled = false; } } break; case 5: foreach (GridLookUpEdit gl in lstGiay) { if (gl.Name == "Mat_Giay" || gl.Name == "SB_Giay" || gl.Name == "MB_Giay" || gl.Name == "SC_Giay" || gl.Name == "MC_Giay") { gl.Enabled = true; } else { gl.Enabled = false; } } break; case 7: foreach (GridLookUpEdit gl in lstGiay) { gl.Enabled = true; } break; default: foreach (GridLookUpEdit gl in lstGiay) { gl.Enabled = false; } XtraMessageBox.Show("Số lớp không hợp lệ!"); break; } TinhDaoCL(); }
public void AddEvent() { THvay = data.FrmMain.Controls.Find("THVay", true) [0] as SpinEdit; NgayNN = data.FrmMain.Controls.Find("NgayNN", true) [0] as DateEdit; grQD = data.FrmMain.Controls.Find("SoQD", true) [0] as GridLookUpEdit; data.BsMain.DataSourceChanged += new EventHandler(BsMain_DataSourceChanged); grDetail = (data.FrmMain.Controls.Find("gcMain", true) [0] as GridControl).MainView as GridView; BsMain_DataSourceChanged(data.BsMain, new EventArgs()); }
private void repositoryItemSpinEdit2_EditValueChanged(object sender, EventArgs e) { int focusedRowHandle = this.gridView1.FocusedRowHandle; if (focusedRowHandle == -1) return; SpinEdit sp = sender as SpinEdit; DataRow dr = this.gridView1.GetDataRow(focusedRowHandle); dr["MaxDepth"] = sp.Value; this.gridView1.RefreshRow(focusedRowHandle); }
public void AddEvent() { _data.BsMain.DataSourceChanged += new EventHandler(BsMain_DataSourceChanged); BsMain_DataSourceChanged(_data.BsMain, new EventArgs()); seHanTT = (_data.FrmMain.Controls.Find("HanTT", true)[0] as SpinEdit); GridLookUpEdit gluDKTT = (_data.FrmMain.Controls.Find("DKTT", true)[0] as GridLookUpEdit); gluDKTT.EditValueChanged += new EventHandler(gluDKTT_EditValueChanged); }
/// <summary> /// Set SpinEdit Properties /// </summary> /// <param name="spinEdit"></param> /// <param name="isFloatValue"></param> /// <param name="increment"></param> /// <param name="minValue"></param> /// <param name="maxValue"></param> /// <param name="initValue"></param> public static void SetProperties(this SpinEdit spinEdit, bool isFloatValue = false, decimal increment = 1, decimal minValue = 1, decimal maxValue = 99, decimal initValue = 1) { spinEdit.Properties.IsFloatValue = false; spinEdit.Properties.Increment = 1; spinEdit.Properties.MinValue = 1; spinEdit.Properties.MaxValue = 99; spinEdit.Properties.Mask.MaskType = MaskType.RegEx; spinEdit.Properties.Mask.EditMask = @"\d{1,2}?"; spinEdit.Value = 1; }
private bool checkValidatesp(SpinEdit spinEdit, string str) { if (spinEdit.Value == 0) { MessageBox.Show(str, "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); spinEdit.Focus(); return(false); } return(true); }
public bool DecideDataAddin_SpinEdit(SpinEdit _SpinEdit) { bool _IsTrue = false; if (_SpinEdit.Value == 0) { MessageBox.Show("“权重值:”的参数设置不正确!!!"); _IsTrue = true; } return(_IsTrue); }
public static INumericEntryWidget Create(SpinEdit editor) { NumericEntryWidget widget; if (!widgets.TryGetValue(editor, out widget)) { widget = new NumericEntryWidget(editor); widgets[editor] = widget; } return(widget); }
//Khi đưa vô framework, không cần filter Input public void addNumFromTo(QueryBuilder filter, string opLeft, SpinEdit FromSpin, SpinEdit ToSpin) { if (FromSpin.EditValue != null) { filter.add(opLeft, Operator.GreaterEqual, FromSpin.Value, DbType.Decimal); } if (ToSpin.EditValue != null) { filter.add(opLeft, Operator.LessEqual, ToSpin.Value, DbType.Decimal); } }
private void gridView1_ShownEditor(object sender, EventArgs e) { SpinEdit edit = gridView1.ActiveEditor as SpinEdit; tblPcStok stok = gridView1.GetFocusedRow() as tblPcStok; if (edit != null && stok != null) { edit.Properties.MinValue = 1; edit.Properties.MaxValue = stok.satinalmaAdet; edit.EditValue = 1; } }
public static void Ex_FormatCustomSpinEdit(this SpinEdit se) { se.Properties.TextEditStyle = TextEditStyles.Standard; se.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; se.Properties.DisplayFormat.FormatString = "#,#"; se.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric; se.Properties.EditFormat.FormatString = "#,#"; se.Properties.EditValueChangedFiringMode = EditValueChangedFiringMode.Default; se.Properties.Mask.EditMask = "n0"; //de.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric; //de.Properties.Mask.EditMask = "#,#"; }
/// <summary> /// Creates a single parameter field for the user to enter /// search criteria into. /// </summary> /// <param name="param"></param> /// <param name="defValue"></param> private void AddField(Field fld) { BaseEdit fieldEdit = null; switch (fld.Type) { default: case FieldType.String: fieldEdit = new TextEdit(); break; case FieldType.Integer: fieldEdit = new SpinEdit(); break; case FieldType.DateTime: fieldEdit = new DateEdit(); break; case FieldType.Boolean: fieldEdit = new CheckEdit(); break; case FieldType.List: { LookUpEdit lue = new LookUpEdit(); lue.Properties.DataSource = fld.ListItems; lue.Properties.DisplayMember = "DisplayName"; lue.Properties.ValueMember = "Value"; fieldEdit = lue; } break; } fieldEdit.Name = fld.Name.Substring(1) + "Edit"; fieldEdit.Tag = fld; //fieldEdit.ContextMenuStrip = CreateContextMenu(fieldEdit); fieldEdit.KeyPress += fieldEdit_KeyPress; fieldEdit.EditValueChanged += fieldEdit_EditValueChanged; m_fieldEditors[fld.Name] = fieldEdit; BaseLayoutItem bli = new LayoutControlItem(fieldLayout, fieldEdit); bli.CustomizationFormText = fld.DisplayName; bli.Text = fld.DisplayName + ":"; }
public static void SetEnable(this SpinEdit edit, bool enable = false) { edit.Properties.AllowFocused = enable; edit.Properties.ReadOnly = !enable; if (edit.Properties.Buttons.Count > 0) { foreach (EditorButton btn in edit.Properties.Buttons) { btn.Visible = enable; } } }
public override void Run(object sender, System.EventArgs e) { DF2DApplication app = DF2DApplication.Application; if (app == null || app.Current2DMapControl == null) { return; } SpinEdit spinEdit = sender as SpinEdit; int strDis = Convert.ToInt32(spinEdit.EditValue); Class.SelectionEnv.Tolerate = strDis; }
private void spin_jumlah_ValueChanged(object sender, EventArgs e) { int[] indexgrid = gridView1.GetSelectedRows(); var barang = gridView1.GetRowCellValue(indexgrid[0], "nama"); if (barang != DBNull.Value) { SpinEdit spin = (SpinEdit)sender; int qty = Convert.ToInt32(spin.EditValue); int harga = Convert.ToInt32(gridView1.GetRowCellValue(indexgrid[0], "harga")); gridView1.SetRowCellValue(indexgrid[0], "total", (qty * harga)); this.HitungTotal(); } }
public static void SetFormat(this SpinEdit edit, string formatString, bool visibleButtons = true, HorzAlignment hAlign = HorzAlignment.Far) { edit.Properties.DisplayFormat.FormatType = FormatType.Numeric; edit.Properties.DisplayFormat.FormatString = formatString; edit.Properties.Mask.UseMaskAsDisplayFormat = true; edit.Properties.EditFormat.FormatType = FormatType.Numeric; edit.Properties.EditFormat.FormatString = formatString; edit.Properties.EditMask = formatString; edit.Properties.Appearance.TextOptions.HAlignment = hAlign; if (visibleButtons == false) { edit.ButtonClear(); } }
//-------------------------------------------------------------------------------------------------------------------------------------------------// private void SetTartimStatus(SpinEdit p_Edit, bool p_Status) { if (p_Status) { // Enable Manual Tartim p_Edit.ForeColor = Color.Red; p_Edit.Properties.ReadOnly = false; } else { // Disable Manual Tartim p_Edit.ForeColor = Color.Aqua; p_Edit.Properties.ReadOnly = true; } }
public virtual bool OnMouseUp(MouseEventArgs e) { if (SpinEdit.IsDesignMode) { return(false); } if (State == ScrollableSpinEditState.Normal) { SpinEdit.ShowMaskBox(); SpinEdit.Cursor = PrevCursor; return(true); } Cursor.Show(); State = ScrollableSpinEditState.Normal; return(false); }
// LayoutControl lc; public void AddEvent() { raHinhThuc = data.FrmMain.Controls.Find("HinhThuc", true)[0] as RadioGroup; raHinhThuc.EditValueChanged += new EventHandler(raHinhThuc_EditValueChanged); lc = data.FrmMain.Controls.Find("LcMain", true)[0] as LayoutControl; gv = (data.FrmMain.Controls.Find("GcMain", true)[0] as GridControl).MainView as GridView; raNghiepVu = data.FrmMain.Controls.Find("NghiepVu", true)[0] as RadioGroup; raNghiepVu.EditValueChanged += new EventHandler(raNghiepVu_EditValueChanged); raHTChuyen = data.FrmMain.Controls.Find("HTChuyen", true)[0] as RadioGroup; raHTChuyen.EditValueChanged += new EventHandler(raHTChuyen_EditValueChanged); data.FrmMain.Shown += new EventHandler(FrmMain_Shown); btnDK = data.FrmMain.Controls.Find("HVDK", true)[0] as ButtonEdit; btnCho = data.FrmMain.Controls.Find("DKChoLop", true)[0] as ButtonEdit; btnPhChi = data.FrmMain.Controls.Find("PhieuChi", true)[0] as ButtonEdit; calTLHoan = data.FrmMain.Controls.Find("TLHoan", true)[0] as CalcEdit; calSoTien = data.FrmMain.Controls.Find("SoTienHoan", true)[0] as CalcEdit; mahv = data.FrmMain.Controls.Find("MaHV", true)[0] as GridLookUpEdit; mahv.Popup += new EventHandler(mahv_Popup); malopht = data.FrmMain.Controls.Find("MaLopHT", true)[0] as GridLookUpEdit; hvnhan = data.FrmMain.Controls.Find("HVNhan", true)[0] as GridLookUpEdit; ngaynghi = data.FrmMain.Controls.Find("NgayCL", true)[0] as DateEdit; sbbaoluu = data.FrmMain.Controls.Find("SoBuoiBL", true)[0] as SpinEdit; ttdong = data.FrmMain.Controls.Find("TTDong", true)[0] as CalcEdit; sotienbl = data.FrmMain.Controls.Find("TienBL", true)[0] as CalcEdit; // lg = data.FrmMain.Controls.Find("Root",true)[0] as LayoutGroup; // lc = data.FrmMain.Controls.Find("lcMain",true)[0] as LayoutControl; if (data.BsMain.Current == null) { return; } drMaster = (data.BsMain.Current as DataRowView).Row; if (drMaster.RowState == DataRowState.Deleted) { return; } data.BsMain.DataSourceChanged += new EventHandler(BsMain_DataSourceChanged); BsMain_DataSourceChanged(data.BsMain, new EventArgs()); }
public static void dateFormat(SpinEdit seYear, SpinEdit seMonth, SpinEdit seDay) { seYear.Properties.MaxValue = DateTime.Now.Year; seYear.Properties.MinValue = 1900; if (seMonth != null) { seMonth.Properties.MaxValue = 12; seMonth.Properties.MinValue = 1; } if (seDay != null) { seDay.Properties.MaxValue = 31; seDay.Properties.MinValue = 1; } }
/// <summary> /// Creates a single parameter field for the user to enter /// search criteria into. /// </summary> /// <param name="param"></param> private void AddParam(ProcSearchParam param) { string name = param.Name.Substring(1); BaseEdit paramEditor = null; switch (param.Type.ToLower()) { case "bit": paramEditor = new CheckEdit(); break; case "smalldatetime": paramEditor = new DateEdit(); break; case "int": paramEditor = new SpinEdit(); ((SpinEdit)paramEditor).Properties.IsFloatValue = false; break; default: paramEditor = m_listController.NewMRUEdit(name); break; } paramEditor.Name = name + "Edit"; paramEditor.Tag = param; paramEditor.ContextMenuStrip = CreateContextMenu(paramEditor); paramEditor.KeyPress += paramEdit_KeyPress; paramEditor.EditValueChanged += paramEdit_ValueChanged; m_paramEditors[param.Name] = paramEditor; BaseLayoutItem bli = new LayoutControlItem(paramsLayout, paramEditor); // Try for a nicer looking label. name = SCOUT.Core.Data.Helpers.UnderscoreToCamel(name); name = SCOUT.Core.Data.Helpers.SplitCamelCaps(name); bli.Text = name; }
public void AddEvent() { lcMain = data.FrmMain.Controls.Find("lcMain", true) [0] as LayoutControl; SimpleButton btnGetDA = new SimpleButton(); btnGetDA.Name = "btnGetDA"; btnGetDA.Text = " Lấy dự án "; LayoutControlItem lci = lcMain.AddItem("", btnGetDA); lci.Name = "btnGet"; btnGetDA.Click += new EventHandler(btnGetDA_Click); grDA = (data.FrmMain.Controls.Find("gcMain", true)[0] as GridControl).MainView as GridView; SoTT = data.FrmMain.Controls.Find("SoTTrinh", true) [0] as TextEdit; soho = data.FrmMain.Controls.Find("TSoHo", true)[0] as SpinEdit; sold = data.FrmMain.Controls.Find("TSoLDTH", true)[0] as SpinEdit; vonvay = data.FrmMain.Controls.Find("TVonVay", true)[0] as CalcEdit; grNV = data.FrmMain.Controls.Find("NguonVon_TenBP", true) [0] as GridLookUpEdit; grNV.Popup += new EventHandler(grNV_Popup); }
private void spin_qty_ValueChanged(object sender, EventArgs e) { int[] indexgrid = gridView1.GetSelectedRows(); string barang = gridView1.GetRowCellDisplayText(indexgrid[0], "nama").ToString(); if (barang != "") { SpinEdit spin = (SpinEdit)sender; int qty = Convert.ToInt32(spin.EditValue); double ukuran = Convert.ToDouble(gridView1.GetRowCellValue(indexgrid[0], "ukuran")); double liter = qty * ukuran; gridView1.SetRowCellValue(indexgrid[0], "liter", liter); this.HitungTotal(); } }
private FormTemplatePreview(List<ReportParam> prms) { InitializeComponent(); foreach (ReportParam tp in prms) { BaseEdit ctrl = null; switch (tp.PType) { case ReportParamTypes.TamSayý: SpinEdit se = new SpinEdit(); ctrl = se; break; case ReportParamTypes.Tarih: ctrl = new DateEdit(); break; case ReportParamTypes.Metin: ctrl = new TextEdit(); break; case ReportParamTypes.OndalikliSayi: ctrl = new SpinEdit(); break; case ReportParamTypes.EvetHayir: ctrl = new CheckEdit(); break; case ReportParamTypes.Entity: LookUp lu = new LookUp(); lu.EntityType = DMT.Provider.GetEntityType(tp.PModuleName, tp.PEntityName); lu.DisplayFieldName = tp.PDisplayField; lu.ValueFieldName = tp.PValueField; ctrl = lu; break; default: throw new ArgumentOutOfRangeException(); } ctrl.Name = tp.PName; LayoutControl.AddItem(tp.Name, ctrl); } }
public static void SetTenYear(SpinEdit fromYear, SpinEdit toYear) { toYear.Value = HelpDB.getDBService().GetSystemCurrentDateTime().Year; fromYear.Value = toYear.Value - 10; }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.groupControl1 = new DevExpress.XtraEditors.GroupControl(); this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit(); this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit(); this.textbh = new DevExpress.XtraEditors.TextEdit(); this.textEdit1 = new DevExpress.XtraEditors.TextEdit(); this.radioGroup1 = new DevExpress.XtraEditors.RadioGroup(); this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton(); this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton(); ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit(); this.groupControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.textbh.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit(); this.SuspendLayout(); // // groupControl1 // this.groupControl1.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.groupControl1.Controls.Add(this.comboBoxEdit1); this.groupControl1.Controls.Add(this.spinEdit1); this.groupControl1.Controls.Add(this.textbh); this.groupControl1.Controls.Add(this.textEdit1); this.groupControl1.Controls.Add(this.radioGroup1); this.groupControl1.Location = new System.Drawing.Point(13, 28); this.groupControl1.Name = "groupControl1"; this.groupControl1.Size = new System.Drawing.Size(267, 199); this.groupControl1.TabIndex = 0; this.groupControl1.Text = "��ѯ����"; // // comboBoxEdit1 // this.comboBoxEdit1.Enabled = false; this.comboBoxEdit1.Location = new System.Drawing.Point(113, 104); this.comboBoxEdit1.Name = "comboBoxEdit1"; this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.comboBoxEdit1.Size = new System.Drawing.Size(136, 21); this.comboBoxEdit1.TabIndex = 7; this.comboBoxEdit1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit1_SelectedIndexChanged); // // spinEdit1 // this.spinEdit1.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.spinEdit1.Enabled = false; this.spinEdit1.Location = new System.Drawing.Point(113, 68); this.spinEdit1.Name = "spinEdit1"; this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.spinEdit1.Size = new System.Drawing.Size(136, 21); this.spinEdit1.TabIndex = 6; // // textbh // this.textbh.Location = new System.Drawing.Point(112, 137); this.textbh.Name = "textbh"; this.textbh.Size = new System.Drawing.Size(136, 21); this.textbh.TabIndex = 5; this.textbh.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textbh_KeyPress); // // textEdit1 // this.textEdit1.Location = new System.Drawing.Point(114, 32); this.textEdit1.Name = "textEdit1"; this.textEdit1.Size = new System.Drawing.Size(136, 21); this.textEdit1.TabIndex = 5; this.textEdit1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textEdit1_KeyPress); this.textEdit1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textEdit1_KeyDown); // // radioGroup1 // this.radioGroup1.EditValue = "0"; this.radioGroup1.Location = new System.Drawing.Point(6, 21); this.radioGroup1.Name = "radioGroup1"; this.radioGroup1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent; this.radioGroup1.Properties.Appearance.Options.UseBackColor = true; this.radioGroup1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] { new DevExpress.XtraEditors.Controls.RadioGroupItem("0", "�豸���Ƽ���"), new DevExpress.XtraEditors.Controls.RadioGroupItem("1", "��ѹ�ȼ�����"), new DevExpress.XtraEditors.Controls.RadioGroupItem("2", "���˹�ϵ����"), new DevExpress.XtraEditors.Controls.RadioGroupItem("3", "�豸��ż���")}); this.radioGroup1.Size = new System.Drawing.Size(101, 144); this.radioGroup1.TabIndex = 4; this.radioGroup1.SelectedIndexChanged += new System.EventHandler(this.radioGroup1_SelectedIndexChanged); // // simpleButton1 // this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.simpleButton1.Location = new System.Drawing.Point(37, 246); this.simpleButton1.Name = "simpleButton1"; this.simpleButton1.Size = new System.Drawing.Size(75, 28); this.simpleButton1.TabIndex = 1; this.simpleButton1.Text = "ȷ��"; this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click); // // simpleButton2 // this.simpleButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.simpleButton2.Location = new System.Drawing.Point(200, 246); this.simpleButton2.Name = "simpleButton2"; this.simpleButton2.Size = new System.Drawing.Size(75, 28); this.simpleButton2.TabIndex = 2; this.simpleButton2.Text = "ȡ��"; this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click); // // XtraSelectfrm // this.ClientSize = new System.Drawing.Size(292, 291); this.Controls.Add(this.simpleButton2); this.Controls.Add(this.simpleButton1); this.Controls.Add(this.groupControl1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "XtraSelectfrm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "�����豸"; ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit(); this.groupControl1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.textbh.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.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.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton(); this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton(); this.dateEdit1 = new DevExpress.XtraEditors.DateEdit(); this.memoEdit1 = new DevExpress.XtraEditors.MemoEdit(); this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit(); this.label4 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(43, 33); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(43, 14); this.label1.TabIndex = 0; this.label1.Text = "��ݣ�"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(43, 74); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(67, 14); this.label2.TabIndex = 2; this.label2.Text = "����ʱ�䣺"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(43, 117); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(43, 14); this.label3.TabIndex = 5; this.label3.Text = "��ע��"; // // simpleButton1 // this.simpleButton1.Location = new System.Drawing.Point(171, 183); this.simpleButton1.Name = "simpleButton1"; this.simpleButton1.Size = new System.Drawing.Size(75, 26); this.simpleButton1.TabIndex = 5; this.simpleButton1.Text = "ȷ��(&O)"; this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click); // // simpleButton2 // this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.simpleButton2.Location = new System.Drawing.Point(264, 183); this.simpleButton2.Name = "simpleButton2"; this.simpleButton2.Size = new System.Drawing.Size(75, 26); this.simpleButton2.TabIndex = 6; this.simpleButton2.Text = "ȡ��(&C)"; // // dateEdit1 // this.dateEdit1.EditValue = null; this.dateEdit1.Location = new System.Drawing.Point(128, 71); this.dateEdit1.Name = "dateEdit1"; this.dateEdit1.Properties.Appearance.BackColor = System.Drawing.SystemColors.Window; this.dateEdit1.Properties.Appearance.Options.UseBackColor = true; this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.dateEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.dateEdit1.Size = new System.Drawing.Size(228, 23); this.dateEdit1.TabIndex = 7; // // memoEdit1 // this.memoEdit1.Location = new System.Drawing.Point(128, 115); this.memoEdit1.Name = "memoEdit1"; this.memoEdit1.Size = new System.Drawing.Size(228, 46); this.memoEdit1.TabIndex = 8; // // spinEdit1 // this.spinEdit1.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.spinEdit1.Location = new System.Drawing.Point(128, 29); this.spinEdit1.Name = "spinEdit1"; this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.spinEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default; this.spinEdit1.Properties.Mask.EditMask = "g0"; this.spinEdit1.Size = new System.Drawing.Size(82, 23); this.spinEdit1.TabIndex = 9; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(216, 33); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(19, 14); this.label4.TabIndex = 10; this.label4.Text = "��"; // // FormForecastReport_BigUser // this.AcceptButton = this.simpleButton1; this.CancelButton = this.simpleButton2; this.ClientSize = new System.Drawing.Size(384, 235); this.Controls.Add(this.label4); this.Controls.Add(this.spinEdit1); this.Controls.Add(this.memoEdit1); this.Controls.Add(this.dateEdit1); this.Controls.Add(this.simpleButton2); this.Controls.Add(this.simpleButton1); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FormForecastReport_BigUser"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "FormForecastReport"; this.Load += new System.EventHandler(this.FormForecastReport_Load); ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.spinEdit2 = new DevExpress.XtraEditors.SpinEdit(); this.label4 = new System.Windows.Forms.Label(); this.spinEdit3 = new DevExpress.XtraEditors.SpinEdit(); this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton(); this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton(); this.checkBox1 = new System.Windows.Forms.CheckBox(); this.comboBox1 = new System.Windows.Forms.ComboBox(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).BeginInit(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(31, 33); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(67, 14); this.label1.TabIndex = 0; this.label1.Text = "Ԥ�����ƣ�"; // // spinEdit1 // this.spinEdit1.EditValue = new decimal(new int[] { 1980, 0, 0, 0}); this.spinEdit1.Location = new System.Drawing.Point(128, 71); this.spinEdit1.Name = "spinEdit1"; this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.spinEdit1.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.spinEdit1.Properties.IsFloatValue = false; this.spinEdit1.Properties.Mask.EditMask = "####"; this.spinEdit1.Properties.MaxValue = new decimal(new int[] { 2050, 0, 0, 0}); this.spinEdit1.Properties.MinValue = new decimal(new int[] { 1980, 0, 0, 0}); this.spinEdit1.Size = new System.Drawing.Size(228, 21); this.spinEdit1.TabIndex = 2; this.spinEdit1.EditValueChanged += new System.EventHandler(this.spinEdit1_EditValueChanged); this.spinEdit1.Enter += new System.EventHandler(this.spinEdit1_Enter); // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(31, 74); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(67, 14); this.label2.TabIndex = 2; this.label2.Text = "��ʼ��ݣ�"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(31, 117); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(67, 14); this.label3.TabIndex = 5; this.label3.Text = "������ݣ�"; // // spinEdit2 // this.spinEdit2.EditValue = new decimal(new int[] { 1980, 0, 0, 0}); this.spinEdit2.Location = new System.Drawing.Point(128, 114); this.spinEdit2.Name = "spinEdit2"; this.spinEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.spinEdit2.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.spinEdit2.Properties.IsFloatValue = false; this.spinEdit2.Properties.Mask.EditMask = "####"; this.spinEdit2.Properties.MaxValue = new decimal(new int[] { 2050, 0, 0, 0}); this.spinEdit2.Properties.MinValue = new decimal(new int[] { 1980, 0, 0, 0}); this.spinEdit2.Size = new System.Drawing.Size(228, 21); this.spinEdit2.TabIndex = 3; this.spinEdit2.Enter += new System.EventHandler(this.spinEdit2_Enter); // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(31, 163); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(91, 14); this.label4.TabIndex = 7; this.label4.Text = "��ʷ����������"; this.label4.Visible = false; // // spinEdit3 // this.spinEdit3.EditValue = new decimal(new int[] { 10, 0, 0, 0}); this.spinEdit3.Location = new System.Drawing.Point(128, 160); this.spinEdit3.Name = "spinEdit3"; this.spinEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.spinEdit3.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.spinEdit3.Properties.IsFloatValue = false; this.spinEdit3.Properties.Mask.EditMask = "##"; this.spinEdit3.Properties.MaxValue = new decimal(new int[] { 50, 0, 0, 0}); this.spinEdit3.Properties.MinValue = new decimal(new int[] { 1, 0, 0, 0}); this.spinEdit3.Size = new System.Drawing.Size(228, 21); this.spinEdit3.TabIndex = 4; this.spinEdit3.Visible = false; this.spinEdit3.Enter += new System.EventHandler(this.spinEdit3_Enter); // // simpleButton1 // this.simpleButton1.Location = new System.Drawing.Point(181, 167); this.simpleButton1.Name = "simpleButton1"; this.simpleButton1.Size = new System.Drawing.Size(75, 26); this.simpleButton1.TabIndex = 5; this.simpleButton1.Text = "ȷ��(&O)"; this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click); // // simpleButton2 // this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.simpleButton2.Location = new System.Drawing.Point(281, 167); this.simpleButton2.Name = "simpleButton2"; this.simpleButton2.Size = new System.Drawing.Size(75, 26); this.simpleButton2.TabIndex = 6; this.simpleButton2.Text = "ȡ��(&C)"; this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click); // // checkBox1 // this.checkBox1.AutoSize = true; this.checkBox1.Location = new System.Drawing.Point(37, 148); this.checkBox1.Name = "checkBox1"; this.checkBox1.Size = new System.Drawing.Size(86, 18); this.checkBox1.TabIndex = 9; this.checkBox1.Text = "�����˿ɼ�"; this.checkBox1.UseVisualStyleBackColor = true; this.checkBox1.Visible = false; // // comboBox1 // this.comboBox1.FormattingEnabled = true; this.comboBox1.Location = new System.Drawing.Point(128, 31); this.comboBox1.Name = "comboBox1"; this.comboBox1.Size = new System.Drawing.Size(228, 20); this.comboBox1.TabIndex = 10; // // FormForecastReport // this.ClientSize = new System.Drawing.Size(384, 213); this.Controls.Add(this.comboBox1); this.Controls.Add(this.checkBox1); this.Controls.Add(this.simpleButton2); this.Controls.Add(this.simpleButton1); this.Controls.Add(this.label4); this.Controls.Add(this.spinEdit3); this.Controls.Add(this.label3); this.Controls.Add(this.spinEdit2); this.Controls.Add(this.label2); this.Controls.Add(this.spinEdit1); this.Controls.Add(this.label1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FormForecastReport"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "FormForecastReport"; this.Load += new System.EventHandler(this.FormForecastReport_Load); ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// </summary> protected void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmTNSSaleCppScrQL)); DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject(); DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject(); this.barManager1 = new DevExpress.XtraBars.BarManager(this.components); this.MainBar = new DevExpress.XtraBars.Bar(); this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem(); this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components); this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem(); this.barSubItem1 = new DevExpress.XtraBars.BarSubItem(); this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem(); this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components); this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem(); this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem(); this.barDockControlTop = new DevExpress.XtraBars.BarDockControl(); this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl(); this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl(); this.barDockControlRight = new DevExpress.XtraBars.BarDockControl(); this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem(); this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem(); this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl(); this.gridControlMaster = new DevExpress.XtraGrid.GridControl(); this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView(); this.colName = new DevExpress.XtraGrid.Columns.GridColumn(); this.colTuNgay = new DevExpress.XtraGrid.Columns.GridColumn(); this.colDenNgay = new DevExpress.XtraGrid.Columns.GridColumn(); this.colNgayLap = new DevExpress.XtraGrid.Columns.GridColumn(); this.colGhiChu = new DevExpress.XtraGrid.Columns.GridColumn(); this.colTenFile = new DevExpress.XtraGrid.Columns.GridColumn(); this.colTarget = new DevExpress.XtraGrid.Columns.GridColumn(); this.colThiTruong = new DevExpress.XtraGrid.Columns.GridColumn(); this.colNguoiThem = new DevExpress.XtraGrid.Columns.GridColumn(); this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl(); this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage(); this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components); this.Target = new ProtocolVN.App.VideoLibrary.PLMultiChoiceGrid(); this.ThiTruong = new ProtocolVN.App.VideoLibrary.PLMultiChoiceGrid(); this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice(); this.labelControl3 = new DevExpress.XtraEditors.LabelControl(); this.DenNam = new DevExpress.XtraEditors.SpinEdit(); this.DenThang = new DevExpress.XtraEditors.SpinEdit(); this.TuNam = new DevExpress.XtraEditors.SpinEdit(); this.TuThang = new DevExpress.XtraEditors.SpinEdit(); this.labelControl7 = new DevExpress.XtraEditors.LabelControl(); this.labelControl8 = new DevExpress.XtraEditors.LabelControl(); this.labelControl6 = new DevExpress.XtraEditors.LabelControl(); this.labelControl5 = new DevExpress.XtraEditors.LabelControl(); this.plLabel5 = new DevExpress.XtraEditors.LabelControl(); this.NguoiLap = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.NgayLap = new ProtocolVN.Framework.Win.Trial.PLDateSelection(); this.TenFile = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.TenNguon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.plLabel3 = new DevExpress.XtraEditors.LabelControl(); this.plLabel1 = new DevExpress.XtraEditors.LabelControl(); this.labelControl2 = new DevExpress.XtraEditors.LabelControl(); this.labelControl1 = new DevExpress.XtraEditors.LabelControl(); this.plLabel2 = new DevExpress.XtraEditors.LabelControl(); this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn(); ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit(); this.splitContainerControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit(); this.xtraTabControlDetail.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit(); this.popupControlContainerFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.DenNam.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DenThang.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TuNam.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TuThang.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NguoiLap.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TenFile.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TenNguon.Properties)).BeginInit(); this.SuspendLayout(); // // barManager1 // this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] { this.MainBar}); this.barManager1.DockControls.Add(this.barDockControlTop); this.barManager1.DockControls.Add(this.barDockControlBottom); this.barManager1.DockControls.Add(this.barDockControlLeft); this.barManager1.DockControls.Add(this.barDockControlRight); this.barManager1.Form = this; this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] { this.barButtonItemAdd, this.barButtonItemDelete, this.barButtonItemUpdate, this.barButtonItemPrint, this.barStaticItem1, this.barButtonItem1, this.barButtonItem2, this.barButtonItemCommit, this.barButtonItemNoCommit, this.barSubItem1, this.barButtonItemXem, this.barButtonItemSearch, this.barButtonItemClose, this.barCheckItemFilter, this.barButtonItem3, this.barButtonItem4}); this.barManager1.MaxItemId = 43; // // MainBar // this.MainBar.BarName = "MainBar"; this.MainBar.DockCol = 0; this.MainBar.DockRow = 0; this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top; this.MainBar.FloatLocation = new System.Drawing.Point(39, 133); this.MainBar.FloatSize = new System.Drawing.Size(72, 73); this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm", true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit), new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)}); this.MainBar.OptionsBar.AllowQuickCustomization = false; this.MainBar.OptionsBar.DrawDragBorder = false; this.MainBar.OptionsBar.RotateWhenVertical = false; this.MainBar.OptionsBar.UseWholeRow = true; this.MainBar.Text = "Custom 1"; // // barButtonItemAdd // this.barButtonItemAdd.Caption = "Thêm"; this.barButtonItemAdd.Id = 0; this.barButtonItemAdd.Name = "barButtonItemAdd"; this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemXem // this.barButtonItemXem.Caption = "X&em"; this.barButtonItemXem.Id = 24; this.barButtonItemXem.Name = "barButtonItemXem"; this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemDelete // this.barButtonItemDelete.Caption = "&Xóa"; this.barButtonItemDelete.Id = 1; this.barButtonItemDelete.Name = "barButtonItemDelete"; this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemUpdate // this.barButtonItemUpdate.Caption = "&Sửa"; this.barButtonItemUpdate.Id = 2; this.barButtonItemUpdate.Name = "barButtonItemUpdate"; this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemPrint // this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItemPrint.Caption = "&In"; this.barButtonItemPrint.DropDownControl = this.popupMenu1; this.barButtonItemPrint.Id = 3; this.barButtonItemPrint.Name = "barButtonItemPrint"; this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // popupMenu1 // this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)}); this.popupMenu1.Manager = this.barManager1; this.popupMenu1.Name = "popupMenu1"; // // barButtonItem4 // this.barButtonItem4.Caption = "Xem trước"; this.barButtonItem4.Id = 33; this.barButtonItem4.Name = "barButtonItem4"; // // barButtonItemCommit // this.barButtonItemCommit.Caption = "&Duyệt"; this.barButtonItemCommit.Id = 17; this.barButtonItemCommit.Name = "barButtonItemCommit"; this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemNoCommit // this.barButtonItemNoCommit.Caption = "&Không duyệt"; this.barButtonItemNoCommit.Id = 18; this.barButtonItemNoCommit.Name = "barButtonItemNoCommit"; this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barSubItem1 // this.barSubItem1.Caption = "Nghiệp vụ"; this.barSubItem1.Id = 20; this.barSubItem1.Name = "barSubItem1"; this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemSearch // this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItemSearch.Caption = "Tì&m kiếm"; this.barButtonItemSearch.DropDownControl = this.popupMenuFilter; this.barButtonItemSearch.Id = 27; this.barButtonItemSearch.Name = "barButtonItemSearch"; this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // popupMenuFilter // this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)}); this.popupMenuFilter.Manager = this.barManager1; this.popupMenuFilter.Name = "popupMenuFilter"; // // barCheckItemFilter // this.barCheckItemFilter.Caption = "Điều &kiện lọc"; this.barCheckItemFilter.Checked = true; this.barCheckItemFilter.Id = 29; this.barCheckItemFilter.Name = "barCheckItemFilter"; this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemClose // this.barButtonItemClose.Caption = "Đón&g"; this.barButtonItemClose.Id = 28; this.barButtonItemClose.Name = "barButtonItemClose"; this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // 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(1187, 24); // // barDockControlBottom // this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.barDockControlBottom.Location = new System.Drawing.Point(0, 497); this.barDockControlBottom.Size = new System.Drawing.Size(1187, 0); // // barDockControlLeft // this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left; this.barDockControlLeft.Location = new System.Drawing.Point(0, 24); this.barDockControlLeft.Size = new System.Drawing.Size(0, 473); // // barDockControlRight // this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right; this.barDockControlRight.Location = new System.Drawing.Point(1187, 24); this.barDockControlRight.Size = new System.Drawing.Size(0, 473); // // barStaticItem1 // this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None; this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.barStaticItem1.Id = 13; this.barStaticItem1.Name = "barStaticItem1"; this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near; this.barStaticItem1.Width = 100; // // barButtonItem1 // this.barButtonItem1.Caption = "barButtonItem1"; this.barButtonItem1.Id = 14; this.barButtonItem1.Name = "barButtonItem1"; // // barButtonItem2 // this.barButtonItem2.Caption = "barButtonItem2"; this.barButtonItem2.Id = 15; this.barButtonItem2.Name = "barButtonItem2"; // // barButtonItem3 // this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItem3.Caption = "In"; this.barButtonItem3.Id = 30; this.barButtonItem3.Name = "barButtonItem3"; // // splitContainerControl1 // this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2; this.splitContainerControl1.Location = new System.Drawing.Point(0, 102); this.splitContainerControl1.Name = "splitContainerControl1"; this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster); this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1"; this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left; this.splitContainerControl1.Panel2.ShowCaption = true; this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2"; this.splitContainerControl1.PanelVisibility = DevExpress.XtraEditors.SplitPanelVisibility.Panel1; this.splitContainerControl1.Size = new System.Drawing.Size(1187, 395); this.splitContainerControl1.SplitterPosition = 368; this.splitContainerControl1.TabIndex = 4; this.splitContainerControl1.Text = "splitContainerControl1"; // // gridControlMaster // this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage"))); this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill; this.gridControlMaster.Location = new System.Drawing.Point(0, 0); this.gridControlMaster.MainView = this.gridViewMaster; this.gridControlMaster.Name = "gridControlMaster"; this.gridControlMaster.Size = new System.Drawing.Size(1187, 395); this.gridControlMaster.TabIndex = 0; this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridViewMaster}); // // gridViewMaster // this.gridViewMaster.Appearance.FooterPanel.Options.UseTextOptions = true; this.gridViewMaster.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far; this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true; this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colName, this.colTuNgay, this.colDenNgay, this.colNgayLap, this.colGhiChu, this.colTenFile, this.colTarget, this.colThiTruong, this.colNguoiThem}); this.gridViewMaster.GridControl = this.gridControlMaster; this.gridViewMaster.GroupPanelText = "Di chuyển tiêu đề vào đây để gom nhóm theo cột tiêu đề"; this.gridViewMaster.IndicatorWidth = 40; this.gridViewMaster.Name = "gridViewMaster"; this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false; this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true; this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true; this.gridViewMaster.OptionsPrint.UsePrintStyles = true; this.gridViewMaster.OptionsSelection.MultiSelect = true; this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true; this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true; this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom; this.gridViewMaster.OptionsView.ShowFooter = true; this.gridViewMaster.OptionsView.ShowGroupedColumns = true; this.gridViewMaster.OptionsView.ShowViewCaption = true; this.gridViewMaster.ViewCaption = "DANH SÁCH FILE NGUỒN CPP"; // // colName // this.colName.Caption = "Tên nguồn"; this.colName.Name = "colName"; this.colName.OptionsColumn.AllowEdit = false; this.colName.OptionsColumn.AllowFocus = false; this.colName.OptionsColumn.ReadOnly = true; this.colName.Visible = true; this.colName.VisibleIndex = 0; this.colName.Width = 63; // // colTuNgay // this.colTuNgay.Caption = "Từ tháng"; this.colTuNgay.Name = "colTuNgay"; this.colTuNgay.OptionsColumn.AllowEdit = false; this.colTuNgay.OptionsColumn.AllowFocus = false; this.colTuNgay.OptionsColumn.ReadOnly = true; this.colTuNgay.Visible = true; this.colTuNgay.VisibleIndex = 4; this.colTuNgay.Width = 56; // // colDenNgay // this.colDenNgay.Caption = "Đến tháng"; this.colDenNgay.Name = "colDenNgay"; this.colDenNgay.OptionsColumn.AllowEdit = false; this.colDenNgay.OptionsColumn.AllowFocus = false; this.colDenNgay.OptionsColumn.AllowMove = false; this.colDenNgay.OptionsColumn.ReadOnly = true; this.colDenNgay.Visible = true; this.colDenNgay.VisibleIndex = 5; this.colDenNgay.Width = 63; // // colNgayLap // this.colNgayLap.Caption = "Ngày thêm"; this.colNgayLap.Name = "colNgayLap"; this.colNgayLap.Visible = true; this.colNgayLap.VisibleIndex = 6; this.colNgayLap.Width = 64; // // colGhiChu // this.colGhiChu.Caption = "Ghi chú"; this.colGhiChu.Name = "colGhiChu"; this.colGhiChu.Visible = true; this.colGhiChu.VisibleIndex = 8; this.colGhiChu.Width = 47; // // colTenFile // this.colTenFile.Caption = "Tên file"; this.colTenFile.Name = "colTenFile"; this.colTenFile.Visible = true; this.colTenFile.VisibleIndex = 1; this.colTenFile.Width = 47; // // colTarget // this.colTarget.Caption = "Target"; this.colTarget.Name = "colTarget"; this.colTarget.Visible = true; this.colTarget.VisibleIndex = 2; this.colTarget.Width = 44; // // colThiTruong // this.colThiTruong.Caption = "Thị trường"; this.colThiTruong.Name = "colThiTruong"; this.colThiTruong.Visible = true; this.colThiTruong.VisibleIndex = 3; this.colThiTruong.Width = 62; // // colNguoiThem // this.colNguoiThem.Caption = "Người thêm"; this.colNguoiThem.Name = "colNguoiThem"; this.colNguoiThem.Visible = true; this.colNguoiThem.VisibleIndex = 7; this.colNguoiThem.Width = 67; // // xtraTabControlDetail // this.xtraTabControlDetail.Location = new System.Drawing.Point(1141, 13); this.xtraTabControlDetail.Name = "xtraTabControlDetail"; this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail; this.xtraTabControlDetail.Size = new System.Drawing.Size(20, 13); this.xtraTabControlDetail.TabIndex = 0; this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { this.xtraTabPageDetail}); this.xtraTabControlDetail.Visible = false; // // xtraTabPageDetail // this.xtraTabPageDetail.Name = "xtraTabPageDetail"; this.xtraTabPageDetail.Size = new System.Drawing.Size(13, 0); this.xtraTabPageDetail.Text = "Chi tiết"; // // popupControlContainerFilter // this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.popupControlContainerFilter.Controls.Add(this.Target); this.popupControlContainerFilter.Controls.Add(this.ThiTruong); this.popupControlContainerFilter.Controls.Add(this.PhongBan); this.popupControlContainerFilter.Controls.Add(this.labelControl3); this.popupControlContainerFilter.Controls.Add(this.DenNam); this.popupControlContainerFilter.Controls.Add(this.DenThang); this.popupControlContainerFilter.Controls.Add(this.TuNam); this.popupControlContainerFilter.Controls.Add(this.TuThang); this.popupControlContainerFilter.Controls.Add(this.labelControl7); this.popupControlContainerFilter.Controls.Add(this.labelControl8); this.popupControlContainerFilter.Controls.Add(this.labelControl6); this.popupControlContainerFilter.Controls.Add(this.labelControl5); this.popupControlContainerFilter.Controls.Add(this.xtraTabControlDetail); this.popupControlContainerFilter.Controls.Add(this.plLabel5); this.popupControlContainerFilter.Controls.Add(this.NguoiLap); this.popupControlContainerFilter.Controls.Add(this.NgayLap); this.popupControlContainerFilter.Controls.Add(this.TenFile); this.popupControlContainerFilter.Controls.Add(this.TenNguon); this.popupControlContainerFilter.Controls.Add(this.plLabel3); this.popupControlContainerFilter.Controls.Add(this.plLabel1); this.popupControlContainerFilter.Controls.Add(this.labelControl2); this.popupControlContainerFilter.Controls.Add(this.labelControl1); this.popupControlContainerFilter.Controls.Add(this.plLabel2); this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top; this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 24); this.popupControlContainerFilter.Manager = this.barManager1; this.popupControlContainerFilter.Name = "popupControlContainerFilter"; this.popupControlContainerFilter.Size = new System.Drawing.Size(1187, 78); this.popupControlContainerFilter.TabIndex = 0; this.popupControlContainerFilter.Visible = false; // // Target // this.Target.Location = new System.Drawing.Point(397, 3); this.Target.Name = "Target"; this.Target.Size = new System.Drawing.Size(275, 20); this.Target.TabIndex = 259; // // ThiTruong // this.ThiTruong.Location = new System.Drawing.Point(397, 27); this.ThiTruong.Name = "ThiTruong"; this.ThiTruong.Size = new System.Drawing.Size(275, 20); this.ThiTruong.TabIndex = 258; // // PhongBan // this.PhongBan.Location = new System.Drawing.Point(397, 51); this.PhongBan.Name = "PhongBan"; this.PhongBan.Size = new System.Drawing.Size(275, 20); this.PhongBan.TabIndex = 242; // // labelControl3 // this.labelControl3.Location = new System.Drawing.Point(342, 55); this.labelControl3.Name = "labelControl3"; this.labelControl3.Size = new System.Drawing.Size(51, 13); this.labelControl3.TabIndex = 243; this.labelControl3.Text = "Phòng ban"; this.labelControl3.ToolTip = "Phòng ban (Cấp 1)"; // // DenNam // this.DenNam.EditValue = new decimal(new int[] { 1900, 0, 0, 0}); this.DenNam.Location = new System.Drawing.Point(276, 53); this.DenNam.Name = "DenNam"; this.DenNam.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.DenNam.Properties.Mask.EditMask = "d"; this.DenNam.Properties.MaxValue = new decimal(new int[] { 9999, 0, 0, 0}); this.DenNam.Properties.MinValue = new decimal(new int[] { 1900, 0, 0, 0}); this.DenNam.Size = new System.Drawing.Size(55, 20); this.DenNam.TabIndex = 237; // // DenThang // this.DenThang.EditValue = new decimal(new int[] { 1, 0, 0, 0}); this.DenThang.Location = new System.Drawing.Point(205, 52); this.DenThang.Name = "DenThang"; this.DenThang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.DenThang.Properties.Mask.EditMask = "d"; this.DenThang.Properties.MaxValue = new decimal(new int[] { 12, 0, 0, 0}); this.DenThang.Properties.MinValue = new decimal(new int[] { 1, 0, 0, 0}); this.DenThang.Size = new System.Drawing.Size(55, 20); this.DenThang.TabIndex = 238; // // TuNam // this.TuNam.EditValue = new decimal(new int[] { 1900, 0, 0, 0}); this.TuNam.Location = new System.Drawing.Point(126, 52); this.TuNam.Name = "TuNam"; this.TuNam.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.TuNam.Properties.Mask.EditMask = "d"; this.TuNam.Properties.MaxValue = new decimal(new int[] { 9999, 0, 0, 0}); this.TuNam.Properties.MinValue = new decimal(new int[] { 1900, 0, 0, 0}); this.TuNam.Size = new System.Drawing.Size(47, 20); this.TuNam.TabIndex = 240; // // TuThang // this.TuThang.EditValue = new decimal(new int[] { 1, 0, 0, 0}); this.TuThang.Location = new System.Drawing.Point(68, 51); this.TuThang.Name = "TuThang"; this.TuThang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.TuThang.Properties.Mask.EditMask = "d"; this.TuThang.Properties.MaxValue = new decimal(new int[] { 12, 0, 0, 0}); this.TuThang.Properties.MinValue = new decimal(new int[] { 1, 0, 0, 0}); this.TuThang.Size = new System.Drawing.Size(47, 20); this.TuThang.TabIndex = 239; // // labelControl7 // this.labelControl7.Location = new System.Drawing.Point(179, 56); this.labelControl7.Name = "labelControl7"; this.labelControl7.Size = new System.Drawing.Size(20, 13); this.labelControl7.TabIndex = 236; this.labelControl7.Text = "Đến"; this.labelControl7.Click += new System.EventHandler(this.labelControl7_Click); // // labelControl8 // this.labelControl8.Location = new System.Drawing.Point(266, 56); this.labelControl8.Name = "labelControl8"; this.labelControl8.Size = new System.Drawing.Size(4, 13); this.labelControl8.TabIndex = 232; this.labelControl8.Text = "/"; // // labelControl6 // this.labelControl6.Location = new System.Drawing.Point(117, 55); this.labelControl6.Name = "labelControl6"; this.labelControl6.Size = new System.Drawing.Size(4, 13); this.labelControl6.TabIndex = 235; this.labelControl6.Text = "/"; // // labelControl5 // this.labelControl5.Location = new System.Drawing.Point(12, 54); this.labelControl5.Name = "labelControl5"; this.labelControl5.Size = new System.Drawing.Size(44, 13); this.labelControl5.TabIndex = 234; this.labelControl5.Text = "Từ tháng"; // // plLabel5 // this.plLabel5.Location = new System.Drawing.Point(678, 7); this.plLabel5.Name = "plLabel5"; this.plLabel5.Size = new System.Drawing.Size(55, 13); this.plLabel5.TabIndex = 199; this.plLabel5.Text = "Người thêm"; // // NguoiLap // this.NguoiLap.DataSource = null; this.NguoiLap.DisplayField = null; this.NguoiLap.Location = new System.Drawing.Point(740, 6); this.NguoiLap.Name = "NguoiLap"; this.NguoiLap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.NguoiLap.Size = new System.Drawing.Size(284, 20); this.NguoiLap.TabIndex = 198; this.NguoiLap.ValueField = null; // // NgayLap // this.NgayLap.Caption = "Từ ngày 25/07/2012 đến ngày 01/08/2012"; this.NgayLap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate; this.NgayLap.FirstFrom = new System.DateTime(2012, 7, 25, 9, 3, 40, 103); this.NgayLap.FirstTo = new System.DateTime(2012, 8, 1, 9, 3, 40, 103); this.NgayLap.FromDate = new System.DateTime(2012, 7, 25, 9, 3, 40, 103); this.NgayLap.Location = new System.Drawing.Point(739, 31); this.NgayLap.Name = "NgayLap"; this.NgayLap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date; this.NgayLap.SecondFrom = new System.DateTime(2012, 7, 25, 9, 3, 40, 103); this.NgayLap.SecondTo = new System.DateTime(2012, 8, 1, 9, 3, 40, 103); this.NgayLap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate; this.NgayLap.Size = new System.Drawing.Size(285, 20); this.NgayLap.TabIndex = 195; this.NgayLap.ToDate = new System.DateTime(2012, 8, 1, 9, 3, 40, 103); this.NgayLap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth) | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter) | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear) | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear))); // // TenFile // this.TenFile._DataSource = null; this.TenFile._GetField = null; this.TenFile.Location = new System.Drawing.Point(68, 26); this.TenFile.Name = "TenFile"; this.TenFile.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.TenFile.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.TenFile.Size = new System.Drawing.Size(263, 20); this.TenFile.TabIndex = 194; // // TenNguon // this.TenNguon._DataSource = null; this.TenNguon._GetField = null; this.TenNguon.Location = new System.Drawing.Point(69, 3); this.TenNguon.MenuManager = this.barManager1; this.TenNguon.Name = "TenNguon"; this.TenNguon.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.TenNguon.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.TenNguon.Size = new System.Drawing.Size(263, 20); this.TenNguon.TabIndex = 194; // // plLabel3 // this.plLabel3.Location = new System.Drawing.Point(679, 34); this.plLabel3.Name = "plLabel3"; this.plLabel3.Size = new System.Drawing.Size(52, 13); this.plLabel3.TabIndex = 192; this.plLabel3.Text = "Ngày thêm"; // // plLabel1 // this.plLabel1.Location = new System.Drawing.Point(12, 29); this.plLabel1.Name = "plLabel1"; this.plLabel1.Size = new System.Drawing.Size(35, 13); this.plLabel1.TabIndex = 188; this.plLabel1.Text = "Tên file"; // // labelControl2 // this.labelControl2.Location = new System.Drawing.Point(340, 30); this.labelControl2.Name = "labelControl2"; this.labelControl2.Size = new System.Drawing.Size(50, 13); this.labelControl2.TabIndex = 188; this.labelControl2.Text = "Thị trường"; // // labelControl1 // this.labelControl1.Location = new System.Drawing.Point(340, 6); this.labelControl1.Name = "labelControl1"; this.labelControl1.Size = new System.Drawing.Size(32, 13); this.labelControl1.TabIndex = 188; this.labelControl1.Text = "Target"; // // plLabel2 // this.plLabel2.Location = new System.Drawing.Point(12, 6); this.plLabel2.Name = "plLabel2"; this.plLabel2.Size = new System.Drawing.Size(51, 13); this.plLabel2.TabIndex = 188; this.plLabel2.Text = "Tên nguồn"; // // gridColumn8 // this.gridColumn8.Caption = "VAT(%)"; this.gridColumn8.Name = "gridColumn8"; this.gridColumn8.Visible = true; this.gridColumn8.VisibleIndex = 5; // // gridColumn6 // this.gridColumn6.Caption = "VAT(%)"; this.gridColumn6.Name = "gridColumn6"; this.gridColumn6.Visible = true; this.gridColumn6.VisibleIndex = 5; this.gridColumn6.Width = 96; // // FrmTNSSaleCppScrQL // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1187, 497); this.Controls.Add(this.splitContainerControl1); this.Controls.Add(this.popupControlContainerFilter); this.Controls.Add(this.barDockControlLeft); this.Controls.Add(this.barDockControlRight); this.Controls.Add(this.barDockControlBottom); this.Controls.Add(this.barDockControlTop); this.Name = "FrmTNSSaleCppScrQL"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Quản lý file nguồn CPP"; ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit(); this.splitContainerControl1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit(); this.xtraTabControlDetail.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit(); this.popupControlContainerFilter.ResumeLayout(false); this.popupControlContainerFilter.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.DenNam.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DenThang.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TuNam.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TuThang.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NguoiLap.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TenFile.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TenNguon.Properties)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> protected void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmChuongTrinhQL)); this.barManager1 = new DevExpress.XtraBars.BarManager(this.components); this.MainBar = new DevExpress.XtraBars.Bar(); this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem(); this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components); this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem(); this.barSubItem1 = new DevExpress.XtraBars.BarSubItem(); this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem(); this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components); this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem(); this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem(); this.barDockControlTop = new DevExpress.XtraBars.BarDockControl(); this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl(); this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl(); this.barDockControlRight = new DevExpress.XtraBars.BarDockControl(); this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem(); this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemViewAll = new DevExpress.XtraBars.BarButtonItem(); this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl(); this.gridControlMaster = new DevExpress.XtraGrid.GridControl(); this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView(); this.gridBandThongTinChinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.CotNoiDung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotTenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotTietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotTongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotTapCuoi = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotLoaiBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotPopUp = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotKe = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotNgan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotTang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotKHPL = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotKHXK = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotTuKhoa = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotDoiTuongKhanGia = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.gridBandThongTinMuonTra = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.gridBandNguonGoc = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.CotNamSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotDonViCungCap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotDonViSoHuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotNuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotThoiHanBangQuyen = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.gridBandThongTinPhatSong = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.CotSoLanPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.CotPhatLanDau = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.gridBandThongTinBetacam = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.gridBandThongTinHD = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.CotSDKCBHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components); this.NamSXDen = new DevExpress.XtraEditors.SpinEdit(); this.NamSXTu = new DevExpress.XtraEditors.SpinEdit(); this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection(); this.label15 = new System.Windows.Forms.PLLabel(); this.label35 = new System.Windows.Forms.PLLabel(); this.label11 = new System.Windows.Forms.PLLabel(); this.plLabel3 = new System.Windows.Forms.PLLabel(); this.plLabel2 = new System.Windows.Forms.PLLabel(); this.label34 = new System.Windows.Forms.PLLabel(); this.label2 = new System.Windows.Forms.PLLabel(); this.label9 = new System.Windows.Forms.PLLabel(); this.MaBang = new DevExpress.XtraEditors.TextEdit(); this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.LoaiBang = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.SoDKHDCB = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.DonViCungCap = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.DonViSoHuu = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.plTreeSelectItem1 = new ProtocolVN.Framework.Win.PLDMTreeGroupElement(); this.label10 = new System.Windows.Forms.PLLabel(); this.label1 = new System.Windows.Forms.PLLabel(); this.label29 = new System.Windows.Forms.PLLabel(); this.label3 = new System.Windows.Forms.PLLabel(); this.label5 = new System.Windows.Forms.PLLabel(); this.popupMenu2 = new DevExpress.XtraBars.PopupMenu(this.components); this.TinhTrang = new DevExpress.XtraEditors.CheckedListBoxControl(); ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit(); this.splitContainerControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit(); this.popupControlContainerFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.LoaiBang.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.SoDKHDCB.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DonViSoHuu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TinhTrang)).BeginInit(); this.SuspendLayout(); // // barManager1 // this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] { this.MainBar}); this.barManager1.DockControls.Add(this.barDockControlTop); this.barManager1.DockControls.Add(this.barDockControlBottom); this.barManager1.DockControls.Add(this.barDockControlLeft); this.barManager1.DockControls.Add(this.barDockControlRight); this.barManager1.Form = this; this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] { this.barButtonItemAdd, this.barButtonItemDelete, this.barButtonItemUpdate, this.barButtonItemPrint, this.barStaticItem1, this.barButtonItem1, this.barButtonItem2, this.barButtonItemCommit, this.barButtonItemNoCommit, this.barSubItem1, this.barButtonItemXem, this.barButtonItemSearch, this.barButtonItemClose, this.barCheckItemFilter, this.barButtonItem3, this.barButtonItem4, this.barButtonItem5, this.barButtonItemViewAll}); this.barManager1.MaxItemId = 40; // // MainBar // this.MainBar.BarName = "MainBar"; this.MainBar.DockCol = 0; this.MainBar.DockRow = 0; this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top; this.MainBar.FloatLocation = new System.Drawing.Point(39, 133); this.MainBar.FloatSize = new System.Drawing.Size(72, 73); this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit), new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)}); this.MainBar.OptionsBar.AllowQuickCustomization = false; this.MainBar.OptionsBar.DrawDragBorder = false; this.MainBar.OptionsBar.RotateWhenVertical = false; this.MainBar.OptionsBar.UseWholeRow = true; this.MainBar.Text = "Custom 1"; // // barButtonItemAdd // this.barButtonItemAdd.Caption = "&Thêm tập tiếp theo"; this.barButtonItemAdd.Id = 0; this.barButtonItemAdd.Name = "barButtonItemAdd"; this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemXem // this.barButtonItemXem.Caption = "X&em"; this.barButtonItemXem.Id = 24; this.barButtonItemXem.Name = "barButtonItemXem"; this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; this.barButtonItemXem.Visibility = DevExpress.XtraBars.BarItemVisibility.Never; // // barButtonItemDelete // this.barButtonItemDelete.Caption = "&Xóa"; this.barButtonItemDelete.Id = 1; this.barButtonItemDelete.Name = "barButtonItemDelete"; this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; this.barButtonItemDelete.Visibility = DevExpress.XtraBars.BarItemVisibility.Never; // // barButtonItemUpdate // this.barButtonItemUpdate.Caption = "&Sửa"; this.barButtonItemUpdate.Id = 2; this.barButtonItemUpdate.Name = "barButtonItemUpdate"; this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; this.barButtonItemUpdate.Visibility = DevExpress.XtraBars.BarItemVisibility.Never; // // barButtonItemPrint // this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItemPrint.Caption = "&In"; this.barButtonItemPrint.DropDownControl = this.popupMenu1; this.barButtonItemPrint.Id = 3; this.barButtonItemPrint.Name = "barButtonItemPrint"; this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // popupMenu1 // this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)}); this.popupMenu1.Manager = this.barManager1; this.popupMenu1.Name = "popupMenu1"; // // barButtonItem4 // this.barButtonItem4.Caption = "Xem t&rước"; this.barButtonItem4.Id = 33; this.barButtonItem4.Name = "barButtonItem4"; // // barButtonItemCommit // this.barButtonItemCommit.Caption = "&Duyệt"; this.barButtonItemCommit.Id = 17; this.barButtonItemCommit.Name = "barButtonItemCommit"; this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemNoCommit // this.barButtonItemNoCommit.Caption = "&Không duyệt"; this.barButtonItemNoCommit.Id = 18; this.barButtonItemNoCommit.Name = "barButtonItemNoCommit"; this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barSubItem1 // this.barSubItem1.Caption = "&Nghiệp vụ"; this.barSubItem1.Id = 20; this.barSubItem1.Name = "barSubItem1"; this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemSearch // this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItemSearch.Caption = "Tì&m kiếm"; this.barButtonItemSearch.DropDownControl = this.popupMenuFilter; this.barButtonItemSearch.Id = 27; this.barButtonItemSearch.Name = "barButtonItemSearch"; this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // popupMenuFilter // this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)}); this.popupMenuFilter.Manager = this.barManager1; this.popupMenuFilter.Name = "popupMenuFilter"; // // barCheckItemFilter // this.barCheckItemFilter.Caption = "Điề&u kiện tìm kiếm"; this.barCheckItemFilter.Id = 29; this.barCheckItemFilter.Name = "barCheckItemFilter"; this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemClose // this.barButtonItemClose.Caption = "Đón&g"; this.barButtonItemClose.Id = 28; this.barButtonItemClose.Name = "barButtonItemClose"; this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // 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(1016, 24); // // barDockControlBottom // this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.barDockControlBottom.Location = new System.Drawing.Point(0, 734); this.barDockControlBottom.Size = new System.Drawing.Size(1016, 0); // // barDockControlLeft // this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left; this.barDockControlLeft.Location = new System.Drawing.Point(0, 24); this.barDockControlLeft.Size = new System.Drawing.Size(0, 710); // // barDockControlRight // this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right; this.barDockControlRight.Location = new System.Drawing.Point(1016, 24); this.barDockControlRight.Size = new System.Drawing.Size(0, 710); // // barStaticItem1 // this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None; this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.barStaticItem1.Id = 13; this.barStaticItem1.Name = "barStaticItem1"; this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near; this.barStaticItem1.Width = 100; // // barButtonItem1 // this.barButtonItem1.Caption = "barButtonItem1"; this.barButtonItem1.Id = 14; this.barButtonItem1.Name = "barButtonItem1"; // // barButtonItem2 // this.barButtonItem2.Caption = "barButtonItem2"; this.barButtonItem2.Id = 15; this.barButtonItem2.Name = "barButtonItem2"; // // barButtonItem3 // this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItem3.Caption = "In"; this.barButtonItem3.Id = 30; this.barButtonItem3.Name = "barButtonItem3"; // // barButtonItem5 // this.barButtonItem5.Caption = "barButtonItem5"; this.barButtonItem5.Id = 34; this.barButtonItem5.Name = "barButtonItem5"; // // barButtonItemViewAll // this.barButtonItemViewAll.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.barButtonItemViewAll.Appearance.ForeColor = System.Drawing.Color.Red; this.barButtonItemViewAll.Appearance.Options.UseFont = true; this.barButtonItemViewAll.Appearance.Options.UseForeColor = true; this.barButtonItemViewAll.Caption = "Xem tất c&ả"; this.barButtonItemViewAll.Id = 39; this.barButtonItemViewAll.Name = "barButtonItemViewAll"; this.barButtonItemViewAll.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // splitContainerControl1 // this.splitContainerControl1.Horizontal = false; this.splitContainerControl1.Location = new System.Drawing.Point(879, 263); this.splitContainerControl1.Name = "splitContainerControl1"; this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1"; this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left; this.splitContainerControl1.Panel2.ShowCaption = true; this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2"; this.splitContainerControl1.Size = new System.Drawing.Size(41, 38); this.splitContainerControl1.SplitterPosition = 76; this.splitContainerControl1.TabIndex = 4; this.splitContainerControl1.Text = "splitContainerControl1"; // // gridControlMaster // this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage"))); this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill; this.gridControlMaster.Location = new System.Drawing.Point(0, 132); this.gridControlMaster.MainView = this.gridViewMaster; this.gridControlMaster.Name = "gridControlMaster"; this.gridControlMaster.Size = new System.Drawing.Size(1016, 602); this.gridControlMaster.TabIndex = 7; this.gridControlMaster.TabStop = false; this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridViewMaster}); // // gridViewMaster // this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch); this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true; this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true; this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] { this.gridBandThongTinChinh, this.gridBandThongTinMuonTra, this.gridBandNguonGoc, this.gridBandThongTinPhatSong, this.gridBandThongTinBetacam, this.gridBandThongTinHD}); this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] { this.CotNoiDung, this.CotTietMuc, this.CotTenGoc, this.CotTongTap, this.CotTapCuoi, this.CotLoaiBang, this.CotPostMaster, this.CotPopUp, this.CotSDKCBHD, this.CotTuKhoa, this.CotKHPL, this.CotKHXK, this.CotKe, this.CotNgan, this.CotTang, this.CotSoLanPhat, this.CotPhatLanDau, this.CotThoiHanBangQuyen, this.CotDonViSoHuu, this.CotDonViCungCap, this.CotNamSX, this.CotNuoc, this.CotDoiTuongKhanGia}); this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205); this.gridViewMaster.GridControl = this.gridControlMaster; this.gridViewMaster.GroupPanelText = "Các chương trình thỏa điều kiện tìm kiếm"; this.gridViewMaster.IndicatorWidth = 40; this.gridViewMaster.Name = "gridViewMaster"; this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false; this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true; this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true; this.gridViewMaster.OptionsPrint.UsePrintStyles = true; this.gridViewMaster.OptionsSelection.MultiSelect = true; this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true; this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true; this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom; this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CotNoiDung, DevExpress.Data.ColumnSortOrder.Ascending), new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CotTietMuc, DevExpress.Data.ColumnSortOrder.Ascending)}); // // gridBandThongTinChinh // this.gridBandThongTinChinh.AppearanceHeader.Options.UseTextOptions = true; this.gridBandThongTinChinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBandThongTinChinh.Caption = "Thông tin chính"; this.gridBandThongTinChinh.Columns.Add(this.CotNoiDung); this.gridBandThongTinChinh.Columns.Add(this.CotTenGoc); this.gridBandThongTinChinh.Columns.Add(this.CotTietMuc); this.gridBandThongTinChinh.Columns.Add(this.CotTongTap); this.gridBandThongTinChinh.Columns.Add(this.CotTapCuoi); this.gridBandThongTinChinh.Columns.Add(this.CotLoaiBang); this.gridBandThongTinChinh.Columns.Add(this.CotPostMaster); this.gridBandThongTinChinh.Columns.Add(this.CotPopUp); this.gridBandThongTinChinh.Columns.Add(this.CotKe); this.gridBandThongTinChinh.Columns.Add(this.CotNgan); this.gridBandThongTinChinh.Columns.Add(this.CotTang); this.gridBandThongTinChinh.Columns.Add(this.CotKHPL); this.gridBandThongTinChinh.Columns.Add(this.CotKHXK); this.gridBandThongTinChinh.Columns.Add(this.CotTuKhoa); this.gridBandThongTinChinh.Columns.Add(this.CotDoiTuongKhanGia); this.gridBandThongTinChinh.Name = "gridBandThongTinChinh"; this.gridBandThongTinChinh.Width = 75; // // CotNoiDung // this.CotNoiDung.Caption = "Nội dung"; this.CotNoiDung.Name = "CotNoiDung"; this.CotNoiDung.Width = 67; // // CotTenGoc // this.CotTenGoc.Caption = "Tên gốc"; this.CotTenGoc.Name = "CotTenGoc"; this.CotTenGoc.Width = 50; // // CotTietMuc // this.CotTietMuc.Caption = "Tiết mục"; this.CotTietMuc.Name = "CotTietMuc"; this.CotTietMuc.Width = 65; // // CotTongTap // this.CotTongTap.Caption = "Tổng tập"; this.CotTongTap.Name = "CotTongTap"; this.CotTongTap.Width = 55; // // CotTapCuoi // this.CotTapCuoi.Caption = "Tập cuối"; this.CotTapCuoi.Name = "CotTapCuoi"; this.CotTapCuoi.Width = 52; // // CotLoaiBang // this.CotLoaiBang.Caption = "Loại lưu trữ"; this.CotLoaiBang.Name = "CotLoaiBang"; this.CotLoaiBang.Width = 67; // // CotPostMaster // this.CotPostMaster.Caption = "Tình trạng"; this.CotPostMaster.Name = "CotPostMaster"; this.CotPostMaster.Width = 61; // // CotPopUp // this.CotPopUp.Caption = "Pop Up"; this.CotPopUp.Name = "CotPopUp"; this.CotPopUp.Width = 46; // // CotKe // this.CotKe.Caption = "Kệ"; this.CotKe.Name = "CotKe"; this.CotKe.Width = 24; // // CotNgan // this.CotNgan.Caption = "Ngăn"; this.CotNgan.Name = "CotNgan"; this.CotNgan.Width = 37; // // CotTang // this.CotTang.Caption = "Tầng"; this.CotTang.Name = "CotTang"; this.CotTang.Width = 36; // // CotKHPL // this.CotKHPL.Caption = "KHPL"; this.CotKHPL.Name = "CotKHPL"; this.CotKHPL.ToolTip = "Ký hiệu phân loại"; this.CotKHPL.Width = 36; // // CotKHXK // this.CotKHXK.Caption = "KHXK"; this.CotKHXK.Name = "CotKHXK"; this.CotKHXK.ToolTip = "Ký hiệu xếp kho"; this.CotKHXK.Width = 37; // // CotTuKhoa // this.CotTuKhoa.Caption = "Từ khóa"; this.CotTuKhoa.Name = "CotTuKhoa"; this.CotTuKhoa.Width = 51; // // CotDoiTuongKhanGia // this.CotDoiTuongKhanGia.Caption = "Đối tượng khán giả"; this.CotDoiTuongKhanGia.Name = "CotDoiTuongKhanGia"; this.CotDoiTuongKhanGia.Width = 103; // // gridBandThongTinMuonTra // this.gridBandThongTinMuonTra.AppearanceHeader.Options.UseTextOptions = true; this.gridBandThongTinMuonTra.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBandThongTinMuonTra.Caption = "Thông tin mượn trả"; this.gridBandThongTinMuonTra.Name = "gridBandThongTinMuonTra"; this.gridBandThongTinMuonTra.Width = 87; // // gridBandNguonGoc // this.gridBandNguonGoc.AppearanceHeader.Options.UseTextOptions = true; this.gridBandNguonGoc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBandNguonGoc.Caption = "Nguồn gốc"; this.gridBandNguonGoc.Columns.Add(this.CotNamSX); this.gridBandNguonGoc.Columns.Add(this.CotDonViCungCap); this.gridBandNguonGoc.Columns.Add(this.CotDonViSoHuu); this.gridBandNguonGoc.Columns.Add(this.CotNuoc); this.gridBandNguonGoc.Columns.Add(this.CotThoiHanBangQuyen); this.gridBandNguonGoc.Name = "gridBandNguonGoc"; this.gridBandNguonGoc.Width = 52; // // CotNamSX // this.CotNamSX.Caption = "Năm SX"; this.CotNamSX.Name = "CotNamSX"; this.CotNamSX.Width = 48; // // CotDonViCungCap // this.CotDonViCungCap.Caption = "Đơn vị cung cấp"; this.CotDonViCungCap.Name = "CotDonViCungCap"; this.CotDonViCungCap.Width = 89; // // CotDonViSoHuu // this.CotDonViSoHuu.Caption = "Đơn vị sở hữu"; this.CotDonViSoHuu.Name = "CotDonViSoHuu"; this.CotDonViSoHuu.Width = 79; // // CotNuoc // this.CotNuoc.Caption = "Nước SX"; this.CotNuoc.Name = "CotNuoc"; this.CotNuoc.ToolTip = "Nước sản xuất"; this.CotNuoc.Width = 52; // // CotThoiHanBangQuyen // this.CotThoiHanBangQuyen.Caption = "Thời hạn bản quyền"; this.CotThoiHanBangQuyen.Name = "CotThoiHanBangQuyen"; this.CotThoiHanBangQuyen.Width = 107; // // gridBandThongTinPhatSong // this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseTextOptions = true; this.gridBandThongTinPhatSong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBandThongTinPhatSong.Caption = "Thông tin phát sóng"; this.gridBandThongTinPhatSong.Columns.Add(this.CotSoLanPhat); this.gridBandThongTinPhatSong.Columns.Add(this.CotPhatLanDau); this.gridBandThongTinPhatSong.Name = "gridBandThongTinPhatSong"; this.gridBandThongTinPhatSong.Width = 104; // // CotSoLanPhat // this.CotSoLanPhat.Caption = "Tồng số lần đã phát"; this.CotSoLanPhat.Name = "CotSoLanPhat"; this.CotSoLanPhat.Width = 107; // // CotPhatLanDau // this.CotPhatLanDau.Caption = "Ngày phát đầu tiên"; this.CotPhatLanDau.Name = "CotPhatLanDau"; this.CotPhatLanDau.ToolTip = "Những ngày phát lần đầu tương ứng trên các đài"; this.CotPhatLanDau.Width = 104; // // gridBandThongTinBetacam // this.gridBandThongTinBetacam.AppearanceHeader.Options.UseTextOptions = true; this.gridBandThongTinBetacam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBandThongTinBetacam.Caption = "Thông tin Timecode"; this.gridBandThongTinBetacam.Name = "gridBandThongTinBetacam"; this.gridBandThongTinBetacam.Width = 95; // // gridBandThongTinHD // this.gridBandThongTinHD.AppearanceHeader.Options.UseTextOptions = true; this.gridBandThongTinHD.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBandThongTinHD.Caption = "Thông tin HD (File)"; this.gridBandThongTinHD.Columns.Add(this.CotSDKCBHD); this.gridBandThongTinHD.Name = "gridBandThongTinHD"; this.gridBandThongTinHD.Width = 63; // // CotSDKCBHD // this.CotSDKCBHD.Caption = "Số ĐKCB HD"; this.CotSDKCBHD.Name = "CotSDKCBHD"; this.CotSDKCBHD.ToolTip = "Số đăng ký cá biệt ổ cứng"; this.CotSDKCBHD.Width = 71; // // popupControlContainerFilter // this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.popupControlContainerFilter.Controls.Add(this.TinhTrang); this.popupControlContainerFilter.Controls.Add(this.NamSXDen); this.popupControlContainerFilter.Controls.Add(this.NamSXTu); this.popupControlContainerFilter.Controls.Add(this.ngayNhap); this.popupControlContainerFilter.Controls.Add(this.label15); this.popupControlContainerFilter.Controls.Add(this.label35); this.popupControlContainerFilter.Controls.Add(this.label11); this.popupControlContainerFilter.Controls.Add(this.plLabel3); this.popupControlContainerFilter.Controls.Add(this.plLabel2); this.popupControlContainerFilter.Controls.Add(this.label34); this.popupControlContainerFilter.Controls.Add(this.label2); this.popupControlContainerFilter.Controls.Add(this.splitContainerControl1); this.popupControlContainerFilter.Controls.Add(this.label9); this.popupControlContainerFilter.Controls.Add(this.MaBang); this.popupControlContainerFilter.Controls.Add(this.NoiDung); this.popupControlContainerFilter.Controls.Add(this.LoaiBang); this.popupControlContainerFilter.Controls.Add(this.QuocGia); this.popupControlContainerFilter.Controls.Add(this.SoDKHDCB); this.popupControlContainerFilter.Controls.Add(this.DonViCungCap); this.popupControlContainerFilter.Controls.Add(this.DonViSoHuu); this.popupControlContainerFilter.Controls.Add(this.TietMuc); this.popupControlContainerFilter.Controls.Add(this.plTreeSelectItem1); this.popupControlContainerFilter.Controls.Add(this.label10); this.popupControlContainerFilter.Controls.Add(this.label1); this.popupControlContainerFilter.Controls.Add(this.label29); this.popupControlContainerFilter.Controls.Add(this.label3); this.popupControlContainerFilter.Controls.Add(this.label5); this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top; this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 24); this.popupControlContainerFilter.Manager = this.barManager1; this.popupControlContainerFilter.Name = "popupControlContainerFilter"; this.popupControlContainerFilter.Size = new System.Drawing.Size(1016, 108); this.popupControlContainerFilter.TabIndex = 0; this.popupControlContainerFilter.Visible = false; // // NamSXDen // this.NamSXDen.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.NamSXDen.Location = new System.Drawing.Point(679, 34); this.NamSXDen.Name = "NamSXDen"; this.NamSXDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.NamSXDen.Size = new System.Drawing.Size(79, 20); this.NamSXDen.TabIndex = 213; // // NamSXTu // this.NamSXTu.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.NamSXTu.Location = new System.Drawing.Point(569, 34); this.NamSXTu.MenuManager = this.barManager1; this.NamSXTu.Name = "NamSXTu"; this.NamSXTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.NamSXTu.Size = new System.Drawing.Size(80, 20); this.NamSXTu.TabIndex = 213; // // ngayNhap // this.ngayNhap.Caption = "Năm 2010"; this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter; this.ngayNhap.FirstFrom = new System.DateTime(2010, 1, 1, 0, 0, 0, 0); this.ngayNhap.FirstTo = new System.DateTime(2010, 12, 31, 0, 0, 0, 0); this.ngayNhap.FromDate = new System.DateTime(2010, 1, 1, 0, 0, 0, 0); this.ngayNhap.Location = new System.Drawing.Point(75, 84); this.ngayNhap.Name = "ngayNhap"; this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date; this.ngayNhap.SecondFrom = new System.DateTime(2010, 1, 1, 0, 0, 0, 0); this.ngayNhap.SecondTo = new System.DateTime(2010, 12, 31, 0, 0, 0, 0); this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter; this.ngayNhap.Size = new System.Drawing.Size(351, 21); this.ngayNhap.TabIndex = 212; this.ngayNhap.ToDate = new System.DateTime(2010, 12, 31, 0, 0, 0, 0); this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth) | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter) | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear) | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear))); // // label15 // this.label15.Location = new System.Drawing.Point(764, 37); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(50, 13); this.label15.TabIndex = 210; this.label15.Text = "ĐV sở hữu"; this.label15.ToolTip = "Đơn vị sở hữu"; this.label15.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label35 // this.label35.Location = new System.Drawing.Point(24, -83); this.label35.Name = "label35"; this.label35.Size = new System.Drawing.Size(77, 13); this.label35.TabIndex = 206; this.label35.Text = "Đơn vị cung cấp"; this.label35.ToolTip = "Dữ liệu bắt buộc nhập"; this.label35.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED; // // label11 // this.label11.Location = new System.Drawing.Point(3, 63); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(59, 13); this.label11.TabIndex = 206; this.label11.Text = "Số ĐKCB HD"; this.label11.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // plLabel3 // this.plLabel3.Location = new System.Drawing.Point(655, 37); this.plLabel3.Name = "plLabel3"; this.plLabel3.Size = new System.Drawing.Size(18, 13); this.plLabel3.TabIndex = 201; this.plLabel3.Text = "đến"; this.plLabel3.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // plLabel2 // this.plLabel2.Location = new System.Drawing.Point(507, 37); this.plLabel2.Name = "plLabel2"; this.plLabel2.Size = new System.Drawing.Size(50, 13); this.plLabel2.TabIndex = 201; this.plLabel2.Text = "Năm SX từ"; this.plLabel2.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label34 // this.label34.Location = new System.Drawing.Point(764, 9); this.label34.Name = "label34"; this.label34.Size = new System.Drawing.Size(60, 13); this.label34.TabIndex = 206; this.label34.Text = "ĐV cung cấp"; this.label34.ToolTip = "Đơn vị cung cấp"; this.label34.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label2 // this.label2.Location = new System.Drawing.Point(507, 11); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(49, 13); this.label2.TabIndex = 201; this.label2.Text = "Tình trạng"; this.label2.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label9 // this.label9.Location = new System.Drawing.Point(262, 37); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(55, 13); this.label9.TabIndex = 195; this.label9.Text = "Loại lưu trữ"; this.label9.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // MaBang // this.MaBang.Location = new System.Drawing.Point(75, 8); this.MaBang.Name = "MaBang"; this.MaBang.Size = new System.Drawing.Size(181, 20); this.MaBang.TabIndex = 194; // // NoiDung // this.NoiDung._DataSource = null; this.NoiDung._GetField = null; this.NoiDung.Location = new System.Drawing.Point(75, 34); this.NoiDung.Name = "NoiDung"; this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.NoiDung.Size = new System.Drawing.Size(181, 20); this.NoiDung.TabIndex = 194; // // LoaiBang // this.LoaiBang.DataSource = null; this.LoaiBang.DisplayField = null; this.LoaiBang.Location = new System.Drawing.Point(336, 32); this.LoaiBang.Name = "LoaiBang"; this.LoaiBang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.LoaiBang.Size = new System.Drawing.Size(165, 20); this.LoaiBang.TabIndex = 5; this.LoaiBang.ValueField = null; // // QuocGia // this.QuocGia.DataSource = null; this.QuocGia.DisplayField = null; this.QuocGia.Location = new System.Drawing.Point(336, 58); 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(165, 20); this.QuocGia.TabIndex = 5; this.QuocGia.ValueField = null; // // SoDKHDCB // this.SoDKHDCB.DataSource = null; this.SoDKHDCB.DisplayField = null; this.SoDKHDCB.Location = new System.Drawing.Point(75, 60); this.SoDKHDCB.Name = "SoDKHDCB"; this.SoDKHDCB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.SoDKHDCB.Size = new System.Drawing.Size(181, 20); this.SoDKHDCB.TabIndex = 5; this.SoDKHDCB.ValueField = null; // // DonViCungCap // this.DonViCungCap.DataSource = null; this.DonViCungCap.DisplayField = null; this.DonViCungCap.Location = new System.Drawing.Point(832, 6); this.DonViCungCap.Name = "DonViCungCap"; this.DonViCungCap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DonViCungCap.Size = new System.Drawing.Size(181, 20); this.DonViCungCap.TabIndex = 5; this.DonViCungCap.ValueField = null; // // DonViSoHuu // this.DonViSoHuu.DataSource = null; this.DonViSoHuu.DisplayField = null; this.DonViSoHuu.Location = new System.Drawing.Point(832, 30); this.DonViSoHuu.Name = "DonViSoHuu"; this.DonViSoHuu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DonViSoHuu.Size = new System.Drawing.Size(181, 20); this.DonViSoHuu.TabIndex = 5; this.DonViSoHuu.ValueField = null; // // TietMuc // this.TietMuc.DataSource = null; this.TietMuc.DisplayField = null; this.TietMuc.Location = new System.Drawing.Point(336, 6); this.TietMuc.Name = "TietMuc"; this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.TietMuc.Size = new System.Drawing.Size(165, 20); this.TietMuc.TabIndex = 5; this.TietMuc.ValueField = null; // // plTreeSelectItem1 // this.plTreeSelectItem1.Location = new System.Drawing.Point(605, -20); this.plTreeSelectItem1.Name = "plTreeSelectItem1"; this.plTreeSelectItem1.Size = new System.Drawing.Size(167, 20); this.plTreeSelectItem1.TabIndex = 193; this.plTreeSelectItem1.ZZZWidthFactor = 2F; // // label10 // this.label10.Location = new System.Drawing.Point(262, 63); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(40, 13); this.label10.TabIndex = 0; this.label10.Text = "Nước SX"; this.label10.ToolTip = "Nước sản xuất"; this.label10.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label1 // this.label1.Location = new System.Drawing.Point(4, 11); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(41, 13); this.label1.TabIndex = 0; this.label1.Text = "Mã băng"; this.label1.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label29 // this.label29.Location = new System.Drawing.Point(4, 89); this.label29.Name = "label29"; this.label29.Size = new System.Drawing.Size(52, 13); this.label29.TabIndex = 5; this.label29.Text = "Ngày nhập"; this.label29.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label3 // this.label3.Location = new System.Drawing.Point(3, 37); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(42, 13); this.label3.TabIndex = 5; this.label3.Text = "Nội dung"; this.label3.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label5 // this.label5.Location = new System.Drawing.Point(262, 11); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(40, 13); this.label5.TabIndex = 5; this.label5.Text = "Tiết mục"; this.label5.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // popupMenu2 // this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate)}); this.popupMenu2.Manager = this.barManager1; this.popupMenu2.Name = "popupMenu2"; // // TinhTrang // this.TinhTrang.CheckOnClick = true; this.TinhTrang.HorzScrollStep = 1; this.TinhTrang.ItemHeight = 20; this.TinhTrang.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] { new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "POST", System.Windows.Forms.CheckState.Checked), new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "MASTER", System.Windows.Forms.CheckState.Checked), new DevExpress.XtraEditors.Controls.CheckedListBoxItem("A", "BOTH", System.Windows.Forms.CheckState.Checked)}); this.TinhTrang.Location = new System.Drawing.Point(569, 5); this.TinhTrang.MultiColumn = true; this.TinhTrang.Name = "TinhTrang"; this.TinhTrang.SelectionMode = System.Windows.Forms.SelectionMode.None; this.TinhTrang.Size = new System.Drawing.Size(189, 21); this.TinhTrang.TabIndex = 214; // // frmChuongTrinhQL // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1016, 734); this.Controls.Add(this.gridControlMaster); this.Controls.Add(this.popupControlContainerFilter); this.Controls.Add(this.barDockControlLeft); this.Controls.Add(this.barDockControlRight); this.Controls.Add(this.barDockControlBottom); this.Controls.Add(this.barDockControlTop); this.Name = "frmChuongTrinhQL"; this.Text = "Quản lý chương trình"; ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit(); this.splitContainerControl1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit(); this.popupControlContainerFilter.ResumeLayout(false); this.popupControlContainerFilter.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.LoaiBang.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.SoDKHDCB.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DonViSoHuu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TinhTrang)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> protected void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBienMucSearchQL)); this.barManager1 = new DevExpress.XtraBars.BarManager(this.components); this.MainBar = new DevExpress.XtraBars.Bar(); this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem(); this.popupMenu2 = new DevExpress.XtraBars.PopupMenu(this.components); this.barButtonItemAddNext = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem(); this.popupMenu3 = new DevExpress.XtraBars.PopupMenu(this.components); this.barButtonItemSuaGiuMB = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem(); this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components); this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem(); this.barSubItemInNhan = new DevExpress.XtraBars.BarSubItem(); this.barButtonItemInBeatcamTrong = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemInBeatacamNgoai = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem(); this.barSubItem1 = new DevExpress.XtraBars.BarSubItem(); this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem(); this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components); this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem(); this.barCheckItemNangCao = new DevExpress.XtraBars.BarCheckItem(); this.barCheckItemDonGian = new DevExpress.XtraBars.BarCheckItem(); this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem(); this.barDockControlTop = new DevExpress.XtraBars.BarDockControl(); this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl(); this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl(); this.barDockControlRight = new DevExpress.XtraBars.BarDockControl(); this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components); this.dockPanelAdvance = new DevExpress.XtraBars.Docking.DockPanel(); this.dockPanel2_Container = new DevExpress.XtraBars.Docking.ControlContainer(); this.filterControl1 = new DevExpress.XtraEditors.FilterControl(); this.dockPanelSimple = new DevExpress.XtraBars.Docking.DockPanel(); this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer(); this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components); this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection(); this.TapSoDen = new DevExpress.XtraEditors.SpinEdit(); this.TapSoTu = new DevExpress.XtraEditors.SpinEdit(); this.plLabel21 = new DevExpress.XtraEditors.LabelControl(); this.plLabel22 = new DevExpress.XtraEditors.LabelControl(); this.TenTap = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.SoDKCBHD = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.plLabel20 = new DevExpress.XtraEditors.LabelControl(); this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.plLabel19 = new DevExpress.XtraEditors.LabelControl(); this.TimeslotDen = new DevExpress.XtraEditors.TimeEdit(); this.TimeslotTu = new DevExpress.XtraEditors.TimeEdit(); this.SoRunConLaiTu = new DevExpress.XtraEditors.SpinEdit(); this.SoRunDaDungTu = new DevExpress.XtraEditors.SpinEdit(); this.SoRunConLaiDen = new DevExpress.XtraEditors.SpinEdit(); this.SoRunDaDungDen = new DevExpress.XtraEditors.SpinEdit(); this.TongSoRunDen = new DevExpress.XtraEditors.SpinEdit(); this.TongSoRunTu = new DevExpress.XtraEditors.SpinEdit(); this.BQDTTNEndDen = new DevExpress.XtraEditors.DateEdit(); this.BQDTNNEndDen = new DevExpress.XtraEditors.DateEdit(); this.BQDTNNEndTu = new DevExpress.XtraEditors.DateEdit(); this.BQDTTNEndTu = new DevExpress.XtraEditors.DateEdit(); this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice(); this.NamSXDen = new DevExpress.XtraEditors.SpinEdit(); this.NamSXTu = new DevExpress.XtraEditors.SpinEdit(); this.plLabel11 = new DevExpress.XtraEditors.LabelControl(); this.plLabel17 = new DevExpress.XtraEditors.LabelControl(); this.plLabel16 = new DevExpress.XtraEditors.LabelControl(); this.plLabel15 = new DevExpress.XtraEditors.LabelControl(); this.plLabel9 = new DevExpress.XtraEditors.LabelControl(); this.plLabel3 = new DevExpress.XtraEditors.LabelControl(); this.plLabel2 = new DevExpress.XtraEditors.LabelControl(); this.plLabel10 = new DevExpress.XtraEditors.LabelControl(); this.plLabel8 = new DevExpress.XtraEditors.LabelControl(); this.plLabel14 = new DevExpress.XtraEditors.LabelControl(); this.plLabel13 = new DevExpress.XtraEditors.LabelControl(); this.plLabel12 = new DevExpress.XtraEditors.LabelControl(); this.plLabel7 = new DevExpress.XtraEditors.LabelControl(); this.label34 = new DevExpress.XtraEditors.LabelControl(); this.BanQuyenThuoc = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.DonViCungCap = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.TenGoc = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.plLabel18 = new DevExpress.XtraEditors.LabelControl(); this.plLabel5 = new DevExpress.XtraEditors.LabelControl(); this.label10 = new DevExpress.XtraEditors.LabelControl(); this.plLabel1 = new DevExpress.XtraEditors.LabelControl(); this.plLabel23 = new DevExpress.XtraEditors.LabelControl(); this.label29 = new DevExpress.XtraEditors.LabelControl(); this.plLabel6 = new DevExpress.XtraEditors.LabelControl(); this.label3 = new DevExpress.XtraEditors.LabelControl(); this.plLabel4 = new DevExpress.XtraEditors.LabelControl(); this.label5 = new DevExpress.XtraEditors.LabelControl(); this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem(); this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem(); this.Col_PM_PostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_PM_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_PM_LoaiLuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_PM_TongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_PM_Ke = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_PM_Ngan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_PM_Tang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_PM_PopUp = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_PM_TTDinhKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_PM_NgayNhapKho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_PM_DVDNgayDuyet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_PM_DVDNgayHoanTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_PM_TTHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_PM_ThoiLuongChung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl(); this.gridControlMaster = new DevExpress.XtraGrid.GridControl(); this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView(); this.gridBandThongTinChinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.Col_BM_TapSo = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_BM_TenTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_BM_SoBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_BM_MaBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_BM_ThoiLuong = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_BM_ThongSo = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.Col_PM_NoiDungDuyet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_PM_TraierPost = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_BM_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.Col_CT_MaCT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_NgayAWB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_NgayLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_NguoiLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_NoiDung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_TenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_DaoDien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_DienVien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_TomTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_DoiTuongKhanGia = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_KHPL = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_KHXK = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_TinhTrangBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_TuKhoa = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_GhiChu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_Photos = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_Ranking = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_Script = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_TrailerGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.gridBandNguonGoc = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.Col_CT_NamSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_Nuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_DonViCungCap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_DonViSoHuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_KenhHanCheBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_ThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.Col_CT_BanQuyenThuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_BanQuyenDIDStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_BanQuyenDIDEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_BanQuyenDTNNStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_BanQuyenDTNNEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_BanQuyenHTV = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.gridBandThongTinPhatSong = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.Col_CT_MuaKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_PhatSongChinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_PhatSongLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_PhatSongKhac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_TongSoRun = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_SoLanPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_SoRunConLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_CT_Release = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.gridBandThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.ThôngtinHD = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.Col_BM_SoDKCBHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.Col_BM_NoiLuuTru = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn(); this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand(); this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl(); this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage(); this.gridControlDetail = new DevExpress.XtraGrid.GridControl(); this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView(); this.barButtonItemThongKe = new DevExpress.XtraBars.BarButtonItem(); ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit(); this.dockPanelAdvance.SuspendLayout(); this.dockPanel2_Container.SuspendLayout(); this.dockPanelSimple.SuspendLayout(); this.dockPanel1_Container.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit(); this.popupControlContainerFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TimeslotDen.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TimeslotTu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiTu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungTu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiDen.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungDen.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TongSoRunDen.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TongSoRunTu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenThuoc.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit(); this.splitContainerControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit(); this.xtraTabControlDetail.SuspendLayout(); this.xtraTabPageDetail.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit(); this.SuspendLayout(); // // barManager1 // this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] { this.MainBar}); this.barManager1.DockControls.Add(this.barDockControlTop); this.barManager1.DockControls.Add(this.barDockControlBottom); this.barManager1.DockControls.Add(this.barDockControlLeft); this.barManager1.DockControls.Add(this.barDockControlRight); this.barManager1.DockManager = this.dockManager1; this.barManager1.Form = this; this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] { this.barButtonItemAdd, this.barButtonItemDelete, this.barButtonItemUpdate, this.barButtonItemPrint, this.barStaticItem1, this.barButtonItem1, this.barButtonItem2, this.barButtonItemCommit, this.barButtonItemNoCommit, this.barSubItem1, this.barButtonItemXem, this.barButtonItemSearch, this.barButtonItemClose, this.barCheckItemFilter, this.barButtonItem3, this.barButtonItem4, this.barButtonItem5, this.barSubItemInNhan, this.barButtonItemInBeatcamTrong, this.barButtonItemInBeatacamNgoai, this.barButtonItemAddNext, this.barButtonItemSuaGiuMB, this.barCheckItemNangCao, this.barCheckItemDonGian, this.barButtonItemThongKe}); this.barManager1.MaxItemId = 44; // // MainBar // this.MainBar.BarName = "MainBar"; this.MainBar.DockCol = 0; this.MainBar.DockRow = 0; this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top; this.MainBar.FloatLocation = new System.Drawing.Point(39, 133); this.MainBar.FloatSize = new System.Drawing.Size(72, 73); this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm"), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true), new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemInNhan), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit), new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemThongKe, true)}); this.MainBar.OptionsBar.AllowQuickCustomization = false; this.MainBar.OptionsBar.DrawDragBorder = false; this.MainBar.OptionsBar.RotateWhenVertical = false; this.MainBar.OptionsBar.UseWholeRow = true; this.MainBar.Text = "Custom 1"; // // barButtonItemAdd // this.barButtonItemAdd.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItemAdd.Caption = "Thêm"; this.barButtonItemAdd.DropDownControl = this.popupMenu2; this.barButtonItemAdd.Id = 0; this.barButtonItemAdd.Name = "barButtonItemAdd"; this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // popupMenu2 // this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAddNext)}); this.popupMenu2.Manager = this.barManager1; this.popupMenu2.Name = "popupMenu2"; // // barButtonItemAddNext // this.barButtonItemAddNext.Caption = "Thêm tậ&p tiếp theo"; this.barButtonItemAddNext.Id = 39; this.barButtonItemAddNext.Name = "barButtonItemAddNext"; this.barButtonItemAddNext.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemAddNext_ItemClick); // // barButtonItemXem // this.barButtonItemXem.Caption = "X&em"; this.barButtonItemXem.Id = 24; this.barButtonItemXem.Name = "barButtonItemXem"; this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemDelete // this.barButtonItemDelete.Caption = "&Xóa"; this.barButtonItemDelete.Id = 1; this.barButtonItemDelete.Name = "barButtonItemDelete"; this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemUpdate // this.barButtonItemUpdate.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItemUpdate.Caption = "&Sửa"; this.barButtonItemUpdate.DropDownControl = this.popupMenu3; this.barButtonItemUpdate.Id = 2; this.barButtonItemUpdate.Name = "barButtonItemUpdate"; this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // popupMenu3 // this.popupMenu3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSuaGiuMB)}); this.popupMenu3.Manager = this.barManager1; this.popupMenu3.Name = "popupMenu3"; // // barButtonItemSuaGiuMB // this.barButtonItemSuaGiuMB.Caption = "Sửa &vẫn giữ phần số của mã băng"; this.barButtonItemSuaGiuMB.Id = 40; this.barButtonItemSuaGiuMB.Name = "barButtonItemSuaGiuMB"; this.barButtonItemSuaGiuMB.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemSuaGiuMB_ItemClick); // // barButtonItemPrint // this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItemPrint.Caption = "&In"; this.barButtonItemPrint.DropDownControl = this.popupMenu1; this.barButtonItemPrint.Id = 3; this.barButtonItemPrint.Name = "barButtonItemPrint"; this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // popupMenu1 // this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)}); this.popupMenu1.Manager = this.barManager1; this.popupMenu1.Name = "popupMenu1"; // // barButtonItem4 // this.barButtonItem4.Caption = "Xem t&rước"; this.barButtonItem4.Id = 33; this.barButtonItem4.Name = "barButtonItem4"; // // barSubItemInNhan // this.barSubItemInNhan.Caption = "In n&hãn"; this.barSubItemInNhan.Id = 36; this.barSubItemInNhan.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatcamTrong), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatacamNgoai)}); this.barSubItemInNhan.Name = "barSubItemInNhan"; this.barSubItemInNhan.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemInBeatcamTrong // this.barButtonItemInBeatcamTrong.Caption = "In betatcam t&rong"; this.barButtonItemInBeatcamTrong.Id = 37; this.barButtonItemInBeatcamTrong.Name = "barButtonItemInBeatcamTrong"; this.barButtonItemInBeatcamTrong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; this.barButtonItemInBeatcamTrong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatcamTrong_ItemClick); // // barButtonItemInBeatacamNgoai // this.barButtonItemInBeatacamNgoai.Caption = "In beatacam n&goài"; this.barButtonItemInBeatacamNgoai.Id = 38; this.barButtonItemInBeatacamNgoai.Name = "barButtonItemInBeatacamNgoai"; this.barButtonItemInBeatacamNgoai.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; this.barButtonItemInBeatacamNgoai.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatacamNgoai_ItemClick); // // barButtonItemCommit // this.barButtonItemCommit.Caption = "&Duyệt"; this.barButtonItemCommit.Id = 17; this.barButtonItemCommit.Name = "barButtonItemCommit"; this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemNoCommit // this.barButtonItemNoCommit.Caption = "&Không duyệt"; this.barButtonItemNoCommit.Id = 18; this.barButtonItemNoCommit.Name = "barButtonItemNoCommit"; this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barSubItem1 // this.barSubItem1.Caption = "&Nghiệp vụ"; this.barSubItem1.Id = 20; this.barSubItem1.Name = "barSubItem1"; this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemSearch // this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItemSearch.Caption = "Tì&m kiếm"; this.barButtonItemSearch.DropDownControl = this.popupMenuFilter; this.barButtonItemSearch.Id = 27; this.barButtonItemSearch.Name = "barButtonItemSearch"; this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // popupMenuFilter // this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter), new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemNangCao), new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemDonGian)}); this.popupMenuFilter.Manager = this.barManager1; this.popupMenuFilter.Name = "popupMenuFilter"; // // barCheckItemFilter // this.barCheckItemFilter.Caption = "Điề&u kiện lọc"; this.barCheckItemFilter.Id = 29; this.barCheckItemFilter.Name = "barCheckItemFilter"; this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; this.barCheckItemFilter.Visibility = DevExpress.XtraBars.BarItemVisibility.Never; // // barCheckItemNangCao // this.barCheckItemNangCao.Caption = "Tìm kiếm nâng cao"; this.barCheckItemNangCao.Id = 41; this.barCheckItemNangCao.Name = "barCheckItemNangCao"; // // barCheckItemDonGian // this.barCheckItemDonGian.Caption = "Tìm kiếm đơn giản"; this.barCheckItemDonGian.Id = 42; this.barCheckItemDonGian.Name = "barCheckItemDonGian"; // // barButtonItemClose // this.barButtonItemClose.Caption = "Đón&g"; this.barButtonItemClose.Id = 28; this.barButtonItemClose.Name = "barButtonItemClose"; this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // 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(1028, 24); // // barDockControlBottom // this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.barDockControlBottom.Location = new System.Drawing.Point(0, 734); this.barDockControlBottom.Size = new System.Drawing.Size(1028, 0); // // barDockControlLeft // this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left; this.barDockControlLeft.Location = new System.Drawing.Point(0, 24); this.barDockControlLeft.Size = new System.Drawing.Size(0, 710); // // barDockControlRight // this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right; this.barDockControlRight.Location = new System.Drawing.Point(1028, 24); this.barDockControlRight.Size = new System.Drawing.Size(0, 710); // // dockManager1 // this.dockManager1.Form = this; this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] { this.dockPanelAdvance, this.dockPanelSimple}); this.dockManager1.TopZIndexControls.AddRange(new string[] { "DevExpress.XtraBars.BarDockControl", "DevExpress.XtraBars.StandaloneBarDockControl", "System.Windows.Forms.StatusBar", "DevExpress.XtraBars.Ribbon.RibbonStatusBar", "DevExpress.XtraBars.Ribbon.RibbonControl"}); // // dockPanelAdvance // this.dockPanelAdvance.Controls.Add(this.dockPanel2_Container); this.dockPanelAdvance.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left; this.dockPanelAdvance.ID = new System.Guid("4dfe076a-bb5a-4480-b941-f391f02697b8"); this.dockPanelAdvance.Location = new System.Drawing.Point(0, 24); this.dockPanelAdvance.Name = "dockPanelAdvance"; this.dockPanelAdvance.OriginalSize = new System.Drawing.Size(200, 200); this.dockPanelAdvance.Size = new System.Drawing.Size(200, 710); this.dockPanelAdvance.Text = "Điều kiện tìm kiếm nâng cao"; // // dockPanel2_Container // this.dockPanel2_Container.Controls.Add(this.filterControl1); this.dockPanel2_Container.Location = new System.Drawing.Point(3, 25); this.dockPanel2_Container.Name = "dockPanel2_Container"; this.dockPanel2_Container.Size = new System.Drawing.Size(194, 682); this.dockPanel2_Container.TabIndex = 0; // // filterControl1 // this.filterControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.filterControl1.Cursor = System.Windows.Forms.Cursors.Arrow; this.filterControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.filterControl1.Location = new System.Drawing.Point(0, 0); this.filterControl1.Name = "filterControl1"; this.filterControl1.Size = new System.Drawing.Size(194, 682); this.filterControl1.TabIndex = 11; this.filterControl1.Text = "filterControl1"; // // dockPanelSimple // this.dockPanelSimple.Controls.Add(this.dockPanel1_Container); this.dockPanelSimple.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top; this.dockPanelSimple.FloatVertical = true; this.dockPanelSimple.ID = new System.Guid("2345a568-0c89-4a76-a607-0aff4b702676"); this.dockPanelSimple.Location = new System.Drawing.Point(200, 24); this.dockPanelSimple.Name = "dockPanelSimple"; this.dockPanelSimple.OriginalSize = new System.Drawing.Size(200, 161); this.dockPanelSimple.Size = new System.Drawing.Size(828, 161); this.dockPanelSimple.Text = "Điều kiện tìm kiếm đơn giản"; // // dockPanel1_Container // this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter); this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25); this.dockPanel1_Container.Name = "dockPanel1_Container"; this.dockPanel1_Container.Size = new System.Drawing.Size(822, 133); this.dockPanel1_Container.TabIndex = 0; // // popupControlContainerFilter // this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.popupControlContainerFilter.Controls.Add(this.ngayNhap); this.popupControlContainerFilter.Controls.Add(this.TapSoDen); this.popupControlContainerFilter.Controls.Add(this.TapSoTu); this.popupControlContainerFilter.Controls.Add(this.plLabel21); this.popupControlContainerFilter.Controls.Add(this.plLabel22); this.popupControlContainerFilter.Controls.Add(this.TenTap); this.popupControlContainerFilter.Controls.Add(this.SoDKCBHD); this.popupControlContainerFilter.Controls.Add(this.plLabel20); this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru); this.popupControlContainerFilter.Controls.Add(this.plLabel19); this.popupControlContainerFilter.Controls.Add(this.TimeslotDen); this.popupControlContainerFilter.Controls.Add(this.TimeslotTu); this.popupControlContainerFilter.Controls.Add(this.SoRunConLaiTu); this.popupControlContainerFilter.Controls.Add(this.SoRunDaDungTu); this.popupControlContainerFilter.Controls.Add(this.SoRunConLaiDen); this.popupControlContainerFilter.Controls.Add(this.SoRunDaDungDen); this.popupControlContainerFilter.Controls.Add(this.TongSoRunDen); this.popupControlContainerFilter.Controls.Add(this.TongSoRunTu); this.popupControlContainerFilter.Controls.Add(this.BQDTTNEndDen); this.popupControlContainerFilter.Controls.Add(this.BQDTNNEndDen); this.popupControlContainerFilter.Controls.Add(this.BQDTNNEndTu); this.popupControlContainerFilter.Controls.Add(this.BQDTTNEndTu); this.popupControlContainerFilter.Controls.Add(this.PhongBan); this.popupControlContainerFilter.Controls.Add(this.NamSXDen); this.popupControlContainerFilter.Controls.Add(this.NamSXTu); this.popupControlContainerFilter.Controls.Add(this.plLabel11); this.popupControlContainerFilter.Controls.Add(this.plLabel17); this.popupControlContainerFilter.Controls.Add(this.plLabel16); this.popupControlContainerFilter.Controls.Add(this.plLabel15); this.popupControlContainerFilter.Controls.Add(this.plLabel9); this.popupControlContainerFilter.Controls.Add(this.plLabel3); this.popupControlContainerFilter.Controls.Add(this.plLabel2); this.popupControlContainerFilter.Controls.Add(this.plLabel10); this.popupControlContainerFilter.Controls.Add(this.plLabel8); this.popupControlContainerFilter.Controls.Add(this.plLabel14); this.popupControlContainerFilter.Controls.Add(this.plLabel13); this.popupControlContainerFilter.Controls.Add(this.plLabel12); this.popupControlContainerFilter.Controls.Add(this.plLabel7); this.popupControlContainerFilter.Controls.Add(this.label34); this.popupControlContainerFilter.Controls.Add(this.BanQuyenThuoc); this.popupControlContainerFilter.Controls.Add(this.DonViCungCap); this.popupControlContainerFilter.Controls.Add(this.Category); this.popupControlContainerFilter.Controls.Add(this.TenGoc); this.popupControlContainerFilter.Controls.Add(this.NoiDung); this.popupControlContainerFilter.Controls.Add(this.QuocGia); this.popupControlContainerFilter.Controls.Add(this.TietMuc); this.popupControlContainerFilter.Controls.Add(this.plLabel18); this.popupControlContainerFilter.Controls.Add(this.plLabel5); this.popupControlContainerFilter.Controls.Add(this.label10); this.popupControlContainerFilter.Controls.Add(this.plLabel1); this.popupControlContainerFilter.Controls.Add(this.plLabel23); this.popupControlContainerFilter.Controls.Add(this.label29); this.popupControlContainerFilter.Controls.Add(this.plLabel6); this.popupControlContainerFilter.Controls.Add(this.label3); this.popupControlContainerFilter.Controls.Add(this.plLabel4); this.popupControlContainerFilter.Controls.Add(this.label5); this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill; this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0); this.popupControlContainerFilter.Manager = this.barManager1; this.popupControlContainerFilter.Name = "popupControlContainerFilter"; this.popupControlContainerFilter.Size = new System.Drawing.Size(822, 133); this.popupControlContainerFilter.TabIndex = 12; this.popupControlContainerFilter.Visible = false; // // ngayNhap // this.ngayNhap.Caption = "Từ ngày 25/02/2012 đến ngày 03/03/2012"; this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate; this.ngayNhap.FirstFrom = new System.DateTime(2012, 2, 25, 5, 9, 33, 890); this.ngayNhap.FirstTo = new System.DateTime(2012, 3, 3, 5, 9, 33, 890); this.ngayNhap.FromDate = new System.DateTime(2012, 2, 25, 5, 9, 33, 890); this.ngayNhap.Location = new System.Drawing.Point(583, 78); this.ngayNhap.Name = "ngayNhap"; this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date; this.ngayNhap.SecondFrom = new System.DateTime(2012, 2, 25, 5, 9, 33, 890); this.ngayNhap.SecondTo = new System.DateTime(2012, 3, 3, 5, 9, 33, 890); this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate; this.ngayNhap.Size = new System.Drawing.Size(291, 21); this.ngayNhap.TabIndex = 247; this.ngayNhap.ToDate = new System.DateTime(2012, 3, 3, 5, 9, 33, 890); this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth) | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter) | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear) | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear))); // // TapSoDen // this.TapSoDen.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.TapSoDen.Location = new System.Drawing.Point(687, 106); this.TapSoDen.Name = "TapSoDen"; this.TapSoDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.TapSoDen.Size = new System.Drawing.Size(75, 20); this.TapSoDen.TabIndex = 245; // // TapSoTu // this.TapSoTu.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.TapSoTu.Location = new System.Drawing.Point(585, 105); this.TapSoTu.Name = "TapSoTu"; this.TapSoTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.TapSoTu.Size = new System.Drawing.Size(67, 20); this.TapSoTu.TabIndex = 246; // // plLabel21 // this.plLabel21.Location = new System.Drawing.Point(657, 109); this.plLabel21.Name = "plLabel21"; this.plLabel21.Size = new System.Drawing.Size(18, 13); this.plLabel21.TabIndex = 243; this.plLabel21.Text = "đến"; // // plLabel22 // this.plLabel22.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.plLabel22.Appearance.Options.UseFont = true; this.plLabel22.Location = new System.Drawing.Point(496, 107); this.plLabel22.Name = "plLabel22"; this.plLabel22.Size = new System.Drawing.Size(53, 13); this.plLabel22.TabIndex = 244; this.plLabel22.Text = "Tập số từ"; this.plLabel22.ToolTip = "Tập số (Cấp 3)"; // // TenTap // this.TenTap._DataSource = null; this.TenTap._GetField = null; this.TenTap.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.TenTap.Location = new System.Drawing.Point(844, 106); this.TenTap.Name = "TenTap"; this.TenTap.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.TenTap.Size = new System.Drawing.Size(626, 20); this.TenTap.TabIndex = 242; // // SoDKCBHD // this.SoDKCBHD.DataSource = null; this.SoDKCBHD.DisplayField = null; this.SoDKCBHD.Location = new System.Drawing.Point(333, 103); this.SoDKCBHD.Name = "SoDKCBHD"; this.SoDKCBHD.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.SoDKCBHD.Size = new System.Drawing.Size(150, 20); this.SoDKCBHD.TabIndex = 241; this.SoDKCBHD.ValueField = null; // // plLabel20 // this.plLabel20.Location = new System.Drawing.Point(266, 108); this.plLabel20.Name = "plLabel20"; this.plLabel20.Size = new System.Drawing.Size(59, 13); this.plLabel20.TabIndex = 240; this.plLabel20.Text = "Số ĐKCB HD"; this.plLabel20.ToolTip = "Số ĐKCB HD (Cấp 2)"; // // LoaiLuuTru // this.LoaiLuuTru.DataSource = null; this.LoaiLuuTru.DisplayField = null; this.LoaiLuuTru.Location = new System.Drawing.Point(75, 105); this.LoaiLuuTru.Name = "LoaiLuuTru"; this.LoaiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.LoaiLuuTru.Size = new System.Drawing.Size(185, 20); this.LoaiLuuTru.TabIndex = 241; this.LoaiLuuTru.ValueField = null; // // plLabel19 // this.plLabel19.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.plLabel19.Appearance.Options.UseFont = true; this.plLabel19.Location = new System.Drawing.Point(4, 108); this.plLabel19.Name = "plLabel19"; this.plLabel19.Size = new System.Drawing.Size(65, 13); this.plLabel19.TabIndex = 240; this.plLabel19.Text = "Loại lưu trữ"; this.plLabel19.ToolTip = "Loại lưu trữ (cấp 2)"; // // TimeslotDen // this.TimeslotDen.EditValue = new System.DateTime(2011, 12, 15, 0, 0, 0, 0); this.TimeslotDen.Location = new System.Drawing.Point(174, 79); this.TimeslotDen.Name = "TimeslotDen"; this.TimeslotDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.TimeslotDen.Properties.Mask.EditMask = "HH:mm"; this.TimeslotDen.Size = new System.Drawing.Size(86, 20); this.TimeslotDen.TabIndex = 239; // // TimeslotTu // this.TimeslotTu.EditValue = new System.DateTime(2011, 12, 15, 0, 0, 0, 0); this.TimeslotTu.Location = new System.Drawing.Point(48, 79); this.TimeslotTu.MenuManager = this.barManager1; this.TimeslotTu.Name = "TimeslotTu"; this.TimeslotTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.TimeslotTu.Properties.Mask.EditMask = "HH:mm"; this.TimeslotTu.Size = new System.Drawing.Size(78, 20); this.TimeslotTu.TabIndex = 239; // // SoRunConLaiTu // this.SoRunConLaiTu.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.SoRunConLaiTu.Location = new System.Drawing.Point(844, 55); this.SoRunConLaiTu.Name = "SoRunConLaiTu"; this.SoRunConLaiTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.SoRunConLaiTu.Size = new System.Drawing.Size(67, 20); this.SoRunConLaiTu.TabIndex = 238; // // SoRunDaDungTu // this.SoRunDaDungTu.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.SoRunDaDungTu.Location = new System.Drawing.Point(844, 32); this.SoRunDaDungTu.Name = "SoRunDaDungTu"; this.SoRunDaDungTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.SoRunDaDungTu.Size = new System.Drawing.Size(67, 20); this.SoRunDaDungTu.TabIndex = 238; // // SoRunConLaiDen // this.SoRunConLaiDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.SoRunConLaiDen.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.SoRunConLaiDen.Location = new System.Drawing.Point(934, 53); this.SoRunConLaiDen.Name = "SoRunConLaiDen"; this.SoRunConLaiDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.SoRunConLaiDen.Size = new System.Drawing.Size(626, 20); this.SoRunConLaiDen.TabIndex = 238; // // SoRunDaDungDen // this.SoRunDaDungDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.SoRunDaDungDen.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.SoRunDaDungDen.Location = new System.Drawing.Point(934, 31); this.SoRunDaDungDen.Name = "SoRunDaDungDen"; this.SoRunDaDungDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.SoRunDaDungDen.Size = new System.Drawing.Size(626, 20); this.SoRunDaDungDen.TabIndex = 238; // // TongSoRunDen // this.TongSoRunDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.TongSoRunDen.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.TongSoRunDen.Location = new System.Drawing.Point(934, 7); this.TongSoRunDen.Name = "TongSoRunDen"; this.TongSoRunDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.TongSoRunDen.Size = new System.Drawing.Size(626, 20); this.TongSoRunDen.TabIndex = 238; // // TongSoRunTu // this.TongSoRunTu.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.TongSoRunTu.Location = new System.Drawing.Point(843, 8); this.TongSoRunTu.Name = "TongSoRunTu"; this.TongSoRunTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.TongSoRunTu.Size = new System.Drawing.Size(67, 20); this.TongSoRunTu.TabIndex = 238; // // BQDTTNEndDen // this.BQDTTNEndDen.EditValue = null; this.BQDTTNEndDen.Location = new System.Drawing.Point(687, 31); this.BQDTTNEndDen.Name = "BQDTTNEndDen"; this.BQDTTNEndDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.BQDTTNEndDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.BQDTTNEndDen.Size = new System.Drawing.Size(75, 20); this.BQDTTNEndDen.TabIndex = 237; // // BQDTNNEndDen // this.BQDTNNEndDen.EditValue = null; this.BQDTNNEndDen.Location = new System.Drawing.Point(687, 53); this.BQDTNNEndDen.Name = "BQDTNNEndDen"; this.BQDTNNEndDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.BQDTNNEndDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.BQDTNNEndDen.Size = new System.Drawing.Size(75, 20); this.BQDTNNEndDen.TabIndex = 237; // // BQDTNNEndTu // this.BQDTNNEndTu.EditValue = null; this.BQDTNNEndTu.Location = new System.Drawing.Point(583, 53); this.BQDTNNEndTu.Name = "BQDTNNEndTu"; this.BQDTNNEndTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.BQDTNNEndTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.BQDTNNEndTu.Size = new System.Drawing.Size(74, 20); this.BQDTNNEndTu.TabIndex = 237; // // BQDTTNEndTu // this.BQDTTNEndTu.EditValue = null; this.BQDTTNEndTu.Location = new System.Drawing.Point(583, 30); this.BQDTTNEndTu.MenuManager = this.barManager1; this.BQDTTNEndTu.Name = "BQDTTNEndTu"; this.BQDTTNEndTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.BQDTTNEndTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.BQDTTNEndTu.Size = new System.Drawing.Size(73, 20); this.BQDTTNEndTu.TabIndex = 237; // // PhongBan // this.PhongBan.Location = new System.Drawing.Point(333, 79); this.PhongBan.Name = "PhongBan"; this.PhongBan.Size = new System.Drawing.Size(150, 20); this.PhongBan.TabIndex = 10; // // NamSXDen // this.NamSXDen.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.NamSXDen.Location = new System.Drawing.Point(430, 32); this.NamSXDen.Name = "NamSXDen"; this.NamSXDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.NamSXDen.Size = new System.Drawing.Size(55, 20); this.NamSXDen.TabIndex = 234; // // NamSXTu // this.NamSXTu.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.NamSXTu.Location = new System.Drawing.Point(333, 32); this.NamSXTu.MenuManager = this.barManager1; this.NamSXTu.Name = "NamSXTu"; this.NamSXTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.NamSXTu.Size = new System.Drawing.Size(69, 20); this.NamSXTu.TabIndex = 235; // // plLabel11 // this.plLabel11.Location = new System.Drawing.Point(663, 57); this.plLabel11.Name = "plLabel11"; this.plLabel11.Size = new System.Drawing.Size(18, 13); this.plLabel11.TabIndex = 231; this.plLabel11.Text = "đến"; // // plLabel17 // this.plLabel17.Location = new System.Drawing.Point(914, 60); this.plLabel17.Name = "plLabel17"; this.plLabel17.Size = new System.Drawing.Size(18, 13); this.plLabel17.TabIndex = 231; this.plLabel17.Text = "đến"; // // plLabel16 // this.plLabel16.Location = new System.Drawing.Point(914, 36); this.plLabel16.Name = "plLabel16"; this.plLabel16.Size = new System.Drawing.Size(18, 13); this.plLabel16.TabIndex = 231; this.plLabel16.Text = "đến"; // // plLabel15 // this.plLabel15.Location = new System.Drawing.Point(914, 11); this.plLabel15.Name = "plLabel15"; this.plLabel15.Size = new System.Drawing.Size(18, 13); this.plLabel15.TabIndex = 231; this.plLabel15.Text = "đến"; // // plLabel9 // this.plLabel9.Location = new System.Drawing.Point(663, 34); this.plLabel9.Name = "plLabel9"; this.plLabel9.Size = new System.Drawing.Size(18, 13); this.plLabel9.TabIndex = 231; this.plLabel9.Text = "đến"; // // plLabel3 // this.plLabel3.Location = new System.Drawing.Point(407, 36); this.plLabel3.Name = "plLabel3"; this.plLabel3.Size = new System.Drawing.Size(18, 13); this.plLabel3.TabIndex = 231; this.plLabel3.Text = "đến"; // // plLabel2 // this.plLabel2.Location = new System.Drawing.Point(267, 35); this.plLabel2.Name = "plLabel2"; this.plLabel2.Size = new System.Drawing.Size(50, 13); this.plLabel2.TabIndex = 229; this.plLabel2.Text = "Năm SX từ"; this.plLabel2.ToolTip = "Năm sản xuất chương trình (Câp 1)"; // // plLabel10 // this.plLabel10.Location = new System.Drawing.Point(496, 57); this.plLabel10.Name = "plLabel10"; this.plLabel10.Size = new System.Drawing.Size(79, 13); this.plLabel10.TabIndex = 232; this.plLabel10.Text = "BQ DTNN End từ"; this.plLabel10.ToolTip = "Bản quyền đối với đối tác nước ngoài End (Cấp 1)"; // // plLabel8 // this.plLabel8.Location = new System.Drawing.Point(495, 34); this.plLabel8.Name = "plLabel8"; this.plLabel8.Size = new System.Drawing.Size(78, 13); this.plLabel8.TabIndex = 232; this.plLabel8.Text = "BQ DTTN End từ"; this.plLabel8.ToolTip = "Bản quyền đối với đối tác trong nước End (Cấp 1)"; // // plLabel14 // this.plLabel14.Location = new System.Drawing.Point(768, 57); this.plLabel14.Name = "plLabel14"; this.plLabel14.Size = new System.Drawing.Size(64, 13); this.plLabel14.TabIndex = 232; this.plLabel14.Text = "Số run còn lại"; this.plLabel14.ToolTip = "Số run còn lại (Cấp 1)"; // // plLabel13 // this.plLabel13.Location = new System.Drawing.Point(768, 34); this.plLabel13.Name = "plLabel13"; this.plLabel13.Size = new System.Drawing.Size(73, 13); this.plLabel13.TabIndex = 232; this.plLabel13.Text = "Số run đã dùng"; this.plLabel13.ToolTip = "Số run đã dùng (Cấp 1)"; // // plLabel12 // this.plLabel12.Location = new System.Drawing.Point(768, 14); this.plLabel12.Name = "plLabel12"; this.plLabel12.Size = new System.Drawing.Size(57, 13); this.plLabel12.TabIndex = 232; this.plLabel12.Text = "Tổng số run"; this.plLabel12.ToolTip = "Tổng số run (Cấp 1)"; // // plLabel7 // this.plLabel7.Location = new System.Drawing.Point(496, 12); this.plLabel7.Name = "plLabel7"; this.plLabel7.Size = new System.Drawing.Size(81, 13); this.plLabel7.TabIndex = 232; this.plLabel7.Text = "Bản quyền thuộc"; this.plLabel7.ToolTip = "Bản quyền thuộc (Cấp 1)"; // // label34 // this.label34.Location = new System.Drawing.Point(267, 58); this.label34.Name = "label34"; this.label34.Size = new System.Drawing.Size(60, 13); this.label34.TabIndex = 232; this.label34.Text = "ĐV cung cấp"; this.label34.ToolTip = "Đơn vị cung cấp (Cấp 1)"; // // BanQuyenThuoc // this.BanQuyenThuoc.DataSource = null; this.BanQuyenThuoc.DisplayField = null; this.BanQuyenThuoc.Location = new System.Drawing.Point(583, 8); this.BanQuyenThuoc.Name = "BanQuyenThuoc"; this.BanQuyenThuoc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.BanQuyenThuoc.Size = new System.Drawing.Size(179, 20); this.BanQuyenThuoc.TabIndex = 227; this.BanQuyenThuoc.ValueField = null; // // DonViCungCap // this.DonViCungCap.DataSource = null; this.DonViCungCap.DisplayField = null; this.DonViCungCap.Location = new System.Drawing.Point(333, 55); this.DonViCungCap.Name = "DonViCungCap"; this.DonViCungCap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DonViCungCap.Size = new System.Drawing.Size(150, 20); this.DonViCungCap.TabIndex = 227; this.DonViCungCap.ValueField = null; // // Category // this.Category._DataSource = null; this.Category._GetField = null; this.Category.Location = new System.Drawing.Point(174, 54); this.Category.Name = "Category"; this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.Category.Size = new System.Drawing.Size(87, 20); this.Category.TabIndex = 1; // // TenGoc // this.TenGoc._DataSource = null; this.TenGoc._GetField = null; this.TenGoc.Location = new System.Drawing.Point(47, 31); this.TenGoc.Name = "TenGoc"; this.TenGoc.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.TenGoc.Size = new System.Drawing.Size(214, 20); this.TenGoc.TabIndex = 1; // // NoiDung // this.NoiDung._DataSource = null; this.NoiDung._GetField = null; this.NoiDung.Location = new System.Drawing.Point(48, 8); this.NoiDung.Name = "NoiDung"; this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.NoiDung.Size = new System.Drawing.Size(213, 20); this.NoiDung.TabIndex = 0; // // QuocGia // this.QuocGia.DataSource = null; this.QuocGia.DisplayField = null; this.QuocGia.Location = new System.Drawing.Point(333, 8); this.QuocGia.Name = "QuocGia"; this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.QuocGia.Size = new System.Drawing.Size(152, 20); this.QuocGia.TabIndex = 220; this.QuocGia.ValueField = null; // // TietMuc // this.TietMuc.DataSource = null; this.TietMuc.DisplayField = null; this.TietMuc.Location = new System.Drawing.Point(48, 54); this.TietMuc.Name = "TietMuc"; this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.TietMuc.Size = new System.Drawing.Size(78, 20); this.TietMuc.TabIndex = 2; this.TietMuc.ValueField = null; // // plLabel18 // this.plLabel18.Location = new System.Drawing.Point(133, 83); this.plLabel18.Name = "plLabel18"; this.plLabel18.Size = new System.Drawing.Size(20, 13); this.plLabel18.TabIndex = 213; this.plLabel18.Text = "Đến"; this.plLabel18.ToolTip = "Nước sản xuất"; // // plLabel5 // this.plLabel5.Location = new System.Drawing.Point(128, 57); this.plLabel5.Name = "plLabel5"; this.plLabel5.Size = new System.Drawing.Size(45, 13); this.plLabel5.TabIndex = 213; this.plLabel5.Text = "Category"; this.plLabel5.ToolTip = "Category (Cấp 1)"; // // label10 // this.label10.Location = new System.Drawing.Point(267, 12); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(40, 13); this.label10.TabIndex = 213; this.label10.Text = "Nước SX"; this.label10.ToolTip = "Nước sản xuất (Cấp 1)"; // // plLabel1 // this.plLabel1.Location = new System.Drawing.Point(266, 83); this.plLabel1.Name = "plLabel1"; this.plLabel1.Size = new System.Drawing.Size(51, 13); this.plLabel1.TabIndex = 217; this.plLabel1.Text = "Phòng ban"; this.plLabel1.ToolTip = "Phòng ban (Cấp 1)"; // // plLabel23 // this.plLabel23.Location = new System.Drawing.Point(768, 110); this.plLabel23.Name = "plLabel23"; this.plLabel23.Size = new System.Drawing.Size(37, 13); this.plLabel23.TabIndex = 217; this.plLabel23.Text = "Tên tập"; this.plLabel23.ToolTip = "Tên tập (Cấp 3)"; // // label29 // this.label29.Location = new System.Drawing.Point(495, 83); this.label29.Name = "label29"; this.label29.Size = new System.Drawing.Size(52, 13); this.label29.TabIndex = 217; this.label29.Text = "Ngày nhập"; this.label29.ToolTip = "Ngày nhập thông tin chương trình (Cấp 1)"; // // plLabel6 // this.plLabel6.Location = new System.Drawing.Point(4, 34); this.plLabel6.Name = "plLabel6"; this.plLabel6.Size = new System.Drawing.Size(38, 13); this.plLabel6.TabIndex = 218; this.plLabel6.Text = "Tên gốc"; this.plLabel6.ToolTip = "Tên chương trình gốc (cấp 1)"; // // label3 // this.label3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.label3.Appearance.Options.UseFont = true; this.label3.Location = new System.Drawing.Point(3, 11); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(38, 13); this.label3.TabIndex = 218; this.label3.Text = "Tên CT"; this.label3.ToolTip = "Tên chương trình (Cấp 1)"; // // plLabel4 // this.plLabel4.Location = new System.Drawing.Point(3, 83); this.plLabel4.Name = "plLabel4"; this.plLabel4.Size = new System.Drawing.Size(39, 13); this.plLabel4.TabIndex = 219; this.plLabel4.Text = "Timeslot"; this.plLabel4.ToolTip = "Timeslot (Cấp 1)"; // // label5 // this.label5.Location = new System.Drawing.Point(2, 57); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(40, 13); this.label5.TabIndex = 219; this.label5.Text = "Tiết mục"; this.label5.ToolTip = "Tiết mục (Cấp 1)"; // // barStaticItem1 // this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None; this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.barStaticItem1.Id = 13; this.barStaticItem1.Name = "barStaticItem1"; this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near; this.barStaticItem1.Width = 100; // // barButtonItem1 // this.barButtonItem1.Caption = "barButtonItem1"; this.barButtonItem1.Id = 14; this.barButtonItem1.Name = "barButtonItem1"; // // barButtonItem2 // this.barButtonItem2.Caption = "barButtonItem2"; this.barButtonItem2.Id = 15; this.barButtonItem2.Name = "barButtonItem2"; // // barButtonItem3 // this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItem3.Caption = "In"; this.barButtonItem3.Id = 30; this.barButtonItem3.Name = "barButtonItem3"; // // barButtonItem5 // this.barButtonItem5.Caption = "barButtonItem5"; this.barButtonItem5.Id = 34; this.barButtonItem5.Name = "barButtonItem5"; // // Col_PM_PostMaster // this.Col_PM_PostMaster.Caption = "Post/Master"; this.Col_PM_PostMaster.Name = "Col_PM_PostMaster"; this.Col_PM_PostMaster.Visible = true; this.Col_PM_PostMaster.Width = 70; // // Col_PM_ThanhLy // this.Col_PM_ThanhLy.Caption = "Thanh lý (Cấp 2)"; this.Col_PM_ThanhLy.Name = "Col_PM_ThanhLy"; this.Col_PM_ThanhLy.Visible = true; this.Col_PM_ThanhLy.Width = 92; // // Col_PM_LoaiLuu // this.Col_PM_LoaiLuu.Caption = "Loại lưu trữ"; this.Col_PM_LoaiLuu.Name = "Col_PM_LoaiLuu"; this.Col_PM_LoaiLuu.Visible = true; this.Col_PM_LoaiLuu.Width = 67; // // Col_PM_TongTap // this.Col_PM_TongTap.Caption = "Số tập gốc/cắt"; this.Col_PM_TongTap.Name = "Col_PM_TongTap"; this.Col_PM_TongTap.Visible = true; this.Col_PM_TongTap.Width = 82; // // Col_PM_Ke // this.Col_PM_Ke.Caption = "Kệ"; this.Col_PM_Ke.Name = "Col_PM_Ke"; this.Col_PM_Ke.Visible = true; this.Col_PM_Ke.Width = 24; // // Col_PM_Ngan // this.Col_PM_Ngan.Caption = "Ngăn"; this.Col_PM_Ngan.Name = "Col_PM_Ngan"; this.Col_PM_Ngan.Visible = true; this.Col_PM_Ngan.Width = 37; // // Col_PM_Tang // this.Col_PM_Tang.Caption = "Tầng"; this.Col_PM_Tang.Name = "Col_PM_Tang"; this.Col_PM_Tang.Visible = true; this.Col_PM_Tang.Width = 36; // // Col_PM_PopUp // this.Col_PM_PopUp.Caption = "Pop Up"; this.Col_PM_PopUp.Name = "Col_PM_PopUp"; this.Col_PM_PopUp.Visible = true; this.Col_PM_PopUp.Width = 46; // // Col_PM_TTDinhKem // this.Col_PM_TTDinhKem.Caption = "TT Đính kèm"; this.Col_PM_TTDinhKem.Name = "Col_PM_TTDinhKem"; this.Col_PM_TTDinhKem.Visible = true; this.Col_PM_TTDinhKem.Width = 71; // // Col_PM_NgayNhapKho // this.Col_PM_NgayNhapKho.Caption = "Ngày nhập kho"; this.Col_PM_NgayNhapKho.Name = "Col_PM_NgayNhapKho"; this.Col_PM_NgayNhapKho.Visible = true; this.Col_PM_NgayNhapKho.Width = 84; // // Col_PM_DVDNgayDuyet // this.Col_PM_DVDNgayDuyet.Caption = "DVD ngày duyệt"; this.Col_PM_DVDNgayDuyet.Name = "Col_PM_DVDNgayDuyet"; this.Col_PM_DVDNgayDuyet.Visible = true; this.Col_PM_DVDNgayDuyet.Width = 90; // // Col_PM_DVDNgayHoanTat // this.Col_PM_DVDNgayHoanTat.Caption = "DVD Ngày hoàn tất"; this.Col_PM_DVDNgayHoanTat.Name = "Col_PM_DVDNgayHoanTat"; this.Col_PM_DVDNgayHoanTat.Visible = true; this.Col_PM_DVDNgayHoanTat.Width = 104; // // Col_PM_TTHD // this.Col_PM_TTHD.Caption = "Thông tin HD"; this.Col_PM_TTHD.Name = "Col_PM_TTHD"; this.Col_PM_TTHD.Visible = true; this.Col_PM_TTHD.Width = 74; // // Col_PM_ThoiLuongChung // this.Col_PM_ThoiLuongChung.Caption = "Thời lượng chung"; this.Col_PM_ThoiLuongChung.Name = "Col_PM_ThoiLuongChung"; this.Col_PM_ThoiLuongChung.Visible = true; this.Col_PM_ThoiLuongChung.Width = 94; // // splitContainerControl1 // this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainerControl1.Horizontal = false; this.splitContainerControl1.Location = new System.Drawing.Point(200, 185); this.splitContainerControl1.Name = "splitContainerControl1"; this.splitContainerControl1.Panel1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseFont = true; this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseTextOptions = true; this.splitContainerControl1.Panel1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster); this.splitContainerControl1.Panel1.Text = "Chương trình"; this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left; this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail); this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2"; this.splitContainerControl1.Size = new System.Drawing.Size(828, 549); this.splitContainerControl1.SplitterPosition = 503; this.splitContainerControl1.TabIndex = 5; this.splitContainerControl1.Text = "splitContainerControl1"; // // gridControlMaster // this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage"))); this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill; this.gridControlMaster.Location = new System.Drawing.Point(0, 0); this.gridControlMaster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat; this.gridControlMaster.MainView = this.gridViewMaster; this.gridControlMaster.Name = "gridControlMaster"; this.gridControlMaster.Size = new System.Drawing.Size(828, 503); this.gridControlMaster.TabIndex = 9; this.gridControlMaster.TabStop = false; this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridViewMaster}); // // gridViewMaster // this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch); this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true; this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true; this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridViewMaster.Appearance.ViewCaption.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.gridViewMaster.Appearance.ViewCaption.Options.UseBackColor = true; this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] { this.gridBandThongTinChinh, this.gridBandNguonGoc, this.gridBandThongTinPhatSong, this.gridBandThongTinBan, this.ThôngtinHD}); this.gridViewMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] { this.Col_CT_MaCT, this.Col_CT_NgayAWB, this.Col_CT_NgayLap, this.Col_CT_NguoiLap, this.Col_CT_PhongBan, this.Col_CT_NoiDung, this.Col_CT_TietMuc, this.Col_CT_TenGoc, this.Col_CT_DaoDien, this.Col_CT_DienVien, this.Col_CT_KHPL, this.Col_CT_DoiTuongKhanGia, this.Col_CT_TuKhoa, this.Col_CT_KHXK, this.Col_CT_TinhTrangBang, this.Col_CT_TomTat, this.Col_CT_ThanhLy, this.Col_CT_GhiChu, this.Col_CT_ThongTinBan, this.Col_CT_NamSX, this.Col_CT_Nuoc, this.Col_CT_DonViCungCap, this.Col_CT_DonViSoHuu, this.Col_CT_KenhHanCheBan, this.Col_CT_PhatSongChinh, this.Col_CT_TongSoRun, this.Col_CT_SoLanPhat, this.Col_CT_SoRunConLai, this.Col_CT_Release, this.Col_CT_Category, this.Col_CT_Ranking, this.Col_CT_Script, this.Col_CT_Photos, this.Col_CT_TrailerGoc, this.Col_CT_BanQuyenThuoc, this.Col_CT_BanQuyenDIDStart, this.Col_CT_BanQuyenDIDEnd, this.Col_CT_BanQuyenDTNNStart, this.Col_CT_BanQuyenDTNNEnd, this.Col_CT_BanQuyenHTV, this.Col_CT_MuaKem, this.Col_CT_PhatSongKhac, this.Col_CT_PhatSongLai, this.Col_PM_PostMaster, this.Col_PM_ThanhLy, this.Col_PM_LoaiLuu, this.Col_PM_TongTap, this.Col_PM_Ke, this.Col_PM_Ngan, this.Col_PM_Tang, this.Col_PM_PopUp, this.Col_PM_TTDinhKem, this.Col_PM_TraierPost, this.Col_PM_NgayNhapKho, this.Col_PM_DVDNgayDuyet, this.Col_PM_DVDNgayHoanTat, this.Col_PM_NoiDungDuyet, this.Col_PM_TTHD, this.Col_PM_ThoiLuongChung, this.Col_BM_ThanhLy, this.Col_BM_MaBang, this.Col_BM_TapSo, this.Col_BM_TenTap, this.Col_BM_SoBang, this.Col_BM_ThongSo, this.Col_BM_ThoiLuong, this.Col_BM_SoDKCBHD, this.Col_BM_NoiLuuTru}); this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205); this.gridViewMaster.GridControl = this.gridControlMaster; this.gridViewMaster.GroupPanelText = "Các chương trình thỏa điều kiện tìm kiếm"; this.gridViewMaster.IndicatorWidth = 40; this.gridViewMaster.Name = "gridViewMaster"; this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false; this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true; this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true; this.gridViewMaster.OptionsPrint.UsePrintStyles = true; this.gridViewMaster.OptionsSelection.MultiSelect = true; this.gridViewMaster.OptionsView.ColumnAutoWidth = false; this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true; this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true; this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom; this.gridViewMaster.OptionsView.ShowGroupPanel = false; this.gridViewMaster.OptionsView.ShowViewCaption = true; this.gridViewMaster.ViewCaption = "Danh sách biên mục (Cấp 3)"; // // gridBandThongTinChinh // this.gridBandThongTinChinh.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.gridBandThongTinChinh.AppearanceHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); this.gridBandThongTinChinh.AppearanceHeader.Options.UseFont = true; this.gridBandThongTinChinh.AppearanceHeader.Options.UseForeColor = true; this.gridBandThongTinChinh.AppearanceHeader.Options.UseTextOptions = true; this.gridBandThongTinChinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBandThongTinChinh.Caption = "Thông tin chính"; this.gridBandThongTinChinh.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] { this.gridBand5, this.gridBand4, this.gridBand3}); this.gridBandThongTinChinh.Name = "gridBandThongTinChinh"; this.gridBandThongTinChinh.Width = 2750; // // gridBand5 // this.gridBand5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.gridBand5.AppearanceHeader.Options.UseFont = true; this.gridBand5.AppearanceHeader.Options.UseTextOptions = true; this.gridBand5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBand5.Caption = "Biên mục (Cấp 3)"; this.gridBand5.Columns.Add(this.Col_BM_TapSo); this.gridBand5.Columns.Add(this.Col_BM_TenTap); this.gridBand5.Columns.Add(this.Col_BM_SoBang); this.gridBand5.Columns.Add(this.Col_BM_MaBang); this.gridBand5.Columns.Add(this.Col_BM_ThoiLuong); this.gridBand5.Columns.Add(this.Col_BM_ThongSo); this.gridBand5.Columns.Add(this.Col_PM_ThanhLy); this.gridBand5.Name = "gridBand5"; this.gridBand5.Width = 407; // // Col_BM_TapSo // this.Col_BM_TapSo.Caption = "Tập số"; this.Col_BM_TapSo.Name = "Col_BM_TapSo"; this.Col_BM_TapSo.Visible = true; this.Col_BM_TapSo.Width = 44; // // Col_BM_TenTap // this.Col_BM_TenTap.Caption = "Tên tập"; this.Col_BM_TenTap.Name = "Col_BM_TenTap"; this.Col_BM_TenTap.Visible = true; this.Col_BM_TenTap.Width = 49; // // Col_BM_SoBang // this.Col_BM_SoBang.Caption = "Số băng"; this.Col_BM_SoBang.Name = "Col_BM_SoBang"; this.Col_BM_SoBang.Visible = true; this.Col_BM_SoBang.Width = 51; // // Col_BM_MaBang // this.Col_BM_MaBang.Caption = "Mã băng"; this.Col_BM_MaBang.Name = "Col_BM_MaBang"; this.Col_BM_MaBang.Visible = true; this.Col_BM_MaBang.Width = 53; // // Col_BM_ThoiLuong // this.Col_BM_ThoiLuong.Caption = "Thời lượng"; this.Col_BM_ThoiLuong.Name = "Col_BM_ThoiLuong"; this.Col_BM_ThoiLuong.Visible = true; this.Col_BM_ThoiLuong.Width = 62; // // Col_BM_ThongSo // this.Col_BM_ThongSo.Caption = "Thông số"; this.Col_BM_ThongSo.Name = "Col_BM_ThongSo"; this.Col_BM_ThongSo.Visible = true; this.Col_BM_ThongSo.Width = 56; // // gridBand4 // this.gridBand4.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.gridBand4.AppearanceHeader.Options.UseFont = true; this.gridBand4.AppearanceHeader.Options.UseTextOptions = true; this.gridBand4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBand4.Caption = "Post/Master (Cấp 2)"; this.gridBand4.Columns.Add(this.Col_PM_PostMaster); this.gridBand4.Columns.Add(this.Col_PM_LoaiLuu); this.gridBand4.Columns.Add(this.Col_PM_NoiDungDuyet); this.gridBand4.Columns.Add(this.Col_PM_TongTap); this.gridBand4.Columns.Add(this.Col_PM_ThoiLuongChung); this.gridBand4.Columns.Add(this.Col_PM_PopUp); this.gridBand4.Columns.Add(this.Col_PM_TraierPost); this.gridBand4.Columns.Add(this.Col_PM_Ke); this.gridBand4.Columns.Add(this.Col_PM_Ngan); this.gridBand4.Columns.Add(this.Col_PM_Tang); this.gridBand4.Columns.Add(this.Col_PM_TTDinhKem); this.gridBand4.Columns.Add(this.Col_PM_DVDNgayDuyet); this.gridBand4.Columns.Add(this.Col_PM_DVDNgayHoanTat); this.gridBand4.Columns.Add(this.Col_BM_ThanhLy); this.gridBand4.Name = "gridBand4"; this.gridBand4.Width = 964; // // Col_PM_NoiDungDuyet // this.Col_PM_NoiDungDuyet.Caption = "Nội dung duyệt"; this.Col_PM_NoiDungDuyet.Name = "Col_PM_NoiDungDuyet"; this.Col_PM_NoiDungDuyet.Visible = true; this.Col_PM_NoiDungDuyet.Width = 85; // // Col_PM_TraierPost // this.Col_PM_TraierPost.Caption = "Trailer Post"; this.Col_PM_TraierPost.Name = "Col_PM_TraierPost"; this.Col_PM_TraierPost.Visible = true; this.Col_PM_TraierPost.Width = 66; // // Col_BM_ThanhLy // this.Col_BM_ThanhLy.Caption = "Thanh lý (Cấp 3)"; this.Col_BM_ThanhLy.Name = "Col_BM_ThanhLy"; this.Col_BM_ThanhLy.Visible = true; this.Col_BM_ThanhLy.Width = 92; // // gridBand3 // this.gridBand3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.gridBand3.AppearanceHeader.Options.UseFont = true; this.gridBand3.AppearanceHeader.Options.UseTextOptions = true; this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBand3.Caption = "Chương trình (Cấp 1)"; this.gridBand3.Columns.Add(this.Col_CT_MaCT); this.gridBand3.Columns.Add(this.Col_CT_NgayAWB); this.gridBand3.Columns.Add(this.Col_CT_NgayLap); this.gridBand3.Columns.Add(this.Col_CT_NguoiLap); this.gridBand3.Columns.Add(this.Col_CT_PhongBan); this.gridBand3.Columns.Add(this.Col_CT_Category); this.gridBand3.Columns.Add(this.Col_CT_NoiDung); this.gridBand3.Columns.Add(this.Col_CT_TenGoc); this.gridBand3.Columns.Add(this.Col_CT_TietMuc); this.gridBand3.Columns.Add(this.Col_CT_DaoDien); this.gridBand3.Columns.Add(this.Col_CT_DienVien); this.gridBand3.Columns.Add(this.Col_CT_TomTat); this.gridBand3.Columns.Add(this.Col_CT_DoiTuongKhanGia); this.gridBand3.Columns.Add(this.Col_CT_KHPL); this.gridBand3.Columns.Add(this.Col_CT_KHXK); this.gridBand3.Columns.Add(this.Col_CT_TinhTrangBang); this.gridBand3.Columns.Add(this.Col_CT_TuKhoa); this.gridBand3.Columns.Add(this.Col_CT_ThanhLy); this.gridBand3.Columns.Add(this.Col_CT_GhiChu); this.gridBand3.Columns.Add(this.Col_CT_Photos); this.gridBand3.Columns.Add(this.Col_CT_Ranking); this.gridBand3.Columns.Add(this.Col_CT_Script); this.gridBand3.Columns.Add(this.Col_CT_TrailerGoc); this.gridBand3.Name = "gridBand3"; this.gridBand3.Width = 1379; // // Col_CT_MaCT // this.Col_CT_MaCT.Caption = "Mã chương trình"; this.Col_CT_MaCT.Name = "Col_CT_MaCT"; this.Col_CT_MaCT.Visible = true; this.Col_CT_MaCT.Width = 90; // // Col_CT_NgayAWB // this.Col_CT_NgayAWB.Caption = "Ngày AWB"; this.Col_CT_NgayAWB.Name = "Col_CT_NgayAWB"; this.Col_CT_NgayAWB.Visible = true; this.Col_CT_NgayAWB.Width = 63; // // Col_CT_NgayLap // this.Col_CT_NgayLap.Caption = "Ngày lập"; this.Col_CT_NgayLap.Name = "Col_CT_NgayLap"; this.Col_CT_NgayLap.Visible = true; this.Col_CT_NgayLap.Width = 54; // // Col_CT_NguoiLap // this.Col_CT_NguoiLap.Caption = "Người lập"; this.Col_CT_NguoiLap.Name = "Col_CT_NguoiLap"; this.Col_CT_NguoiLap.Visible = true; this.Col_CT_NguoiLap.Width = 57; // // Col_CT_PhongBan // this.Col_CT_PhongBan.Caption = "Phòng ban"; this.Col_CT_PhongBan.Name = "Col_CT_PhongBan"; this.Col_CT_PhongBan.Visible = true; this.Col_CT_PhongBan.Width = 63; // // Col_CT_Category // this.Col_CT_Category.Caption = "Category"; this.Col_CT_Category.Name = "Col_CT_Category"; this.Col_CT_Category.Visible = true; this.Col_CT_Category.Width = 57; // // Col_CT_NoiDung // this.Col_CT_NoiDung.Caption = "Tên chương trình"; this.Col_CT_NoiDung.Name = "Col_CT_NoiDung"; this.Col_CT_NoiDung.Visible = true; this.Col_CT_NoiDung.Width = 94; // // Col_CT_TenGoc // this.Col_CT_TenGoc.Caption = "Tên gốc"; this.Col_CT_TenGoc.Name = "Col_CT_TenGoc"; this.Col_CT_TenGoc.Visible = true; this.Col_CT_TenGoc.Width = 50; // // Col_CT_TietMuc // this.Col_CT_TietMuc.Caption = "Tiết mục"; this.Col_CT_TietMuc.Name = "Col_CT_TietMuc"; this.Col_CT_TietMuc.Visible = true; this.Col_CT_TietMuc.Width = 52; // // Col_CT_DaoDien // this.Col_CT_DaoDien.Caption = "Đạo diễn"; this.Col_CT_DaoDien.Name = "Col_CT_DaoDien"; this.Col_CT_DaoDien.Visible = true; this.Col_CT_DaoDien.Width = 55; // // Col_CT_DienVien // this.Col_CT_DienVien.Caption = "Diễn viên"; this.Col_CT_DienVien.Name = "Col_CT_DienVien"; this.Col_CT_DienVien.Visible = true; this.Col_CT_DienVien.Width = 56; // // Col_CT_TomTat // this.Col_CT_TomTat.Caption = "Tóm tắt"; this.Col_CT_TomTat.Name = "Col_CT_TomTat"; this.Col_CT_TomTat.Visible = true; this.Col_CT_TomTat.Width = 49; // // Col_CT_DoiTuongKhanGia // this.Col_CT_DoiTuongKhanGia.Caption = "Đối tượng khán giả"; this.Col_CT_DoiTuongKhanGia.Name = "Col_CT_DoiTuongKhanGia"; this.Col_CT_DoiTuongKhanGia.Visible = true; this.Col_CT_DoiTuongKhanGia.Width = 103; // // Col_CT_KHPL // this.Col_CT_KHPL.Caption = "KHPL"; this.Col_CT_KHPL.Name = "Col_CT_KHPL"; this.Col_CT_KHPL.ToolTip = "Ký hiệu phân loại"; this.Col_CT_KHPL.Visible = true; this.Col_CT_KHPL.Width = 36; // // Col_CT_KHXK // this.Col_CT_KHXK.Caption = "KHXK"; this.Col_CT_KHXK.Name = "Col_CT_KHXK"; this.Col_CT_KHXK.ToolTip = "Ký hiệu xếp kho"; this.Col_CT_KHXK.Visible = true; this.Col_CT_KHXK.Width = 37; // // Col_CT_TinhTrangBang // this.Col_CT_TinhTrangBang.Caption = "Tình trạng CT"; this.Col_CT_TinhTrangBang.Name = "Col_CT_TinhTrangBang"; this.Col_CT_TinhTrangBang.Visible = true; this.Col_CT_TinhTrangBang.Width = 77; // // Col_CT_TuKhoa // this.Col_CT_TuKhoa.Caption = "Từ khóa"; this.Col_CT_TuKhoa.Name = "Col_CT_TuKhoa"; this.Col_CT_TuKhoa.Visible = true; this.Col_CT_TuKhoa.Width = 51; // // Col_CT_ThanhLy // this.Col_CT_ThanhLy.Caption = "Thanh lý (Cấp 1)"; this.Col_CT_ThanhLy.Name = "Col_CT_ThanhLy"; this.Col_CT_ThanhLy.Visible = true; this.Col_CT_ThanhLy.Width = 92; // // Col_CT_GhiChu // this.Col_CT_GhiChu.Caption = "Ghi chú"; this.Col_CT_GhiChu.Name = "Col_CT_GhiChu"; this.Col_CT_GhiChu.Visible = true; this.Col_CT_GhiChu.Width = 47; // // Col_CT_Photos // this.Col_CT_Photos.Caption = "Photos"; this.Col_CT_Photos.Name = "Col_CT_Photos"; this.Col_CT_Photos.Visible = true; this.Col_CT_Photos.Width = 45; // // Col_CT_Ranking // this.Col_CT_Ranking.Caption = "Ranking"; this.Col_CT_Ranking.Name = "Col_CT_Ranking"; this.Col_CT_Ranking.Visible = true; this.Col_CT_Ranking.Width = 50; // // Col_CT_Script // this.Col_CT_Script.Caption = "Script"; this.Col_CT_Script.Name = "Col_CT_Script"; this.Col_CT_Script.Visible = true; this.Col_CT_Script.Width = 39; // // Col_CT_TrailerGoc // this.Col_CT_TrailerGoc.Caption = "Trailer gốc"; this.Col_CT_TrailerGoc.Name = "Col_CT_TrailerGoc"; this.Col_CT_TrailerGoc.Visible = true; this.Col_CT_TrailerGoc.Width = 62; // // gridBandNguonGoc // this.gridBandNguonGoc.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.gridBandNguonGoc.AppearanceHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); this.gridBandNguonGoc.AppearanceHeader.Options.UseFont = true; this.gridBandNguonGoc.AppearanceHeader.Options.UseForeColor = true; this.gridBandNguonGoc.AppearanceHeader.Options.UseTextOptions = true; this.gridBandNguonGoc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBandNguonGoc.Caption = "Nguồn gốc"; this.gridBandNguonGoc.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] { this.gridBand1, this.gridBand2}); this.gridBandNguonGoc.Name = "gridBandNguonGoc"; this.gridBandNguonGoc.Width = 1174; // // gridBand1 // this.gridBand1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.gridBand1.AppearanceHeader.Options.UseFont = true; this.gridBand1.AppearanceHeader.Options.UseTextOptions = true; this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBand1.Caption = "Thông tin sở hữu"; this.gridBand1.Columns.Add(this.Col_CT_NamSX); this.gridBand1.Columns.Add(this.Col_CT_Nuoc); this.gridBand1.Columns.Add(this.Col_CT_DonViCungCap); this.gridBand1.Columns.Add(this.Col_CT_DonViSoHuu); this.gridBand1.Columns.Add(this.Col_CT_KenhHanCheBan); this.gridBand1.Columns.Add(this.Col_CT_ThongTinBan); this.gridBand1.Name = "gridBand1"; this.gridBand1.Width = 444; // // Col_CT_NamSX // this.Col_CT_NamSX.Caption = "Năm SX"; this.Col_CT_NamSX.Name = "Col_CT_NamSX"; this.Col_CT_NamSX.Visible = true; this.Col_CT_NamSX.Width = 48; // // Col_CT_Nuoc // this.Col_CT_Nuoc.Caption = "Nước SX"; this.Col_CT_Nuoc.Name = "Col_CT_Nuoc"; this.Col_CT_Nuoc.ToolTip = "Nước sản xuất"; this.Col_CT_Nuoc.Visible = true; this.Col_CT_Nuoc.Width = 52; // // Col_CT_DonViCungCap // this.Col_CT_DonViCungCap.Caption = "Đơn vị cung cấp"; this.Col_CT_DonViCungCap.Name = "Col_CT_DonViCungCap"; this.Col_CT_DonViCungCap.Visible = true; this.Col_CT_DonViCungCap.Width = 89; // // Col_CT_DonViSoHuu // this.Col_CT_DonViSoHuu.Caption = "Đơn vị sở hữu"; this.Col_CT_DonViSoHuu.Name = "Col_CT_DonViSoHuu"; this.Col_CT_DonViSoHuu.Visible = true; this.Col_CT_DonViSoHuu.Width = 79; // // Col_CT_KenhHanCheBan // this.Col_CT_KenhHanCheBan.Caption = "Kênh hạn chế bán"; this.Col_CT_KenhHanCheBan.Name = "Col_CT_KenhHanCheBan"; this.Col_CT_KenhHanCheBan.Visible = true; this.Col_CT_KenhHanCheBan.Width = 98; // // Col_CT_ThongTinBan // this.Col_CT_ThongTinBan.Caption = "Thông tin bán"; this.Col_CT_ThongTinBan.Name = "Col_CT_ThongTinBan"; this.Col_CT_ThongTinBan.Visible = true; this.Col_CT_ThongTinBan.Width = 78; // // gridBand2 // this.gridBand2.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.gridBand2.AppearanceHeader.Options.UseFont = true; this.gridBand2.AppearanceHeader.Options.UseTextOptions = true; this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBand2.Caption = "Thời hạn bản quyền"; this.gridBand2.Columns.Add(this.Col_PM_NgayNhapKho); this.gridBand2.Columns.Add(this.Col_CT_BanQuyenThuoc); this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDIDStart); this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDIDEnd); this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDTNNStart); this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDTNNEnd); this.gridBand2.Columns.Add(this.Col_CT_BanQuyenHTV); this.gridBand2.Name = "gridBand2"; this.gridBand2.Width = 730; // // Col_CT_BanQuyenThuoc // this.Col_CT_BanQuyenThuoc.Caption = "Bản quyền thuộc"; this.Col_CT_BanQuyenThuoc.Name = "Col_CT_BanQuyenThuoc"; this.Col_CT_BanQuyenThuoc.Visible = true; this.Col_CT_BanQuyenThuoc.Width = 93; // // Col_CT_BanQuyenDIDStart // this.Col_CT_BanQuyenDIDStart.Caption = "Bản quyền DTTN Start"; this.Col_CT_BanQuyenDIDStart.Name = "Col_CT_BanQuyenDIDStart"; this.Col_CT_BanQuyenDIDStart.ToolTip = "Bản quyền đối tác trong nước Start"; this.Col_CT_BanQuyenDIDStart.Visible = true; this.Col_CT_BanQuyenDIDStart.Width = 119; // // Col_CT_BanQuyenDIDEnd // this.Col_CT_BanQuyenDIDEnd.Caption = "Bản quyền DTTN End"; this.Col_CT_BanQuyenDIDEnd.Name = "Col_CT_BanQuyenDIDEnd"; this.Col_CT_BanQuyenDIDEnd.ToolTip = "Bản quyền đối tác trong nước End"; this.Col_CT_BanQuyenDIDEnd.Visible = true; this.Col_CT_BanQuyenDIDEnd.Width = 113; // // Col_CT_BanQuyenDTNNStart // this.Col_CT_BanQuyenDTNNStart.Caption = "Bản quyền ĐTNN Start"; this.Col_CT_BanQuyenDTNNStart.Name = "Col_CT_BanQuyenDTNNStart"; this.Col_CT_BanQuyenDTNNStart.ToolTip = "Bản quyền đối tác nước ngoài Start"; this.Col_CT_BanQuyenDTNNStart.Visible = true; this.Col_CT_BanQuyenDTNNStart.Width = 121; // // Col_CT_BanQuyenDTNNEnd // this.Col_CT_BanQuyenDTNNEnd.Caption = "Bản quyền ĐTNN End"; this.Col_CT_BanQuyenDTNNEnd.Name = "Col_CT_BanQuyenDTNNEnd"; this.Col_CT_BanQuyenDTNNEnd.ToolTip = "Bản quyền đối tác nước ngoài End"; this.Col_CT_BanQuyenDTNNEnd.Visible = true; this.Col_CT_BanQuyenDTNNEnd.Width = 115; // // Col_CT_BanQuyenHTV // this.Col_CT_BanQuyenHTV.Caption = "Bản quyền HTV"; this.Col_CT_BanQuyenHTV.Name = "Col_CT_BanQuyenHTV"; this.Col_CT_BanQuyenHTV.Visible = true; this.Col_CT_BanQuyenHTV.Width = 85; // // gridBandThongTinPhatSong // this.gridBandThongTinPhatSong.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.gridBandThongTinPhatSong.AppearanceHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseFont = true; this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseForeColor = true; this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseTextOptions = true; this.gridBandThongTinPhatSong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBandThongTinPhatSong.Caption = "Thông tin phát sóng"; this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_MuaKem); this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongChinh); this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongLai); this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongKhac); this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_TongSoRun); this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_SoLanPhat); this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_SoRunConLai); this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_Release); this.gridBandThongTinPhatSong.Name = "gridBandThongTinPhatSong"; this.gridBandThongTinPhatSong.Width = 794; // // Col_CT_MuaKem // this.Col_CT_MuaKem.Caption = "Mua kèm"; this.Col_CT_MuaKem.Name = "Col_CT_MuaKem"; this.Col_CT_MuaKem.Visible = true; this.Col_CT_MuaKem.Width = 54; // // Col_CT_PhatSongChinh // this.Col_CT_PhatSongChinh.Caption = "Thời gian P/S chính"; this.Col_CT_PhatSongChinh.Name = "Col_CT_PhatSongChinh"; this.Col_CT_PhatSongChinh.ToolTip = "Những ngày phát lần đầu tương ứng trên các đài"; this.Col_CT_PhatSongChinh.Visible = true; this.Col_CT_PhatSongChinh.Width = 102; // // Col_CT_PhatSongLai // this.Col_CT_PhatSongLai.Caption = "Thời gian P/S lại"; this.Col_CT_PhatSongLai.Name = "Col_CT_PhatSongLai"; this.Col_CT_PhatSongLai.ToolTip = "Những ngày phát lần đầu (nhưng phát lại) tương ứng trên các đài"; this.Col_CT_PhatSongLai.Visible = true; this.Col_CT_PhatSongLai.Width = 87; // // Col_CT_PhatSongKhac // this.Col_CT_PhatSongKhac.Caption = "Thời gian P/S trên kênh khác"; this.Col_CT_PhatSongKhac.Name = "Col_CT_PhatSongKhac"; this.Col_CT_PhatSongKhac.ToolTip = "Thời gian phát sóng trên kênh khác"; this.Col_CT_PhatSongKhac.Visible = true; this.Col_CT_PhatSongKhac.Width = 148; // // Col_CT_TongSoRun // this.Col_CT_TongSoRun.Caption = "Tổng số Run"; this.Col_CT_TongSoRun.Name = "Col_CT_TongSoRun"; this.Col_CT_TongSoRun.Visible = true; this.Col_CT_TongSoRun.Width = 72; // // Col_CT_SoLanPhat // this.Col_CT_SoLanPhat.Caption = "Tồng số lần đã phát (đã Run)"; this.Col_CT_SoLanPhat.Name = "Col_CT_SoLanPhat"; this.Col_CT_SoLanPhat.Visible = true; this.Col_CT_SoLanPhat.Width = 152; // // Col_CT_SoRunConLai // this.Col_CT_SoRunConLai.Caption = "Số Run còn lại"; this.Col_CT_SoRunConLai.Name = "Col_CT_SoRunConLai"; this.Col_CT_SoRunConLai.Visible = true; this.Col_CT_SoRunConLai.Width = 79; // // Col_CT_Release // this.Col_CT_Release.Caption = "Release (Số ngày)"; this.Col_CT_Release.Name = "Col_CT_Release"; this.Col_CT_Release.Visible = true; this.Col_CT_Release.Width = 100; // // gridBandThongTinBan // this.gridBandThongTinBan.AppearanceHeader.Options.UseTextOptions = true; this.gridBandThongTinBan.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBandThongTinBan.Caption = "Thông tin bán"; this.gridBandThongTinBan.Name = "gridBandThongTinBan"; this.gridBandThongTinBan.OptionsBand.ShowInCustomizationForm = false; this.gridBandThongTinBan.Visible = false; this.gridBandThongTinBan.Width = 67; // // ThôngtinHD // this.ThôngtinHD.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.ThôngtinHD.AppearanceHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); this.ThôngtinHD.AppearanceHeader.Options.UseFont = true; this.ThôngtinHD.AppearanceHeader.Options.UseForeColor = true; this.ThôngtinHD.AppearanceHeader.Options.UseTextOptions = true; this.ThôngtinHD.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.ThôngtinHD.Caption = "Thông tin HD"; this.ThôngtinHD.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] { this.gridBand7, this.gridBand6}); this.ThôngtinHD.Name = "ThôngtinHD"; this.ThôngtinHD.Width = 286; // // gridBand7 // this.gridBand7.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.gridBand7.AppearanceHeader.Options.UseFont = true; this.gridBand7.AppearanceHeader.Options.UseTextOptions = true; this.gridBand7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBand7.Caption = "Biên mục (Cấp 3)"; this.gridBand7.Columns.Add(this.Col_BM_SoDKCBHD); this.gridBand7.Columns.Add(this.Col_BM_NoiLuuTru); this.gridBand7.Name = "gridBand7"; this.gridBand7.Width = 212; // // Col_BM_SoDKCBHD // this.Col_BM_SoDKCBHD.Caption = "Số ĐKCB HD (Cấp 3)"; this.Col_BM_SoDKCBHD.Name = "Col_BM_SoDKCBHD"; this.Col_BM_SoDKCBHD.Visible = true; this.Col_BM_SoDKCBHD.Width = 110; // // Col_BM_NoiLuuTru // this.Col_BM_NoiLuuTru.Caption = "Nơi lưu trữ (Cấp 3)"; this.Col_BM_NoiLuuTru.Name = "Col_BM_NoiLuuTru"; this.Col_BM_NoiLuuTru.Visible = true; this.Col_BM_NoiLuuTru.Width = 102; // // gridBand6 // this.gridBand6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.gridBand6.AppearanceHeader.Options.UseFont = true; this.gridBand6.AppearanceHeader.Options.UseTextOptions = true; this.gridBand6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridBand6.Caption = "Post/Master (Cấp 2)"; this.gridBand6.Columns.Add(this.Col_PM_TTHD); this.gridBand6.Name = "gridBand6"; this.gridBand6.Width = 74; // // xtraTabControlDetail // this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill; this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0); this.xtraTabControlDetail.Name = "xtraTabControlDetail"; this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail; this.xtraTabControlDetail.Size = new System.Drawing.Size(828, 40); this.xtraTabControlDetail.TabIndex = 11; this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { this.xtraTabPageDetail}); this.xtraTabControlDetail.Visible = false; // // xtraTabPageDetail // this.xtraTabPageDetail.Controls.Add(this.gridControlDetail); this.xtraTabPageDetail.Name = "xtraTabPageDetail"; this.xtraTabPageDetail.Size = new System.Drawing.Size(821, 11); this.xtraTabPageDetail.Text = "Post/Master"; // // gridControlDetail // this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage"))); this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill; this.gridControlDetail.Location = new System.Drawing.Point(0, 0); this.gridControlDetail.MainView = this.gridViewDetail; this.gridControlDetail.Name = "gridControlDetail"; this.gridControlDetail.Size = new System.Drawing.Size(821, 11); this.gridControlDetail.TabIndex = 9; this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridViewDetail}); // // gridViewDetail // this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true; this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridViewDetail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.gridViewDetail.GridControl = this.gridControlDetail; this.gridViewDetail.IndicatorWidth = 40; this.gridViewDetail.Name = "gridViewDetail"; this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false; this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true; this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true; this.gridViewDetail.OptionsPrint.UsePrintStyles = true; this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true; this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true; this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom; this.gridViewDetail.OptionsView.ShowGroupedColumns = true; this.gridViewDetail.OptionsView.ShowGroupPanel = false; this.gridViewDetail.OptionsView.ShowViewCaption = true; this.gridViewDetail.ViewCaption = "Post/Master (Cấp 2)"; // // barButtonItemThongKe // this.barButtonItemThongKe.Caption = "&Thống kê"; this.barButtonItemThongKe.Id = 43; this.barButtonItemThongKe.Name = "barButtonItemThongKe"; this.barButtonItemThongKe.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // frmBienMucSearchQL // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1028, 734); this.Controls.Add(this.splitContainerControl1); this.Controls.Add(this.dockPanelSimple); this.Controls.Add(this.dockPanelAdvance); this.Controls.Add(this.barDockControlLeft); this.Controls.Add(this.barDockControlRight); this.Controls.Add(this.barDockControlBottom); this.Controls.Add(this.barDockControlTop); this.Name = "frmBienMucSearchQL"; this.Text = "Tra cứu biên mục"; ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit(); this.dockPanelAdvance.ResumeLayout(false); this.dockPanel2_Container.ResumeLayout(false); this.dockPanelSimple.ResumeLayout(false); this.dockPanel1_Container.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit(); this.popupControlContainerFilter.ResumeLayout(false); this.popupControlContainerFilter.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TimeslotDen.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TimeslotTu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiTu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungTu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiDen.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungDen.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TongSoRunDen.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TongSoRunTu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenThuoc.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit(); this.splitContainerControl1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit(); this.xtraTabControlDetail.ResumeLayout(false); this.xtraTabPageDetail.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit(); this.ResumeLayout(false); }
private void ProdOrderP_View_ViewControlsCreated(object sender, EventArgs e) { detailView = (DetailView)View; prodOrderP = (ProdOrderP)detailView.CurrentObject; foreach (ControlDetailItem cdi in detailView.GetItems<ControlDetailItem>()) { switch (cdi.Id) { case "btnOK": btnOK = (SimpleButton)cdi.Control; btnOK.Text = "出單"; btnOK.Click += new EventHandler(btnOK_Click); break; case "btnClose": btnClose = (SimpleButton)cdi.Control; btnClose.Text = "取消"; btnClose.Click += new EventHandler(btnClose_Click); break; case "txtAvailQty": txtAvailQty = (TextEdit)cdi.Control; txtAvailQty.Enabled = false; break; case "txtDailyQty": txtDailyQty = (TextEdit)cdi.Control; txtDailyQty.Enabled = false; break; case "txtMachine": txtMachine = (TextEdit)cdi.Control; break; case "txtNeedQty": txtNeedQty = (SpinEdit)cdi.Control; break; case "txtPartName": txtPartName = (TextEdit)cdi.Control; txtPartName.Enabled = false; break; case "txtPartNo": txtPartNo = (TextEdit)cdi.Control; txtPartNo.Enabled = false; break; case "txtResName": txtResName = (TextEdit)cdi.Control; txtResName.Enabled = false; break; case "txtResNo": txtResNo = (TextEdit)cdi.Control; txtResNo.Enabled = false; break; case "txtLackQty": txtLackQty = (TextEdit)cdi.Control; txtLackQty.Enabled = false; break; case "cboWorkOper": cboWorkOper = (ComboBoxEdit)cdi.Control; cboWorkOper.SelectedValueChanged += new EventHandler(cboWorkOper_SelectedValueChanged); break; case "datNeedDate": datNeedDate = (DateEdit)cdi.Control; break; } } initComboBox(); }
private void InitializeComponent() { this.label5 = new Label(); this.label1 = new Label(); this.lblPL = new Label(); this.cmbPrintSets = new ComboBoxEdit(); this.numPageIndex = new SpinEdit(); this.label2 = new Label(); this.cmbDataForms = new ComboBoxEdit(); this.gcDataControls = new GridControl(); this.gvDataControls = new GridView(); this.chkDel = new CheckEdit(); this.cmbPrintSets.Properties.BeginInit(); this.numPageIndex.Properties.BeginInit(); this.cmbDataForms.Properties.BeginInit(); this.gcDataControls.BeginInit(); this.gvDataControls.BeginInit(); this.chkDel.Properties.BeginInit(); base.SuspendLayout(); this.label5.Location = new Point(13, 0x3b); this.label5.Name = "label5"; this.label5.Size = new Size(0x26, 80); this.label5.TabIndex = 4; this.label5.Text = "表单控件权限"; this.label1.AutoSize = true; this.label1.Location = new Point(0x1d2, 8); this.label1.Name = "label1"; this.label1.Size = new Size(0x1f, 14); this.label1.TabIndex = 13; this.label1.Text = "页面"; this.lblPL.AutoSize = true; this.lblPL.Location = new Point(13, 0x23); this.lblPL.Name = "lblPL"; this.lblPL.Size = new Size(0x1f, 14); this.lblPL.TabIndex = 15; this.lblPL.Text = "报表"; this.cmbPrintSets.Location = new Point(50, 0x20); this.cmbPrintSets.Name = "cmbPrintSets"; this.cmbPrintSets.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) }); this.cmbPrintSets.Size = new Size(0x191, 0x15); this.cmbPrintSets.TabIndex = 0x10; int[] bits = new int[4]; this.numPageIndex.EditValue = new decimal(bits); this.numPageIndex.Location = new Point(0x1f7, 5); this.numPageIndex.Name = "numPageIndex"; this.numPageIndex.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton() }); this.numPageIndex.Size = new Size(0x5e, 0x15); this.numPageIndex.TabIndex = 0x11; this.label2.AutoSize = true; this.label2.Location = new Point(13, 8); this.label2.Name = "label2"; this.label2.Size = new Size(0x1f, 14); this.label2.TabIndex = 0x12; this.label2.Text = "表单"; this.cmbDataForms.Location = new Point(50, 5); this.cmbDataForms.Name = "cmbDataForms"; this.cmbDataForms.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) }); this.cmbDataForms.Size = new Size(0x191, 0x15); this.cmbDataForms.TabIndex = 0x13; this.gcDataControls.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top; this.gcDataControls.EmbeddedNavigator.Name = ""; this.gcDataControls.Location = new Point(50, 0x3b); this.gcDataControls.MainView = this.gvDataControls; this.gcDataControls.Name = "gcDataControls"; this.gcDataControls.Size = new Size(0x243, 0x15d); this.gcDataControls.TabIndex = 0x16; this.gcDataControls.ViewCollection.AddRange(new BaseView[] { this.gvDataControls }); this.gvDataControls.GridControl = this.gcDataControls; this.gvDataControls.Name = "gvDataControls"; this.gvDataControls.OptionsSelection.MultiSelect = true; this.gvDataControls.OptionsView.ShowGroupedColumns = true; this.chkDel.Location = new Point(0x1d3, 0x20); this.chkDel.Name = "chkDel"; this.chkDel.Properties.Caption = "能否删除"; this.chkDel.RightToLeft = RightToLeft.No; this.chkDel.Size = new Size(0x4b, 0x13); this.chkDel.TabIndex = 0x17; base.Controls.Add(this.chkDel); base.Controls.Add(this.gcDataControls); base.Controls.Add(this.cmbDataForms); base.Controls.Add(this.label2); base.Controls.Add(this.numPageIndex); base.Controls.Add(this.cmbPrintSets); base.Controls.Add(this.lblPL); base.Controls.Add(this.label1); base.Controls.Add(this.label5); base.Location = new Point(4, 0x15); this.LookAndFeel.UseDefaultLookAndFeel = false; base.Name = "TabPageForSetFormPermission"; base.Size = new Size(0x278, 0x1a0); this.cmbPrintSets.Properties.EndInit(); this.numPageIndex.Properties.EndInit(); this.cmbDataForms.Properties.EndInit(); this.gcDataControls.EndInit(); this.gvDataControls.EndInit(); this.chkDel.Properties.EndInit(); base.ResumeLayout(false); base.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> protected void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBienMucDeletedQL)); this.barManager1 = new DevExpress.XtraBars.BarManager(this.components); this.MainBar = new DevExpress.XtraBars.Bar(); this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemDeleteRealy = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemRestore = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem(); this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components); this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem(); this.barSubItem1 = new DevExpress.XtraBars.BarSubItem(); this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem(); this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components); this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem(); this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem(); this.barDockControlTop = new DevExpress.XtraBars.BarDockControl(); this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl(); this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl(); this.barDockControlRight = new DevExpress.XtraBars.BarDockControl(); this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem(); this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem(); this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl(); this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components); this.ThanhLy = new DevExpress.XtraEditors.CheckedListBoxControl(); this.NamSXDen = new DevExpress.XtraEditors.SpinEdit(); this.NamSXTu = new DevExpress.XtraEditors.SpinEdit(); this.NgayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection(); this.NgayXoa = new ProtocolVN.Framework.Win.Trial.PLDateSelection(); this.label15 = new System.Windows.Forms.PLLabel(); this.label35 = new System.Windows.Forms.PLLabel(); this.label11 = new System.Windows.Forms.PLLabel(); this.plLabel4 = new System.Windows.Forms.PLLabel(); this.plLabel3 = new System.Windows.Forms.PLLabel(); this.plLabel2 = new System.Windows.Forms.PLLabel(); this.label34 = new System.Windows.Forms.PLLabel(); this.label2 = new System.Windows.Forms.PLLabel(); this.label9 = new System.Windows.Forms.PLLabel(); this.MaBang = new DevExpress.XtraEditors.TextEdit(); this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.LoaiBang = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.SoDKHDCB = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.DonViCungCap = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.DonViSoHuu = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.plTreeSelectItem1 = new ProtocolVN.Framework.Win.PLDMTreeGroupElement(); this.label10 = new System.Windows.Forms.PLLabel(); this.label1 = new System.Windows.Forms.PLLabel(); this.plLabel1 = new System.Windows.Forms.PLLabel(); this.label29 = new System.Windows.Forms.PLLabel(); this.label3 = new System.Windows.Forms.PLLabel(); this.label5 = new System.Windows.Forms.PLLabel(); this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView(); this.gridControlMaster = new DevExpress.XtraGrid.GridControl(); this.TinhTrang = new DevExpress.XtraEditors.CheckedListBoxControl(); ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit(); this.splitContainerControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit(); this.popupControlContainerFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.ThanhLy)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.LoaiBang.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.SoDKHDCB.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DonViSoHuu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TinhTrang)).BeginInit(); this.SuspendLayout(); // // barManager1 // this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] { this.MainBar}); this.barManager1.DockControls.Add(this.barDockControlTop); this.barManager1.DockControls.Add(this.barDockControlBottom); this.barManager1.DockControls.Add(this.barDockControlLeft); this.barManager1.DockControls.Add(this.barDockControlRight); this.barManager1.Form = this; this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] { this.barButtonItemAdd, this.barButtonItemDelete, this.barButtonItemUpdate, this.barButtonItemPrint, this.barStaticItem1, this.barButtonItem1, this.barButtonItem2, this.barButtonItemCommit, this.barButtonItemNoCommit, this.barSubItem1, this.barButtonItemXem, this.barButtonItemSearch, this.barButtonItemClose, this.barCheckItemFilter, this.barButtonItem3, this.barButtonItem4, this.barButtonItem5, this.barButtonItemRestore, this.barButtonItemDeleteRealy}); this.barManager1.MaxItemId = 38; // // MainBar // this.MainBar.BarName = "MainBar"; this.MainBar.DockCol = 0; this.MainBar.DockRow = 0; this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top; this.MainBar.FloatLocation = new System.Drawing.Point(39, 133); this.MainBar.FloatSize = new System.Drawing.Size(72, 73); this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm", false, true, false, 0), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDeleteRealy), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemRestore), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit), new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)}); this.MainBar.OptionsBar.AllowQuickCustomization = false; this.MainBar.OptionsBar.DrawDragBorder = false; this.MainBar.OptionsBar.RotateWhenVertical = false; this.MainBar.OptionsBar.UseWholeRow = true; this.MainBar.Text = "Custom 1"; // // barButtonItemAdd // this.barButtonItemAdd.Caption = "Thêm"; this.barButtonItemAdd.Id = 0; this.barButtonItemAdd.Name = "barButtonItemAdd"; this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemXem // this.barButtonItemXem.Caption = "X&em"; this.barButtonItemXem.Id = 24; this.barButtonItemXem.Name = "barButtonItemXem"; this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemDelete // this.barButtonItemDelete.Caption = "&Xóa"; this.barButtonItemDelete.Id = 1; this.barButtonItemDelete.Name = "barButtonItemDelete"; this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; this.barButtonItemDelete.Visibility = DevExpress.XtraBars.BarItemVisibility.Never; // // barButtonItemUpdate // this.barButtonItemUpdate.Caption = "&Sửa"; this.barButtonItemUpdate.Id = 2; this.barButtonItemUpdate.Name = "barButtonItemUpdate"; this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; this.barButtonItemUpdate.Visibility = DevExpress.XtraBars.BarItemVisibility.Never; // // barButtonItemDeleteRealy // this.barButtonItemDeleteRealy.Caption = "&Xóa hẳn"; this.barButtonItemDeleteRealy.Id = 37; this.barButtonItemDeleteRealy.Name = "barButtonItemDeleteRealy"; this.barButtonItemDeleteRealy.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemRestore // this.barButtonItemRestore.Caption = "&Phục hồi"; this.barButtonItemRestore.Id = 36; this.barButtonItemRestore.Name = "barButtonItemRestore"; this.barButtonItemRestore.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemPrint // this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItemPrint.Caption = "&In"; this.barButtonItemPrint.DropDownControl = this.popupMenu1; this.barButtonItemPrint.Id = 3; this.barButtonItemPrint.Name = "barButtonItemPrint"; this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // popupMenu1 // this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)}); this.popupMenu1.Manager = this.barManager1; this.popupMenu1.Name = "popupMenu1"; // // barButtonItem4 // this.barButtonItem4.Caption = "Xem t&rước"; this.barButtonItem4.Id = 33; this.barButtonItem4.Name = "barButtonItem4"; // // barButtonItemCommit // this.barButtonItemCommit.Caption = "&Duyệt"; this.barButtonItemCommit.Id = 17; this.barButtonItemCommit.Name = "barButtonItemCommit"; this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemNoCommit // this.barButtonItemNoCommit.Caption = "&Không duyệt"; this.barButtonItemNoCommit.Id = 18; this.barButtonItemNoCommit.Name = "barButtonItemNoCommit"; this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barSubItem1 // this.barSubItem1.Caption = "&Nghiệp vụ"; this.barSubItem1.Id = 20; this.barSubItem1.Name = "barSubItem1"; this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemSearch // this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItemSearch.Caption = "Tì&m kiếm"; this.barButtonItemSearch.DropDownControl = this.popupMenuFilter; this.barButtonItemSearch.Id = 27; this.barButtonItemSearch.Name = "barButtonItemSearch"; this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // popupMenuFilter // this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)}); this.popupMenuFilter.Manager = this.barManager1; this.popupMenuFilter.Name = "popupMenuFilter"; // // barCheckItemFilter // this.barCheckItemFilter.Caption = "Điề&u kiện tìm kiếm"; this.barCheckItemFilter.Id = 29; this.barCheckItemFilter.Name = "barCheckItemFilter"; this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // barButtonItemClose // this.barButtonItemClose.Caption = "Đón&g"; this.barButtonItemClose.Id = 28; this.barButtonItemClose.Name = "barButtonItemClose"; this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; // // 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(1016, 24); // // barDockControlBottom // this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.barDockControlBottom.Location = new System.Drawing.Point(0, 734); this.barDockControlBottom.Size = new System.Drawing.Size(1016, 0); // // barDockControlLeft // this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left; this.barDockControlLeft.Location = new System.Drawing.Point(0, 24); this.barDockControlLeft.Size = new System.Drawing.Size(0, 710); // // barDockControlRight // this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right; this.barDockControlRight.Location = new System.Drawing.Point(1016, 24); this.barDockControlRight.Size = new System.Drawing.Size(0, 710); // // barStaticItem1 // this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None; this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.barStaticItem1.Id = 13; this.barStaticItem1.Name = "barStaticItem1"; this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near; this.barStaticItem1.Width = 100; // // barButtonItem1 // this.barButtonItem1.Caption = "barButtonItem1"; this.barButtonItem1.Id = 14; this.barButtonItem1.Name = "barButtonItem1"; // // barButtonItem2 // this.barButtonItem2.Caption = "barButtonItem2"; this.barButtonItem2.Id = 15; this.barButtonItem2.Name = "barButtonItem2"; // // barButtonItem3 // this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItem3.Caption = "In"; this.barButtonItem3.Id = 30; this.barButtonItem3.Name = "barButtonItem3"; // // barButtonItem5 // this.barButtonItem5.Caption = "barButtonItem5"; this.barButtonItem5.Id = 34; this.barButtonItem5.Name = "barButtonItem5"; // // splitContainerControl1 // this.splitContainerControl1.Horizontal = false; this.splitContainerControl1.Location = new System.Drawing.Point(879, 263); this.splitContainerControl1.Name = "splitContainerControl1"; this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1"; this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left; this.splitContainerControl1.Panel2.ShowCaption = true; this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2"; this.splitContainerControl1.Size = new System.Drawing.Size(41, 38); this.splitContainerControl1.SplitterPosition = 76; this.splitContainerControl1.TabIndex = 4; this.splitContainerControl1.Text = "splitContainerControl1"; // // popupControlContainerFilter // this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.popupControlContainerFilter.Controls.Add(this.TinhTrang); this.popupControlContainerFilter.Controls.Add(this.ThanhLy); this.popupControlContainerFilter.Controls.Add(this.NamSXDen); this.popupControlContainerFilter.Controls.Add(this.NamSXTu); this.popupControlContainerFilter.Controls.Add(this.NgayNhap); this.popupControlContainerFilter.Controls.Add(this.NgayXoa); this.popupControlContainerFilter.Controls.Add(this.label15); this.popupControlContainerFilter.Controls.Add(this.label35); this.popupControlContainerFilter.Controls.Add(this.label11); this.popupControlContainerFilter.Controls.Add(this.plLabel4); this.popupControlContainerFilter.Controls.Add(this.plLabel3); this.popupControlContainerFilter.Controls.Add(this.plLabel2); this.popupControlContainerFilter.Controls.Add(this.label34); this.popupControlContainerFilter.Controls.Add(this.label2); this.popupControlContainerFilter.Controls.Add(this.splitContainerControl1); this.popupControlContainerFilter.Controls.Add(this.label9); this.popupControlContainerFilter.Controls.Add(this.MaBang); this.popupControlContainerFilter.Controls.Add(this.NoiDung); this.popupControlContainerFilter.Controls.Add(this.LoaiBang); this.popupControlContainerFilter.Controls.Add(this.QuocGia); this.popupControlContainerFilter.Controls.Add(this.SoDKHDCB); this.popupControlContainerFilter.Controls.Add(this.DonViCungCap); this.popupControlContainerFilter.Controls.Add(this.DonViSoHuu); this.popupControlContainerFilter.Controls.Add(this.TietMuc); this.popupControlContainerFilter.Controls.Add(this.plTreeSelectItem1); this.popupControlContainerFilter.Controls.Add(this.label10); this.popupControlContainerFilter.Controls.Add(this.label1); this.popupControlContainerFilter.Controls.Add(this.plLabel1); this.popupControlContainerFilter.Controls.Add(this.label29); this.popupControlContainerFilter.Controls.Add(this.label3); this.popupControlContainerFilter.Controls.Add(this.label5); this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top; this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 24); this.popupControlContainerFilter.Manager = this.barManager1; this.popupControlContainerFilter.Name = "popupControlContainerFilter"; this.popupControlContainerFilter.Size = new System.Drawing.Size(1016, 108); this.popupControlContainerFilter.TabIndex = 0; this.popupControlContainerFilter.Visible = false; // // ThanhLy // this.ThanhLy.CheckOnClick = true; this.ThanhLy.ColumnWidth = 65; this.ThanhLy.ItemHeight = 20; this.ThanhLy.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] { new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "CÓ"), new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "KHÔNG", System.Windows.Forms.CheckState.Checked)}); this.ThanhLy.Location = new System.Drawing.Point(331, 33); this.ThanhLy.MultiColumn = true; this.ThanhLy.Name = "ThanhLy"; this.ThanhLy.SelectionMode = System.Windows.Forms.SelectionMode.None; this.ThanhLy.Size = new System.Drawing.Size(189, 21); this.ThanhLy.TabIndex = 214; // // NamSXDen // this.NamSXDen.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.NamSXDen.Location = new System.Drawing.Point(437, 59); this.NamSXDen.Name = "NamSXDen"; this.NamSXDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.NamSXDen.Size = new System.Drawing.Size(66, 20); this.NamSXDen.TabIndex = 213; // // NamSXTu // this.NamSXTu.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.NamSXTu.Location = new System.Drawing.Point(331, 58); this.NamSXTu.MenuManager = this.barManager1; this.NamSXTu.Name = "NamSXTu"; this.NamSXTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.NamSXTu.Size = new System.Drawing.Size(66, 20); this.NamSXTu.TabIndex = 213; // // NgayNhap // this.NgayNhap.Caption = "Từ ngày 11/29/2010 đến ngày 12/6/2010"; this.NgayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate; this.NgayNhap.FirstFrom = new System.DateTime(2010, 11, 29, 8, 50, 46, 57); this.NgayNhap.FirstTo = new System.DateTime(2010, 12, 6, 8, 50, 46, 57); this.NgayNhap.FromDate = new System.DateTime(2010, 11, 29, 8, 50, 46, 57); this.NgayNhap.Location = new System.Drawing.Point(581, 57); this.NgayNhap.Name = "NgayNhap"; this.NgayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date; this.NgayNhap.SecondFrom = new System.DateTime(2010, 11, 29, 8, 50, 46, 57); this.NgayNhap.SecondTo = new System.DateTime(2010, 12, 6, 8, 50, 46, 57); this.NgayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate; this.NgayNhap.Size = new System.Drawing.Size(285, 21); this.NgayNhap.TabIndex = 212; this.NgayNhap.ToDate = new System.DateTime(2010, 12, 6, 8, 50, 46, 57); this.NgayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth) | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter) | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear) | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear))); // // NgayXoa // this.NgayXoa.Caption = "Từ ngày 11/29/2010 đến ngày 12/6/2010"; this.NgayXoa.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate; this.NgayXoa.FirstFrom = new System.DateTime(2010, 11, 29, 8, 50, 46, 72); this.NgayXoa.FirstTo = new System.DateTime(2010, 12, 6, 8, 50, 46, 72); this.NgayXoa.FromDate = new System.DateTime(2010, 11, 29, 8, 50, 46, 72); this.NgayXoa.Location = new System.Drawing.Point(331, 84); this.NgayXoa.Name = "NgayXoa"; this.NgayXoa.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date; this.NgayXoa.SecondFrom = new System.DateTime(2010, 11, 29, 8, 50, 46, 72); this.NgayXoa.SecondTo = new System.DateTime(2010, 12, 6, 8, 50, 46, 72); this.NgayXoa.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate; this.NgayXoa.Size = new System.Drawing.Size(285, 21); this.NgayXoa.TabIndex = 212; this.NgayXoa.ToDate = new System.DateTime(2010, 12, 6, 8, 50, 46, 72); this.NgayXoa.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth) | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter) | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear) | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter) | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear))); // // label15 // this.label15.Location = new System.Drawing.Point(532, 34); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(50, 13); this.label15.TabIndex = 210; this.label15.Text = "ĐV sở hữu"; this.label15.ToolTip = "Đơn vị sở hữu"; this.label15.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label35 // this.label35.Location = new System.Drawing.Point(24, -83); this.label35.Name = "label35"; this.label35.Size = new System.Drawing.Size(77, 13); this.label35.TabIndex = 206; this.label35.Text = "Đơn vị cung cấp"; this.label35.ToolTip = "Dữ liệu bắt buộc nhập"; this.label35.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED; // // label11 // this.label11.Location = new System.Drawing.Point(780, 11); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(59, 13); this.label11.TabIndex = 206; this.label11.Text = "Số ĐKCB HD"; this.label11.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // plLabel4 // this.plLabel4.Location = new System.Drawing.Point(410, 61); this.plLabel4.Name = "plLabel4"; this.plLabel4.Size = new System.Drawing.Size(18, 13); this.plLabel4.TabIndex = 201; this.plLabel4.Text = "đến"; this.plLabel4.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // plLabel3 // this.plLabel3.Location = new System.Drawing.Point(270, 63); this.plLabel3.Name = "plLabel3"; this.plLabel3.Size = new System.Drawing.Size(50, 13); this.plLabel3.TabIndex = 201; this.plLabel3.Text = "Năm SX từ"; this.plLabel3.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // plLabel2 // this.plLabel2.Location = new System.Drawing.Point(270, 37); this.plLabel2.Name = "plLabel2"; this.plLabel2.Size = new System.Drawing.Size(41, 13); this.plLabel2.TabIndex = 201; this.plLabel2.Text = "Thanh lý"; this.plLabel2.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label34 // this.label34.Location = new System.Drawing.Point(532, 11); this.label34.Name = "label34"; this.label34.Size = new System.Drawing.Size(60, 13); this.label34.TabIndex = 206; this.label34.Text = "ĐV cung cấp"; this.label34.ToolTip = "Đơn vị cung cấp"; this.label34.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label2 // this.label2.Location = new System.Drawing.Point(270, 11); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(49, 13); this.label2.TabIndex = 201; this.label2.Text = "Tình trạng"; this.label2.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label9 // this.label9.Location = new System.Drawing.Point(3, 89); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(55, 13); this.label9.TabIndex = 195; this.label9.Text = "Loại lưu trữ"; this.label9.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // MaBang // this.MaBang.Location = new System.Drawing.Point(75, 8); this.MaBang.Name = "MaBang"; this.MaBang.Size = new System.Drawing.Size(181, 20); this.MaBang.TabIndex = 194; // // NoiDung // this.NoiDung._DataSource = null; this.NoiDung._GetField = null; this.NoiDung.Location = new System.Drawing.Point(75, 34); this.NoiDung.Name = "NoiDung"; this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.NoiDung.Size = new System.Drawing.Size(181, 20); this.NoiDung.TabIndex = 194; // // LoaiBang // this.LoaiBang.DataSource = null; this.LoaiBang.DisplayField = null; this.LoaiBang.Location = new System.Drawing.Point(75, 85); this.LoaiBang.Name = "LoaiBang"; this.LoaiBang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.LoaiBang.Size = new System.Drawing.Size(181, 20); this.LoaiBang.TabIndex = 5; this.LoaiBang.ValueField = null; // // QuocGia // this.QuocGia.DataSource = null; this.QuocGia.DisplayField = null; this.QuocGia.Location = new System.Drawing.Point(845, 31); 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(168, 20); this.QuocGia.TabIndex = 5; this.QuocGia.ValueField = null; // // SoDKHDCB // this.SoDKHDCB.DataSource = null; this.SoDKHDCB.DisplayField = null; this.SoDKHDCB.Location = new System.Drawing.Point(845, 6); this.SoDKHDCB.Name = "SoDKHDCB"; this.SoDKHDCB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.SoDKHDCB.Size = new System.Drawing.Size(168, 20); this.SoDKHDCB.TabIndex = 5; this.SoDKHDCB.ValueField = null; // // DonViCungCap // this.DonViCungCap.DataSource = null; this.DonViCungCap.DisplayField = null; this.DonViCungCap.Location = new System.Drawing.Point(598, 8); this.DonViCungCap.Name = "DonViCungCap"; this.DonViCungCap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DonViCungCap.Size = new System.Drawing.Size(165, 20); this.DonViCungCap.TabIndex = 5; this.DonViCungCap.ValueField = null; // // DonViSoHuu // this.DonViSoHuu.DataSource = null; this.DonViSoHuu.DisplayField = null; this.DonViSoHuu.Location = new System.Drawing.Point(598, 31); this.DonViSoHuu.Name = "DonViSoHuu"; this.DonViSoHuu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DonViSoHuu.Size = new System.Drawing.Size(165, 20); this.DonViSoHuu.TabIndex = 5; this.DonViSoHuu.ValueField = null; // // TietMuc // this.TietMuc.DataSource = null; this.TietMuc.DisplayField = null; this.TietMuc.Location = new System.Drawing.Point(75, 60); this.TietMuc.Name = "TietMuc"; this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.TietMuc.Size = new System.Drawing.Size(181, 20); this.TietMuc.TabIndex = 5; this.TietMuc.ValueField = null; // // plTreeSelectItem1 // this.plTreeSelectItem1.Location = new System.Drawing.Point(605, -20); this.plTreeSelectItem1.Name = "plTreeSelectItem1"; this.plTreeSelectItem1.Size = new System.Drawing.Size(167, 20); this.plTreeSelectItem1.TabIndex = 193; this.plTreeSelectItem1.ZZZWidthFactor = 2F; // // label10 // this.label10.Location = new System.Drawing.Point(780, 33); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(40, 13); this.label10.TabIndex = 0; this.label10.Text = "Nước SX"; this.label10.ToolTip = "Nước sản xuất"; this.label10.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label1 // this.label1.Location = new System.Drawing.Point(4, 11); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(41, 13); this.label1.TabIndex = 0; this.label1.Text = "Mã băng"; this.label1.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // plLabel1 // this.plLabel1.Location = new System.Drawing.Point(270, 87); this.plLabel1.Name = "plLabel1"; this.plLabel1.Size = new System.Drawing.Size(46, 13); this.plLabel1.TabIndex = 5; this.plLabel1.Text = "Ngày xóa"; this.plLabel1.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label29 // this.label29.Location = new System.Drawing.Point(509, 60); this.label29.Name = "label29"; this.label29.Size = new System.Drawing.Size(52, 13); this.label29.TabIndex = 5; this.label29.Text = "Ngày nhập"; this.label29.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label3 // this.label3.Location = new System.Drawing.Point(3, 37); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(42, 13); this.label3.TabIndex = 5; this.label3.Text = "Nội dung"; this.label3.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // label5 // this.label5.Location = new System.Drawing.Point(2, 63); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(40, 13); this.label5.TabIndex = 5; this.label5.Text = "Tiết mục"; this.label5.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // gridViewMaster // this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch); this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true; this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true; this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205); this.gridViewMaster.GridControl = this.gridControlMaster; this.gridViewMaster.GroupPanelText = "Các biên mục thỏa điều kiện tìm kiếm"; this.gridViewMaster.IndicatorWidth = 40; this.gridViewMaster.Name = "gridViewMaster"; this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false; this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true; this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true; this.gridViewMaster.OptionsPrint.UsePrintStyles = true; this.gridViewMaster.OptionsSelection.MultiSelect = true; this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true; this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true; this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom; // // gridControlMaster // this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage"))); this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill; this.gridControlMaster.Location = new System.Drawing.Point(0, 132); this.gridControlMaster.MainView = this.gridViewMaster; this.gridControlMaster.Name = "gridControlMaster"; this.gridControlMaster.Size = new System.Drawing.Size(1016, 602); this.gridControlMaster.TabIndex = 7; this.gridControlMaster.TabStop = false; this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridViewMaster}); // // TinhTrang // this.TinhTrang.CheckOnClick = true; this.TinhTrang.HorzScrollStep = 1; this.TinhTrang.ItemHeight = 20; this.TinhTrang.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] { new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "POST", System.Windows.Forms.CheckState.Checked), new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "MASTER", System.Windows.Forms.CheckState.Checked), new DevExpress.XtraEditors.Controls.CheckedListBoxItem("A", "BOTH", System.Windows.Forms.CheckState.Checked)}); this.TinhTrang.Location = new System.Drawing.Point(331, 7); this.TinhTrang.MultiColumn = true; this.TinhTrang.Name = "TinhTrang"; this.TinhTrang.SelectionMode = System.Windows.Forms.SelectionMode.None; this.TinhTrang.Size = new System.Drawing.Size(189, 21); this.TinhTrang.TabIndex = 215; // // frmBienMucDeletedQL // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1016, 734); this.Controls.Add(this.gridControlMaster); this.Controls.Add(this.popupControlContainerFilter); this.Controls.Add(this.barDockControlLeft); this.Controls.Add(this.barDockControlRight); this.Controls.Add(this.barDockControlBottom); this.Controls.Add(this.barDockControlTop); this.Name = "frmBienMucDeletedQL"; this.Text = "Quản lý biên mục đã xóa"; ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit(); this.splitContainerControl1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit(); this.popupControlContainerFilter.ResumeLayout(false); this.popupControlContainerFilter.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.ThanhLy)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.LoaiBang.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.SoDKHDCB.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DonViSoHuu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TinhTrang)).EndInit(); this.ResumeLayout(false); }
public static decimal? GetDecimal(SpinEdit edit) { if (edit.EditValue == null) return null; return edit.Value; }
public static void SetDecimal(SpinEdit edit, decimal? value) { if (value == null) { edit.EditValue = null; } else { edit.Value = value.Value; } }
private void InitializeComponent() { System.ComponentModel.ComponentResourceManager componentResourceManager = new System.ComponentModel.ComponentResourceManager(typeof(TerminalFormIBET3IN1)); this.ribbonControl1 = new RibbonControl(); this.barStaticItem1 = new BarStaticItem(); this.barStaticItem2 = new BarStaticItem(); this.barStaticItem3 = new BarStaticItem(); this.btn3in1betGetInfo = new BarButtonItem(); this.lbl3in1betCurrentCredit = new BarStaticItem(); this.lbl3in1betTotalMatch = new BarStaticItem(); this.lbl3in1betLastUpdate = new BarStaticItem(); this.barStaticItem7 = new BarStaticItem(); this.barStaticItem8 = new BarStaticItem(); this.barStaticItem9 = new BarStaticItem(); this.lblIbetCurrentCredit = new BarStaticItem(); this.lblIbetTotalMatch = new BarStaticItem(); this.lblIbetLastUpdate = new BarStaticItem(); this.btnIbetGetInfo = new BarButtonItem(); this.lblStatus = new BarStaticItem(); this.lblSameMatch = new BarStaticItem(); this.lblLastUpdate = new BarStaticItem(); this.btnStart = new BarButtonItem(); this.btnStop = new BarButtonItem(); this.btnClear = new BarButtonItem(); this.ribbonPage1 = new RibbonPage(); this.rpgIbet = new RibbonPageGroup(); this.rpg3in1bet = new RibbonPageGroup(); this.ribbonPageGroup3 = new RibbonPageGroup(); this.ribbonPageGroup4 = new RibbonPageGroup(); this.splitContainerControl1 = new SplitContainerControl(); this.xtraTabControl1 = new XtraTabControl(); this.xtraTabPage1 = new XtraTabPage(); this.panelControl5 = new PanelControl(); this.webIBET = new WebBrowser(); this.panelControl4 = new PanelControl(); this.btnIBETGO = new SimpleButton(); this.txtIBETAddress = new TextEdit(); this.labelControl5 = new LabelControl(); this.xtraTabPage2 = new XtraTabPage(); this.panelControl3 = new PanelControl(); this.web3IN1BET = new WebBrowser(); this.panelControl2 = new PanelControl(); this.btn3IN1BETGO = new SimpleButton(); this.txt1IN1BETAddress = new TextEdit(); this.labelControl1 = new LabelControl(); this.xtraTabPage3 = new XtraTabPage(); this.xtraTabPage9 = new XtraTabPage(); this.grdSameMatch = new GridControl(); this.gridView1 = new GridView(); this.gridColumn15 = new GridColumn(); this.gridColumn16 = new GridColumn(); this.gridColumn14 = new GridColumn(); this.gridColumn17 = new GridColumn(); this.gridColumn18 = new GridColumn(); this.gridColumn19 = new GridColumn(); this.xtraTabControl2 = new XtraTabControl(); this.xtraTabPage4 = new XtraTabPage(); this.groupControl2 = new GroupControl(); this.txtTransactionTimeSpan = new SpinEdit(); this.labelControl10 = new LabelControl(); this.txtMaxTimePerHalf = new SpinEdit(); this.labelControl7 = new LabelControl(); this.chbAllowHalftime = new CheckEdit(); this.groupControl1 = new GroupControl(); this.btnSetUpdateInterval = new SimpleButton(); this.txt3IN1BETUpdateInterval = new SpinEdit(); this.labelControl3 = new LabelControl(); this.txtIBETUpdateInterval = new SpinEdit(); this.labelControl4 = new LabelControl(); this.groupControl5 = new GroupControl(); this.chbHighRevenueBoost = new CheckEdit(); this.txtLowestOddValue = new SpinEdit(); this.labelControl9 = new LabelControl(); this.txtOddValueDifferenet = new SpinEdit(); this.labelControl8 = new LabelControl(); this.checkEdit9 = new CheckEdit(); this.checkEdit8 = new CheckEdit(); this.checkEdit7 = new CheckEdit(); this.checkEdit6 = new CheckEdit(); this.checkEdit5 = new CheckEdit(); this.checkEdit4 = new CheckEdit(); this.checkEdit3 = new CheckEdit(); this.groupControl4 = new GroupControl(); this.groupControl6 = new GroupControl(); this.txt3in1BETFixedStake = new SpinEdit(); this.labelControl2 = new LabelControl(); this.txtStake = new MemoEdit(); this.chbRandomStake = new CheckEdit(); this.txtIBETFixedStake = new SpinEdit(); this.labelControl6 = new LabelControl(); this.xtraTabPage5 = new XtraTabPage(); this.grdTransaction = new GridControl(); this.gridView2 = new GridView(); this.gridColumn1 = new GridColumn(); this.gridColumn2 = new GridColumn(); this.gridColumn3 = new GridColumn(); this.gridColumn6 = new GridColumn(); this.gridColumn4 = new GridColumn(); this.gridColumn5 = new GridColumn(); this.gridColumn7 = new GridColumn(); this.gridColumn8 = new GridColumn(); this.gridColumn9 = new GridColumn(); this.gridColumn10 = new GridColumn(); this.gridColumn11 = new GridColumn(); this.gridColumn12 = new GridColumn(); this.gridColumn20 = new GridColumn(); this.gridColumn13 = new GridColumn(); this.chkListAllowedMatch = new CheckedListBoxControl(); ((System.ComponentModel.ISupportInitialize)this.ribbonControl1).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.splitContainerControl1).BeginInit(); this.splitContainerControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.xtraTabControl1).BeginInit(); this.xtraTabControl1.SuspendLayout(); this.xtraTabPage1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.panelControl5).BeginInit(); this.panelControl5.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.panelControl4).BeginInit(); this.panelControl4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.txtIBETAddress.Properties).BeginInit(); this.xtraTabPage2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.panelControl3).BeginInit(); this.panelControl3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.panelControl2).BeginInit(); this.panelControl2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.txt1IN1BETAddress.Properties).BeginInit(); this.xtraTabPage3.SuspendLayout(); this.xtraTabPage9.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.grdSameMatch).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.gridView1).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.xtraTabControl2).BeginInit(); this.xtraTabControl2.SuspendLayout(); this.xtraTabPage4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.groupControl2).BeginInit(); this.groupControl2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.txtTransactionTimeSpan.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.txtMaxTimePerHalf.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.chbAllowHalftime.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.groupControl1).BeginInit(); this.groupControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.txt3IN1BETUpdateInterval.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.txtIBETUpdateInterval.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.groupControl5).BeginInit(); this.groupControl5.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.groupControl6).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.chkListAllowedMatch)).BeginInit(); this.groupControl6.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.chbHighRevenueBoost.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.txtLowestOddValue.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.txtOddValueDifferenet.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.checkEdit9.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.checkEdit8.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.checkEdit7.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.checkEdit6.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.checkEdit5.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.checkEdit4.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.checkEdit3.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.groupControl4).BeginInit(); this.groupControl4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.txt3in1BETFixedStake.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.txtStake.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.chbRandomStake.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.txtIBETFixedStake.Properties).BeginInit(); this.xtraTabPage5.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)this.grdTransaction).BeginInit(); ((System.ComponentModel.ISupportInitialize)this.gridView2).BeginInit(); base.SuspendLayout(); this.ribbonControl1.ApplicationButtonText = null; this.ribbonControl1.ExpandCollapseItem.Id = 0; this.ribbonControl1.ExpandCollapseItem.Name = string.Empty; this.ribbonControl1.Items.AddRange(new BarItem[] { this.ribbonControl1.ExpandCollapseItem, this.barStaticItem1, this.barStaticItem2, this.barStaticItem3, this.btn3in1betGetInfo, this.lbl3in1betCurrentCredit, this.lbl3in1betTotalMatch, this.lbl3in1betLastUpdate, this.barStaticItem7, this.barStaticItem8, this.barStaticItem9, this.lblIbetCurrentCredit, this.lblIbetTotalMatch, this.lblIbetLastUpdate, this.btnIbetGetInfo, this.lblStatus, this.lblSameMatch, this.lblLastUpdate, this.btnStart, this.btnStop, this.btnClear }); this.ribbonControl1.Location = new System.Drawing.Point(0, 0); this.ribbonControl1.MaxItemId = 22; this.ribbonControl1.Name = "ribbonControl1"; this.ribbonControl1.Pages.AddRange(new RibbonPage[] { this.ribbonPage1 }); this.ribbonControl1.RibbonStyle = RibbonControlStyle.Office2010; this.ribbonControl1.SelectedPage = this.ribbonPage1; this.ribbonControl1.ShowCategoryInCaption = false; this.ribbonControl1.ShowExpandCollapseButton = DefaultBoolean.False; this.ribbonControl1.ShowPageHeadersMode = ShowPageHeadersMode.Hide; this.ribbonControl1.ShowToolbarCustomizeItem = false; this.ribbonControl1.Size = new System.Drawing.Size(999, 123); this.ribbonControl1.Toolbar.ShowCustomizeItem = false; this.barStaticItem1.Caption = "Current Credit:"; this.barStaticItem1.Id = 1; this.barStaticItem1.Name = "barStaticItem1"; this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near; this.barStaticItem2.Caption = "Total Match:"; this.barStaticItem2.Id = 2; this.barStaticItem2.Name = "barStaticItem2"; this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near; this.barStaticItem3.Caption = "Last Update:"; this.barStaticItem3.Id = 3; this.barStaticItem3.Name = "barStaticItem3"; this.barStaticItem3.TextAlignment = System.Drawing.StringAlignment.Near; this.btn3in1betGetInfo.Caption = "Get Info"; this.btn3in1betGetInfo.Id = 4; //Bitmap bmp = (Bitmap)Image.FromFile("C:\\1.jpg"); this.btn3in1betGetInfo.LargeGlyph = iBet.App.Properties.Resources.i8; this.btn3in1betGetInfo.Name = "btn3in1betGetInfo"; this.btn3in1betGetInfo.ItemClick += new ItemClickEventHandler(this.btn3in1betGetInfo_ItemClick); this.lbl3in1betCurrentCredit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0); this.lbl3in1betCurrentCredit.Appearance.Options.UseFont = true; this.lbl3in1betCurrentCredit.Caption = "-"; this.lbl3in1betCurrentCredit.Id = 5; this.lbl3in1betCurrentCredit.Name = "lbl3in1betCurrentCredit"; this.lbl3in1betCurrentCredit.TextAlignment = System.Drawing.StringAlignment.Far; this.lbl3in1betCurrentCredit.Width = 135; this.lbl3in1betTotalMatch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0); this.lbl3in1betTotalMatch.Appearance.Options.UseFont = true; this.lbl3in1betTotalMatch.AutoSize = BarStaticItemSize.None; this.lbl3in1betTotalMatch.Caption = "-"; this.lbl3in1betTotalMatch.Id = 6; this.lbl3in1betTotalMatch.Name = "lbl3in1betTotalMatch"; this.lbl3in1betTotalMatch.TextAlignment = System.Drawing.StringAlignment.Far; this.lbl3in1betTotalMatch.Width = 135; this.lbl3in1betLastUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0); this.lbl3in1betLastUpdate.Appearance.Options.UseFont = true; this.lbl3in1betLastUpdate.Caption = "-"; this.lbl3in1betLastUpdate.Id = 8; this.lbl3in1betLastUpdate.Name = "lbl3in1betLastUpdate"; this.lbl3in1betLastUpdate.TextAlignment = System.Drawing.StringAlignment.Far; this.lbl3in1betLastUpdate.Width = 135; this.barStaticItem7.Caption = "Current Credit:"; this.barStaticItem7.Id = 9; this.barStaticItem7.Name = "barStaticItem7"; this.barStaticItem7.TextAlignment = System.Drawing.StringAlignment.Near; this.barStaticItem8.Caption = "Total Match:"; this.barStaticItem8.Id = 10; this.barStaticItem8.Name = "barStaticItem8"; this.barStaticItem8.TextAlignment = System.Drawing.StringAlignment.Near; this.barStaticItem9.Caption = "Last Update:"; this.barStaticItem9.Id = 11; this.barStaticItem9.Name = "barStaticItem9"; this.barStaticItem9.TextAlignment = System.Drawing.StringAlignment.Near; this.lblIbetCurrentCredit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0); this.lblIbetCurrentCredit.Appearance.Options.UseFont = true; this.lblIbetCurrentCredit.Caption = "-"; this.lblIbetCurrentCredit.Id = 12; this.lblIbetCurrentCredit.Name = "lblIbetCurrentCredit"; this.lblIbetCurrentCredit.TextAlignment = System.Drawing.StringAlignment.Far; this.lblIbetCurrentCredit.Width = 135; this.lblIbetTotalMatch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0); this.lblIbetTotalMatch.Appearance.Options.UseFont = true; this.lblIbetTotalMatch.Caption = "-"; this.lblIbetTotalMatch.Id = 13; this.lblIbetTotalMatch.Name = "lblIbetTotalMatch"; this.lblIbetTotalMatch.TextAlignment = System.Drawing.StringAlignment.Far; this.lblIbetTotalMatch.Width = 135; this.lblIbetLastUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0); this.lblIbetLastUpdate.Appearance.Options.UseFont = true; this.lblIbetLastUpdate.Caption = "-"; this.lblIbetLastUpdate.Id = 14; this.lblIbetLastUpdate.Name = "lblIbetLastUpdate"; this.lblIbetLastUpdate.TextAlignment = System.Drawing.StringAlignment.Far; this.lblIbetLastUpdate.Width = 135; this.btnIbetGetInfo.Caption = "Get Info"; this.btnIbetGetInfo.Id = 15; this.btnIbetGetInfo.LargeGlyph = iBet.App.Properties.Resources.i8; this.btnIbetGetInfo.Name = "btnIbetGetInfo"; this.btnIbetGetInfo.ItemClick += new ItemClickEventHandler(this.barButtonItem2_ItemClick); this.lblStatus.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0); this.lblStatus.Appearance.Options.UseFont = true; this.lblStatus.Caption = "STOPPED"; this.lblStatus.Id = 16; this.lblStatus.Name = "lblStatus"; this.lblStatus.TextAlignment = System.Drawing.StringAlignment.Center; this.lblStatus.Width = 135; this.lblSameMatch.Caption = "Total Same Match: -"; this.lblSameMatch.Id = 17; this.lblSameMatch.Name = "lblSameMatch"; this.lblSameMatch.TextAlignment = System.Drawing.StringAlignment.Center; this.lblSameMatch.Width = 135; this.lblLastUpdate.Caption = "-"; this.lblLastUpdate.Id = 18; this.lblLastUpdate.Name = "lblLastUpdate"; this.lblLastUpdate.TextAlignment = System.Drawing.StringAlignment.Center; this.lblLastUpdate.Width = 135; this.btnStart.Caption = "Start"; this.btnStart.Id = 19; this.btnStart.LargeGlyph = iBet.App.Properties.Resources.i5; this.btnStart.Name = "btnStart"; this.btnStart.ItemClick += new ItemClickEventHandler(this.btnStart_ItemClick); this.btnStart.Enabled = false; this.btnStop.Caption = "Stop"; this.btnStop.Enabled = false; this.btnStop.Id = 20; this.btnStop.LargeGlyph = iBet.App.Properties.Resources.i6; this.btnStop.Name = "btnStop"; this.btnStop.ItemClick += new ItemClickEventHandler(this.btnStop_ItemClick); this.btnClear.Caption = "Clear"; this.btnClear.Enabled = false; this.btnClear.Id = 21; this.btnClear.LargeGlyph = iBet.App.Properties.Resources.i7; this.btnClear.Name = "btnClear"; this.btnClear.ItemClick += new ItemClickEventHandler(this.btnClear_ItemClick); this.ribbonPage1.Groups.AddRange(new RibbonPageGroup[] { this.rpgIbet, this.rpg3in1bet, this.ribbonPageGroup3, this.ribbonPageGroup4 }); this.ribbonPage1.Name = "ribbonPage1"; this.ribbonPage1.Text = "ribbonPage1"; this.rpgIbet.ItemLinks.Add(this.barStaticItem7); this.rpgIbet.ItemLinks.Add(this.barStaticItem8); this.rpgIbet.ItemLinks.Add(this.barStaticItem9); this.rpgIbet.ItemLinks.Add(this.lblIbetCurrentCredit); this.rpgIbet.ItemLinks.Add(this.lblIbetTotalMatch); this.rpgIbet.ItemLinks.Add(this.lblIbetLastUpdate); this.rpgIbet.ItemLinks.Add(this.btnIbetGetInfo); this.rpgIbet.Name = "rpgIbet"; this.rpgIbet.ShowCaptionButton = false; this.rpgIbet.Text = "IBET"; this.rpg3in1bet.ItemLinks.Add(this.barStaticItem1); this.rpg3in1bet.ItemLinks.Add(this.barStaticItem2); this.rpg3in1bet.ItemLinks.Add(this.barStaticItem3); this.rpg3in1bet.ItemLinks.Add(this.lbl3in1betCurrentCredit); this.rpg3in1bet.ItemLinks.Add(this.lbl3in1betTotalMatch); this.rpg3in1bet.ItemLinks.Add(this.lbl3in1betLastUpdate); this.rpg3in1bet.ItemLinks.Add(this.btn3in1betGetInfo); this.rpg3in1bet.Name = "rpg3in1bet"; this.rpg3in1bet.ShowCaptionButton = false; this.rpg3in1bet.Text = "3IN1BET"; this.ribbonPageGroup3.ItemLinks.Add(this.lblStatus); this.ribbonPageGroup3.ItemLinks.Add(this.lblSameMatch); this.ribbonPageGroup3.ItemLinks.Add(this.lblLastUpdate); this.ribbonPageGroup3.ItemLinks.Add(this.btnStart); this.ribbonPageGroup3.ItemLinks.Add(this.btnStop); this.ribbonPageGroup3.Name = "ribbonPageGroup3"; this.ribbonPageGroup3.ShowCaptionButton = false; this.ribbonPageGroup3.Text = "Status"; this.ribbonPageGroup4.ItemLinks.Add(this.btnClear); this.ribbonPageGroup4.Name = "ribbonPageGroup4"; this.ribbonPageGroup4.ShowCaptionButton = false; this.ribbonPageGroup4.Text = "Transaction"; this.splitContainerControl1.Dock = DockStyle.Fill; this.splitContainerControl1.FixedPanel = SplitFixedPanel.Panel2; this.splitContainerControl1.Horizontal = false; this.splitContainerControl1.Location = new System.Drawing.Point(0, 123); this.splitContainerControl1.Name = "splitContainerControl1"; this.splitContainerControl1.Panel1.Controls.Add(this.xtraTabControl1); this.splitContainerControl1.Panel1.Text = "Panel1"; this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControl2); this.splitContainerControl1.Panel2.Text = "Panel2"; this.splitContainerControl1.Size = new System.Drawing.Size(999, 575); this.splitContainerControl1.SplitterPosition = 285; this.splitContainerControl1.TabIndex = 1; this.splitContainerControl1.Text = "splitContainerControl1"; this.xtraTabControl1.Dock = DockStyle.Fill; 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(999, 302); this.xtraTabControl1.TabIndex = 0; this.xtraTabControl1.TabPages.AddRange(new XtraTabPage[] { this.xtraTabPage1, this.xtraTabPage2, this.xtraTabPage3, this.xtraTabPage9 }); this.xtraTabPage1.Controls.Add(this.panelControl5); this.xtraTabPage1.Controls.Add(this.panelControl4); this.xtraTabPage1.Name = "xtraTabPage1"; this.xtraTabPage1.Size = new System.Drawing.Size(993, 276); this.xtraTabPage1.Text = "IBET"; this.panelControl5.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right); this.panelControl5.Controls.Add(this.webIBET); this.panelControl5.Location = new System.Drawing.Point(3, 38); this.panelControl5.Name = "panelControl5"; this.panelControl5.Size = new System.Drawing.Size(987, 235); this.panelControl5.TabIndex = 3; this.webIBET.Dock = DockStyle.Fill; this.webIBET.Location = new System.Drawing.Point(2, 2); this.webIBET.MinimumSize = new System.Drawing.Size(20, 20); this.webIBET.Name = "webIBET"; this.webIBET.Size = new System.Drawing.Size(983, 231); this.webIBET.TabIndex = 0; this.webIBET.Url = new System.Uri("http://www.ibet888.net", System.UriKind.Absolute); this.webIBET.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(this.webIBET_DocumentCompleted); this.panelControl4.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.panelControl4.Controls.Add(this.btnIBETGO); this.panelControl4.Controls.Add(this.txtIBETAddress); this.panelControl4.Controls.Add(this.labelControl5); this.panelControl4.Location = new System.Drawing.Point(3, 3); this.panelControl4.Name = "panelControl4"; this.panelControl4.Size = new System.Drawing.Size(987, 29); this.panelControl4.TabIndex = 2; this.btnIBETGO.Anchor = (AnchorStyles.Top | AnchorStyles.Right); this.btnIBETGO.Location = new System.Drawing.Point(908, 3); this.btnIBETGO.Name = "btnIBETGO"; this.btnIBETGO.Size = new System.Drawing.Size(75, 23); this.btnIBETGO.TabIndex = 8; this.btnIBETGO.Text = "GO"; this.btnIBETGO.Click += new System.EventHandler(this.btnIBETGO_Click); this.txtIBETAddress.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.txtIBETAddress.EditValue = "http://www.ibet888.net"; this.txtIBETAddress.Location = new System.Drawing.Point(54, 6); this.txtIBETAddress.Name = "txtIBETAddress"; this.txtIBETAddress.Size = new System.Drawing.Size(848, 20); this.txtIBETAddress.TabIndex = 7; this.labelControl5.Location = new System.Drawing.Point(5, 9); this.labelControl5.Name = "labelControl5"; this.labelControl5.Size = new System.Drawing.Size(43, 13); this.labelControl5.TabIndex = 6; this.labelControl5.Text = "Address:"; this.xtraTabPage2.Controls.Add(this.panelControl3); this.xtraTabPage2.Controls.Add(this.panelControl2); this.xtraTabPage2.Name = "xtraTabPage2"; this.xtraTabPage2.Size = new System.Drawing.Size(993, 276); this.xtraTabPage2.Text = "3IN1BET"; this.panelControl3.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right); this.panelControl3.Controls.Add(this.web3IN1BET); this.panelControl3.Location = new System.Drawing.Point(3, 38); this.panelControl3.Name = "panelControl3"; this.panelControl3.Size = new System.Drawing.Size(987, 235); this.panelControl3.TabIndex = 6; this.web3IN1BET.Dock = DockStyle.Fill; this.web3IN1BET.Location = new System.Drawing.Point(2, 2); this.web3IN1BET.MinimumSize = new System.Drawing.Size(20, 20); this.web3IN1BET.Name = "web3IN1BET"; this.web3IN1BET.Size = new System.Drawing.Size(983, 231); this.web3IN1BET.TabIndex = 0; this.web3IN1BET.Url = new System.Uri("http://www.3in1bet.com", System.UriKind.Absolute); this.web3IN1BET.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(this.web3IN1BET_DocumentCompleted); this.panelControl2.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.panelControl2.Controls.Add(this.btn3IN1BETGO); this.panelControl2.Controls.Add(this.txt1IN1BETAddress); this.panelControl2.Controls.Add(this.labelControl1); this.panelControl2.Location = new System.Drawing.Point(3, 3); this.panelControl2.Name = "panelControl2"; this.panelControl2.Size = new System.Drawing.Size(987, 29); this.panelControl2.TabIndex = 5; this.btn3IN1BETGO.Anchor = (AnchorStyles.Top | AnchorStyles.Right); this.btn3IN1BETGO.Location = new System.Drawing.Point(908, 3); this.btn3IN1BETGO.Name = "btn3IN1BETGO"; this.btn3IN1BETGO.Size = new System.Drawing.Size(75, 23); this.btn3IN1BETGO.TabIndex = 5; this.btn3IN1BETGO.Text = "GO"; this.btn3IN1BETGO.Click += new System.EventHandler(this.btn3IN1BETGO_Click); this.txt1IN1BETAddress.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); //this.txt1IN1BETAddress.EditValue = "http://www.secureiron.com"; day this.txt1IN1BETAddress.EditValue = "http://www.3in1bet.com"; this.txt1IN1BETAddress.Location = new System.Drawing.Point(54, 6); this.txt1IN1BETAddress.Name = "txt1IN1BETAddress"; this.txt1IN1BETAddress.Size = new System.Drawing.Size(848, 20); this.txt1IN1BETAddress.TabIndex = 4; this.labelControl1.Location = new System.Drawing.Point(5, 9); this.labelControl1.Name = "labelControl1"; this.labelControl1.Size = new System.Drawing.Size(43, 13); this.labelControl1.TabIndex = 3; this.labelControl1.Text = "Address:"; this.xtraTabPage9.Name = "xtraTabPage9"; this.xtraTabPage9.Size = new System.Drawing.Size(993, 276); this.xtraTabPage9.Text = "ibet Test"; //this.xtraTabPage9.Controls.Add(this.grdSameMatch); this.xtraTabPage3.Controls.Add(this.grdSameMatch); this.xtraTabPage3.Name = "xtraTabPage3"; this.xtraTabPage3.Size = new System.Drawing.Size(993, 276); this.xtraTabPage3.Text = "Live Match"; this.grdSameMatch.Dock = DockStyle.Fill; this.grdSameMatch.Location = new System.Drawing.Point(0, 0); this.grdSameMatch.MainView = this.gridView1; this.grdSameMatch.Name = "grdSameMatch"; this.grdSameMatch.Size = new System.Drawing.Size(993, 276); this.grdSameMatch.TabIndex = 3; this.grdSameMatch.ViewCollection.AddRange(new BaseView[] { this.gridView1 }); this.gridView1.Columns.AddRange(new GridColumn[] { this.gridColumn15, this.gridColumn16, this.gridColumn14, this.gridColumn17, this.gridColumn18, this.gridColumn19 }); this.gridView1.GridControl = this.grdSameMatch; this.gridView1.Name = "gridView1"; this.gridView1.OptionsBehavior.Editable = false; this.gridView1.OptionsCustomization.AllowGroup = false; this.gridView1.OptionsDetail.AllowZoomDetail = false; this.gridView1.OptionsDetail.EnableMasterViewMode = false; this.gridView1.OptionsDetail.ShowDetailTabs = false; this.gridView1.OptionsDetail.SmartDetailExpand = false; this.gridView1.OptionsView.ShowAutoFilterRow = true; this.gridView1.OptionsView.ShowGroupPanel = false; this.gridView1.OptionsView.ShowPreview = true; this.gridView1.PreviewFieldName = "LeagueName"; this.gridView1.SortInfo.AddRange(new GridColumnSortInfo[] { new GridColumnSortInfo(this.gridColumn18, ColumnSortOrder.Ascending) }); this.gridColumn15.Caption = "Home Team"; this.gridColumn15.FieldName = "HomeTeamName"; this.gridColumn15.Name = "gridColumn15"; this.gridColumn15.Visible = true; this.gridColumn15.VisibleIndex = 0; this.gridColumn15.Width = 367; this.gridColumn16.Caption = "Away Team"; this.gridColumn16.FieldName = "AwayTeamName"; this.gridColumn16.Name = "gridColumn16"; this.gridColumn16.Visible = true; this.gridColumn16.VisibleIndex = 1; this.gridColumn16.Width = 368; this.gridColumn14.Caption = "Odd Count"; this.gridColumn14.FieldName = "OddCount"; this.gridColumn14.Name = "gridColumn14"; this.gridColumn14.OptionsColumn.FixedWidth = true; this.gridColumn14.Visible = true; this.gridColumn14.VisibleIndex = 2; this.gridColumn14.Width = 70; this.gridColumn17.Caption = "Half"; this.gridColumn17.FieldName = "Half"; this.gridColumn17.Name = "gridColumn17"; this.gridColumn17.OptionsColumn.FixedWidth = true; this.gridColumn17.Visible = true; this.gridColumn17.VisibleIndex = 3; this.gridColumn17.Width = 60; this.gridColumn18.Caption = "Minute"; this.gridColumn18.FieldName = "Minute"; this.gridColumn18.Name = "gridColumn18"; this.gridColumn18.OptionsColumn.FixedWidth = true; this.gridColumn18.SortMode = ColumnSortMode.Value; this.gridColumn18.Visible = true; this.gridColumn18.VisibleIndex = 4; this.gridColumn18.Width = 60; this.gridColumn19.Caption = "Half Time"; this.gridColumn19.FieldName = "IsHalfTime"; this.gridColumn19.Name = "gridColumn19"; this.gridColumn19.OptionsColumn.FixedWidth = true; this.gridColumn19.UnboundType = UnboundColumnType.Boolean; this.gridColumn19.Visible = true; this.gridColumn19.VisibleIndex = 5; this.gridColumn19.Width = 60; this.xtraTabControl2.Dock = DockStyle.Fill; this.xtraTabControl2.Location = new System.Drawing.Point(0, 0); this.xtraTabControl2.Name = "xtraTabControl2"; this.xtraTabControl2.SelectedTabPage = this.xtraTabPage4; this.xtraTabControl2.Size = new System.Drawing.Size(999, 248); this.xtraTabControl2.TabIndex = 1; this.xtraTabControl2.TabPages.AddRange(new XtraTabPage[] { this.xtraTabPage4, this.xtraTabPage5 }); this.xtraTabPage4.Controls.Add(this.groupControl2); this.xtraTabPage4.Controls.Add(this.groupControl1); this.xtraTabPage4.Controls.Add(this.groupControl5); this.xtraTabPage4.Controls.Add(this.groupControl4); this.xtraTabPage4.Controls.Add(this.groupControl6); this.xtraTabPage4.Name = "xtraTabPage4"; this.xtraTabPage4.Size = new System.Drawing.Size(993, 222); this.xtraTabPage4.Text = "Settings"; this.groupControl2.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left); this.groupControl2.Controls.Add(this.txtTransactionTimeSpan); this.groupControl2.Controls.Add(this.labelControl10); this.groupControl2.Controls.Add(this.txtMaxTimePerHalf); this.groupControl2.Controls.Add(this.labelControl7); this.groupControl2.Controls.Add(this.chbAllowHalftime); this.groupControl2.Location = new System.Drawing.Point(209, 3); this.groupControl2.Name = "groupControl2"; this.groupControl2.Size = new System.Drawing.Size(200, 212); this.groupControl2.TabIndex = 14; this.groupControl2.Text = "Time Settings"; this.txtTransactionTimeSpan.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); BaseEdit arg_22D6_0 = this.txtTransactionTimeSpan; int[] array = new int[4]; array[0] = 15; arg_22D6_0.EditValue = new decimal(array); this.txtTransactionTimeSpan.Location = new System.Drawing.Point(123, 80); this.txtTransactionTimeSpan.Name = "txtTransactionTimeSpan"; this.txtTransactionTimeSpan.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton() }); this.txtTransactionTimeSpan.Properties.IsFloatValue = false; this.txtTransactionTimeSpan.Properties.Mask.EditMask = "N00"; RepositoryItemSpinEdit arg_2378_0 = this.txtTransactionTimeSpan.Properties; array = new int[4]; array[0] = 20; arg_2378_0.MaxValue = new decimal(array); RepositoryItemSpinEdit arg_239D_0 = this.txtTransactionTimeSpan.Properties; array = new int[4]; array[0] = 5; arg_239D_0.MinValue = new decimal(array); this.txtTransactionTimeSpan.Size = new System.Drawing.Size(72, 20); this.txtTransactionTimeSpan.TabIndex = 9; this.labelControl10.Location = new System.Drawing.Point(5, 81); this.labelControl10.Name = "labelControl10"; this.labelControl10.Size = new System.Drawing.Size(112, 13); this.labelControl10.TabIndex = 8; this.labelControl10.Text = "Transaction Time Span:"; this.txtMaxTimePerHalf.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); BaseEdit arg_244C_0 = this.txtMaxTimePerHalf; array = new int[4]; array[0] = 40; arg_244C_0.EditValue = new decimal(array); this.txtMaxTimePerHalf.Location = new System.Drawing.Point(123, 50); this.txtMaxTimePerHalf.Name = "txtMaxTimePerHalf"; this.txtMaxTimePerHalf.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton() }); this.txtMaxTimePerHalf.Properties.IsFloatValue = false; this.txtMaxTimePerHalf.Properties.Mask.EditMask = "N00"; this.txtMaxTimePerHalf.Size = new System.Drawing.Size(72, 20); this.txtMaxTimePerHalf.TabIndex = 7; this.labelControl7.Location = new System.Drawing.Point(5, 53); this.labelControl7.Name = "labelControl7"; this.labelControl7.Size = new System.Drawing.Size(90, 13); this.labelControl7.TabIndex = 6; this.labelControl7.Text = "Max Time Per Half:"; this.chbAllowHalftime.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.chbAllowHalftime.EditValue = true; this.chbAllowHalftime.Location = new System.Drawing.Point(5, 26); this.chbAllowHalftime.Name = "chbAllowHalftime"; this.chbAllowHalftime.Properties.Caption = "Allow Halftime"; this.chbAllowHalftime.Size = new System.Drawing.Size(190, 19); this.chbAllowHalftime.TabIndex = 5; this.groupControl1.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left); this.groupControl1.Controls.Add(this.btnSetUpdateInterval); this.groupControl1.Controls.Add(this.txt3IN1BETUpdateInterval); this.groupControl1.Controls.Add(this.labelControl3); this.groupControl1.Controls.Add(this.txtIBETUpdateInterval); this.groupControl1.Controls.Add(this.labelControl4); this.groupControl1.Location = new System.Drawing.Point(415, 3); this.groupControl1.Name = "groupControl1"; this.groupControl1.Size = new System.Drawing.Size(200, 212); this.groupControl1.TabIndex = 13; this.groupControl1.Text = "Data Settings"; this.btnSetUpdateInterval.Location = new System.Drawing.Point(59, 77); this.btnSetUpdateInterval.Name = "btnSetUpdateInterval"; this.btnSetUpdateInterval.Size = new System.Drawing.Size(136, 23); this.btnSetUpdateInterval.TabIndex = 6; this.btnSetUpdateInterval.Text = "Set Update Interval"; this.btnSetUpdateInterval.Click += new System.EventHandler(this.btnSetUpdateInterval_Click); this.txt3IN1BETUpdateInterval.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); BaseEdit arg_274B_0 = this.txt3IN1BETUpdateInterval; array = new int[4]; array[0] = 8; arg_274B_0.EditValue = new decimal(array); this.txt3IN1BETUpdateInterval.Location = new System.Drawing.Point(132, 51); this.txt3IN1BETUpdateInterval.Name = "txt3IN1BETUpdateInterval"; this.txt3IN1BETUpdateInterval.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton() }); this.txt3IN1BETUpdateInterval.Properties.IsFloatValue = false; this.txt3IN1BETUpdateInterval.Properties.Mask.EditMask = "N00"; this.txt3IN1BETUpdateInterval.Size = new System.Drawing.Size(63, 20); this.txt3IN1BETUpdateInterval.TabIndex = 5; this.txt3IN1BETUpdateInterval.EditValueChanged += new System.EventHandler(this.txt3IN1BETUpdateInterval_EditValueChanged); this.labelControl3.Location = new System.Drawing.Point(5, 54); this.labelControl3.Name = "labelControl3"; this.labelControl3.Size = new System.Drawing.Size(121, 13); this.labelControl3.TabIndex = 4; this.labelControl3.Text = "3IN1BET Update Interval:"; this.txtIBETUpdateInterval.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); BaseEdit arg_288F_0 = this.txtIBETUpdateInterval; array = new int[4]; array[0] = 8; arg_288F_0.EditValue = new decimal(array); this.txtIBETUpdateInterval.Location = new System.Drawing.Point(132, 25); this.txtIBETUpdateInterval.Name = "txtIBETUpdateInterval"; this.txtIBETUpdateInterval.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton() }); this.txtIBETUpdateInterval.Properties.IsFloatValue = false; this.txtIBETUpdateInterval.Properties.Mask.EditMask = "N00"; this.txtIBETUpdateInterval.Size = new System.Drawing.Size(63, 20); this.txtIBETUpdateInterval.TabIndex = 1; this.txtIBETUpdateInterval.EditValueChanged += new System.EventHandler(this.txtIBETUpdateInterval_EditValueChanged); this.labelControl4.Location = new System.Drawing.Point(5, 28); this.labelControl4.Name = "labelControl4"; this.labelControl4.Size = new System.Drawing.Size(105, 13); this.labelControl4.TabIndex = 0; this.labelControl4.Text = "IBET Update Interval:"; this.groupControl5.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left); this.groupControl5.Controls.Add(this.chbHighRevenueBoost); this.groupControl5.Controls.Add(this.txtLowestOddValue); this.groupControl5.Controls.Add(this.labelControl9); this.groupControl5.Controls.Add(this.txtOddValueDifferenet); this.groupControl5.Controls.Add(this.labelControl8); this.groupControl5.Controls.Add(this.checkEdit9); this.groupControl5.Controls.Add(this.checkEdit8); this.groupControl5.Controls.Add(this.checkEdit7); this.groupControl5.Controls.Add(this.checkEdit6); this.groupControl5.Controls.Add(this.checkEdit5); this.groupControl5.Controls.Add(this.checkEdit4); this.groupControl5.Controls.Add(this.checkEdit3); this.groupControl5.Location = new System.Drawing.Point(3, 3); this.groupControl5.Name = "groupControl5"; this.groupControl5.Size = new System.Drawing.Size(200, 212); this.groupControl5.TabIndex = 13; this.groupControl5.Text = "Trading Settings"; this.chbHighRevenueBoost.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.chbHighRevenueBoost.Location = new System.Drawing.Point(5, 203); this.chbHighRevenueBoost.Name = "chbHighRevenueBoost"; this.chbHighRevenueBoost.Properties.Caption = "High Revenue Boost"; this.chbHighRevenueBoost.Size = new System.Drawing.Size(190, 19); this.chbHighRevenueBoost.TabIndex = 13; this.txtLowestOddValue.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.txtLowestOddValue.EditValue = new decimal(new int[] { 5, 0, 0, 65536 }); this.txtLowestOddValue.Location = new System.Drawing.Point(110, 178); this.txtLowestOddValue.Name = "txtLowestOddValue"; this.txtLowestOddValue.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton() }); this.txtLowestOddValue.Properties.Increment = new decimal(new int[] { 1, 0, 0, 65536 }); RepositoryItemSpinEdit arg_2C2D_0 = this.txtLowestOddValue.Properties; array = new int[4]; array[0] = 1; arg_2C2D_0.MaxValue = new decimal(array); this.txtLowestOddValue.Properties.MinValue = new decimal(new int[] { 1, 0, 0, 131072 }); this.txtLowestOddValue.Size = new System.Drawing.Size(85, 20); this.txtLowestOddValue.TabIndex = 12; this.labelControl9.Location = new System.Drawing.Point(5, 181); this.labelControl9.Name = "labelControl9"; this.labelControl9.Size = new System.Drawing.Size(90, 13); this.labelControl9.TabIndex = 11; this.labelControl9.Text = "Lowest Odd Value:"; this.txtOddValueDifferenet.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.txtOddValueDifferenet.EditValue = new decimal(new int[] { 2, 0, 0, -2147352576 }); this.txtOddValueDifferenet.Location = new System.Drawing.Point(110, 153); this.txtOddValueDifferenet.Name = "txtOddValueDifferenet"; this.txtOddValueDifferenet.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton() }); this.txtOddValueDifferenet.Properties.Increment = new decimal(new int[] { 1, 0, 0, -2147352576 }); this.txtOddValueDifferenet.Properties.MinValue = new decimal(new int[] { 2, //cho nay 0, 0, -2147352576 }); this.txtOddValueDifferenet.Size = new System.Drawing.Size(85, 20); this.txtOddValueDifferenet.TabIndex = 10; this.labelControl8.Location = new System.Drawing.Point(5, 156); this.labelControl8.Name = "labelControl8"; this.labelControl8.Size = new System.Drawing.Size(99, 13); this.labelControl8.TabIndex = 9; this.labelControl8.Text = "Odd Value Different:"; this.checkEdit6.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.checkEdit6.EditValue = true; this.checkEdit6.Enabled = false; this.checkEdit6.Location = new System.Drawing.Point(5, 101); this.checkEdit6.Name = "checkEdit6"; this.checkEdit6.Properties.Caption = "Non-Live"; this.checkEdit6.Size = new System.Drawing.Size(190, 19); this.checkEdit6.TabIndex = 8; this.checkEdit5.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.checkEdit5.EditValue = true; this.checkEdit5.Enabled = false; this.checkEdit5.Location = new System.Drawing.Point(5, 76); this.checkEdit5.Name = "checkEdit5"; this.checkEdit5.Properties.Caption = "Live"; this.checkEdit5.Size = new System.Drawing.Size(190, 19); this.checkEdit5.TabIndex = 7; this.checkEdit4.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.checkEdit4.EditValue = true; this.checkEdit4.Enabled = true; this.checkEdit4.Location = new System.Drawing.Point(5, 51); this.checkEdit4.Name = "checkEdit4"; this.checkEdit4.Properties.Caption = "Allow Over/Under"; this.checkEdit4.Size = new System.Drawing.Size(190, 19); this.checkEdit4.TabIndex = 6; this.checkEdit3.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.checkEdit3.EditValue = true; this.checkEdit3.Enabled = true; this.checkEdit3.Location = new System.Drawing.Point(5, 26); this.checkEdit3.Name = "checkEdit3"; this.checkEdit3.Properties.Caption = "Allow Handicap"; this.checkEdit3.Size = new System.Drawing.Size(190, 19); this.checkEdit3.TabIndex = 5; this.checkEdit7.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.checkEdit7.EditValue = true; this.checkEdit7.Enabled = true; this.checkEdit7.Location = new System.Drawing.Point(5, 126); this.checkEdit7.Name = "checkEdit7"; this.checkEdit7.Properties.Caption = "Allow x.5 Over/Under from min 30"; this.checkEdit7.Size = new System.Drawing.Size(190, 19); this.checkEdit7.TabIndex = 9; this.checkEdit8.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.checkEdit8.EditValue = false; this.checkEdit8.Enabled = true; this.checkEdit8.Location = new System.Drawing.Point(5, 228); this.checkEdit8.Name = "checkEdit8"; this.checkEdit8.Properties.Caption = "Check credit before bet"; this.checkEdit8.Size = new System.Drawing.Size(190, 19); this.checkEdit8.TabIndex = 14; this.checkEdit9.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.checkEdit9.EditValue = false; this.checkEdit9.Enabled = true; this.checkEdit9.Location = new System.Drawing.Point(5, 252); this.checkEdit9.Name = "checkEdit9"; this.checkEdit9.Properties.Caption = "Play sound"; this.checkEdit9.Size = new System.Drawing.Size(190, 19); this.checkEdit9.TabIndex = 14; this.groupControl4.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left); this.groupControl4.Controls.Add(this.txt3in1BETFixedStake); this.groupControl4.Controls.Add(this.labelControl2); this.groupControl4.Controls.Add(this.txtStake); this.groupControl4.Controls.Add(this.chbRandomStake); this.groupControl4.Controls.Add(this.txtIBETFixedStake); this.groupControl4.Controls.Add(this.labelControl6); this.groupControl4.Location = new System.Drawing.Point(621, 3); this.groupControl4.Name = "groupControl4"; this.groupControl4.Size = new System.Drawing.Size(200, 212); this.groupControl4.TabIndex = 12; this.groupControl4.Text = "Stake Settings"; this.txt3in1BETFixedStake.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); BaseEdit arg_31A4_0 = this.txt3in1BETFixedStake; array = new int[4]; array[0] = 10; arg_31A4_0.EditValue = new decimal(array); this.txt3in1BETFixedStake.Location = new System.Drawing.Point(112, 51); this.txt3in1BETFixedStake.Name = "txt3in1BETFixedStake"; this.txt3in1BETFixedStake.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton() }); this.txt3in1BETFixedStake.Properties.IsFloatValue = false; this.txt3in1BETFixedStake.Properties.Mask.EditMask = "N00"; this.txt3in1BETFixedStake.Size = new System.Drawing.Size(83, 20); this.txt3in1BETFixedStake.TabIndex = 5; this.labelControl2.Location = new System.Drawing.Point(5, 54); this.labelControl2.Name = "labelControl2"; this.labelControl2.Size = new System.Drawing.Size(101, 13); this.labelControl2.TabIndex = 4; this.labelControl2.Text = "3IN1BET Fixed Stake:"; this.txtStake.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right); this.txtStake.EditValue = "10\r\n15\r\n25\r\n35\r\n50\r\n30\r\n20\r\n30"; this.txtStake.Location = new System.Drawing.Point(5, 103); this.txtStake.Name = "txtStake"; this.txtStake.Size = new System.Drawing.Size(190, 104); this.txtStake.TabIndex = 3; this.chbRandomStake.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); this.chbRandomStake.EditValue = true; this.chbRandomStake.Location = new System.Drawing.Point(3, 78); this.chbRandomStake.Name = "chbRandomStake"; this.chbRandomStake.Properties.Caption = "Random Stake"; this.chbRandomStake.Size = new System.Drawing.Size(192, 19); this.chbRandomStake.TabIndex = 2; this.chbRandomStake.CheckedChanged += new System.EventHandler(this.chbRandomStake_CheckedChanged); this.txtIBETFixedStake.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right); BaseEdit arg_33D2_0 = this.txtIBETFixedStake; array = new int[4]; array[0] = 15; arg_33D2_0.EditValue = new decimal(array); this.txtIBETFixedStake.Location = new System.Drawing.Point(112, 25); this.txtIBETFixedStake.Name = "txtIBETFixedStake"; this.txtIBETFixedStake.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton() }); this.txtIBETFixedStake.Properties.IsFloatValue = false; this.txtIBETFixedStake.Properties.Mask.EditMask = "N00"; this.txtIBETFixedStake.Size = new System.Drawing.Size(83, 20); this.txtIBETFixedStake.TabIndex = 1; this.labelControl6.Location = new System.Drawing.Point(5, 28); this.labelControl6.Name = "labelControl6"; this.labelControl6.Size = new System.Drawing.Size(85, 13); this.labelControl6.TabIndex = 0; this.labelControl6.Text = "IBET Fixed Stake:"; #region group6 this.groupControl6.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left); this.groupControl6.Controls.Add(this.chkListAllowedMatch); this.groupControl6.Location = new System.Drawing.Point(825, 3); this.groupControl6.Name = "groupControl6"; this.groupControl6.Size = new System.Drawing.Size(295, 212); this.groupControl6.TabIndex = 19; this.groupControl6.Text = "Allowed Betting Matches"; //this.groupControl6.Resize this.chkListAllowedMatch.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.chkListAllowedMatch.CheckOnClick = true; //this.chkListAllowedMatch.Dock = DockStyle.Fill; this.chkListAllowedMatch.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Skinned; this.chkListAllowedMatch.ItemHeight = 16; this.chkListAllowedMatch.Location = new System.Drawing.Point(5, 25); this.chkListAllowedMatch.Name = "chkListAllowedMatch"; this.chkListAllowedMatch.Size = new System.Drawing.Size(283, 182); this.chkListAllowedMatch.TabIndex = 20; //this.chkListAllowedMatch.ItemCheck += new ItemCheckedEventHandler (this.chkListAllowedMatch_ItemCheck); #endregion this.xtraTabPage5.Controls.Add(this.grdTransaction); this.xtraTabPage5.Name = "xtraTabPage5"; this.xtraTabPage5.Size = new System.Drawing.Size(993, 222); this.xtraTabPage5.Text = "Live Transaction"; this.grdTransaction.Dock = DockStyle.Fill; this.grdTransaction.Location = new System.Drawing.Point(0, 0); this.grdTransaction.MainView = this.gridView2; this.grdTransaction.Name = "grdTransaction"; this.grdTransaction.Size = new System.Drawing.Size(993, 222); this.grdTransaction.TabIndex = 3; this.grdTransaction.ViewCollection.AddRange(new BaseView[] { this.gridView2 }); this.gridView2.Columns.AddRange(new GridColumn[] { this.gridColumn1, this.gridColumn2, this.gridColumn3, this.gridColumn6, this.gridColumn4, this.gridColumn5, this.gridColumn7, this.gridColumn8, this.gridColumn9, this.gridColumn10, this.gridColumn11, this.gridColumn12, this.gridColumn20, this.gridColumn13 }); this.gridView2.GridControl = this.grdTransaction; this.gridView2.Name = "gridView2"; this.gridView2.OptionsBehavior.Editable = false; this.gridView2.OptionsCustomization.AllowGroup = false; this.gridView2.OptionsView.AutoCalcPreviewLineCount = true; this.gridView2.OptionsView.ShowAutoFilterRow = true; this.gridView2.OptionsView.ShowFooter = true; this.gridView2.OptionsView.ShowGroupPanel = false; this.gridView2.OptionsView.ShowPreview = true; this.gridView2.PreviewFieldName = "Note"; this.gridView2.SortInfo.AddRange(new GridColumnSortInfo[] { new GridColumnSortInfo(this.gridColumn13, ColumnSortOrder.Descending) }); this.gridColumn1.Caption = "ID"; this.gridColumn1.DisplayFormat.FormatType = FormatType.Numeric; this.gridColumn1.FieldName = "ID"; this.gridColumn1.Name = "gridColumn1"; this.gridColumn1.OptionsColumn.FixedWidth = true; this.gridColumn1.UnboundType = UnboundColumnType.Integer; this.gridColumn1.Visible = true; this.gridColumn1.VisibleIndex = 0; this.gridColumn1.Width = 50; this.gridColumn2.Caption = "Home Team"; this.gridColumn2.FieldName = "HomeTeamName"; this.gridColumn2.Name = "gridColumn2"; this.gridColumn2.UnboundType = UnboundColumnType.String; this.gridColumn2.Visible = true; this.gridColumn2.VisibleIndex = 1; this.gridColumn2.Width = 20; this.gridColumn3.Caption = "Away Team"; this.gridColumn3.FieldName = "AwayTeamName"; this.gridColumn3.Name = "gridColumn3"; this.gridColumn3.UnboundType = UnboundColumnType.String; this.gridColumn3.Visible = true; this.gridColumn3.VisibleIndex = 2; this.gridColumn3.Width = 20; this.gridColumn6.Caption = "Type"; this.gridColumn6.FieldName = "OddType"; this.gridColumn6.Name = "gridColumn6"; this.gridColumn6.OptionsColumn.FixedWidth = true; this.gridColumn6.UnboundType = UnboundColumnType.String; this.gridColumn6.Visible = true; this.gridColumn6.VisibleIndex = 3; this.gridColumn6.Width = 180; this.gridColumn4.Caption = "Odd"; this.gridColumn4.FieldName = "OddKindValue"; this.gridColumn4.Name = "gridColumn4"; this.gridColumn4.OptionsColumn.FixedWidth = true; this.gridColumn4.UnboundType = UnboundColumnType.String; this.gridColumn4.Visible = true; this.gridColumn4.VisibleIndex = 4; this.gridColumn5.Caption = "Value"; this.gridColumn5.FieldName = "OddValue"; this.gridColumn5.Name = "gridColumn5"; this.gridColumn5.OptionsColumn.FixedWidth = true; this.gridColumn5.UnboundType = UnboundColumnType.String; this.gridColumn5.Visible = true; this.gridColumn5.VisibleIndex = 5; this.gridColumn5.Width = 80; this.gridColumn7.Caption = "Stake"; this.gridColumn7.FieldName = "Stake"; this.gridColumn7.Name = "gridColumn7"; this.gridColumn7.OptionsColumn.FixedWidth = true; this.gridColumn7.UnboundType = UnboundColumnType.String; this.gridColumn7.Visible = true; this.gridColumn7.VisibleIndex = 6; this.gridColumn7.Width = 100; this.gridColumn8.Caption = "I Allow"; this.gridColumn8.FieldName = "IBETAllow"; this.gridColumn8.Name = "gridColumn8"; this.gridColumn8.OptionsColumn.FixedWidth = true; this.gridColumn8.UnboundType = UnboundColumnType.Boolean; this.gridColumn8.Visible = true; this.gridColumn8.VisibleIndex = 7; this.gridColumn8.Width = 50; this.gridColumn9.Caption = "3 Allow"; this.gridColumn9.FieldName = "THREEIN1Allow"; this.gridColumn9.Name = "gridColumn9"; this.gridColumn9.OptionsColumn.FixedWidth = true; this.gridColumn9.UnboundType = UnboundColumnType.Boolean; this.gridColumn9.Visible = true; this.gridColumn9.VisibleIndex = 8; this.gridColumn9.Width = 50; this.gridColumn10.Caption = "I Trade"; this.gridColumn10.FieldName = "IBETTrade"; this.gridColumn10.Name = "gridColumn10"; this.gridColumn10.OptionsColumn.FixedWidth = true; this.gridColumn10.UnboundType = UnboundColumnType.Boolean; this.gridColumn10.Visible = true; this.gridColumn10.VisibleIndex = 9; this.gridColumn10.Width = 50; this.gridColumn11.Caption = "3 Trade"; this.gridColumn11.FieldName = "THREEIN1Trade"; this.gridColumn11.Name = "gridColumn11"; this.gridColumn11.OptionsColumn.FixedWidth = true; this.gridColumn11.UnboundType = UnboundColumnType.Boolean; this.gridColumn11.Visible = true; this.gridColumn11.VisibleIndex = 10; this.gridColumn11.Width = 50; this.gridColumn12.Caption = "3 Retrade"; this.gridColumn12.FieldName = "THREEIN1ReTrade"; this.gridColumn12.Name = "gridColumn12"; this.gridColumn12.OptionsColumn.FixedWidth = true; this.gridColumn12.UnboundType = UnboundColumnType.Boolean; this.gridColumn12.Visible = true; this.gridColumn12.VisibleIndex = 11; this.gridColumn12.Width = 50; this.gridColumn20.Caption = "I Retrade"; this.gridColumn20.FieldName = "IBETReTrade"; this.gridColumn20.Name = "gridColumn20"; this.gridColumn20.OptionsColumn.FixedWidth = true; this.gridColumn20.UnboundType = UnboundColumnType.Boolean; this.gridColumn20.Visible = true; this.gridColumn20.VisibleIndex = 12; this.gridColumn20.Width = 50; this.gridColumn13.Caption = "DateTime"; this.gridColumn13.DisplayFormat.FormatString = "dd/MM/yyyy hh:mm:ss"; this.gridColumn13.DisplayFormat.FormatType = FormatType.DateTime; this.gridColumn13.FieldName = "DateTime"; this.gridColumn13.Name = "gridColumn13"; this.gridColumn13.OptionsColumn.FixedWidth = true; this.gridColumn13.SortMode = ColumnSortMode.Value; this.gridColumn13.SummaryItem.SummaryType = SummaryItemType.Count; this.gridColumn13.UnboundType = UnboundColumnType.DateTime; this.gridColumn13.Visible = true; this.gridColumn13.VisibleIndex = 13; this.gridColumn13.Width = 130; base.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f); base.AutoScaleMode = AutoScaleMode.Font; base.ClientSize = new System.Drawing.Size(1130, 678); base.Controls.Add(this.splitContainerControl1); base.Controls.Add(this.ribbonControl1); /// base.Icon = (System.Drawing.Icon)componentResourceManager.GetObject("$this.Icon"); base.Name = "TerminalForm"; this.Ribbon = this.ribbonControl1; base.StartPosition = FormStartPosition.CenterScreen; this.Text = "IBET vs 3IN1BET"; ((System.ComponentModel.ISupportInitialize)this.ribbonControl1).EndInit(); ((System.ComponentModel.ISupportInitialize)this.splitContainerControl1).EndInit(); this.splitContainerControl1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)this.xtraTabControl1).EndInit(); this.xtraTabControl1.ResumeLayout(false); this.xtraTabPage1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)this.panelControl5).EndInit(); this.panelControl5.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)this.panelControl4).EndInit(); this.panelControl4.ResumeLayout(false); this.panelControl4.PerformLayout(); ((System.ComponentModel.ISupportInitialize)this.txtIBETAddress.Properties).EndInit(); this.xtraTabPage2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)this.panelControl3).EndInit(); this.panelControl3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)this.panelControl2).EndInit(); this.panelControl2.ResumeLayout(false); this.panelControl2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)this.txt1IN1BETAddress.Properties).EndInit(); this.xtraTabPage9.ResumeLayout(false); this.xtraTabPage3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)this.grdSameMatch).EndInit(); ((System.ComponentModel.ISupportInitialize)this.gridView1).EndInit(); ((System.ComponentModel.ISupportInitialize)this.xtraTabControl2).EndInit(); this.xtraTabControl2.ResumeLayout(false); this.xtraTabPage4.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)this.groupControl2).EndInit(); this.groupControl2.ResumeLayout(false); this.groupControl2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)this.txtTransactionTimeSpan.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.txtMaxTimePerHalf.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.chbAllowHalftime.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.groupControl1).EndInit(); this.groupControl1.ResumeLayout(false); this.groupControl1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)this.txt3IN1BETUpdateInterval.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.txtIBETUpdateInterval.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.groupControl5).EndInit(); this.groupControl5.ResumeLayout(false); this.groupControl5.PerformLayout(); ((System.ComponentModel.ISupportInitialize)this.chbHighRevenueBoost.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.txtLowestOddValue.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.txtOddValueDifferenet.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.checkEdit9.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.checkEdit8.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.checkEdit7.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.checkEdit6.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.checkEdit5.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.checkEdit4.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.checkEdit3.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.groupControl4).EndInit(); this.groupControl4.ResumeLayout(false); this.groupControl4.PerformLayout(); ((System.ComponentModel.ISupportInitialize)this.chkListAllowedMatch).EndInit(); ((System.ComponentModel.ISupportInitialize)this.groupControl6).EndInit(); this.groupControl6.ResumeLayout(false); this.groupControl6.PerformLayout(); ((System.ComponentModel.ISupportInitialize)this.txt3in1BETFixedStake.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.txtStake.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.chbRandomStake.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)this.txtIBETFixedStake.Properties).EndInit(); this.xtraTabPage5.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)this.grdTransaction).EndInit(); ((System.ComponentModel.ISupportInitialize)this.gridView2).EndInit(); Icon icoMain = Properties.Resources._1; this.Icon = icoMain; base.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule(); this.btnClose = new DevExpress.XtraEditors.SimpleButton(); this.btnOK = new DevExpress.XtraEditors.SimpleButton(); this.txtItemName = new DevExpress.XtraEditors.TextEdit(); this.txtItemNo = new DevExpress.XtraEditors.TextEdit(); this.dxValidationProvider1 = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(); this.chk = new DevExpress.XtraEditors.CheckEdit(); this.labelControl1 = new DevExpress.XtraEditors.LabelControl(); this.labelControl2 = new DevExpress.XtraEditors.LabelControl(); this.labelControl3 = new DevExpress.XtraEditors.LabelControl(); this.spnPrice = new DevExpress.XtraEditors.SpinEdit(); this.spnCostPrice = new DevExpress.XtraEditors.SpinEdit(); this.labelControl5 = new DevExpress.XtraEditors.LabelControl(); ((System.ComponentModel.ISupportInitialize)(this.pnlMain)).BeginInit(); this.pnlMain.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pnlFill)).BeginInit(); this.pnlFill.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pnlBottom)).BeginInit(); this.pnlBottom.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemNo.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dxValidationProvider1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.chk.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.spnPrice.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.spnCostPrice.Properties)).BeginInit(); this.SuspendLayout(); // // pnlMain // this.pnlMain.Size = new System.Drawing.Size(307, 179); // // pnlFill // this.pnlFill.Controls.Add(this.spnCostPrice); this.pnlFill.Controls.Add(this.labelControl5); this.pnlFill.Controls.Add(this.spnPrice); this.pnlFill.Controls.Add(this.labelControl3); this.pnlFill.Controls.Add(this.labelControl2); this.pnlFill.Controls.Add(this.labelControl1); this.pnlFill.Controls.Add(this.chk); this.pnlFill.Controls.Add(this.txtItemName); this.pnlFill.Controls.Add(this.txtItemNo); this.pnlFill.Size = new System.Drawing.Size(307, 133); // // pnlBottom // this.pnlBottom.Controls.Add(this.btnOK); this.pnlBottom.Controls.Add(this.btnClose); this.pnlBottom.Location = new System.Drawing.Point(0, 133); this.pnlBottom.Size = new System.Drawing.Size(307, 46); // // btnClose // this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnClose.Location = new System.Drawing.Point(220, 6); this.btnClose.Name = "btnClose"; this.btnClose.Size = new System.Drawing.Size(75, 35); this.btnClose.TabIndex = 14; this.btnClose.Text = "关闭(&C)"; this.btnClose.Click += new System.EventHandler(this.btnClose_Click); // // btnOK // this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnOK.Location = new System.Drawing.Point(127, 6); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(75, 35); this.btnOK.TabIndex = 13; this.btnOK.Text = "确定(&E)"; this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // // txtItemName // this.txtItemName.Location = new System.Drawing.Point(67, 7); this.txtItemName.Name = "txtItemName"; this.txtItemName.Size = new System.Drawing.Size(220, 20); this.txtItemName.TabIndex = 1; conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank; conditionValidationRule1.ErrorText = "不能为空"; conditionValidationRule1.ErrorType = DevExpress.XtraEditors.DXErrorProvider.ErrorType.Critical; this.dxValidationProvider1.SetValidationRule(this.txtItemName, conditionValidationRule1); // // txtItemNo // this.txtItemNo.Location = new System.Drawing.Point(67, 33); this.txtItemNo.Name = "txtItemNo"; this.txtItemNo.Size = new System.Drawing.Size(220, 20); this.txtItemNo.TabIndex = 2; // // chk // this.chk.EditValue = true; this.chk.Location = new System.Drawing.Point(65, 111); this.chk.Name = "chk"; this.chk.Properties.Caption = "启用"; this.chk.Size = new System.Drawing.Size(51, 19); this.chk.TabIndex = 12; // // labelControl1 // this.labelControl1.Location = new System.Drawing.Point(13, 10); this.labelControl1.Name = "labelControl1"; this.labelControl1.Size = new System.Drawing.Size(48, 14); this.labelControl1.TabIndex = 8; this.labelControl1.Text = "商品名称"; // // labelControl2 // this.labelControl2.Location = new System.Drawing.Point(13, 36); this.labelControl2.Name = "labelControl2"; this.labelControl2.Size = new System.Drawing.Size(48, 14); this.labelControl2.TabIndex = 9; this.labelControl2.Text = "商品编码"; // // labelControl3 // this.labelControl3.Location = new System.Drawing.Point(37, 89); this.labelControl3.Name = "labelControl3"; this.labelControl3.Size = new System.Drawing.Size(24, 14); this.labelControl3.TabIndex = 10; this.labelControl3.Text = "售价"; // // spnPrice // this.spnPrice.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.spnPrice.Location = new System.Drawing.Point(67, 85); this.spnPrice.Name = "spnPrice"; this.spnPrice.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.spnPrice.Size = new System.Drawing.Size(220, 20); this.spnPrice.TabIndex = 29; // // spnCostPrice // this.spnCostPrice.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.spnCostPrice.Location = new System.Drawing.Point(67, 58); this.spnCostPrice.Name = "spnCostPrice"; this.spnCostPrice.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.spnCostPrice.Size = new System.Drawing.Size(220, 20); this.spnCostPrice.TabIndex = 32; // // labelControl5 // this.labelControl5.Location = new System.Drawing.Point(37, 62); this.labelControl5.Name = "labelControl5"; this.labelControl5.Size = new System.Drawing.Size(24, 14); this.labelControl5.TabIndex = 31; this.labelControl5.Text = "成本"; // // NewView // this.AcceptButton = this.btnOK; this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.btnClose; this.ClientSize = new System.Drawing.Size(307, 179); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "NewView"; this.ShowIcon = false; this.Text = "编辑 "; this.Load += new System.EventHandler(this.NewView_Load); ((System.ComponentModel.ISupportInitialize)(this.pnlMain)).EndInit(); this.pnlMain.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.pnlFill)).EndInit(); this.pnlFill.ResumeLayout(false); this.pnlFill.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pnlBottom)).EndInit(); this.pnlBottom.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtItemNo.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dxValidationProvider1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.chk.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.spnPrice.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.spnCostPrice.Properties)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Change a number in the server settings. /// </summary> /// <param name="matchString"></param> /// <param name="spin"></param> private void ChangeInt(string matchString, SpinEdit spin) { _serverSettings.RemoveAll(s => s.StartsWith(matchString)); _serverSettings.Add(string.Format("{0}={1}", matchString, spin.Value)); }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn(); this.iNew = new DevExpress.XtraBars.BarButtonItem(); this.iNew2 = new DevExpress.XtraBars.BarButtonItem(); this.iNewR = new DevExpress.XtraBars.BarButtonItem(); this.iNewR2IB = new DevExpress.XtraBars.BarButtonItem(); this.iLoadStrategy = new DevExpress.XtraBars.BarButtonItem(); this.pmNew = new DevExpress.XtraBars.PopupMenu(this.components); this.pmNewR = new DevExpress.XtraBars.PopupMenu(this.components); this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl(); this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem(); this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem(); this.barStaticItem3 = new DevExpress.XtraBars.BarStaticItem(); this.btnSbobetGetInfo = new DevExpress.XtraBars.BarButtonItem(); this.lblSbobetCurrentCredit = new DevExpress.XtraBars.BarStaticItem(); this.lblSbobetTotalMatch = new DevExpress.XtraBars.BarStaticItem(); this.lblSbobetLastUpdate = new DevExpress.XtraBars.BarStaticItem(); this.barStaticItem7 = new DevExpress.XtraBars.BarStaticItem(); this.barStaticItem8 = new DevExpress.XtraBars.BarStaticItem(); this.barStaticItem9 = new DevExpress.XtraBars.BarStaticItem(); this.lblIbetCurrentCredit = new DevExpress.XtraBars.BarStaticItem(); this.lblIbetTotalMatch = new DevExpress.XtraBars.BarStaticItem(); this.lblIbetLastUpdate = new DevExpress.XtraBars.BarStaticItem(); this.btnIbetGetInfo = new DevExpress.XtraBars.BarButtonItem(); this.lblStatus = new DevExpress.XtraBars.BarStaticItem(); this.lblSameMatch = new DevExpress.XtraBars.BarStaticItem(); this.lblLastUpdate = new DevExpress.XtraBars.BarStaticItem(); this.btnStart = new DevExpress.XtraBars.BarButtonItem(); this.btnStop = new DevExpress.XtraBars.BarButtonItem(); this.btnClear = new DevExpress.XtraBars.BarButtonItem(); this.btnSnapShot = new DevExpress.XtraBars.BarButtonItem(); this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage(); this.rpgIbet = new DevExpress.XtraBars.Ribbon.RibbonPageGroup(); this.rpgSbobet = new DevExpress.XtraBars.Ribbon.RibbonPageGroup(); this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup(); this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup(); this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup(); this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl(); this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl(); this.xtraTabPageMatches = new DevExpress.XtraTab.XtraTabPage(); this.grdSameMatch = new DevExpress.XtraGrid.GridControl(); this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn(); this.xtraTabPageBetList1 = new DevExpress.XtraTab.XtraTabPage(); this.girdBetList1 = new DevExpress.XtraGrid.GridControl(); this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn(); this.xtraTabPageBetList2 = new DevExpress.XtraTab.XtraTabPage(); this.xtraTabControl2 = new DevExpress.XtraTab.XtraTabControl(); this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage(); this.groupControl2 = new DevExpress.XtraEditors.GroupControl(); this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit(); this.labelControl12 = new DevExpress.XtraEditors.LabelControl(); this.labelControl11 = new DevExpress.XtraEditors.LabelControl(); this.checkEdit18 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit17 = new DevExpress.XtraEditors.CheckEdit(); this.spinEdit4 = new DevExpress.XtraEditors.SpinEdit(); this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit(); this.spinEdit3 = new DevExpress.XtraEditors.SpinEdit(); this.labelControl13 = new DevExpress.XtraEditors.LabelControl(); this.spinEdit2 = new DevExpress.XtraEditors.SpinEdit(); this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit(); this.txtTransactionTimeSpan = new DevExpress.XtraEditors.SpinEdit(); this.labelControl10 = new DevExpress.XtraEditors.LabelControl(); this.txtMaxTimePerHalf = new DevExpress.XtraEditors.SpinEdit(); this.labelControl7 = new DevExpress.XtraEditors.LabelControl(); this.chbAllowHalftime = new DevExpress.XtraEditors.CheckEdit(); this.groupControl1 = new DevExpress.XtraEditors.GroupControl(); this.checkEdit15 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit14 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit13 = new DevExpress.XtraEditors.CheckEdit(); this.btnSetUpdateInterval = new DevExpress.XtraEditors.SimpleButton(); this.txtSBOBETUpdateInterval = new DevExpress.XtraEditors.SpinEdit(); this.labelControl3 = new DevExpress.XtraEditors.LabelControl(); this.txtIBETUpdateInterval = new DevExpress.XtraEditors.SpinEdit(); this.labelControl4 = new DevExpress.XtraEditors.LabelControl(); this.groupControl5 = new DevExpress.XtraEditors.GroupControl(); this.chbHighRevenueBoost = new DevExpress.XtraEditors.CheckEdit(); this.txtAddValue = new DevExpress.XtraEditors.SpinEdit(); this.txtLowestOddValue = new DevExpress.XtraEditors.SpinEdit(); this.labelControl9 = new DevExpress.XtraEditors.LabelControl(); this.txtOddValueDifferenet = new DevExpress.XtraEditors.SpinEdit(); this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit5 = new DevExpress.XtraEditors.CheckEdit(); this.labelControl18 = new DevExpress.XtraEditors.LabelControl(); this.labelControl8 = new DevExpress.XtraEditors.LabelControl(); this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit12 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit11 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit10 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit9 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit8 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit(); this.groupControl4 = new DevExpress.XtraEditors.GroupControl(); this.txtSBOBETFixedStake = new DevExpress.XtraEditors.SpinEdit(); this.labelControl2 = new DevExpress.XtraEditors.LabelControl(); this.txtStake = new DevExpress.XtraEditors.MemoEdit(); this.chbRandomStake = new DevExpress.XtraEditors.CheckEdit(); this.txtIBETFixedStake = new DevExpress.XtraEditors.SpinEdit(); this.labelControl6 = new DevExpress.XtraEditors.LabelControl(); this.groupControl6 = new DevExpress.XtraEditors.GroupControl(); this.chkListAllowedMatch = new DevExpress.XtraEditors.CheckedListBoxControl(); this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage(); this.grdTransaction = new DevExpress.XtraGrid.GridControl(); this.gridView2 = 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.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn(); this.panelControl5 = new DevExpress.XtraEditors.PanelControl(); this.panelControl4 = new DevExpress.XtraEditors.PanelControl(); this.label1 = new System.Windows.Forms.Label(); this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage(); this.panelControl3 = new DevExpress.XtraEditors.PanelControl(); this.panelControl2 = new DevExpress.XtraEditors.PanelControl(); this.labelControl1 = new DevExpress.XtraEditors.LabelControl(); this.labelControl5 = new DevExpress.XtraEditors.LabelControl(); this.panelControl9 = new DevExpress.XtraEditors.PanelControl(); this.panelControl10 = new DevExpress.XtraEditors.PanelControl(); this.btnIBETGO2 = new DevExpress.XtraEditors.SimpleButton(); this.txtIBETAddress2 = new DevExpress.XtraEditors.TextEdit(); this.xtraTabPage9 = new DevExpress.XtraTab.XtraTabPage(); ((System.ComponentModel.ISupportInitialize)(this.pmNew)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pmNewR)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit(); this.splitContainerControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit(); this.xtraTabControl1.SuspendLayout(); this.xtraTabPageMatches.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.grdSameMatch)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit(); this.xtraTabPageBetList1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.girdBetList1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).BeginInit(); this.xtraTabControl2.SuspendLayout(); this.xtraTabPage4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit(); this.groupControl2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit18.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit17.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit4.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtTransactionTimeSpan.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtMaxTimePerHalf.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.chbAllowHalftime.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit(); this.groupControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit15.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit14.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit13.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtSBOBETUpdateInterval.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtIBETUpdateInterval.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit(); this.groupControl5.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.chbHighRevenueBoost.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtAddValue.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtLowestOddValue.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtOddValueDifferenet.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit12.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit11.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit(); this.groupControl4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.txtSBOBETFixedStake.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtStake.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.chbRandomStake.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtIBETFixedStake.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit(); this.groupControl6.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.chkListAllowedMatch)).BeginInit(); this.xtraTabPage5.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.grdTransaction)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).BeginInit(); this.panelControl10.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.txtIBETAddress2.Properties)).BeginInit(); this.xtraTabPage9.SuspendLayout(); this.SuspendLayout(); // // gridColumn23 // this.gridColumn23.Caption = "Kick Off"; this.gridColumn23.FieldName = "KickOffTime"; this.gridColumn23.Name = "gridColumn23"; this.gridColumn23.Visible = true; this.gridColumn23.VisibleIndex = 8; this.gridColumn23.Width = 150; // // iNew // this.iNew.Caption = "Open Website"; this.iNew.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f"); this.iNew.Description = "Open Website"; this.iNew.Enabled = false; this.iNew.Hint = "Open main web"; this.iNew.Id = 0; this.iNew.ImageIndex = 6; this.iNew.LargeImageIndex = 0; this.iNew.Name = "iNew"; this.iNew.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnViewIbetWeb); // // iNew2 // this.iNew2.Caption = "Open 2nd Website"; this.iNew2.CategoryGuid = new System.Guid("1b511317-d784-42ba-b4ed-0d2a746d6c1f"); this.iNew2.Description = "Open 2nd Website"; this.iNew2.Enabled = false; this.iNew2.Hint = "Open main web"; this.iNew2.Id = 0; this.iNew2.ImageIndex = 6; this.iNew2.LargeImageIndex = 0; this.iNew2.Name = "iNew2"; this.iNew2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnViewIbet2Web); // // iNewR // this.iNewR.Caption = "Open Website"; this.iNewR.CategoryGuid = new System.Guid("ab511317-d784-42ba-b4ed-0d2a746d6c1f"); this.iNewR.Description = "Open Website"; this.iNewR.Enabled = false; this.iNewR.Hint = "Open main web"; this.iNewR.Id = 0; this.iNewR.ImageIndex = 6; this.iNewR.LargeImageIndex = 0; this.iNewR.Name = "iNewR"; this.iNewR.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnViewSboWeb); // // iNewR2IB // this.iNewR2IB.Caption = "Login to 2nd IBET"; this.iNewR2IB.CategoryGuid = new System.Guid("ab511317-d784-42ba-b4ed-0d2a746d6c1f"); this.iNewR2IB.Description = "2nd IB"; this.iNewR2IB.Enabled = false; this.iNewR2IB.Hint = "2nd IB"; this.iNewR2IB.Id = 0; this.iNewR2IB.ImageIndex = 6; this.iNewR2IB.LargeImageIndex = 0; this.iNewR2IB.Name = "iNewR2IB"; this.iNewR2IB.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnLoginIbet2); // // iLoadStrategy // this.iLoadStrategy.Caption = "Load Strategy"; this.iLoadStrategy.Description = "Load Strategy"; this.iLoadStrategy.Enabled = false; this.iLoadStrategy.Hint = "Best Strategy"; this.iLoadStrategy.Id = 0; this.iLoadStrategy.ImageIndex = 6; this.iLoadStrategy.LargeImageIndex = 0; this.iLoadStrategy.Name = "iLoadStrategy"; this.iLoadStrategy.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnLoadStrategy); // // pmNew // this.pmNew.ItemLinks.Add(this.iNew); this.pmNew.ItemLinks.Add(this.iLoadStrategy); this.pmNew.ItemLinks.Add(this.iNewR2IB); this.pmNew.ItemLinks.Add(this.iNew2); this.pmNew.Name = "pmNew"; // // pmNewR // this.pmNewR.ItemLinks.Add(this.iNewR); this.pmNewR.Name = "pmNewR"; // // ribbonControl1 // this.ribbonControl1.ApplicationButtonText = null; // // // this.ribbonControl1.ExpandCollapseItem.Id = 0; this.ribbonControl1.ExpandCollapseItem.Name = ""; this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] { this.ribbonControl1.ExpandCollapseItem, this.barStaticItem1, this.barStaticItem2, this.barStaticItem3, this.btnSbobetGetInfo, this.lblSbobetCurrentCredit, this.lblSbobetTotalMatch, this.lblSbobetLastUpdate, this.barStaticItem7, this.barStaticItem8, this.barStaticItem9, this.lblIbetCurrentCredit, this.lblIbetTotalMatch, this.lblIbetLastUpdate, this.btnIbetGetInfo, this.iNew, this.iNew2, this.iNewR, this.iNewR2IB, this.iLoadStrategy, this.lblStatus, this.lblSameMatch, this.lblLastUpdate, this.btnStart, this.btnStop, this.btnClear, this.btnSnapShot}); this.ribbonControl1.Location = new System.Drawing.Point(0, 0); this.ribbonControl1.MaxItemId = 23; this.ribbonControl1.Name = "ribbonControl1"; this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] { this.ribbonPage1}); this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010; this.ribbonControl1.SelectedPage = this.ribbonPage1; this.ribbonControl1.ShowCategoryInCaption = false; this.ribbonControl1.ShowExpandCollapseButton = DevExpress.Utils.DefaultBoolean.False; this.ribbonControl1.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Hide; this.ribbonControl1.ShowToolbarCustomizeItem = false; this.ribbonControl1.Size = new System.Drawing.Size(1130, 125); this.ribbonControl1.Toolbar.ShowCustomizeItem = false; // // barStaticItem1 // this.barStaticItem1.Caption = "Current Credit:"; this.barStaticItem1.Id = 1; this.barStaticItem1.Name = "barStaticItem1"; this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near; // // barStaticItem2 // this.barStaticItem2.Caption = "Total Match:"; this.barStaticItem2.Id = 2; this.barStaticItem2.Name = "barStaticItem2"; this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near; // // barStaticItem3 // this.barStaticItem3.Caption = "Last Update:"; this.barStaticItem3.Id = 3; this.barStaticItem3.Name = "barStaticItem3"; this.barStaticItem3.TextAlignment = System.Drawing.StringAlignment.Near; // // btnSbobetGetInfo // this.btnSbobetGetInfo.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.btnSbobetGetInfo.Caption = "Log In"; this.btnSbobetGetInfo.DropDownControl = this.pmNewR; this.btnSbobetGetInfo.Id = 4; this.btnSbobetGetInfo.LargeGlyph = global::iBet.App.Properties.Resources.i8; this.btnSbobetGetInfo.Name = "btnSbobetGetInfo"; this.btnSbobetGetInfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSbobetGetInfo_ItemClick); // // lblSbobetCurrentCredit // this.lblSbobetCurrentCredit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblSbobetCurrentCredit.Appearance.Options.UseFont = true; this.lblSbobetCurrentCredit.Caption = "-"; this.lblSbobetCurrentCredit.Id = 5; this.lblSbobetCurrentCredit.Name = "lblSbobetCurrentCredit"; this.lblSbobetCurrentCredit.TextAlignment = System.Drawing.StringAlignment.Far; this.lblSbobetCurrentCredit.Width = 135; // // lblSbobetTotalMatch // this.lblSbobetTotalMatch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblSbobetTotalMatch.Appearance.Options.UseFont = true; this.lblSbobetTotalMatch.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None; this.lblSbobetTotalMatch.Caption = "-"; this.lblSbobetTotalMatch.Id = 6; this.lblSbobetTotalMatch.Name = "lblSbobetTotalMatch"; this.lblSbobetTotalMatch.TextAlignment = System.Drawing.StringAlignment.Far; this.lblSbobetTotalMatch.Width = 135; // // lblSbobetLastUpdate // this.lblSbobetLastUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblSbobetLastUpdate.Appearance.Options.UseFont = true; this.lblSbobetLastUpdate.Caption = "-"; this.lblSbobetLastUpdate.Id = 8; this.lblSbobetLastUpdate.Name = "lblSbobetLastUpdate"; this.lblSbobetLastUpdate.TextAlignment = System.Drawing.StringAlignment.Far; this.lblSbobetLastUpdate.Width = 135; // // barStaticItem7 // this.barStaticItem7.Caption = "Current Credit:"; this.barStaticItem7.Id = 9; this.barStaticItem7.Name = "barStaticItem7"; this.barStaticItem7.TextAlignment = System.Drawing.StringAlignment.Near; // // barStaticItem8 // this.barStaticItem8.Caption = "Total Match:"; this.barStaticItem8.Id = 10; this.barStaticItem8.Name = "barStaticItem8"; this.barStaticItem8.TextAlignment = System.Drawing.StringAlignment.Near; // // barStaticItem9 // this.barStaticItem9.Caption = "Last Update:"; this.barStaticItem9.Id = 11; this.barStaticItem9.Name = "barStaticItem9"; this.barStaticItem9.TextAlignment = System.Drawing.StringAlignment.Near; // // lblIbetCurrentCredit // this.lblIbetCurrentCredit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblIbetCurrentCredit.Appearance.Options.UseFont = true; this.lblIbetCurrentCredit.Caption = "-"; this.lblIbetCurrentCredit.Id = 12; this.lblIbetCurrentCredit.Name = "lblIbetCurrentCredit"; this.lblIbetCurrentCredit.TextAlignment = System.Drawing.StringAlignment.Far; this.lblIbetCurrentCredit.Width = 135; // // lblIbetTotalMatch // this.lblIbetTotalMatch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblIbetTotalMatch.Appearance.Options.UseFont = true; this.lblIbetTotalMatch.Caption = "-"; this.lblIbetTotalMatch.Id = 13; this.lblIbetTotalMatch.Name = "lblIbetTotalMatch"; this.lblIbetTotalMatch.TextAlignment = System.Drawing.StringAlignment.Far; this.lblIbetTotalMatch.Width = 135; // // lblIbetLastUpdate // this.lblIbetLastUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblIbetLastUpdate.Appearance.Options.UseFont = true; this.lblIbetLastUpdate.Caption = "-"; this.lblIbetLastUpdate.Id = 14; this.lblIbetLastUpdate.Name = "lblIbetLastUpdate"; this.lblIbetLastUpdate.TextAlignment = System.Drawing.StringAlignment.Far; this.lblIbetLastUpdate.Width = 135; // // btnIbetGetInfo // this.btnIbetGetInfo.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.btnIbetGetInfo.Caption = "Log In"; this.btnIbetGetInfo.DropDownControl = this.pmNew; this.btnIbetGetInfo.Id = 15; this.btnIbetGetInfo.LargeGlyph = global::iBet.App.Properties.Resources.i8; this.btnIbetGetInfo.Name = "btnIbetGetInfo"; this.btnIbetGetInfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick); // // lblStatus // this.lblStatus.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblStatus.Appearance.Options.UseFont = true; this.lblStatus.Caption = "STOPPED"; this.lblStatus.Id = 16; this.lblStatus.Name = "lblStatus"; this.lblStatus.TextAlignment = System.Drawing.StringAlignment.Center; this.lblStatus.Width = 135; // // lblSameMatch // this.lblSameMatch.Caption = "Total Same Match: -"; this.lblSameMatch.Id = 17; this.lblSameMatch.Name = "lblSameMatch"; this.lblSameMatch.TextAlignment = System.Drawing.StringAlignment.Center; this.lblSameMatch.Width = 135; // // lblLastUpdate // this.lblLastUpdate.Caption = "-"; this.lblLastUpdate.Id = 18; this.lblLastUpdate.Name = "lblLastUpdate"; this.lblLastUpdate.TextAlignment = System.Drawing.StringAlignment.Center; this.lblLastUpdate.Width = 135; // // btnStart // this.btnStart.Caption = "Start"; this.btnStart.Enabled = false; this.btnStart.Id = 19; this.btnStart.LargeGlyph = global::iBet.App.Properties.Resources.i5; this.btnStart.Name = "btnStart"; this.btnStart.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnStart_ItemClick); // // btnStop // this.btnStop.Caption = "Stop"; this.btnStop.Enabled = false; this.btnStop.Id = 20; this.btnStop.LargeGlyph = global::iBet.App.Properties.Resources.i6; this.btnStop.Name = "btnStop"; this.btnStop.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnStop_ItemClick); // // btnClear // this.btnClear.Caption = "Clear"; this.btnClear.Enabled = false; this.btnClear.Id = 21; this.btnClear.LargeGlyph = global::iBet.App.Properties.Resources.i7; this.btnClear.Name = "btnClear"; this.btnClear.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnClear_ItemClick); // // btnSnapShot // this.btnSnapShot.Caption = "Snap Shot"; this.btnSnapShot.Enabled = false; this.btnSnapShot.Id = 21; this.btnSnapShot.LargeGlyph = global::iBet.App.Properties.Resources.i11; this.btnSnapShot.Name = "btnSnapShot"; this.btnSnapShot.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSnapShot_ItemClick); // // ribbonPage1 // this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] { this.rpgIbet, this.rpgSbobet, this.ribbonPageGroup3, this.ribbonPageGroup4, this.ribbonPageGroup5}); this.ribbonPage1.Name = "ribbonPage1"; this.ribbonPage1.Text = "ribbonPage1"; // // rpgIbet // this.rpgIbet.ItemLinks.Add(this.barStaticItem7); this.rpgIbet.ItemLinks.Add(this.barStaticItem8); this.rpgIbet.ItemLinks.Add(this.barStaticItem9); this.rpgIbet.ItemLinks.Add(this.lblIbetCurrentCredit); this.rpgIbet.ItemLinks.Add(this.lblIbetTotalMatch); this.rpgIbet.ItemLinks.Add(this.lblIbetLastUpdate); this.rpgIbet.ItemLinks.Add(this.btnIbetGetInfo); this.rpgIbet.Name = "rpgIbet"; this.rpgIbet.ShowCaptionButton = false; this.rpgIbet.Text = "IBET"; // // rpgSbobet // this.rpgSbobet.ItemLinks.Add(this.barStaticItem1); this.rpgSbobet.ItemLinks.Add(this.barStaticItem2); this.rpgSbobet.ItemLinks.Add(this.barStaticItem3); this.rpgSbobet.ItemLinks.Add(this.lblSbobetCurrentCredit); this.rpgSbobet.ItemLinks.Add(this.lblSbobetTotalMatch); this.rpgSbobet.ItemLinks.Add(this.lblSbobetLastUpdate); this.rpgSbobet.ItemLinks.Add(this.btnSbobetGetInfo); this.rpgSbobet.Name = "rpgSbobet"; this.rpgSbobet.ShowCaptionButton = false; this.rpgSbobet.Text = "SBOBET"; // // ribbonPageGroup3 // this.ribbonPageGroup3.ItemLinks.Add(this.lblStatus); this.ribbonPageGroup3.ItemLinks.Add(this.lblSameMatch); this.ribbonPageGroup3.ItemLinks.Add(this.lblLastUpdate); this.ribbonPageGroup3.ItemLinks.Add(this.btnStart); this.ribbonPageGroup3.ItemLinks.Add(this.btnStop); this.ribbonPageGroup3.Name = "ribbonPageGroup3"; this.ribbonPageGroup3.ShowCaptionButton = false; this.ribbonPageGroup3.Text = "Status"; // // ribbonPageGroup4 // this.ribbonPageGroup4.ItemLinks.Add(this.btnClear); this.ribbonPageGroup4.Name = "ribbonPageGroup4"; this.ribbonPageGroup4.ShowCaptionButton = false; this.ribbonPageGroup4.Text = "Transaction"; // // ribbonPageGroup5 // this.ribbonPageGroup5.ItemLinks.Add(this.btnSnapShot); this.ribbonPageGroup5.Name = "ribbonPageGroup5"; this.ribbonPageGroup5.ShowCaptionButton = false; this.ribbonPageGroup5.Text = "Match Data"; // // splitContainerControl1 // this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2; this.splitContainerControl1.Horizontal = false; this.splitContainerControl1.Location = new System.Drawing.Point(0, 125); this.splitContainerControl1.Name = "splitContainerControl1"; this.splitContainerControl1.Panel1.Controls.Add(this.xtraTabControl1); this.splitContainerControl1.Panel1.Text = "Panel1"; this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControl2); this.splitContainerControl1.Panel2.Text = "Panel2"; this.splitContainerControl1.Size = new System.Drawing.Size(1130, 553); this.splitContainerControl1.SplitterPosition = 275; this.splitContainerControl1.TabIndex = 1; this.splitContainerControl1.Text = "splitContainerControl1"; // // xtraTabControl1 // this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.xtraTabControl1.Location = new System.Drawing.Point(0, 0); this.xtraTabControl1.Name = "xtraTabControl1"; this.xtraTabControl1.SelectedTabPage = this.xtraTabPageMatches; this.xtraTabControl1.Size = new System.Drawing.Size(1130, 273); this.xtraTabControl1.TabIndex = 0; this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { this.xtraTabPageMatches, this.xtraTabPageBetList1, this.xtraTabPageBetList2}); // // xtraTabPageMatches // this.xtraTabPageMatches.Controls.Add(this.grdSameMatch); this.xtraTabPageMatches.Name = "xtraTabPageMatches"; this.xtraTabPageMatches.Size = new System.Drawing.Size(1124, 247); this.xtraTabPageMatches.Text = "Live Match"; // // grdSameMatch // this.grdSameMatch.Dock = System.Windows.Forms.DockStyle.Fill; this.grdSameMatch.Location = new System.Drawing.Point(0, 0); this.grdSameMatch.MainView = this.gridView1; this.grdSameMatch.Name = "grdSameMatch"; this.grdSameMatch.Size = new System.Drawing.Size(1124, 247); this.grdSameMatch.TabIndex = 3; this.grdSameMatch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView1}); // // gridView1 // this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn15, this.gridColumn16, this.gridColumn21, this.gridColumn22, this.gridColumn14, this.gridColumn17, this.gridColumn18, this.gridColumn19, this.gridColumn23}); this.gridView1.GridControl = this.grdSameMatch; this.gridView1.Name = "gridView1"; this.gridView1.OptionsBehavior.Editable = false; this.gridView1.OptionsCustomization.AllowGroup = false; this.gridView1.OptionsDetail.AllowZoomDetail = false; this.gridView1.OptionsDetail.EnableMasterViewMode = false; this.gridView1.OptionsDetail.ShowDetailTabs = false; this.gridView1.OptionsDetail.SmartDetailExpand = false; this.gridView1.OptionsView.ShowAutoFilterRow = true; this.gridView1.OptionsView.ShowGroupPanel = false; this.gridView1.OptionsView.ShowPreview = true; this.gridView1.PreviewFieldName = "LeagueName"; this.gridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn23, DevExpress.Data.ColumnSortOrder.Ascending)}); this.gridView1.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gridView1_RowCellStyle); // // gridColumn15 // this.gridColumn15.Caption = "Home Team"; this.gridColumn15.FieldName = "HomeTeamName"; this.gridColumn15.Name = "gridColumn15"; this.gridColumn15.Visible = true; this.gridColumn15.VisibleIndex = 0; this.gridColumn15.Width = 367; // // gridColumn16 // this.gridColumn16.Caption = "Away Team"; this.gridColumn16.FieldName = "AwayTeamName"; this.gridColumn16.Name = "gridColumn16"; this.gridColumn16.Visible = true; this.gridColumn16.VisibleIndex = 1; this.gridColumn16.Width = 368; // // gridColumn21 // this.gridColumn21.Caption = "HScore"; this.gridColumn21.FieldName = "HomeScore"; this.gridColumn21.Name = "gridColumn21"; this.gridColumn21.Visible = true; this.gridColumn21.VisibleIndex = 2; // // gridColumn22 // this.gridColumn22.Caption = "AScore"; this.gridColumn22.FieldName = "AwayScore"; this.gridColumn22.Name = "gridColumn22"; this.gridColumn22.Visible = true; this.gridColumn22.VisibleIndex = 3; // // gridColumn14 // this.gridColumn14.Caption = "Odd Count"; this.gridColumn14.FieldName = "OddCount"; this.gridColumn14.Name = "gridColumn14"; this.gridColumn14.OptionsColumn.FixedWidth = true; this.gridColumn14.Visible = true; this.gridColumn14.VisibleIndex = 4; this.gridColumn14.Width = 70; // // gridColumn17 // this.gridColumn17.Caption = "Half"; this.gridColumn17.FieldName = "Half"; this.gridColumn17.Name = "gridColumn17"; this.gridColumn17.OptionsColumn.FixedWidth = true; this.gridColumn17.Visible = true; this.gridColumn17.VisibleIndex = 5; this.gridColumn17.Width = 40; // // gridColumn18 // this.gridColumn18.Caption = "Min"; this.gridColumn18.FieldName = "Minute"; this.gridColumn18.Name = "gridColumn18"; this.gridColumn18.OptionsColumn.FixedWidth = true; this.gridColumn18.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value; this.gridColumn18.Visible = true; this.gridColumn18.VisibleIndex = 6; this.gridColumn18.Width = 40; // // gridColumn19 // this.gridColumn19.Caption = "HT"; this.gridColumn19.FieldName = "IsHalfTime"; this.gridColumn19.Name = "gridColumn19"; this.gridColumn19.OptionsColumn.FixedWidth = true; this.gridColumn19.UnboundType = DevExpress.Data.UnboundColumnType.Boolean; this.gridColumn19.Visible = true; this.gridColumn19.VisibleIndex = 7; this.gridColumn19.Width = 40; // // xtraTabPageBetList1 // this.xtraTabPageBetList1.Controls.Add(this.girdBetList1); this.xtraTabPageBetList1.Name = "xtraTabPageBetList1"; this.xtraTabPageBetList1.Size = new System.Drawing.Size(1124, 247); this.xtraTabPageBetList1.Text = "Bet List 1"; // // girdBetList1 // this.girdBetList1.Dock = System.Windows.Forms.DockStyle.Fill; this.girdBetList1.Location = new System.Drawing.Point(0, 0); this.girdBetList1.MainView = this.gridView3; this.girdBetList1.Name = "girdBetList1"; this.girdBetList1.Size = new System.Drawing.Size(1124, 247); this.girdBetList1.TabIndex = 4; this.girdBetList1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView3}); // // gridView3 // this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn33, this.gridColumn24, this.gridColumn25, this.gridColumn28, this.gridColumn29, this.gridColumn30, this.gridColumn31, this.gridColumn32}); this.gridView3.GridControl = this.girdBetList1; this.gridView3.Name = "gridView3"; this.gridView3.OptionsBehavior.Editable = false; this.gridView3.OptionsCustomization.AllowGroup = false; this.gridView3.OptionsDetail.AllowZoomDetail = false; this.gridView3.OptionsDetail.EnableMasterViewMode = false; this.gridView3.OptionsDetail.ShowDetailTabs = false; this.gridView3.OptionsDetail.SmartDetailExpand = false; this.gridView3.OptionsView.ShowAutoFilterRow = true; this.gridView3.OptionsView.ShowGroupPanel = false; this.gridView3.OptionsView.ShowPreview = true; this.gridView3.PreviewFieldName = "LeagueName"; this.gridView3.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn32, DevExpress.Data.ColumnSortOrder.Ascending)}); // // gridColumn33 // this.gridColumn33.Caption = "RefID"; this.gridColumn33.FieldName = "ID"; this.gridColumn33.Name = "gridColumn33"; this.gridColumn33.Visible = true; this.gridColumn33.VisibleIndex = 0; this.gridColumn33.Width = 69; // // gridColumn24 // this.gridColumn24.Caption = "Home Team"; this.gridColumn24.FieldName = "Home"; this.gridColumn24.Name = "gridColumn24"; this.gridColumn24.Visible = true; this.gridColumn24.VisibleIndex = 1; this.gridColumn24.Width = 300; // // gridColumn25 // this.gridColumn25.Caption = "Away Team"; this.gridColumn25.FieldName = "Away"; this.gridColumn25.Name = "gridColumn25"; this.gridColumn25.Visible = true; this.gridColumn25.VisibleIndex = 2; this.gridColumn25.Width = 300; // // gridColumn28 // this.gridColumn28.Caption = "Choose"; this.gridColumn28.FieldName = "Choice"; this.gridColumn28.Name = "gridColumn28"; this.gridColumn28.OptionsColumn.FixedWidth = true; this.gridColumn28.Visible = true; this.gridColumn28.VisibleIndex = 3; this.gridColumn28.Width = 70; // // gridColumn29 // this.gridColumn29.Caption = "Odd"; this.gridColumn29.FieldName = "Handicap"; this.gridColumn29.Name = "gridColumn29"; this.gridColumn29.OptionsColumn.FixedWidth = true; this.gridColumn29.Visible = true; this.gridColumn29.VisibleIndex = 4; this.gridColumn29.Width = 40; // // gridColumn30 // this.gridColumn30.Caption = "Odd Value"; this.gridColumn30.FieldName = "OddsValue"; this.gridColumn30.Name = "gridColumn30"; this.gridColumn30.OptionsColumn.FixedWidth = true; this.gridColumn30.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value; this.gridColumn30.Visible = true; this.gridColumn30.VisibleIndex = 5; this.gridColumn30.Width = 60; // // gridColumn31 // this.gridColumn31.Caption = "Stake"; this.gridColumn31.FieldName = "Stake"; this.gridColumn31.Name = "gridColumn31"; this.gridColumn31.OptionsColumn.FixedWidth = true; this.gridColumn31.UnboundType = DevExpress.Data.UnboundColumnType.String; this.gridColumn31.Visible = true; this.gridColumn31.VisibleIndex = 6; this.gridColumn31.Width = 40; // // gridColumn32 // this.gridColumn32.Caption = "Bet Time"; this.gridColumn32.FieldName = "BetTime"; this.gridColumn32.Name = "gridColumn32"; this.gridColumn32.Visible = true; this.gridColumn32.VisibleIndex = 7; this.gridColumn32.Width = 227; // // xtraTabPageBetList2 // this.xtraTabPageBetList2.Name = "xtraTabPageBetList2"; this.xtraTabPageBetList2.Size = new System.Drawing.Size(1124, 247); this.xtraTabPageBetList2.Text = "Bet List 2"; // // xtraTabControl2 // this.xtraTabControl2.Appearance.BackColor = System.Drawing.Color.Transparent; this.xtraTabControl2.Appearance.Options.UseBackColor = true; this.xtraTabControl2.Dock = System.Windows.Forms.DockStyle.Fill; this.xtraTabControl2.Location = new System.Drawing.Point(0, 0); this.xtraTabControl2.Name = "xtraTabControl2"; this.xtraTabControl2.SelectedTabPage = this.xtraTabPage4; this.xtraTabControl2.Size = new System.Drawing.Size(1130, 275); this.xtraTabControl2.TabIndex = 1; this.xtraTabControl2.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { this.xtraTabPage4, this.xtraTabPage5}); // // xtraTabPage4 // this.xtraTabPage4.Controls.Add(this.groupControl2); this.xtraTabPage4.Controls.Add(this.groupControl1); this.xtraTabPage4.Controls.Add(this.groupControl5); this.xtraTabPage4.Controls.Add(this.groupControl4); this.xtraTabPage4.Controls.Add(this.groupControl6); this.xtraTabPage4.Name = "xtraTabPage4"; this.xtraTabPage4.Size = new System.Drawing.Size(1124, 249); this.xtraTabPage4.Text = "Settings"; // // groupControl2 // this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupControl2.Controls.Add(this.checkEdit2); this.groupControl2.Controls.Add(this.labelControl12); this.groupControl2.Controls.Add(this.labelControl11); this.groupControl2.Controls.Add(this.checkEdit18); this.groupControl2.Controls.Add(this.checkEdit17); this.groupControl2.Controls.Add(this.spinEdit4); this.groupControl2.Controls.Add(this.checkEdit1); this.groupControl2.Controls.Add(this.spinEdit3); this.groupControl2.Controls.Add(this.labelControl13); this.groupControl2.Controls.Add(this.spinEdit2); this.groupControl2.Controls.Add(this.spinEdit1); this.groupControl2.Controls.Add(this.txtTransactionTimeSpan); this.groupControl2.Controls.Add(this.labelControl10); this.groupControl2.Controls.Add(this.txtMaxTimePerHalf); this.groupControl2.Controls.Add(this.labelControl7); this.groupControl2.Controls.Add(this.chbAllowHalftime); this.groupControl2.Location = new System.Drawing.Point(209, 3); this.groupControl2.Name = "groupControl2"; this.groupControl2.Size = new System.Drawing.Size(200, 243); this.groupControl2.TabIndex = 14; this.groupControl2.Text = "Time Settings"; // // checkEdit2 // this.checkEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit2.Location = new System.Drawing.Point(135, 191); this.checkEdit2.Name = "checkEdit2"; this.checkEdit2.Properties.Caption = "O/U"; this.checkEdit2.Size = new System.Drawing.Size(60, 19); this.checkEdit2.TabIndex = 24; this.checkEdit2.CheckedChanged += new System.EventHandler(this.checkEdit2_CheckedChanged); // // labelControl12 // this.labelControl12.Location = new System.Drawing.Point(7, 140); this.labelControl12.Name = "labelControl12"; this.labelControl12.Size = new System.Drawing.Size(56, 13); this.labelControl12.TabIndex = 23; this.labelControl12.Text = "Flush Half 2"; // // labelControl11 // this.labelControl11.Location = new System.Drawing.Point(7, 112); this.labelControl11.Name = "labelControl11"; this.labelControl11.Size = new System.Drawing.Size(56, 13); this.labelControl11.TabIndex = 22; this.labelControl11.Text = "Flush Half 1"; // // checkEdit18 // this.checkEdit18.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit18.EditValue = true; this.checkEdit18.Location = new System.Drawing.Point(69, 191); this.checkEdit18.Name = "checkEdit18"; this.checkEdit18.Properties.Caption = "Half 2"; this.checkEdit18.Size = new System.Drawing.Size(60, 19); this.checkEdit18.TabIndex = 21; // // checkEdit17 // this.checkEdit17.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit17.EditValue = true; this.checkEdit17.Location = new System.Drawing.Point(5, 191); this.checkEdit17.Name = "checkEdit17"; this.checkEdit17.Properties.Caption = "Half 1"; this.checkEdit17.Size = new System.Drawing.Size(58, 19); this.checkEdit17.TabIndex = 20; // // spinEdit4 // this.spinEdit4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.spinEdit4.EditValue = new decimal(new int[] { 2, 0, 0, 131072}); this.spinEdit4.Location = new System.Drawing.Point(85, 166); this.spinEdit4.Name = "spinEdit4"; this.spinEdit4.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.spinEdit4.Properties.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.spinEdit4.Size = new System.Drawing.Size(52, 20); this.spinEdit4.TabIndex = 17; // // checkEdit1 // this.checkEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit1.EditValue = true; this.checkEdit1.Location = new System.Drawing.Point(5, 166); this.checkEdit1.Name = "checkEdit1"; this.checkEdit1.Properties.Caption = "Take Profit"; this.checkEdit1.Size = new System.Drawing.Size(77, 19); this.checkEdit1.TabIndex = 16; // // spinEdit3 // this.spinEdit3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.spinEdit3.EditValue = new decimal(new int[] { 15, 0, 0, 131072}); this.spinEdit3.Location = new System.Drawing.Point(143, 166); this.spinEdit3.Name = "spinEdit3"; this.spinEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.spinEdit3.Properties.Increment = new decimal(new int[] { 1, 0, 0, -2147352576}); this.spinEdit3.Properties.MinValue = new decimal(new int[] { 2, 0, 0, -2147352576}); this.spinEdit3.Size = new System.Drawing.Size(52, 20); this.spinEdit3.TabIndex = 15; // // labelControl13 // this.labelControl13.Location = new System.Drawing.Point(5, 169); this.labelControl13.Name = "labelControl13"; this.labelControl13.Size = new System.Drawing.Size(0, 13); this.labelControl13.TabIndex = 14; // // spinEdit2 // this.spinEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.spinEdit2.EditValue = new decimal(new int[] { 32, 0, 0, 0}); this.spinEdit2.Location = new System.Drawing.Point(123, 137); this.spinEdit2.Name = "spinEdit2"; this.spinEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.spinEdit2.Properties.IsFloatValue = false; this.spinEdit2.Properties.Mask.EditMask = "N00"; this.spinEdit2.Size = new System.Drawing.Size(72, 20); this.spinEdit2.TabIndex = 13; // // spinEdit1 // this.spinEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.spinEdit1.EditValue = new decimal(new int[] { 32, 0, 0, 0}); this.spinEdit1.Location = new System.Drawing.Point(123, 109); this.spinEdit1.Name = "spinEdit1"; this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.spinEdit1.Properties.IsFloatValue = false; this.spinEdit1.Properties.Mask.EditMask = "N00"; this.spinEdit1.Size = new System.Drawing.Size(72, 20); this.spinEdit1.TabIndex = 11; // // txtTransactionTimeSpan // this.txtTransactionTimeSpan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtTransactionTimeSpan.EditValue = new decimal(new int[] { 10, 0, 0, 0}); this.txtTransactionTimeSpan.Location = new System.Drawing.Point(123, 80); this.txtTransactionTimeSpan.Name = "txtTransactionTimeSpan"; this.txtTransactionTimeSpan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtTransactionTimeSpan.Properties.IsFloatValue = false; this.txtTransactionTimeSpan.Properties.Mask.EditMask = "N00"; this.txtTransactionTimeSpan.Size = new System.Drawing.Size(72, 20); this.txtTransactionTimeSpan.TabIndex = 9; // // labelControl10 // this.labelControl10.Location = new System.Drawing.Point(5, 81); this.labelControl10.Name = "labelControl10"; this.labelControl10.Size = new System.Drawing.Size(112, 13); this.labelControl10.TabIndex = 8; this.labelControl10.Text = "Transaction Time Span:"; // // txtMaxTimePerHalf // this.txtMaxTimePerHalf.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtMaxTimePerHalf.EditValue = new decimal(new int[] { 40, 0, 0, 0}); this.txtMaxTimePerHalf.Location = new System.Drawing.Point(123, 50); this.txtMaxTimePerHalf.Name = "txtMaxTimePerHalf"; this.txtMaxTimePerHalf.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtMaxTimePerHalf.Properties.IsFloatValue = false; this.txtMaxTimePerHalf.Properties.Mask.EditMask = "N00"; this.txtMaxTimePerHalf.Size = new System.Drawing.Size(72, 20); this.txtMaxTimePerHalf.TabIndex = 7; // // labelControl7 // this.labelControl7.Location = new System.Drawing.Point(5, 53); this.labelControl7.Name = "labelControl7"; this.labelControl7.Size = new System.Drawing.Size(90, 13); this.labelControl7.TabIndex = 6; this.labelControl7.Text = "Max Time Per Half:"; // // chbAllowHalftime // this.chbAllowHalftime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.chbAllowHalftime.EditValue = true; this.chbAllowHalftime.Location = new System.Drawing.Point(5, 26); this.chbAllowHalftime.Name = "chbAllowHalftime"; this.chbAllowHalftime.Properties.Caption = "Allow Halftime"; this.chbAllowHalftime.Size = new System.Drawing.Size(102, 19); this.chbAllowHalftime.TabIndex = 5; // // groupControl1 // this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupControl1.Controls.Add(this.checkEdit15); this.groupControl1.Controls.Add(this.checkEdit14); this.groupControl1.Controls.Add(this.checkEdit13); this.groupControl1.Controls.Add(this.btnSetUpdateInterval); this.groupControl1.Controls.Add(this.txtSBOBETUpdateInterval); this.groupControl1.Controls.Add(this.labelControl3); this.groupControl1.Controls.Add(this.txtIBETUpdateInterval); this.groupControl1.Controls.Add(this.labelControl4); this.groupControl1.Location = new System.Drawing.Point(415, 3); this.groupControl1.Name = "groupControl1"; this.groupControl1.Size = new System.Drawing.Size(200, 243); this.groupControl1.TabIndex = 13; this.groupControl1.Text = "Data Settings"; // // checkEdit15 // this.checkEdit15.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit15.Location = new System.Drawing.Point(5, 151); this.checkEdit15.Name = "checkEdit15"; this.checkEdit15.Properties.Caption = "Scanner mode: Pure odd sms"; this.checkEdit15.Size = new System.Drawing.Size(190, 19); this.checkEdit15.TabIndex = 30; // // checkEdit14 // this.checkEdit14.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit14.EditValue = true; this.checkEdit14.Location = new System.Drawing.Point(5, 128); this.checkEdit14.Name = "checkEdit14"; this.checkEdit14.Properties.Caption = "Receive odd from community"; this.checkEdit14.Size = new System.Drawing.Size(190, 19); this.checkEdit14.TabIndex = 29; // // checkEdit13 // this.checkEdit13.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit13.EditValue = true; this.checkEdit13.Location = new System.Drawing.Point(5, 104); this.checkEdit13.Name = "checkEdit13"; this.checkEdit13.Properties.Caption = "Submit odd to community"; this.checkEdit13.Size = new System.Drawing.Size(190, 19); this.checkEdit13.TabIndex = 28; // // btnSetUpdateInterval // this.btnSetUpdateInterval.Location = new System.Drawing.Point(59, 77); this.btnSetUpdateInterval.Name = "btnSetUpdateInterval"; this.btnSetUpdateInterval.Size = new System.Drawing.Size(136, 23); this.btnSetUpdateInterval.TabIndex = 6; this.btnSetUpdateInterval.Text = "Set Update Interval"; this.btnSetUpdateInterval.Click += new System.EventHandler(this.btnSetUpdateInterval_Click); // // txtSBOBETUpdateInterval // this.txtSBOBETUpdateInterval.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtSBOBETUpdateInterval.EditValue = new decimal(new int[] { 12, 0, 0, 0}); this.txtSBOBETUpdateInterval.Location = new System.Drawing.Point(132, 51); this.txtSBOBETUpdateInterval.Name = "txtSBOBETUpdateInterval"; this.txtSBOBETUpdateInterval.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtSBOBETUpdateInterval.Properties.IsFloatValue = false; this.txtSBOBETUpdateInterval.Properties.Mask.EditMask = "N00"; this.txtSBOBETUpdateInterval.Size = new System.Drawing.Size(63, 20); this.txtSBOBETUpdateInterval.TabIndex = 5; this.txtSBOBETUpdateInterval.EditValueChanged += new System.EventHandler(this.txtSBOBETUpdateInterval_EditValueChanged); // // labelControl3 // this.labelControl3.Location = new System.Drawing.Point(5, 54); this.labelControl3.Name = "labelControl3"; this.labelControl3.Size = new System.Drawing.Size(121, 13); this.labelControl3.TabIndex = 4; this.labelControl3.Text = "SBOBET Update Interval:"; // // txtIBETUpdateInterval // this.txtIBETUpdateInterval.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtIBETUpdateInterval.EditValue = new decimal(new int[] { 12, 0, 0, 0}); this.txtIBETUpdateInterval.Location = new System.Drawing.Point(132, 25); this.txtIBETUpdateInterval.Name = "txtIBETUpdateInterval"; this.txtIBETUpdateInterval.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtIBETUpdateInterval.Properties.IsFloatValue = false; this.txtIBETUpdateInterval.Properties.Mask.EditMask = "N00"; this.txtIBETUpdateInterval.Size = new System.Drawing.Size(63, 20); this.txtIBETUpdateInterval.TabIndex = 1; this.txtIBETUpdateInterval.EditValueChanged += new System.EventHandler(this.txtIBETUpdateInterval_EditValueChanged); // // labelControl4 // this.labelControl4.Location = new System.Drawing.Point(5, 28); this.labelControl4.Name = "labelControl4"; this.labelControl4.Size = new System.Drawing.Size(105, 13); this.labelControl4.TabIndex = 0; this.labelControl4.Text = "IBET Update Interval:"; // // groupControl5 // this.groupControl5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupControl5.Controls.Add(this.chbHighRevenueBoost); this.groupControl5.Controls.Add(this.txtAddValue); this.groupControl5.Controls.Add(this.txtLowestOddValue); this.groupControl5.Controls.Add(this.labelControl9); this.groupControl5.Controls.Add(this.txtOddValueDifferenet); this.groupControl5.Controls.Add(this.checkEdit6); this.groupControl5.Controls.Add(this.checkEdit5); this.groupControl5.Controls.Add(this.labelControl18); this.groupControl5.Controls.Add(this.labelControl8); this.groupControl5.Controls.Add(this.checkEdit7); this.groupControl5.Controls.Add(this.checkEdit12); this.groupControl5.Controls.Add(this.checkEdit11); this.groupControl5.Controls.Add(this.checkEdit10); this.groupControl5.Controls.Add(this.checkEdit9); this.groupControl5.Controls.Add(this.checkEdit8); this.groupControl5.Controls.Add(this.checkEdit4); this.groupControl5.Controls.Add(this.checkEdit3); this.groupControl5.Location = new System.Drawing.Point(3, 3); this.groupControl5.Name = "groupControl5"; this.groupControl5.Size = new System.Drawing.Size(200, 243); this.groupControl5.TabIndex = 13; this.groupControl5.Text = "Trading Settings"; // // chbHighRevenueBoost // this.chbHighRevenueBoost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.chbHighRevenueBoost.Location = new System.Drawing.Point(5, 172); this.chbHighRevenueBoost.Name = "chbHighRevenueBoost"; this.chbHighRevenueBoost.Properties.Caption = "Top Class"; this.chbHighRevenueBoost.Size = new System.Drawing.Size(90, 19); this.chbHighRevenueBoost.TabIndex = 13; // // txtAddValue // this.txtAddValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtAddValue.EditValue = new decimal(new int[] { 4, 0, 0, 0}); this.txtAddValue.Location = new System.Drawing.Point(110, 148); this.txtAddValue.Name = "txtAddValue"; this.txtAddValue.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtAddValue.Size = new System.Drawing.Size(85, 20); this.txtAddValue.TabIndex = 22; // // txtLowestOddValue // this.txtLowestOddValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtLowestOddValue.EditValue = new decimal(new int[] { 5, 0, 0, 65536}); this.txtLowestOddValue.Location = new System.Drawing.Point(110, 121); this.txtLowestOddValue.Name = "txtLowestOddValue"; this.txtLowestOddValue.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtLowestOddValue.Properties.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.txtLowestOddValue.Properties.MaxValue = new decimal(new int[] { 1, 0, 0, 131072}); this.txtLowestOddValue.Properties.MinValue = new decimal(new int[] { 1, 0, 0, 131072}); this.txtLowestOddValue.Size = new System.Drawing.Size(85, 20); this.txtLowestOddValue.TabIndex = 12; // // labelControl9 // this.labelControl9.Location = new System.Drawing.Point(5, 123); this.labelControl9.Name = "labelControl9"; this.labelControl9.Size = new System.Drawing.Size(90, 13); this.labelControl9.TabIndex = 11; this.labelControl9.Text = "Lowest Odd Value:"; // // txtOddValueDifferenet // this.txtOddValueDifferenet.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtOddValueDifferenet.EditValue = new decimal(new int[] { 1, 0, 0, -2147352576}); this.txtOddValueDifferenet.Location = new System.Drawing.Point(110, 94); this.txtOddValueDifferenet.Name = "txtOddValueDifferenet"; this.txtOddValueDifferenet.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtOddValueDifferenet.Properties.Increment = new decimal(new int[] { 1, 0, 0, -2147352576}); this.txtOddValueDifferenet.Properties.MinValue = new decimal(new int[] { 2, 0, 0, -2147352576}); this.txtOddValueDifferenet.Size = new System.Drawing.Size(85, 20); this.txtOddValueDifferenet.TabIndex = 10; // // checkEdit6 // this.checkEdit6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit6.EditValue = true; this.checkEdit6.Location = new System.Drawing.Point(108, 51); this.checkEdit6.Name = "checkEdit6"; this.checkEdit6.Properties.Caption = "Non-Live"; this.checkEdit6.Size = new System.Drawing.Size(77, 19); this.checkEdit6.TabIndex = 8; // // checkEdit5 // this.checkEdit5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit5.EditValue = true; this.checkEdit5.Location = new System.Drawing.Point(5, 72); this.checkEdit5.Name = "checkEdit5"; this.checkEdit5.Properties.Caption = "Live"; this.checkEdit5.Size = new System.Drawing.Size(52, 19); this.checkEdit5.TabIndex = 7; // // labelControl18 // this.labelControl18.Location = new System.Drawing.Point(5, 150); this.labelControl18.Name = "labelControl18"; this.labelControl18.Size = new System.Drawing.Size(95, 13); this.labelControl18.TabIndex = 29; this.labelControl18.Text = "Min of |Won-Lose|: "; // // labelControl8 // this.labelControl8.Location = new System.Drawing.Point(5, 97); this.labelControl8.Name = "labelControl8"; this.labelControl8.Size = new System.Drawing.Size(99, 13); this.labelControl8.TabIndex = 9; this.labelControl8.Text = "Odd Value Different:"; // // checkEdit7 // this.checkEdit7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit7.Location = new System.Drawing.Point(108, 221); this.checkEdit7.Name = "checkEdit7"; this.checkEdit7.Properties.Caption = "Over 92/90"; this.checkEdit7.Size = new System.Drawing.Size(83, 19); this.checkEdit7.TabIndex = 9; // // checkEdit12 // this.checkEdit12.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit12.Location = new System.Drawing.Point(108, 196); this.checkEdit12.Name = "checkEdit12"; this.checkEdit12.Properties.Caption = "Under Equal"; this.checkEdit12.Size = new System.Drawing.Size(83, 19); this.checkEdit12.TabIndex = 23; // // checkEdit11 // this.checkEdit11.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit11.Location = new System.Drawing.Point(5, 221); this.checkEdit11.Name = "checkEdit11"; this.checkEdit11.Properties.Caption = "Over 1.75"; this.checkEdit11.Size = new System.Drawing.Size(95, 19); this.checkEdit11.TabIndex = 19; // // checkEdit10 // this.checkEdit10.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit10.Location = new System.Drawing.Point(5, 47); this.checkEdit10.Name = "checkEdit10"; this.checkEdit10.Properties.Caption = "Matches List"; this.checkEdit10.Size = new System.Drawing.Size(90, 19); this.checkEdit10.TabIndex = 19; // // checkEdit9 // this.checkEdit9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit9.Location = new System.Drawing.Point(108, 172); this.checkEdit9.Name = "checkEdit9"; this.checkEdit9.Properties.Caption = "Odd Down"; this.checkEdit9.Size = new System.Drawing.Size(76, 19); this.checkEdit9.TabIndex = 19; // // checkEdit8 // this.checkEdit8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit8.Location = new System.Drawing.Point(5, 196); this.checkEdit8.Name = "checkEdit8"; this.checkEdit8.Properties.Caption = "Over Equal"; this.checkEdit8.Size = new System.Drawing.Size(95, 19); this.checkEdit8.TabIndex = 14; // // checkEdit4 // this.checkEdit4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit4.EditValue = true; this.checkEdit4.Location = new System.Drawing.Point(108, 25); this.checkEdit4.Name = "checkEdit4"; this.checkEdit4.Properties.Caption = "Over/Under"; this.checkEdit4.Size = new System.Drawing.Size(87, 19); this.checkEdit4.TabIndex = 6; // // checkEdit3 // this.checkEdit3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit3.EditValue = true; this.checkEdit3.Location = new System.Drawing.Point(5, 26); this.checkEdit3.Name = "checkEdit3"; this.checkEdit3.Properties.Caption = "Handicap"; this.checkEdit3.Size = new System.Drawing.Size(90, 19); this.checkEdit3.TabIndex = 5; // // groupControl4 // this.groupControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupControl4.Controls.Add(this.txtSBOBETFixedStake); this.groupControl4.Controls.Add(this.labelControl2); this.groupControl4.Controls.Add(this.txtStake); this.groupControl4.Controls.Add(this.chbRandomStake); this.groupControl4.Controls.Add(this.txtIBETFixedStake); this.groupControl4.Controls.Add(this.labelControl6); this.groupControl4.Location = new System.Drawing.Point(621, 3); this.groupControl4.Name = "groupControl4"; this.groupControl4.Size = new System.Drawing.Size(200, 243); this.groupControl4.TabIndex = 12; this.groupControl4.Text = "Stake Settings"; // // txtSBOBETFixedStake // this.txtSBOBETFixedStake.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtSBOBETFixedStake.EditValue = new decimal(new int[] { 25, 0, 0, 0}); this.txtSBOBETFixedStake.Location = new System.Drawing.Point(112, 51); this.txtSBOBETFixedStake.Name = "txtSBOBETFixedStake"; this.txtSBOBETFixedStake.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtSBOBETFixedStake.Properties.IsFloatValue = false; this.txtSBOBETFixedStake.Properties.Mask.EditMask = "N00"; this.txtSBOBETFixedStake.Size = new System.Drawing.Size(83, 20); this.txtSBOBETFixedStake.TabIndex = 5; // // labelControl2 // this.labelControl2.Location = new System.Drawing.Point(5, 54); this.labelControl2.Name = "labelControl2"; this.labelControl2.Size = new System.Drawing.Size(101, 13); this.labelControl2.TabIndex = 4; this.labelControl2.Text = "SBOBET Fixed Stake:"; // // txtStake // this.txtStake.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.txtStake.EditValue = "10\r\n20\r\n15\r\n5"; this.txtStake.Location = new System.Drawing.Point(5, 103); this.txtStake.Name = "txtStake"; this.txtStake.Size = new System.Drawing.Size(190, 135); this.txtStake.TabIndex = 3; // // chbRandomStake // this.chbRandomStake.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.chbRandomStake.EditValue = true; this.chbRandomStake.Location = new System.Drawing.Point(3, 78); this.chbRandomStake.Name = "chbRandomStake"; this.chbRandomStake.Properties.Caption = "Random Stake"; this.chbRandomStake.Size = new System.Drawing.Size(192, 19); this.chbRandomStake.TabIndex = 2; this.chbRandomStake.CheckedChanged += new System.EventHandler(this.chbRandomStake_CheckedChanged); // // txtIBETFixedStake // this.txtIBETFixedStake.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtIBETFixedStake.EditValue = new decimal(new int[] { 25, 0, 0, 0}); this.txtIBETFixedStake.Location = new System.Drawing.Point(112, 25); this.txtIBETFixedStake.Name = "txtIBETFixedStake"; this.txtIBETFixedStake.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtIBETFixedStake.Properties.IsFloatValue = false; this.txtIBETFixedStake.Properties.Mask.EditMask = "N00"; this.txtIBETFixedStake.Size = new System.Drawing.Size(83, 20); this.txtIBETFixedStake.TabIndex = 1; // // labelControl6 // this.labelControl6.Location = new System.Drawing.Point(5, 28); this.labelControl6.Name = "labelControl6"; this.labelControl6.Size = new System.Drawing.Size(85, 13); this.labelControl6.TabIndex = 0; this.labelControl6.Text = "IBET Fixed Stake:"; // // groupControl6 // this.groupControl6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupControl6.Controls.Add(this.chkListAllowedMatch); this.groupControl6.Location = new System.Drawing.Point(827, 3); this.groupControl6.Name = "groupControl6"; this.groupControl6.Size = new System.Drawing.Size(293, 243); this.groupControl6.TabIndex = 19; this.groupControl6.Text = "Allowed Betting Matches"; // // chkListAllowedMatch // this.chkListAllowedMatch.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.chkListAllowedMatch.CheckOnClick = true; this.chkListAllowedMatch.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Skinned; this.chkListAllowedMatch.ItemHeight = 16; this.chkListAllowedMatch.Location = new System.Drawing.Point(5, 25); this.chkListAllowedMatch.Name = "chkListAllowedMatch"; this.chkListAllowedMatch.Size = new System.Drawing.Size(283, 213); this.chkListAllowedMatch.TabIndex = 20; // // xtraTabPage5 // this.xtraTabPage5.Controls.Add(this.grdTransaction); this.xtraTabPage5.Name = "xtraTabPage5"; this.xtraTabPage5.Size = new System.Drawing.Size(1124, 249); this.xtraTabPage5.Text = "Live Transaction"; // // grdTransaction // this.grdTransaction.Dock = System.Windows.Forms.DockStyle.Fill; this.grdTransaction.Location = new System.Drawing.Point(0, 0); this.grdTransaction.MainView = this.gridView2; this.grdTransaction.Name = "grdTransaction"; this.grdTransaction.Size = new System.Drawing.Size(1124, 249); this.grdTransaction.TabIndex = 3; this.grdTransaction.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView2}); // // gridView2 // this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn1, this.gridColumn2, this.gridColumn3, this.gridColumn6, this.gridColumn4, this.gridColumn5, this.gridColumn7, this.gridColumn8, this.gridColumn9, this.gridColumn10, this.gridColumn11, this.gridColumn12, this.gridColumn20, this.gridColumn13}); this.gridView2.GridControl = this.grdTransaction; this.gridView2.Name = "gridView2"; this.gridView2.OptionsBehavior.Editable = false; this.gridView2.OptionsCustomization.AllowGroup = false; this.gridView2.OptionsView.AutoCalcPreviewLineCount = true; this.gridView2.OptionsView.ShowAutoFilterRow = true; this.gridView2.OptionsView.ShowFooter = true; this.gridView2.OptionsView.ShowGroupPanel = false; this.gridView2.OptionsView.ShowPreview = true; this.gridView2.PreviewFieldName = "Note"; this.gridView2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn13, DevExpress.Data.ColumnSortOrder.Descending)}); // // gridColumn1 // this.gridColumn1.Caption = "ID"; this.gridColumn1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.gridColumn1.FieldName = "ID"; this.gridColumn1.Name = "gridColumn1"; this.gridColumn1.OptionsColumn.FixedWidth = true; this.gridColumn1.UnboundType = DevExpress.Data.UnboundColumnType.Integer; this.gridColumn1.Visible = true; this.gridColumn1.VisibleIndex = 0; this.gridColumn1.Width = 50; // // gridColumn2 // this.gridColumn2.Caption = "Home Team"; this.gridColumn2.FieldName = "HomeTeamName"; this.gridColumn2.Name = "gridColumn2"; this.gridColumn2.UnboundType = DevExpress.Data.UnboundColumnType.String; this.gridColumn2.Visible = true; this.gridColumn2.VisibleIndex = 1; this.gridColumn2.Width = 20; // // gridColumn3 // this.gridColumn3.Caption = "Away Team"; this.gridColumn3.FieldName = "AwayTeamName"; this.gridColumn3.Name = "gridColumn3"; this.gridColumn3.UnboundType = DevExpress.Data.UnboundColumnType.String; this.gridColumn3.Visible = true; this.gridColumn3.VisibleIndex = 2; this.gridColumn3.Width = 20; // // gridColumn6 // this.gridColumn6.Caption = "Type"; this.gridColumn6.FieldName = "OddType"; this.gridColumn6.Name = "gridColumn6"; this.gridColumn6.OptionsColumn.FixedWidth = true; this.gridColumn6.UnboundType = DevExpress.Data.UnboundColumnType.String; this.gridColumn6.Visible = true; this.gridColumn6.VisibleIndex = 3; this.gridColumn6.Width = 180; // // gridColumn4 // this.gridColumn4.Caption = "Odd"; this.gridColumn4.FieldName = "OddKindValue"; this.gridColumn4.Name = "gridColumn4"; this.gridColumn4.OptionsColumn.FixedWidth = true; this.gridColumn4.UnboundType = DevExpress.Data.UnboundColumnType.String; this.gridColumn4.Visible = true; this.gridColumn4.VisibleIndex = 4; // // gridColumn5 // this.gridColumn5.Caption = "Value"; this.gridColumn5.FieldName = "OddValue"; this.gridColumn5.Name = "gridColumn5"; this.gridColumn5.OptionsColumn.FixedWidth = true; this.gridColumn5.UnboundType = DevExpress.Data.UnboundColumnType.String; this.gridColumn5.Visible = true; this.gridColumn5.VisibleIndex = 5; this.gridColumn5.Width = 80; // // gridColumn7 // this.gridColumn7.Caption = "Stake"; this.gridColumn7.FieldName = "Stake"; this.gridColumn7.Name = "gridColumn7"; this.gridColumn7.OptionsColumn.FixedWidth = true; this.gridColumn7.UnboundType = DevExpress.Data.UnboundColumnType.String; this.gridColumn7.Visible = true; this.gridColumn7.VisibleIndex = 6; this.gridColumn7.Width = 100; // // gridColumn8 // this.gridColumn8.Caption = "I Allow"; this.gridColumn8.FieldName = "IBETAllow"; this.gridColumn8.Name = "gridColumn8"; this.gridColumn8.OptionsColumn.FixedWidth = true; this.gridColumn8.UnboundType = DevExpress.Data.UnboundColumnType.Boolean; this.gridColumn8.Visible = true; this.gridColumn8.VisibleIndex = 7; this.gridColumn8.Width = 50; // // gridColumn9 // this.gridColumn9.Caption = "B Allow"; this.gridColumn9.FieldName = "SBOBETAllow"; this.gridColumn9.Name = "gridColumn9"; this.gridColumn9.OptionsColumn.FixedWidth = true; this.gridColumn9.UnboundType = DevExpress.Data.UnboundColumnType.Boolean; this.gridColumn9.Visible = true; this.gridColumn9.VisibleIndex = 8; this.gridColumn9.Width = 50; // // gridColumn10 // this.gridColumn10.Caption = "I Trade"; this.gridColumn10.FieldName = "IBETTrade"; this.gridColumn10.Name = "gridColumn10"; this.gridColumn10.OptionsColumn.FixedWidth = true; this.gridColumn10.UnboundType = DevExpress.Data.UnboundColumnType.Boolean; this.gridColumn10.Visible = true; this.gridColumn10.VisibleIndex = 9; this.gridColumn10.Width = 50; // // gridColumn11 // this.gridColumn11.Caption = "B Trade"; this.gridColumn11.FieldName = "SBOBETTrade"; this.gridColumn11.Name = "gridColumn11"; this.gridColumn11.OptionsColumn.FixedWidth = true; this.gridColumn11.UnboundType = DevExpress.Data.UnboundColumnType.Boolean; this.gridColumn11.Visible = true; this.gridColumn11.VisibleIndex = 10; this.gridColumn11.Width = 50; // // gridColumn12 // this.gridColumn12.Caption = "B Retrade"; this.gridColumn12.FieldName = "SBOBETReTrade"; this.gridColumn12.Name = "gridColumn12"; this.gridColumn12.OptionsColumn.FixedWidth = true; this.gridColumn12.UnboundType = DevExpress.Data.UnboundColumnType.Boolean; this.gridColumn12.Visible = true; this.gridColumn12.VisibleIndex = 11; this.gridColumn12.Width = 50; // // gridColumn20 // this.gridColumn20.Caption = "I Retrade"; this.gridColumn20.FieldName = "IBETReTrade"; this.gridColumn20.Name = "gridColumn20"; this.gridColumn20.OptionsColumn.FixedWidth = true; this.gridColumn20.UnboundType = DevExpress.Data.UnboundColumnType.Boolean; this.gridColumn20.Visible = true; this.gridColumn20.VisibleIndex = 12; this.gridColumn20.Width = 50; // // gridColumn13 // this.gridColumn13.Caption = "DateTime"; this.gridColumn13.DisplayFormat.FormatString = "dd/MM/yyyy hh:mm:ss"; this.gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.gridColumn13.FieldName = "DateTime"; this.gridColumn13.Name = "gridColumn13"; this.gridColumn13.OptionsColumn.FixedWidth = true; this.gridColumn13.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value; this.gridColumn13.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count)}); this.gridColumn13.UnboundType = DevExpress.Data.UnboundColumnType.DateTime; this.gridColumn13.Visible = true; this.gridColumn13.VisibleIndex = 13; this.gridColumn13.Width = 130; // // panelControl5 // this.panelControl5.Location = new System.Drawing.Point(0, 0); this.panelControl5.Name = "panelControl5"; this.panelControl5.Size = new System.Drawing.Size(200, 100); this.panelControl5.TabIndex = 0; // // panelControl4 // this.panelControl4.Location = new System.Drawing.Point(0, 0); this.panelControl4.Name = "panelControl4"; this.panelControl4.Size = new System.Drawing.Size(200, 100); this.panelControl4.TabIndex = 0; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(2, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(50, 13); this.label1.TabIndex = 9; this.label1.Text = "Address:"; // // xtraTabPage2 // this.xtraTabPage2.Name = "xtraTabPage2"; this.xtraTabPage2.Size = new System.Drawing.Size(0, 0); // // panelControl3 // this.panelControl3.Location = new System.Drawing.Point(0, 0); this.panelControl3.Name = "panelControl3"; this.panelControl3.Size = new System.Drawing.Size(200, 100); this.panelControl3.TabIndex = 0; // // panelControl2 // this.panelControl2.Location = new System.Drawing.Point(0, 0); this.panelControl2.Name = "panelControl2"; this.panelControl2.Size = new System.Drawing.Size(200, 100); this.panelControl2.TabIndex = 0; // // labelControl1 // this.labelControl1.Location = new System.Drawing.Point(0, 0); this.labelControl1.Name = "labelControl1"; this.labelControl1.Size = new System.Drawing.Size(75, 14); this.labelControl1.TabIndex = 0; // // labelControl5 // this.labelControl5.Location = new System.Drawing.Point(5, 9); this.labelControl5.Name = "labelControl5"; this.labelControl5.Size = new System.Drawing.Size(43, 13); this.labelControl5.TabIndex = 6; this.labelControl5.Text = "Address:"; // // panelControl9 // this.panelControl9.Location = new System.Drawing.Point(0, 0); this.panelControl9.Name = "panelControl9"; this.panelControl9.Size = new System.Drawing.Size(200, 100); this.panelControl9.TabIndex = 0; // // panelControl10 // this.panelControl10.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.panelControl10.Controls.Add(this.btnIBETGO2); this.panelControl10.Controls.Add(this.txtIBETAddress2); this.panelControl10.Controls.Add(this.labelControl5); this.panelControl10.Location = new System.Drawing.Point(3, 3); this.panelControl10.Name = "panelControl10"; this.panelControl10.Size = new System.Drawing.Size(987, 29); this.panelControl10.TabIndex = 2; // // btnIBETGO2 // this.btnIBETGO2.Location = new System.Drawing.Point(0, 0); this.btnIBETGO2.Name = "btnIBETGO2"; this.btnIBETGO2.Size = new System.Drawing.Size(75, 23); this.btnIBETGO2.TabIndex = 0; // // txtIBETAddress2 // this.txtIBETAddress2.Location = new System.Drawing.Point(0, 0); this.txtIBETAddress2.Name = "txtIBETAddress2"; this.txtIBETAddress2.Size = new System.Drawing.Size(100, 20); this.txtIBETAddress2.TabIndex = 1; // // xtraTabPage9 // this.xtraTabPage9.Controls.Add(this.panelControl9); this.xtraTabPage9.Controls.Add(this.panelControl10); this.xtraTabPage9.Name = "xtraTabPage9"; this.xtraTabPage9.Size = new System.Drawing.Size(993, 276); this.xtraTabPage9.Text = "ibet Test"; // // TerminalFormIBETSBO // this.ClientSize = new System.Drawing.Size(1130, 678); this.Controls.Add(this.splitContainerControl1); this.Controls.Add(this.ribbonControl1); this.Icon = global::iBet.App.Properties.Resources._2; this.Name = "TerminalFormIBETSBO"; this.Ribbon = this.ribbonControl1; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "IBET vs SBOBET"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TerminalFormIBETSBO_FormClosing); ((System.ComponentModel.ISupportInitialize)(this.pmNew)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pmNewR)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit(); this.splitContainerControl1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit(); this.xtraTabControl1.ResumeLayout(false); this.xtraTabPageMatches.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.grdSameMatch)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit(); this.xtraTabPageBetList1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.girdBetList1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).EndInit(); this.xtraTabControl2.ResumeLayout(false); this.xtraTabPage4.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit(); this.groupControl2.ResumeLayout(false); this.groupControl2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit18.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit17.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit4.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtTransactionTimeSpan.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtMaxTimePerHalf.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.chbAllowHalftime.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit(); this.groupControl1.ResumeLayout(false); this.groupControl1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit15.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit14.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit13.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtSBOBETUpdateInterval.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtIBETUpdateInterval.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit(); this.groupControl5.ResumeLayout(false); this.groupControl5.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.chbHighRevenueBoost.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtAddValue.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtLowestOddValue.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtOddValueDifferenet.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit12.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit11.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit(); this.groupControl4.ResumeLayout(false); this.groupControl4.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.txtSBOBETFixedStake.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtStake.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.chbRandomStake.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtIBETFixedStake.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit(); this.groupControl6.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.chkListAllowedMatch)).EndInit(); this.xtraTabPage5.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.grdTransaction)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).EndInit(); this.panelControl10.ResumeLayout(false); this.panelControl10.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.txtIBETAddress2.Properties)).EndInit(); this.xtraTabPage9.ResumeLayout(false); this.ResumeLayout(false); }
private void InitializeComponent() { this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl(); this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem(); this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem(); this.barStaticItem3 = new DevExpress.XtraBars.BarStaticItem(); this.btnSbobetGetInfo = new DevExpress.XtraBars.BarButtonItem(); this.lblSbobetCurrentCredit = new DevExpress.XtraBars.BarStaticItem(); this.lblSbobetTotalMatch = new DevExpress.XtraBars.BarStaticItem(); this.lblSbobetLastUpdate = new DevExpress.XtraBars.BarStaticItem(); this.barStaticItem7 = new DevExpress.XtraBars.BarStaticItem(); this.barStaticItem8 = new DevExpress.XtraBars.BarStaticItem(); this.barStaticItem9 = new DevExpress.XtraBars.BarStaticItem(); this.lblIbetCurrentCredit = new DevExpress.XtraBars.BarStaticItem(); this.lblIbetTotalMatch = new DevExpress.XtraBars.BarStaticItem(); this.lblIbetLastUpdate = new DevExpress.XtraBars.BarStaticItem(); this.btnIbetGetInfo = new DevExpress.XtraBars.BarButtonItem(); this.lblStatus = new DevExpress.XtraBars.BarStaticItem(); this.lblSameMatch = new DevExpress.XtraBars.BarStaticItem(); this.lblLastUpdate = new DevExpress.XtraBars.BarStaticItem(); this.btnStart = new DevExpress.XtraBars.BarButtonItem(); this.btnStop = new DevExpress.XtraBars.BarButtonItem(); this.btnClear = new DevExpress.XtraBars.BarButtonItem(); this.lblIBETWinLost = new DevExpress.XtraBars.BarStaticItem(); this.lblIBETCom = new DevExpress.XtraBars.BarStaticItem(); this.lblIBETReject = new DevExpress.XtraBars.BarStaticItem(); this.barStaticItem4 = new DevExpress.XtraBars.BarStaticItem(); this.barStaticItem5 = new DevExpress.XtraBars.BarStaticItem(); this.barStaticItem6 = new DevExpress.XtraBars.BarStaticItem(); this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage(); this.rpgIbet = new DevExpress.XtraBars.Ribbon.RibbonPageGroup(); this.rpgSbobet = new DevExpress.XtraBars.Ribbon.RibbonPageGroup(); this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup(); this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup(); this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl(); this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl(); this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage(); this.panelControl5 = new DevExpress.XtraEditors.PanelControl(); this.webIBET = new System.Windows.Forms.WebBrowser(); this.panelControl4 = new DevExpress.XtraEditors.PanelControl(); this.cbeSignatureTemplate = new DevExpress.XtraEditors.ComboBoxEdit(); this.label1 = new System.Windows.Forms.Label(); this.btnIBETGO = new DevExpress.XtraEditors.SimpleButton(); this.txtIBETAddress = new DevExpress.XtraEditors.TextEdit(); this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage(); this.panelControl3 = new DevExpress.XtraEditors.PanelControl(); this.webSBOBET = new System.Windows.Forms.WebBrowser(); this.panelControl2 = new DevExpress.XtraEditors.PanelControl(); this.chooseSBOServer = new DevExpress.XtraEditors.ComboBoxEdit(); this.btnSBOBETGO = new DevExpress.XtraEditors.SimpleButton(); this.txtSBOBETAddress = new DevExpress.XtraEditors.TextEdit(); this.labelControl1 = new DevExpress.XtraEditors.LabelControl(); this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage(); this.grdSameMatch = new DevExpress.XtraGrid.GridControl(); this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn(); this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage(); this.gridNonLiveMatch = new DevExpress.XtraGrid.GridControl(); this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn(); this.tabBetList = new DevExpress.XtraTab.XtraTabPage(); this.grdBetList = new DevExpress.XtraGrid.GridControl(); this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView(); this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn(); this.xtraTabControl2 = new DevExpress.XtraTab.XtraTabControl(); this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage(); this.groupControl2 = new DevExpress.XtraEditors.GroupControl(); this.txtTransactionTimeSpan = new DevExpress.XtraEditors.SpinEdit(); this.labelControl10 = new DevExpress.XtraEditors.LabelControl(); this.txtMaxTimePerHalf = new DevExpress.XtraEditors.SpinEdit(); this.labelControl7 = new DevExpress.XtraEditors.LabelControl(); this.chbAllowHalftime = new DevExpress.XtraEditors.CheckEdit(); this.groupControl1 = new DevExpress.XtraEditors.GroupControl(); this.chkProxy = new DevExpress.XtraEditors.CheckEdit(); this.btnStatus = new DevExpress.XtraEditors.SimpleButton(); this.btnSetUpdateInterval = new DevExpress.XtraEditors.SimpleButton(); this.txtSBOBETUpdateInterval = new DevExpress.XtraEditors.SpinEdit(); this.labelControl3 = new DevExpress.XtraEditors.LabelControl(); this.txtIBETUpdateInterval = new DevExpress.XtraEditors.SpinEdit(); this.labelControl4 = new DevExpress.XtraEditors.LabelControl(); this.groupControl5 = new DevExpress.XtraEditors.GroupControl(); this.chkEnable = new DevExpress.XtraEditors.CheckEdit(); this.chkFollowType = new DevExpress.XtraEditors.CheckEdit(); this.txtLowestOddValue = new DevExpress.XtraEditors.SpinEdit(); this.labelControl9 = new DevExpress.XtraEditors.LabelControl(); this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit5 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit12 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit(); this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit(); this.groupControl4 = new DevExpress.XtraEditors.GroupControl(); this.chkFollowPercent = new DevExpress.XtraEditors.CheckEdit(); this.txtIBETFixedStake = new DevExpress.XtraEditors.SpinEdit(); this.labelControl11 = new DevExpress.XtraEditors.LabelControl(); this.labelControl6 = new DevExpress.XtraEditors.LabelControl(); this.txtAllowTradeMinValue = new DevExpress.XtraEditors.SpinEdit(); this.txtFollowPercent = new DevExpress.XtraEditors.SpinEdit(); this.groupControl6 = new DevExpress.XtraEditors.GroupControl(); this.txtListFollowAccounts = new DevExpress.XtraEditors.MemoEdit(); this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage(); this.grdTransaction = new DevExpress.XtraGrid.GridControl(); this.gridView2 = 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.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn(); this.labelControl5 = new DevExpress.XtraEditors.LabelControl(); ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit(); this.splitContainerControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit(); this.xtraTabControl1.SuspendLayout(); this.xtraTabPage1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit(); this.panelControl5.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit(); this.panelControl4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.cbeSignatureTemplate.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtIBETAddress.Properties)).BeginInit(); this.xtraTabPage2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit(); this.panelControl3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit(); this.panelControl2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.chooseSBOServer.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtSBOBETAddress.Properties)).BeginInit(); this.xtraTabPage3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.grdSameMatch)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit(); this.xtraTabPage6.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridNonLiveMatch)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit(); this.tabBetList.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.grdBetList)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).BeginInit(); this.xtraTabControl2.SuspendLayout(); this.xtraTabPage4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit(); this.groupControl2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.txtTransactionTimeSpan.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtMaxTimePerHalf.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.chbAllowHalftime.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit(); this.groupControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.chkProxy.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtSBOBETUpdateInterval.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtIBETUpdateInterval.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit(); this.groupControl5.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.chkEnable.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.chkFollowType.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtLowestOddValue.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit12.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit(); this.groupControl4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.chkFollowPercent.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtIBETFixedStake.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtAllowTradeMinValue.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtFollowPercent.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit(); this.groupControl6.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.txtListFollowAccounts.Properties)).BeginInit(); this.xtraTabPage5.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.grdTransaction)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit(); this.SuspendLayout(); // // ribbonControl1 // this.ribbonControl1.ApplicationButtonText = null; // // // this.ribbonControl1.ExpandCollapseItem.Id = 0; this.ribbonControl1.ExpandCollapseItem.Name = ""; this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] { this.ribbonControl1.ExpandCollapseItem, this.barStaticItem1, this.barStaticItem2, this.barStaticItem3, this.btnSbobetGetInfo, this.lblSbobetCurrentCredit, this.lblSbobetTotalMatch, this.lblSbobetLastUpdate, this.barStaticItem7, this.barStaticItem8, this.barStaticItem9, this.lblIbetCurrentCredit, this.lblIbetTotalMatch, this.lblIbetLastUpdate, this.btnIbetGetInfo, this.lblStatus, this.lblSameMatch, this.lblLastUpdate, this.btnStart, this.btnStop, this.btnClear, this.lblIBETWinLost, this.lblIBETCom, this.lblIBETReject, this.barStaticItem4, this.barStaticItem5, this.barStaticItem6}); this.ribbonControl1.Location = new System.Drawing.Point(0, 0); this.ribbonControl1.MaxItemId = 37; this.ribbonControl1.Name = "ribbonControl1"; this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] { this.ribbonPage1}); this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010; this.ribbonControl1.SelectedPage = this.ribbonPage1; this.ribbonControl1.ShowCategoryInCaption = false; this.ribbonControl1.ShowExpandCollapseButton = DevExpress.Utils.DefaultBoolean.False; this.ribbonControl1.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Hide; this.ribbonControl1.ShowToolbarCustomizeItem = false; this.ribbonControl1.Size = new System.Drawing.Size(1130, 125); this.ribbonControl1.Toolbar.ShowCustomizeItem = false; // // barStaticItem1 // this.barStaticItem1.Caption = "Current Credit:"; this.barStaticItem1.Id = 1; this.barStaticItem1.Name = "barStaticItem1"; this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near; // // barStaticItem2 // this.barStaticItem2.Caption = "Total Match:"; this.barStaticItem2.Id = 2; this.barStaticItem2.Name = "barStaticItem2"; this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near; // // barStaticItem3 // this.barStaticItem3.Caption = "Last Update:"; this.barStaticItem3.Id = 3; this.barStaticItem3.Name = "barStaticItem3"; this.barStaticItem3.TextAlignment = System.Drawing.StringAlignment.Near; // // btnSbobetGetInfo // this.btnSbobetGetInfo.Caption = "Get Info"; this.btnSbobetGetInfo.Id = 4; this.btnSbobetGetInfo.LargeGlyph = global::iBet.App.Properties.Resources.i8; this.btnSbobetGetInfo.Name = "btnSbobetGetInfo"; this.btnSbobetGetInfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSbobetGetInfo_ItemClick); // // lblSbobetCurrentCredit // this.lblSbobetCurrentCredit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblSbobetCurrentCredit.Appearance.Options.UseFont = true; this.lblSbobetCurrentCredit.Caption = "-"; this.lblSbobetCurrentCredit.Id = 5; this.lblSbobetCurrentCredit.Name = "lblSbobetCurrentCredit"; this.lblSbobetCurrentCredit.TextAlignment = System.Drawing.StringAlignment.Far; this.lblSbobetCurrentCredit.Width = 135; // // lblSbobetTotalMatch // this.lblSbobetTotalMatch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblSbobetTotalMatch.Appearance.Options.UseFont = true; this.lblSbobetTotalMatch.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None; this.lblSbobetTotalMatch.Caption = "-"; this.lblSbobetTotalMatch.Id = 6; this.lblSbobetTotalMatch.Name = "lblSbobetTotalMatch"; this.lblSbobetTotalMatch.TextAlignment = System.Drawing.StringAlignment.Far; this.lblSbobetTotalMatch.Width = 135; // // lblSbobetLastUpdate // this.lblSbobetLastUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblSbobetLastUpdate.Appearance.Options.UseFont = true; this.lblSbobetLastUpdate.Caption = "-"; this.lblSbobetLastUpdate.Id = 8; this.lblSbobetLastUpdate.Name = "lblSbobetLastUpdate"; this.lblSbobetLastUpdate.TextAlignment = System.Drawing.StringAlignment.Far; this.lblSbobetLastUpdate.Width = 135; // // barStaticItem7 // this.barStaticItem7.Caption = "Current Credit:"; this.barStaticItem7.Id = 9; this.barStaticItem7.Name = "barStaticItem7"; this.barStaticItem7.TextAlignment = System.Drawing.StringAlignment.Near; // // barStaticItem8 // this.barStaticItem8.Caption = "Total Already Running:"; this.barStaticItem8.Id = 10; this.barStaticItem8.Name = "barStaticItem8"; this.barStaticItem8.TextAlignment = System.Drawing.StringAlignment.Near; // // barStaticItem9 // this.barStaticItem9.Caption = "Last Update:"; this.barStaticItem9.Id = 11; this.barStaticItem9.Name = "barStaticItem9"; this.barStaticItem9.TextAlignment = System.Drawing.StringAlignment.Near; // // lblIbetCurrentCredit // this.lblIbetCurrentCredit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblIbetCurrentCredit.Appearance.Options.UseFont = true; this.lblIbetCurrentCredit.Caption = "-"; this.lblIbetCurrentCredit.Id = 12; this.lblIbetCurrentCredit.Name = "lblIbetCurrentCredit"; this.lblIbetCurrentCredit.TextAlignment = System.Drawing.StringAlignment.Far; this.lblIbetCurrentCredit.Width = 135; // // lblIbetTotalMatch // this.lblIbetTotalMatch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblIbetTotalMatch.Appearance.Options.UseFont = true; this.lblIbetTotalMatch.Caption = "-"; this.lblIbetTotalMatch.Id = 13; this.lblIbetTotalMatch.Name = "lblIbetTotalMatch"; this.lblIbetTotalMatch.TextAlignment = System.Drawing.StringAlignment.Far; this.lblIbetTotalMatch.Width = 135; // // lblIbetLastUpdate // this.lblIbetLastUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblIbetLastUpdate.Appearance.Options.UseFont = true; this.lblIbetLastUpdate.Caption = "-"; this.lblIbetLastUpdate.Id = 14; this.lblIbetLastUpdate.Name = "lblIbetLastUpdate"; this.lblIbetLastUpdate.TextAlignment = System.Drawing.StringAlignment.Far; this.lblIbetLastUpdate.Width = 135; // // btnIbetGetInfo // this.btnIbetGetInfo.Caption = "Get Info"; this.btnIbetGetInfo.Id = 15; this.btnIbetGetInfo.LargeGlyph = global::iBet.App.Properties.Resources.i8; this.btnIbetGetInfo.Name = "btnIbetGetInfo"; this.btnIbetGetInfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick); // // lblStatus // this.lblStatus.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblStatus.Appearance.Options.UseFont = true; this.lblStatus.Caption = "STOPPED"; this.lblStatus.Id = 16; this.lblStatus.Name = "lblStatus"; this.lblStatus.TextAlignment = System.Drawing.StringAlignment.Center; this.lblStatus.Width = 135; // // lblSameMatch // this.lblSameMatch.Caption = "Total waiting list: -"; this.lblSameMatch.Id = 17; this.lblSameMatch.Name = "lblSameMatch"; this.lblSameMatch.TextAlignment = System.Drawing.StringAlignment.Center; this.lblSameMatch.Width = 135; // // lblLastUpdate // this.lblLastUpdate.Caption = "-"; this.lblLastUpdate.Id = 18; this.lblLastUpdate.Name = "lblLastUpdate"; this.lblLastUpdate.TextAlignment = System.Drawing.StringAlignment.Center; this.lblLastUpdate.Width = 135; // // btnStart // this.btnStart.Caption = "Start"; this.btnStart.Enabled = false; this.btnStart.Id = 19; this.btnStart.LargeGlyph = global::iBet.App.Properties.Resources.i5; this.btnStart.Name = "btnStart"; this.btnStart.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnStart_ItemClick); // // btnStop // this.btnStop.Caption = "Stop"; this.btnStop.Enabled = false; this.btnStop.Id = 20; this.btnStop.LargeGlyph = global::iBet.App.Properties.Resources.i6; this.btnStop.Name = "btnStop"; this.btnStop.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnStop_ItemClick); // // btnClear // this.btnClear.Caption = "Clear"; this.btnClear.Enabled = false; this.btnClear.Id = 21; this.btnClear.LargeGlyph = global::iBet.App.Properties.Resources.i7; this.btnClear.Name = "btnClear"; this.btnClear.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnClear_ItemClick); // // lblIBETWinLost // this.lblIBETWinLost.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.lblIBETWinLost.Appearance.Options.UseFont = true; this.lblIBETWinLost.Caption = "-"; this.lblIBETWinLost.Id = 25; this.lblIBETWinLost.Name = "lblIBETWinLost"; this.lblIBETWinLost.TextAlignment = System.Drawing.StringAlignment.Far; // // lblIBETCom // this.lblIBETCom.Caption = "-"; this.lblIBETCom.Id = 26; this.lblIBETCom.Name = "lblIBETCom"; this.lblIBETCom.TextAlignment = System.Drawing.StringAlignment.Near; // // lblIBETReject // this.lblIBETReject.Caption = "-"; this.lblIBETReject.Id = 27; this.lblIBETReject.Name = "lblIBETReject"; this.lblIBETReject.TextAlignment = System.Drawing.StringAlignment.Near; // // barStaticItem4 // this.barStaticItem4.Caption = "Win:"; this.barStaticItem4.Id = 31; this.barStaticItem4.Name = "barStaticItem4"; this.barStaticItem4.TextAlignment = System.Drawing.StringAlignment.Near; // // barStaticItem5 // this.barStaticItem5.Caption = "Com:"; this.barStaticItem5.Id = 32; this.barStaticItem5.Name = "barStaticItem5"; this.barStaticItem5.TextAlignment = System.Drawing.StringAlignment.Near; // // barStaticItem6 // this.barStaticItem6.Caption = "Reject:"; this.barStaticItem6.Id = 33; this.barStaticItem6.Name = "barStaticItem6"; this.barStaticItem6.TextAlignment = System.Drawing.StringAlignment.Near; // // ribbonPage1 // this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] { this.rpgIbet, this.rpgSbobet, this.ribbonPageGroup3, this.ribbonPageGroup4}); this.ribbonPage1.Name = "ribbonPage1"; this.ribbonPage1.Text = "ribbonPage1"; // // rpgIbet // this.rpgIbet.ItemLinks.Add(this.barStaticItem7); this.rpgIbet.ItemLinks.Add(this.barStaticItem8); this.rpgIbet.ItemLinks.Add(this.barStaticItem9); this.rpgIbet.ItemLinks.Add(this.lblIbetCurrentCredit); this.rpgIbet.ItemLinks.Add(this.lblIbetTotalMatch); this.rpgIbet.ItemLinks.Add(this.lblIbetLastUpdate); this.rpgIbet.ItemLinks.Add(this.btnIbetGetInfo); this.rpgIbet.ItemLinks.Add(this.barStaticItem4); this.rpgIbet.ItemLinks.Add(this.barStaticItem5); this.rpgIbet.ItemLinks.Add(this.barStaticItem6); this.rpgIbet.ItemLinks.Add(this.lblIBETWinLost); this.rpgIbet.ItemLinks.Add(this.lblIBETCom); this.rpgIbet.ItemLinks.Add(this.lblIBETReject); this.rpgIbet.Name = "rpgIbet"; this.rpgIbet.ShowCaptionButton = false; this.rpgIbet.Text = "IBET"; // // rpgSbobet // this.rpgSbobet.ItemLinks.Add(this.barStaticItem1); this.rpgSbobet.ItemLinks.Add(this.barStaticItem2); this.rpgSbobet.ItemLinks.Add(this.barStaticItem3); this.rpgSbobet.ItemLinks.Add(this.lblSbobetCurrentCredit); this.rpgSbobet.ItemLinks.Add(this.lblSbobetTotalMatch); this.rpgSbobet.ItemLinks.Add(this.lblSbobetLastUpdate); this.rpgSbobet.ItemLinks.Add(this.btnSbobetGetInfo); this.rpgSbobet.Name = "rpgSbobet"; this.rpgSbobet.ShowCaptionButton = false; this.rpgSbobet.Text = "SUB IBET"; // // ribbonPageGroup3 // this.ribbonPageGroup3.ItemLinks.Add(this.lblStatus); this.ribbonPageGroup3.ItemLinks.Add(this.lblSameMatch); this.ribbonPageGroup3.ItemLinks.Add(this.lblLastUpdate); this.ribbonPageGroup3.ItemLinks.Add(this.btnStart); this.ribbonPageGroup3.ItemLinks.Add(this.btnStop); this.ribbonPageGroup3.Name = "ribbonPageGroup3"; this.ribbonPageGroup3.ShowCaptionButton = false; this.ribbonPageGroup3.Text = "Status"; // // ribbonPageGroup4 // this.ribbonPageGroup4.ItemLinks.Add(this.btnClear); this.ribbonPageGroup4.Name = "ribbonPageGroup4"; this.ribbonPageGroup4.ShowCaptionButton = false; this.ribbonPageGroup4.Text = "Transaction"; // // splitContainerControl1 // this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2; this.splitContainerControl1.Horizontal = false; this.splitContainerControl1.Location = new System.Drawing.Point(0, 125); this.splitContainerControl1.Name = "splitContainerControl1"; this.splitContainerControl1.Panel1.Controls.Add(this.xtraTabControl1); this.splitContainerControl1.Panel1.Text = "Panel1"; this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControl2); this.splitContainerControl1.Panel2.Text = "Panel2"; this.splitContainerControl1.Size = new System.Drawing.Size(1130, 617); this.splitContainerControl1.SplitterPosition = 179; this.splitContainerControl1.TabIndex = 1; this.splitContainerControl1.Text = "splitContainerControl1"; // // xtraTabControl1 // this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill; 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(1130, 433); this.xtraTabControl1.TabIndex = 0; this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { this.xtraTabPage1, this.xtraTabPage2, this.xtraTabPage3, this.xtraTabPage6, this.tabBetList}); // // xtraTabPage1 // this.xtraTabPage1.Controls.Add(this.panelControl5); this.xtraTabPage1.Controls.Add(this.panelControl4); this.xtraTabPage1.Name = "xtraTabPage1"; this.xtraTabPage1.Size = new System.Drawing.Size(1124, 407); this.xtraTabPage1.Text = "IBET"; // // panelControl5 // this.panelControl5.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.panelControl5.Controls.Add(this.webIBET); this.panelControl5.Location = new System.Drawing.Point(3, 38); this.panelControl5.Name = "panelControl5"; this.panelControl5.Size = new System.Drawing.Size(1118, 366); this.panelControl5.TabIndex = 3; // // webIBET // this.webIBET.Dock = System.Windows.Forms.DockStyle.Fill; this.webIBET.Location = new System.Drawing.Point(2, 2); this.webIBET.MinimumSize = new System.Drawing.Size(20, 20); this.webIBET.Name = "webIBET"; this.webIBET.Size = new System.Drawing.Size(1114, 362); this.webIBET.TabIndex = 0; this.webIBET.Url = new System.Uri("http://www.653366.com", System.UriKind.Absolute); this.webIBET.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webIBET_DocumentCompleted); // // panelControl4 // this.panelControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.panelControl4.Controls.Add(this.cbeSignatureTemplate); this.panelControl4.Controls.Add(this.label1); this.panelControl4.Controls.Add(this.btnIBETGO); this.panelControl4.Controls.Add(this.txtIBETAddress); this.panelControl4.Location = new System.Drawing.Point(3, 3); this.panelControl4.Name = "panelControl4"; this.panelControl4.Size = new System.Drawing.Size(1118, 29); this.panelControl4.TabIndex = 2; // // cbeSignatureTemplate // this.cbeSignatureTemplate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.cbeSignatureTemplate.EditValue = "Choose Server"; this.cbeSignatureTemplate.Location = new System.Drawing.Point(871, 5); this.cbeSignatureTemplate.Name = "cbeSignatureTemplate"; this.cbeSignatureTemplate.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False; this.cbeSignatureTemplate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.cbeSignatureTemplate.Properties.DropDownRows = 10; this.cbeSignatureTemplate.Properties.Items.AddRange(new object[] { "http://www.653366.com", "http://www.ibet888.net"}); this.cbeSignatureTemplate.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.cbeSignatureTemplate.Size = new System.Drawing.Size(162, 20); this.cbeSignatureTemplate.TabIndex = 10; this.cbeSignatureTemplate.SelectedIndexChanged += new System.EventHandler(this.cbeSignatureTemplate_SelectedIndexChanged); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(2, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(50, 13); this.label1.TabIndex = 9; this.label1.Text = "Address:"; // // btnIBETGO // this.btnIBETGO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnIBETGO.Location = new System.Drawing.Point(1039, 3); this.btnIBETGO.Name = "btnIBETGO"; this.btnIBETGO.Size = new System.Drawing.Size(75, 23); this.btnIBETGO.TabIndex = 8; this.btnIBETGO.Text = "GO"; this.btnIBETGO.Click += new System.EventHandler(this.btnIBETGO_Click); // // txtIBETAddress // this.txtIBETAddress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtIBETAddress.EditValue = "http://www.653366.com"; this.txtIBETAddress.Location = new System.Drawing.Point(54, 5); this.txtIBETAddress.Name = "txtIBETAddress"; this.txtIBETAddress.Size = new System.Drawing.Size(811, 20); this.txtIBETAddress.TabIndex = 7; // // xtraTabPage2 // this.xtraTabPage2.Controls.Add(this.panelControl3); this.xtraTabPage2.Controls.Add(this.panelControl2); this.xtraTabPage2.Name = "xtraTabPage2"; this.xtraTabPage2.Size = new System.Drawing.Size(1124, 407); this.xtraTabPage2.Text = "SUB"; // // panelControl3 // this.panelControl3.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.panelControl3.Controls.Add(this.webSBOBET); this.panelControl3.Location = new System.Drawing.Point(3, 38); this.panelControl3.Name = "panelControl3"; this.panelControl3.Size = new System.Drawing.Size(1117, 410); this.panelControl3.TabIndex = 6; // // webSBOBET // this.webSBOBET.Dock = System.Windows.Forms.DockStyle.Fill; this.webSBOBET.Location = new System.Drawing.Point(2, 2); this.webSBOBET.MinimumSize = new System.Drawing.Size(20, 20); this.webSBOBET.Name = "webSBOBET"; this.webSBOBET.Size = new System.Drawing.Size(1113, 406); this.webSBOBET.TabIndex = 0; this.webSBOBET.Url = new System.Uri("http://www.b88ag.com/", System.UriKind.Absolute); this.webSBOBET.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webSBOBET_DocumentCompleted); // // panelControl2 // this.panelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.panelControl2.Controls.Add(this.chooseSBOServer); this.panelControl2.Controls.Add(this.btnSBOBETGO); this.panelControl2.Controls.Add(this.txtSBOBETAddress); this.panelControl2.Controls.Add(this.labelControl1); this.panelControl2.Location = new System.Drawing.Point(3, 3); this.panelControl2.Name = "panelControl2"; this.panelControl2.Size = new System.Drawing.Size(1118, 29); this.panelControl2.TabIndex = 5; // // chooseSBOServer // this.chooseSBOServer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.chooseSBOServer.EditValue = "Choose Server"; this.chooseSBOServer.Location = new System.Drawing.Point(871, 5); this.chooseSBOServer.Name = "chooseSBOServer"; this.chooseSBOServer.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False; this.chooseSBOServer.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.chooseSBOServer.Properties.DropDownRows = 10; this.chooseSBOServer.Properties.Items.AddRange(new object[] { "http://www.b88ag.com/"}); this.chooseSBOServer.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.chooseSBOServer.Size = new System.Drawing.Size(162, 20); this.chooseSBOServer.TabIndex = 11; this.chooseSBOServer.SelectedIndexChanged += new System.EventHandler(this.chooseSBOServer_SelectedIndexChanged); // // btnSBOBETGO // this.btnSBOBETGO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnSBOBETGO.Location = new System.Drawing.Point(1039, 3); this.btnSBOBETGO.Name = "btnSBOBETGO"; this.btnSBOBETGO.Size = new System.Drawing.Size(75, 23); this.btnSBOBETGO.TabIndex = 5; this.btnSBOBETGO.Text = "GO"; this.btnSBOBETGO.Click += new System.EventHandler(this.btnSBOBETGO_Click); // // txtSBOBETAddress // this.txtSBOBETAddress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtSBOBETAddress.EditValue = "http://www.b88ag.com/"; this.txtSBOBETAddress.Location = new System.Drawing.Point(54, 5); this.txtSBOBETAddress.Name = "txtSBOBETAddress"; this.txtSBOBETAddress.Size = new System.Drawing.Size(808, 20); this.txtSBOBETAddress.TabIndex = 4; // // labelControl1 // this.labelControl1.Location = new System.Drawing.Point(5, 8); this.labelControl1.Name = "labelControl1"; this.labelControl1.Size = new System.Drawing.Size(43, 13); this.labelControl1.TabIndex = 3; this.labelControl1.Text = "Address:"; // // xtraTabPage3 // this.xtraTabPage3.Controls.Add(this.grdSameMatch); this.xtraTabPage3.Name = "xtraTabPage3"; this.xtraTabPage3.Size = new System.Drawing.Size(1124, 407); this.xtraTabPage3.Text = "Live Match"; // // grdSameMatch // this.grdSameMatch.Dock = System.Windows.Forms.DockStyle.Fill; this.grdSameMatch.Location = new System.Drawing.Point(0, 0); this.grdSameMatch.MainView = this.gridView1; this.grdSameMatch.Name = "grdSameMatch"; this.grdSameMatch.Size = new System.Drawing.Size(1124, 407); this.grdSameMatch.TabIndex = 3; this.grdSameMatch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView1}); // // gridView1 // this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn15, this.gridColumn16, this.gridColumn21, this.gridColumn22, this.gridColumn14, this.gridColumn17, this.gridColumn18, this.gridColumn19}); this.gridView1.GridControl = this.grdSameMatch; this.gridView1.Name = "gridView1"; this.gridView1.OptionsBehavior.Editable = false; this.gridView1.OptionsCustomization.AllowGroup = false; this.gridView1.OptionsDetail.AllowZoomDetail = false; this.gridView1.OptionsDetail.EnableMasterViewMode = false; this.gridView1.OptionsDetail.ShowDetailTabs = false; this.gridView1.OptionsDetail.SmartDetailExpand = false; this.gridView1.OptionsView.ShowAutoFilterRow = true; this.gridView1.OptionsView.ShowGroupPanel = false; this.gridView1.OptionsView.ShowPreview = true; this.gridView1.PreviewFieldName = "LeagueName"; this.gridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn18, DevExpress.Data.ColumnSortOrder.Ascending)}); // // gridColumn15 // this.gridColumn15.Caption = "Home Team"; this.gridColumn15.FieldName = "HomeTeamName"; this.gridColumn15.Name = "gridColumn15"; this.gridColumn15.Visible = true; this.gridColumn15.VisibleIndex = 0; this.gridColumn15.Width = 367; // // gridColumn16 // this.gridColumn16.Caption = "Away Team"; this.gridColumn16.FieldName = "AwayTeamName"; this.gridColumn16.Name = "gridColumn16"; this.gridColumn16.Visible = true; this.gridColumn16.VisibleIndex = 3; this.gridColumn16.Width = 368; // // gridColumn21 // this.gridColumn21.Caption = "HomeScore"; this.gridColumn21.FieldName = "HomeScore"; this.gridColumn21.Name = "gridColumn21"; this.gridColumn21.Visible = true; this.gridColumn21.VisibleIndex = 1; // // gridColumn22 // this.gridColumn22.Caption = "AwayScore"; this.gridColumn22.FieldName = "AwayScore"; this.gridColumn22.Name = "gridColumn22"; this.gridColumn22.Visible = true; this.gridColumn22.VisibleIndex = 2; // // gridColumn14 // this.gridColumn14.Caption = "Odd Count"; this.gridColumn14.FieldName = "OddCount"; this.gridColumn14.Name = "gridColumn14"; this.gridColumn14.OptionsColumn.FixedWidth = true; this.gridColumn14.Visible = true; this.gridColumn14.VisibleIndex = 4; this.gridColumn14.Width = 70; // // gridColumn17 // this.gridColumn17.Caption = "Half"; this.gridColumn17.FieldName = "Half"; this.gridColumn17.Name = "gridColumn17"; this.gridColumn17.OptionsColumn.FixedWidth = true; this.gridColumn17.Visible = true; this.gridColumn17.VisibleIndex = 5; this.gridColumn17.Width = 60; // // gridColumn18 // this.gridColumn18.Caption = "Minute"; this.gridColumn18.FieldName = "Minute"; this.gridColumn18.Name = "gridColumn18"; this.gridColumn18.OptionsColumn.FixedWidth = true; this.gridColumn18.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value; this.gridColumn18.Visible = true; this.gridColumn18.VisibleIndex = 6; this.gridColumn18.Width = 60; // // gridColumn19 // this.gridColumn19.Caption = "Half Time"; this.gridColumn19.FieldName = "IsHalfTime"; this.gridColumn19.Name = "gridColumn19"; this.gridColumn19.OptionsColumn.FixedWidth = true; this.gridColumn19.UnboundType = DevExpress.Data.UnboundColumnType.Boolean; this.gridColumn19.Visible = true; this.gridColumn19.VisibleIndex = 7; this.gridColumn19.Width = 60; // // xtraTabPage6 // this.xtraTabPage6.Controls.Add(this.gridNonLiveMatch); this.xtraTabPage6.Name = "xtraTabPage6"; this.xtraTabPage6.Size = new System.Drawing.Size(1124, 407); this.xtraTabPage6.Text = "Non-Live Match"; // // gridNonLiveMatch // this.gridNonLiveMatch.Dock = System.Windows.Forms.DockStyle.Fill; this.gridNonLiveMatch.Location = new System.Drawing.Point(0, 0); this.gridNonLiveMatch.MainView = this.gridView4; this.gridNonLiveMatch.Name = "gridNonLiveMatch"; this.gridNonLiveMatch.Size = new System.Drawing.Size(1124, 407); this.gridNonLiveMatch.TabIndex = 4; this.gridNonLiveMatch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView4}); // // gridView4 // this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn20, this.gridColumn32, this.gridColumn35}); this.gridView4.GridControl = this.gridNonLiveMatch; this.gridView4.Name = "gridView4"; this.gridView4.OptionsBehavior.Editable = false; this.gridView4.OptionsCustomization.AllowGroup = false; this.gridView4.OptionsDetail.AllowZoomDetail = false; this.gridView4.OptionsDetail.EnableMasterViewMode = false; this.gridView4.OptionsDetail.ShowDetailTabs = false; this.gridView4.OptionsDetail.SmartDetailExpand = false; this.gridView4.OptionsView.ShowAutoFilterRow = true; this.gridView4.OptionsView.ShowGroupPanel = false; this.gridView4.OptionsView.ShowPreview = true; this.gridView4.PreviewFieldName = "LeagueName"; // // gridColumn20 // this.gridColumn20.Caption = "Home Team"; this.gridColumn20.FieldName = "HomeTeamName"; this.gridColumn20.Name = "gridColumn20"; this.gridColumn20.Visible = true; this.gridColumn20.VisibleIndex = 0; this.gridColumn20.Width = 367; // // gridColumn32 // this.gridColumn32.Caption = "Away Team"; this.gridColumn32.FieldName = "AwayTeamName"; this.gridColumn32.Name = "gridColumn32"; this.gridColumn32.Visible = true; this.gridColumn32.VisibleIndex = 1; this.gridColumn32.Width = 368; // // gridColumn35 // this.gridColumn35.Caption = "Odd Count"; this.gridColumn35.FieldName = "OddCount"; this.gridColumn35.Name = "gridColumn35"; this.gridColumn35.OptionsColumn.FixedWidth = true; this.gridColumn35.Visible = true; this.gridColumn35.VisibleIndex = 2; this.gridColumn35.Width = 70; // // tabBetList // this.tabBetList.Controls.Add(this.grdBetList); this.tabBetList.Name = "tabBetList"; this.tabBetList.Size = new System.Drawing.Size(1124, 407); this.tabBetList.Text = "SUB Bet List"; // // grdBetList // this.grdBetList.Dock = System.Windows.Forms.DockStyle.Fill; this.grdBetList.Location = new System.Drawing.Point(0, 0); this.grdBetList.MainView = this.gridView3; this.grdBetList.Name = "grdBetList"; this.grdBetList.Size = new System.Drawing.Size(1124, 407); this.grdBetList.TabIndex = 4; this.grdBetList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView3}); // // gridView3 // this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn9, this.gridColumn11, this.gridColumn12, this.gridColumn23, this.gridColumn24, this.gridColumn25, this.gridColumn27, this.gridColumn29, this.gridColumn28, this.gridColumn26, this.gridColumn30, this.gridColumn31}); this.gridView3.GridControl = this.grdBetList; this.gridView3.Name = "gridView3"; this.gridView3.OptionsBehavior.Editable = false; this.gridView3.OptionsCustomization.AllowGroup = false; this.gridView3.OptionsDetail.AllowZoomDetail = false; this.gridView3.OptionsDetail.EnableMasterViewMode = false; this.gridView3.OptionsDetail.ShowDetailTabs = false; this.gridView3.OptionsDetail.SmartDetailExpand = false; this.gridView3.OptionsView.ShowAutoFilterRow = true; this.gridView3.OptionsView.ShowGroupPanel = false; this.gridView3.OptionsView.ShowPreview = true; this.gridView3.PreviewFieldName = "League"; this.gridView3.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn25, DevExpress.Data.ColumnSortOrder.Descending)}); // // gridColumn9 // this.gridColumn9.Caption = "Home Team"; this.gridColumn9.FieldName = "HomeTeamName"; this.gridColumn9.Name = "gridColumn9"; this.gridColumn9.Visible = true; this.gridColumn9.VisibleIndex = 3; this.gridColumn9.Width = 198; // // gridColumn11 // this.gridColumn11.Caption = "Away Team"; this.gridColumn11.FieldName = "AwayTeamName"; this.gridColumn11.Name = "gridColumn11"; this.gridColumn11.Visible = true; this.gridColumn11.VisibleIndex = 5; this.gridColumn11.Width = 214; // // gridColumn12 // this.gridColumn12.Caption = "Score"; this.gridColumn12.FieldName = "Score"; this.gridColumn12.Name = "gridColumn12"; this.gridColumn12.Visible = true; this.gridColumn12.VisibleIndex = 4; this.gridColumn12.Width = 40; // // gridColumn23 // this.gridColumn23.Caption = "Odd"; this.gridColumn23.FieldName = "Odd"; this.gridColumn23.Name = "gridColumn23"; this.gridColumn23.OptionsColumn.FixedWidth = true; this.gridColumn23.Visible = true; this.gridColumn23.VisibleIndex = 8; this.gridColumn23.Width = 40; // // gridColumn24 // this.gridColumn24.Caption = "Odd Value"; this.gridColumn24.FieldName = "OddValue"; this.gridColumn24.Name = "gridColumn24"; this.gridColumn24.OptionsColumn.FixedWidth = true; this.gridColumn24.Visible = true; this.gridColumn24.VisibleIndex = 9; this.gridColumn24.Width = 60; // // gridColumn25 // this.gridColumn25.Caption = "Time"; this.gridColumn25.DisplayFormat.FormatString = "hh:mm:ss"; this.gridColumn25.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.gridColumn25.FieldName = "DateTime"; this.gridColumn25.Name = "gridColumn25"; this.gridColumn25.OptionsColumn.FixedWidth = true; this.gridColumn25.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value; this.gridColumn25.Visible = true; this.gridColumn25.VisibleIndex = 11; this.gridColumn25.Width = 80; // // gridColumn27 // this.gridColumn27.Caption = "Ref ID"; this.gridColumn27.FieldName = "RefID"; this.gridColumn27.Name = "gridColumn27"; this.gridColumn27.Visible = true; this.gridColumn27.VisibleIndex = 1; this.gridColumn27.Width = 68; // // gridColumn29 // this.gridColumn29.Caption = "Choose"; this.gridColumn29.FieldName = "Choice"; this.gridColumn29.Name = "gridColumn29"; this.gridColumn29.Visible = true; this.gridColumn29.VisibleIndex = 6; this.gridColumn29.Width = 100; // // gridColumn28 // this.gridColumn28.Caption = "Odd Type"; this.gridColumn28.FieldName = "Type"; this.gridColumn28.Name = "gridColumn28"; this.gridColumn28.Visible = true; this.gridColumn28.VisibleIndex = 7; this.gridColumn28.Width = 103; // // gridColumn26 // this.gridColumn26.Caption = "Stake"; this.gridColumn26.FieldName = "Stake"; this.gridColumn26.Name = "gridColumn26"; this.gridColumn26.Visible = true; this.gridColumn26.VisibleIndex = 10; this.gridColumn26.Width = 42; // // gridColumn30 // this.gridColumn30.Caption = "Account"; this.gridColumn30.FieldName = "Account"; this.gridColumn30.Name = "gridColumn30"; this.gridColumn30.Visible = true; this.gridColumn30.VisibleIndex = 2; this.gridColumn30.Width = 46; // // gridColumn31 // this.gridColumn31.Caption = "ID"; this.gridColumn31.FieldName = "ID"; this.gridColumn31.Name = "gridColumn31"; this.gridColumn31.Visible = true; this.gridColumn31.VisibleIndex = 0; this.gridColumn31.Width = 30; // // xtraTabControl2 // this.xtraTabControl2.Appearance.BackColor = System.Drawing.Color.Transparent; this.xtraTabControl2.Appearance.Options.UseBackColor = true; this.xtraTabControl2.Dock = System.Windows.Forms.DockStyle.Fill; this.xtraTabControl2.Location = new System.Drawing.Point(0, 0); this.xtraTabControl2.Name = "xtraTabControl2"; this.xtraTabControl2.SelectedTabPage = this.xtraTabPage4; this.xtraTabControl2.Size = new System.Drawing.Size(1130, 179); this.xtraTabControl2.TabIndex = 1; this.xtraTabControl2.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { this.xtraTabPage4, this.xtraTabPage5}); // // xtraTabPage4 // this.xtraTabPage4.Controls.Add(this.groupControl2); this.xtraTabPage4.Controls.Add(this.groupControl1); this.xtraTabPage4.Controls.Add(this.groupControl5); this.xtraTabPage4.Controls.Add(this.groupControl4); this.xtraTabPage4.Controls.Add(this.groupControl6); this.xtraTabPage4.Name = "xtraTabPage4"; this.xtraTabPage4.Size = new System.Drawing.Size(1124, 153); this.xtraTabPage4.Text = "Settings"; // // groupControl2 // this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupControl2.Controls.Add(this.txtTransactionTimeSpan); this.groupControl2.Controls.Add(this.labelControl10); this.groupControl2.Controls.Add(this.txtMaxTimePerHalf); this.groupControl2.Controls.Add(this.labelControl7); this.groupControl2.Controls.Add(this.chbAllowHalftime); this.groupControl2.Location = new System.Drawing.Point(209, 3); this.groupControl2.Name = "groupControl2"; this.groupControl2.Size = new System.Drawing.Size(200, 147); this.groupControl2.TabIndex = 14; this.groupControl2.Text = "Time - Type Settings"; // // txtTransactionTimeSpan // this.txtTransactionTimeSpan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtTransactionTimeSpan.EditValue = new decimal(new int[] { 10, 0, 0, 0}); this.txtTransactionTimeSpan.Location = new System.Drawing.Point(123, 80); this.txtTransactionTimeSpan.Name = "txtTransactionTimeSpan"; this.txtTransactionTimeSpan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtTransactionTimeSpan.Properties.IsFloatValue = false; this.txtTransactionTimeSpan.Properties.Mask.EditMask = "N00"; this.txtTransactionTimeSpan.Size = new System.Drawing.Size(72, 20); this.txtTransactionTimeSpan.TabIndex = 9; // // labelControl10 // this.labelControl10.Location = new System.Drawing.Point(5, 81); this.labelControl10.Name = "labelControl10"; this.labelControl10.Size = new System.Drawing.Size(112, 13); this.labelControl10.TabIndex = 8; this.labelControl10.Text = "Transaction Time Span:"; // // txtMaxTimePerHalf // this.txtMaxTimePerHalf.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtMaxTimePerHalf.EditValue = new decimal(new int[] { 45, 0, 0, 0}); this.txtMaxTimePerHalf.Enabled = false; this.txtMaxTimePerHalf.Location = new System.Drawing.Point(123, 50); this.txtMaxTimePerHalf.Name = "txtMaxTimePerHalf"; this.txtMaxTimePerHalf.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtMaxTimePerHalf.Properties.IsFloatValue = false; this.txtMaxTimePerHalf.Properties.Mask.EditMask = "N00"; this.txtMaxTimePerHalf.Size = new System.Drawing.Size(72, 20); this.txtMaxTimePerHalf.TabIndex = 7; // // labelControl7 // this.labelControl7.Location = new System.Drawing.Point(5, 53); this.labelControl7.Name = "labelControl7"; this.labelControl7.Size = new System.Drawing.Size(90, 13); this.labelControl7.TabIndex = 6; this.labelControl7.Text = "Max Time Per Half:"; // // chbAllowHalftime // this.chbAllowHalftime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.chbAllowHalftime.EditValue = true; this.chbAllowHalftime.Enabled = false; this.chbAllowHalftime.Location = new System.Drawing.Point(5, 26); this.chbAllowHalftime.Name = "chbAllowHalftime"; this.chbAllowHalftime.Properties.Caption = "Allow Halftime"; this.chbAllowHalftime.Size = new System.Drawing.Size(190, 19); this.chbAllowHalftime.TabIndex = 5; // // groupControl1 // this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupControl1.Controls.Add(this.chkProxy); this.groupControl1.Controls.Add(this.btnStatus); this.groupControl1.Controls.Add(this.btnSetUpdateInterval); this.groupControl1.Controls.Add(this.txtSBOBETUpdateInterval); this.groupControl1.Controls.Add(this.labelControl3); this.groupControl1.Controls.Add(this.txtIBETUpdateInterval); this.groupControl1.Controls.Add(this.labelControl4); this.groupControl1.Location = new System.Drawing.Point(415, 3); this.groupControl1.Name = "groupControl1"; this.groupControl1.Size = new System.Drawing.Size(200, 147); this.groupControl1.TabIndex = 13; this.groupControl1.Text = "Data Settings"; // // chkProxy // this.chkProxy.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.chkProxy.EditValue = true; this.chkProxy.Location = new System.Drawing.Point(5, 108); this.chkProxy.Name = "chkProxy"; this.chkProxy.Properties.Caption = "Use Proxy"; this.chkProxy.Size = new System.Drawing.Size(190, 19); this.chkProxy.TabIndex = 33; // // btnStatus // this.btnStatus.Location = new System.Drawing.Point(6, 77); this.btnStatus.Name = "btnStatus"; this.btnStatus.Size = new System.Drawing.Size(89, 23); this.btnStatus.TabIndex = 31; this.btnStatus.Text = "Show status"; this.btnStatus.Click += new System.EventHandler(this.btnStatus_Click_1); // // btnSetUpdateInterval // this.btnSetUpdateInterval.Location = new System.Drawing.Point(106, 77); this.btnSetUpdateInterval.Name = "btnSetUpdateInterval"; this.btnSetUpdateInterval.Size = new System.Drawing.Size(89, 23); this.btnSetUpdateInterval.TabIndex = 6; this.btnSetUpdateInterval.Text = "Set Interval"; this.btnSetUpdateInterval.Click += new System.EventHandler(this.btnSetUpdateInterval_Click); // // txtSBOBETUpdateInterval // this.txtSBOBETUpdateInterval.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtSBOBETUpdateInterval.EditValue = new decimal(new int[] { 3, 0, 0, 0}); this.txtSBOBETUpdateInterval.Location = new System.Drawing.Point(132, 51); this.txtSBOBETUpdateInterval.Name = "txtSBOBETUpdateInterval"; this.txtSBOBETUpdateInterval.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtSBOBETUpdateInterval.Properties.IsFloatValue = false; this.txtSBOBETUpdateInterval.Properties.Mask.EditMask = "N00"; this.txtSBOBETUpdateInterval.Properties.MaxValue = new decimal(new int[] { 12, 0, 0, 0}); this.txtSBOBETUpdateInterval.Properties.MinValue = new decimal(new int[] { 2, 0, 0, 0}); this.txtSBOBETUpdateInterval.Size = new System.Drawing.Size(63, 20); this.txtSBOBETUpdateInterval.TabIndex = 5; // // labelControl3 // this.labelControl3.Location = new System.Drawing.Point(5, 54); this.labelControl3.Name = "labelControl3"; this.labelControl3.Size = new System.Drawing.Size(102, 13); this.labelControl3.TabIndex = 4; this.labelControl3.Text = "SUB Update Interval:"; // // txtIBETUpdateInterval // this.txtIBETUpdateInterval.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtIBETUpdateInterval.EditValue = new decimal(new int[] { 8, 0, 0, 0}); this.txtIBETUpdateInterval.Location = new System.Drawing.Point(132, 25); this.txtIBETUpdateInterval.Name = "txtIBETUpdateInterval"; this.txtIBETUpdateInterval.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtIBETUpdateInterval.Properties.IsFloatValue = false; this.txtIBETUpdateInterval.Properties.Mask.EditMask = "N00"; this.txtIBETUpdateInterval.Properties.MaxValue = new decimal(new int[] { 15, 0, 0, 0}); this.txtIBETUpdateInterval.Properties.MinValue = new decimal(new int[] { 2, 0, 0, 0}); this.txtIBETUpdateInterval.Size = new System.Drawing.Size(63, 20); this.txtIBETUpdateInterval.TabIndex = 1; // // labelControl4 // this.labelControl4.Location = new System.Drawing.Point(5, 28); this.labelControl4.Name = "labelControl4"; this.labelControl4.Size = new System.Drawing.Size(105, 13); this.labelControl4.TabIndex = 0; this.labelControl4.Text = "IBET Update Interval:"; // // groupControl5 // this.groupControl5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupControl5.Controls.Add(this.chkEnable); this.groupControl5.Controls.Add(this.chkFollowType); this.groupControl5.Controls.Add(this.txtLowestOddValue); this.groupControl5.Controls.Add(this.labelControl9); this.groupControl5.Controls.Add(this.checkEdit6); this.groupControl5.Controls.Add(this.checkEdit5); this.groupControl5.Controls.Add(this.checkEdit7); this.groupControl5.Controls.Add(this.checkEdit12); this.groupControl5.Controls.Add(this.checkEdit4); this.groupControl5.Controls.Add(this.checkEdit3); this.groupControl5.Location = new System.Drawing.Point(3, 3); this.groupControl5.Name = "groupControl5"; this.groupControl5.Size = new System.Drawing.Size(200, 147); this.groupControl5.TabIndex = 13; this.groupControl5.Text = "Trading Settings"; // // chkEnable // this.chkEnable.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.chkEnable.EditValue = true; this.chkEnable.Location = new System.Drawing.Point(5, 123); this.chkEnable.Name = "chkEnable"; this.chkEnable.Properties.Caption = "Enable"; this.chkEnable.Size = new System.Drawing.Size(90, 19); this.chkEnable.TabIndex = 25; // // chkFollowType // this.chkFollowType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.chkFollowType.EditValue = true; this.chkFollowType.Location = new System.Drawing.Point(5, 79); this.chkFollowType.Name = "chkFollowType"; this.chkFollowType.Properties.Caption = "Follow / Unfollow"; this.chkFollowType.Size = new System.Drawing.Size(190, 19); this.chkFollowType.TabIndex = 24; // // txtLowestOddValue // this.txtLowestOddValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtLowestOddValue.EditValue = new decimal(new int[] { 5, 0, 0, 65536}); this.txtLowestOddValue.Location = new System.Drawing.Point(110, 103); this.txtLowestOddValue.Name = "txtLowestOddValue"; this.txtLowestOddValue.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtLowestOddValue.Properties.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.txtLowestOddValue.Properties.MaxValue = new decimal(new int[] { 99, 0, 0, 131072}); this.txtLowestOddValue.Properties.MinValue = new decimal(new int[] { 4, 0, 0, 65536}); this.txtLowestOddValue.Size = new System.Drawing.Size(85, 20); this.txtLowestOddValue.TabIndex = 12; // // labelControl9 // this.labelControl9.Enabled = false; this.labelControl9.Location = new System.Drawing.Point(8, 105); this.labelControl9.Name = "labelControl9"; this.labelControl9.Size = new System.Drawing.Size(90, 13); this.labelControl9.TabIndex = 11; this.labelControl9.Text = "Lowest Odd Value:"; // // checkEdit6 // this.checkEdit6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit6.EditValue = true; this.checkEdit6.Enabled = false; this.checkEdit6.Location = new System.Drawing.Point(5, 352); this.checkEdit6.Name = "checkEdit6"; this.checkEdit6.Properties.Caption = "Non-Live"; this.checkEdit6.Size = new System.Drawing.Size(190, 19); this.checkEdit6.TabIndex = 8; // // checkEdit5 // this.checkEdit5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit5.EditValue = true; this.checkEdit5.Enabled = false; this.checkEdit5.Location = new System.Drawing.Point(5, 327); this.checkEdit5.Name = "checkEdit5"; this.checkEdit5.Properties.Caption = "Live"; this.checkEdit5.Size = new System.Drawing.Size(190, 19); this.checkEdit5.TabIndex = 7; // // checkEdit7 // this.checkEdit7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit7.EditValue = true; this.checkEdit7.Enabled = false; this.checkEdit7.Location = new System.Drawing.Point(5, 52); this.checkEdit7.Name = "checkEdit7"; this.checkEdit7.Properties.Caption = "Over/Under from min 30"; this.checkEdit7.Size = new System.Drawing.Size(190, 19); this.checkEdit7.TabIndex = 9; // // checkEdit12 // this.checkEdit12.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit12.Location = new System.Drawing.Point(5, 302); this.checkEdit12.Name = "checkEdit12"; this.checkEdit12.Properties.Caption = "IBET Under mode"; this.checkEdit12.Size = new System.Drawing.Size(190, 19); this.checkEdit12.TabIndex = 23; // // checkEdit4 // this.checkEdit4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit4.EditValue = true; this.checkEdit4.Enabled = false; this.checkEdit4.Location = new System.Drawing.Point(115, 26); this.checkEdit4.Name = "checkEdit4"; this.checkEdit4.Properties.Caption = "Over/Under"; this.checkEdit4.Size = new System.Drawing.Size(80, 19); this.checkEdit4.TabIndex = 6; // // checkEdit3 // this.checkEdit3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.checkEdit3.EditValue = true; this.checkEdit3.Enabled = false; this.checkEdit3.Location = new System.Drawing.Point(5, 26); this.checkEdit3.Name = "checkEdit3"; this.checkEdit3.Properties.Caption = "Handicap"; this.checkEdit3.Size = new System.Drawing.Size(90, 19); this.checkEdit3.TabIndex = 5; // // groupControl4 // this.groupControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupControl4.Controls.Add(this.chkFollowPercent); this.groupControl4.Controls.Add(this.txtIBETFixedStake); this.groupControl4.Controls.Add(this.labelControl11); this.groupControl4.Controls.Add(this.labelControl6); this.groupControl4.Controls.Add(this.txtAllowTradeMinValue); this.groupControl4.Controls.Add(this.txtFollowPercent); this.groupControl4.Location = new System.Drawing.Point(621, 3); this.groupControl4.Name = "groupControl4"; this.groupControl4.Size = new System.Drawing.Size(200, 147); this.groupControl4.TabIndex = 12; this.groupControl4.Text = "Stake Settings"; // // chkFollowPercent // this.chkFollowPercent.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.chkFollowPercent.EditValue = true; this.chkFollowPercent.Location = new System.Drawing.Point(3, 52); this.chkFollowPercent.Name = "chkFollowPercent"; this.chkFollowPercent.Properties.Caption = "Follow Percent (%)"; this.chkFollowPercent.Size = new System.Drawing.Size(123, 19); this.chkFollowPercent.TabIndex = 34; // // txtIBETFixedStake // this.txtIBETFixedStake.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtIBETFixedStake.EditValue = new decimal(new int[] { 5, 0, 0, 0}); this.txtIBETFixedStake.Location = new System.Drawing.Point(132, 25); this.txtIBETFixedStake.Name = "txtIBETFixedStake"; this.txtIBETFixedStake.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtIBETFixedStake.Properties.IsFloatValue = false; this.txtIBETFixedStake.Properties.Mask.EditMask = "N00"; this.txtIBETFixedStake.Size = new System.Drawing.Size(63, 20); this.txtIBETFixedStake.TabIndex = 1; // // labelControl11 // this.labelControl11.Location = new System.Drawing.Point(7, 83); this.labelControl11.Name = "labelControl11"; this.labelControl11.Size = new System.Drawing.Size(117, 13); this.labelControl11.TabIndex = 33; this.labelControl11.Text = "Minimum Stake Following"; // // labelControl6 // this.labelControl6.Location = new System.Drawing.Point(5, 28); this.labelControl6.Name = "labelControl6"; this.labelControl6.Size = new System.Drawing.Size(85, 13); this.labelControl6.TabIndex = 0; this.labelControl6.Text = "IBET Fixed Stake:"; // // txtAllowTradeMinValue // this.txtAllowTradeMinValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtAllowTradeMinValue.EditValue = new decimal(new int[] { 100, 0, 0, 0}); this.txtAllowTradeMinValue.Location = new System.Drawing.Point(132, 80); this.txtAllowTradeMinValue.Name = "txtAllowTradeMinValue"; this.txtAllowTradeMinValue.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtAllowTradeMinValue.Properties.MaxValue = new decimal(new int[] { 5000, 0, 0, 0}); this.txtAllowTradeMinValue.Properties.MinValue = new decimal(new int[] { 5, 0, 0, 0}); this.txtAllowTradeMinValue.Size = new System.Drawing.Size(63, 20); this.txtAllowTradeMinValue.TabIndex = 32; // // txtFollowPercent // this.txtFollowPercent.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtFollowPercent.EditValue = new decimal(new int[] { 10, 0, 0, 0}); this.txtFollowPercent.Location = new System.Drawing.Point(132, 51); this.txtFollowPercent.Name = "txtFollowPercent"; this.txtFollowPercent.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.txtFollowPercent.Properties.MaxValue = new decimal(new int[] { 100, 0, 0, 0}); this.txtFollowPercent.Properties.MinValue = new decimal(new int[] { 1, 0, 0, 0}); this.txtFollowPercent.Size = new System.Drawing.Size(63, 20); this.txtFollowPercent.TabIndex = 10; // // groupControl6 // this.groupControl6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.groupControl6.Controls.Add(this.txtListFollowAccounts); this.groupControl6.Location = new System.Drawing.Point(827, 3); this.groupControl6.Name = "groupControl6"; this.groupControl6.Size = new System.Drawing.Size(293, 147); this.groupControl6.TabIndex = 19; this.groupControl6.Text = "Following Accounts"; // // txtListFollowAccounts // this.txtListFollowAccounts.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.txtListFollowAccounts.EditValue = "FOLLOW HERE"; this.txtListFollowAccounts.Location = new System.Drawing.Point(5, 25); this.txtListFollowAccounts.Name = "txtListFollowAccounts"; this.txtListFollowAccounts.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 14F); this.txtListFollowAccounts.Properties.Appearance.Options.UseFont = true; this.txtListFollowAccounts.Size = new System.Drawing.Size(283, 117); this.txtListFollowAccounts.TabIndex = 20; // // xtraTabPage5 // this.xtraTabPage5.Controls.Add(this.grdTransaction); this.xtraTabPage5.Name = "xtraTabPage5"; this.xtraTabPage5.Size = new System.Drawing.Size(1124, 153); this.xtraTabPage5.Text = "Live Transaction"; // // grdTransaction // this.grdTransaction.Dock = System.Windows.Forms.DockStyle.Fill; this.grdTransaction.Location = new System.Drawing.Point(0, 0); this.grdTransaction.MainView = this.gridView2; this.grdTransaction.Name = "grdTransaction"; this.grdTransaction.Size = new System.Drawing.Size(1124, 153); this.grdTransaction.TabIndex = 3; this.grdTransaction.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridView2}); // // gridView2 // this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.gridColumn1, this.gridColumn2, this.gridColumn3, this.gridColumn6, this.gridColumn4, this.gridColumn5, this.gridColumn7, this.gridColumn8, this.gridColumn10, this.gridColumn13, this.gridColumn39}); this.gridView2.GridControl = this.grdTransaction; this.gridView2.Name = "gridView2"; this.gridView2.OptionsBehavior.Editable = false; this.gridView2.OptionsCustomization.AllowGroup = false; this.gridView2.OptionsView.AutoCalcPreviewLineCount = true; this.gridView2.OptionsView.ShowAutoFilterRow = true; this.gridView2.OptionsView.ShowFooter = true; this.gridView2.OptionsView.ShowGroupPanel = false; this.gridView2.OptionsView.ShowPreview = true; this.gridView2.PreviewFieldName = "Note"; this.gridView2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn13, DevExpress.Data.ColumnSortOrder.Descending)}); // // gridColumn1 // this.gridColumn1.Caption = "ID"; this.gridColumn1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric; this.gridColumn1.FieldName = "ID"; this.gridColumn1.Name = "gridColumn1"; this.gridColumn1.OptionsColumn.FixedWidth = true; this.gridColumn1.UnboundType = DevExpress.Data.UnboundColumnType.Integer; this.gridColumn1.Visible = true; this.gridColumn1.VisibleIndex = 0; this.gridColumn1.Width = 50; // // gridColumn2 // this.gridColumn2.Caption = "Home Team"; this.gridColumn2.FieldName = "HomeTeamName"; this.gridColumn2.Name = "gridColumn2"; this.gridColumn2.UnboundType = DevExpress.Data.UnboundColumnType.String; this.gridColumn2.Visible = true; this.gridColumn2.VisibleIndex = 2; this.gridColumn2.Width = 187; // // gridColumn3 // this.gridColumn3.Caption = "Away Team"; this.gridColumn3.FieldName = "AwayTeamName"; this.gridColumn3.Name = "gridColumn3"; this.gridColumn3.UnboundType = DevExpress.Data.UnboundColumnType.String; this.gridColumn3.Visible = true; this.gridColumn3.VisibleIndex = 3; this.gridColumn3.Width = 187; // // gridColumn6 // this.gridColumn6.Caption = "Type"; this.gridColumn6.FieldName = "OddType"; this.gridColumn6.Name = "gridColumn6"; this.gridColumn6.OptionsColumn.FixedWidth = true; this.gridColumn6.UnboundType = DevExpress.Data.UnboundColumnType.String; this.gridColumn6.Visible = true; this.gridColumn6.VisibleIndex = 4; this.gridColumn6.Width = 180; // // gridColumn4 // this.gridColumn4.Caption = "Odd"; this.gridColumn4.FieldName = "OddKindValue"; this.gridColumn4.Name = "gridColumn4"; this.gridColumn4.OptionsColumn.FixedWidth = true; this.gridColumn4.UnboundType = DevExpress.Data.UnboundColumnType.String; this.gridColumn4.Visible = true; this.gridColumn4.VisibleIndex = 5; // // gridColumn5 // this.gridColumn5.Caption = "Value"; this.gridColumn5.FieldName = "OddValue"; this.gridColumn5.Name = "gridColumn5"; this.gridColumn5.OptionsColumn.FixedWidth = true; this.gridColumn5.UnboundType = DevExpress.Data.UnboundColumnType.String; this.gridColumn5.Visible = true; this.gridColumn5.VisibleIndex = 6; this.gridColumn5.Width = 80; // // gridColumn7 // this.gridColumn7.Caption = "Stake"; this.gridColumn7.FieldName = "Stake"; this.gridColumn7.Name = "gridColumn7"; this.gridColumn7.OptionsColumn.FixedWidth = true; this.gridColumn7.UnboundType = DevExpress.Data.UnboundColumnType.String; this.gridColumn7.Visible = true; this.gridColumn7.VisibleIndex = 7; this.gridColumn7.Width = 100; // // gridColumn8 // this.gridColumn8.Caption = "I Allow"; this.gridColumn8.FieldName = "IBETAllow"; this.gridColumn8.Name = "gridColumn8"; this.gridColumn8.OptionsColumn.FixedWidth = true; this.gridColumn8.UnboundType = DevExpress.Data.UnboundColumnType.Boolean; this.gridColumn8.Visible = true; this.gridColumn8.VisibleIndex = 8; this.gridColumn8.Width = 50; // // gridColumn10 // this.gridColumn10.Caption = "I Trade"; this.gridColumn10.FieldName = "IBETTrade"; this.gridColumn10.Name = "gridColumn10"; this.gridColumn10.OptionsColumn.FixedWidth = true; this.gridColumn10.UnboundType = DevExpress.Data.UnboundColumnType.Boolean; this.gridColumn10.Visible = true; this.gridColumn10.VisibleIndex = 9; this.gridColumn10.Width = 50; // // gridColumn13 // this.gridColumn13.Caption = "DateTime"; this.gridColumn13.DisplayFormat.FormatString = "hh:mm:ss"; this.gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; this.gridColumn13.FieldName = "DateTime"; this.gridColumn13.Name = "gridColumn13"; this.gridColumn13.OptionsColumn.FixedWidth = true; this.gridColumn13.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value; this.gridColumn13.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] { new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count)}); this.gridColumn13.UnboundType = DevExpress.Data.UnboundColumnType.DateTime; this.gridColumn13.Visible = true; this.gridColumn13.VisibleIndex = 10; this.gridColumn13.Width = 80; // // gridColumn39 // this.gridColumn39.Caption = "Follow Ref"; this.gridColumn39.FieldName = "FollowRef"; this.gridColumn39.Name = "gridColumn39"; this.gridColumn39.Visible = true; this.gridColumn39.VisibleIndex = 1; // // labelControl5 // this.labelControl5.Location = new System.Drawing.Point(5, 9); this.labelControl5.Name = "labelControl5"; this.labelControl5.Size = new System.Drawing.Size(0, 13); this.labelControl5.TabIndex = 6; this.labelControl5.Text = "Address:"; // // FollowSub // this.ClientSize = new System.Drawing.Size(1130, 742); this.Controls.Add(this.splitContainerControl1); this.Controls.Add(this.ribbonControl1); this.Icon = global::iBet.App.Properties.Resources._2; this.Name = "FollowSub"; this.Ribbon = this.ribbonControl1; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "IBET follow SUB"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TerminalFormIBETSBO_FormClosing); ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit(); this.splitContainerControl1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit(); this.xtraTabControl1.ResumeLayout(false); this.xtraTabPage1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit(); this.panelControl5.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit(); this.panelControl4.ResumeLayout(false); this.panelControl4.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.cbeSignatureTemplate.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtIBETAddress.Properties)).EndInit(); this.xtraTabPage2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit(); this.panelControl3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit(); this.panelControl2.ResumeLayout(false); this.panelControl2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.chooseSBOServer.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtSBOBETAddress.Properties)).EndInit(); this.xtraTabPage3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.grdSameMatch)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit(); this.xtraTabPage6.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.gridNonLiveMatch)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit(); this.tabBetList.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.grdBetList)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).EndInit(); this.xtraTabControl2.ResumeLayout(false); this.xtraTabPage4.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit(); this.groupControl2.ResumeLayout(false); this.groupControl2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.txtTransactionTimeSpan.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtMaxTimePerHalf.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.chbAllowHalftime.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit(); this.groupControl1.ResumeLayout(false); this.groupControl1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.chkProxy.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtSBOBETUpdateInterval.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtIBETUpdateInterval.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit(); this.groupControl5.ResumeLayout(false); this.groupControl5.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.chkEnable.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.chkFollowType.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtLowestOddValue.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit12.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit(); this.groupControl4.ResumeLayout(false); this.groupControl4.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.chkFollowPercent.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtIBETFixedStake.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtAllowTradeMinValue.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtFollowPercent.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit(); this.groupControl6.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.txtListFollowAccounts.Properties)).EndInit(); this.xtraTabPage5.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.grdTransaction)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit(); this.ResumeLayout(false); }
public bool DecideDataAddin_SpinEdit(SpinEdit _SpinEdit) { bool _IsTrue = false; if(_SpinEdit.Value == 0) { MessageBox.Show("“权重值:”的参数设置不正确!!!"); _IsTrue = true; } return _IsTrue; }
private void SetCosts() { var list = Factory.Manager<CostManager>().GetByOffice(CurrentInfo.OfficeID); var costs = Factory.Manager<ExpenseCostManager>().GetAll(DocID); if (costs.Any()) { var addList = new List<Cost>(); foreach (var item in costs.FindAll(c => list.All(l => l.ID != c.CostID))) { list.Add(new Cost { CostName = item.CostName, Hidden = false, OfficeID = CurrentInfo.OfficeID, ID = item.CostID }); } if (addList.Any()) list.AddRange(addList); } layoutMain.BeginUpdate(); try { foreach (var cost in list) { var item = layoutMain.Root.AddItem(cost.CostName); item.Tag = cost; var txt = new SpinEdit(); txt.Properties.Mask.Assign(new MaskProperties() {MaskType = MaskType.Numeric, EditMask = "n"}); item.Control = txt; var value = costs.Find(c => c.CostID == cost.ID); if (value != null) { txt.EditValue = value.Amount; txt.Tag = value; } } layoutMain.BestFit(); ClientSize = layoutMain.Root.MinSize.Height < 400 ? new Size(ClientSize.Width, layoutMain.Root.MinSize.Height + 40) : new Size(ClientSize.Width, 440); } finally { layoutMain.EndUpdate(); } }