Example #1
0
        protected void InitFilterForm(Form Frm,
                                      XtraScrollableControl xtraScrollableControl1,
                                      SplitContainerControl splitContainerControl1)
        {
            Frm.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            Frm.Height          = Frm.ClientSize.Height;
            Frm.TopLevel        = false;
            Frm.Parent          = xtraScrollableControl1;
            Frm.Dock            = DockStyle.Top;
            splitContainerControl1.SplitterPosition = Frm.Height + 7;

            //Find DataSource
            BindingSource bs = BaseWinFramework
                               .FindMainBindingSource(Frm, typeof(ReportEntity));

            if (bs != null && bs.DataSource as ReportEntity == null)
            {
                Type EntityType = ((Type)bs.DataSource).UnderlyingSystemType;
                re         = (ReportEntity)BaseFactory.CreateInstance(EntityType);
                _Evaluator = BaseFactory.CreateInstance <Evaluator>();
                TableDef td = MetaData.GetTableDef(EntityType);
                td.SetDefault((BaseEntity)re);

                re.InitUI();
                re.SetReportRefresh(ReportRefresh);
                re.SetFormChanged(OnFormChanged);
                bs.DataSource = re;
            }
            Frm.Show();
        }
Example #2
0
 private void Books_Load(object sender, EventArgs e)
 {
     LoadList();
     lstBooksItem.BestFitColumns();
     scc = (SplitContainerControl)((SplitGroupPanel)this.Parent).Parent;
     if (ss == SaveSender.EditBook)
     {
         lblForEdit.Visible    = true;
         colIsSelected.Visible = false;
         lstBooksItem.OptionsBehavior.Editable = false;
     }
     else if (ss == SaveSender.DeleteBook)
     {
         lstBooksItem.OptionsBehavior.Editable = false;
         colIsSelected.Visible = true;
         colIsSelected.Width   = 60;
         colIsSelected.OptionsColumn.FixedWidth = true;
     }
     else if (ss == SaveSender.ViewSearch)
     {
         colIsSelected.Visible = true;
         colIsSelected.Width   = 60;
         colIsSelected.OptionsColumn.FixedWidth = true;
         lstBooksItem.OptionsBehavior.Editable  = false;
     }
 }
Example #3
0
        protected void QueryReportEntity(
            XtraScrollableControl xtraScrollableControl1,
            SplitContainerControl splitContainerControl1)
        {
            Control Ctrl = _FilterForm as Control;

            if (Ctrl != null)
            {
                splitContainerControl1.SplitterPosition = Ctrl.Height + 7;
                xtraScrollableControl1.Controls.Add(Ctrl);
                Ctrl.Dock = DockStyle.Fill;
            }
            else
            {
                splitContainerControl1.PanelVisibility = SplitPanelVisibility.Panel2;
                if (re != null)
                {
                    TableDef td = MetaData.GetTableDef(re.GetType());
                    td.SetDefault((BaseEntity)re);

                    re.InitUI();
                    re.SetReportRefresh(ReportRefresh);
                    re.SetFormChanged(OnFormChanged);
                }
            }
        }
Example #4
0
 private void addBookInfo_Load(object sender, EventArgs e)
 {
     scc = (SplitContainerControl)((SplitGroupPanel)this.Parent).Parent;
     if (frmMain.ss == SaveSender.EditBook)
     {
         SetDetails();
     }
 }
Example #5
0
 private void LogsList_Load(object sender, EventArgs e)
 {
     scc = (SplitContainerControl)((SplitGroupPanel)this.Parent).Parent;
     LoadList();
     cmbField.SelectedIndex    = 0;
     cmbSearchBy.SelectedIndex = 0;
     cmbType.SelectedIndex     = 0;
 }
Example #6
0
        /// <summary>
        /// Gets the BA main.
        /// </summary>
        /// 整理人:桂书丛
        /// 整理时间:2013-02-04
        private void GetBAMain()
        {
            frmAssist.frmBAMain   myfrmBAMain     = new CMS.UILayer.frmAssist.frmBAMain();
            SplitContainerControl tempMainControl = myfrmBAMain.splitContainerControlMain;

            myfrmBAMain.barManagerMain.Form = this;                                       //这句不能少,是给菜单制定一个窗体
            this.groupControlMain.Controls.Add(tempMainControl);
            tempMainControl.Dock = DockStyle.Fill;
        }
Example #7
0
        /// <summary>
        /// 获得主显示控件
        /// </summary>
        /// 创建人:桂书丛
        /// 创建日期:2013-02-24
        private void GetBAMain()
        {
            frmBAMain             myfrmBAMain     = new frmBAMain();
            SplitContainerControl tempMainControl = myfrmBAMain.splitContainerControlMain;

            myfrmBAMain.barManagerMain.Form = this;                                       //这句不能少,是给菜单指定一个窗体
            this.panelControlMain.Controls.Add(tempMainControl);
            tempMainControl.Dock = DockStyle.Fill;
        }
Example #8
0
        private void CtrlTestMeas_Load(object sender, EventArgs e)
        {
            SplitContainerControl spControl = reportSheet.Controls.OfType <SplitContainerControl>().FirstOrDefault();

            if (spControl != null)
            {
                spControl.SplitterPosition += 380;
            }
        }
Example #9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.treeViewScenarioFolder = new System.Windows.Forms.TreeView();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.scenarioItems          = new Prometheus.Controls.ScenarioItems();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // treeViewScenarioFolder
     //
     this.treeViewScenarioFolder.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.treeViewScenarioFolder.ImageIndex         = -1;
     this.treeViewScenarioFolder.Location           = new System.Drawing.Point(8, 8);
     this.treeViewScenarioFolder.Name               = "treeViewScenarioFolder";
     this.treeViewScenarioFolder.SelectedImageIndex = -1;
     this.treeViewScenarioFolder.Size               = new System.Drawing.Size(280, 362);
     this.treeViewScenarioFolder.TabIndex           = 0;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal         = false;
     this.splitContainerControl1.Location           = new System.Drawing.Point(0, 0);
     this.splitContainerControl1.Name               = "splitContainerControl1";
     this.splitContainerControl1.Panel1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.splitContainerControl1.Panel1.Controls.Add(this.treeViewScenarioFolder);
     this.splitContainerControl1.Panel1.DockPadding.All = 8;
     this.splitContainerControl1.Panel1.Text            = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.BorderStyle     = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.splitContainerControl1.Panel2.Controls.Add(this.scenarioItems);
     this.splitContainerControl1.Panel2.DockPadding.All = 8;
     this.splitContainerControl1.Panel2.Text            = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size             = new System.Drawing.Size(296, 696);
     this.splitContainerControl1.SplitterPosition = 378;
     this.splitContainerControl1.TabIndex         = 3;
     this.splitContainerControl1.Text             = "splitContainerControl1";
     //
     // scenarioItems
     //
     this.scenarioItems.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.scenarioItems.Location = new System.Drawing.Point(8, 8);
     this.scenarioItems.Name     = "scenarioItems";
     this.scenarioItems.Size     = new System.Drawing.Size(280, 298);
     this.scenarioItems.TabIndex = 0;
     //
     // ScenarioExplorer
     //
     this.Controls.Add(this.splitContainerControl1);
     this.Name    = "ScenarioExplorer";
     this.Size    = new System.Drawing.Size(296, 696);
     this.Resize += new System.EventHandler(this.ScenarioExplorer_Resize);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #10
0
 private void Borrowers_Load(object sender, EventArgs e)
 {
     LoadList();
     lstBorrowerItem.BestFitColumns();
     scc = (SplitContainerControl)((SplitGroupPanel)this.Parent).Parent;
     if (ss == SaveSender.EditBorrower)
     {
         lblForEdit.Visible    = true;
         colIsSelected.Visible = false;
     }
 }
Example #11
0
        protected override void OnViewControlsCreated()
        {
            base.OnViewControlsCreated();

            // Отключение валидации объектов
            DevExpress.Persistent.Validation.RuleSet.CustomNeedToValidateRule += RuleSet_CustomNeedToValidateRule;

            // Получаем текущего пациента
            DetailView ownerView = ObjectSpace.Owner as DetailView;

            currentPacient = ObjectSpace.GetObject(ownerView.CurrentObject) as Pacient;
            // Текущий доктор
            currentDoctor = ObjectSpace.GetObject((Doctor)SecuritySystem.CurrentUser);

            // Контроллер создания услуги
            newObjController = Frame.GetController <DevExpress.ExpressApp.SystemModule.NewObjectViewController>();
            newObjController.ObjectCreating += newObjController_ObjectCreating;

            SplitContainerControl container = View.Control as SplitContainerControl;

            if (container == null)
            {
                return;
            }
            // Pacient_VisitCaseServices_ListView
            var gridControl = container.Controls[0].Controls[0] as GridControl;

            if (gridControl == null)
            {
                return;
            }

            gridView = gridControl.MainView as GridView;
            gridView.CustomDrawGroupRow += gridView_CustomDrawGroupRow;

            gridView.SelectionChanged += (o, e) =>
            {
                bool isGroupRow = gridView.IsGroupRow(gridView.FocusedRowHandle);
                // Oid посещения если isGroupRow = True
                if (isGroupRow)
                {
                    object selectedGroup = gridView.GetGroupRowValue(gridView.FocusedRowHandle);
                    currentVisitCase = selectedGroup != null && selectedGroup is Guid?
                                       ObjectSpace.FindObject <VisitCase>(VisitCase.Fields.Oid == (Guid)selectedGroup) : null;

                    currentMedService = null;
                }
                else
                {
                    currentVisitCase  = null;
                    currentMedService = View.CurrentObject as MedService;
                }
            };
        }
 private void InitializeComponent()
 {
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.ucPipeNodeStatsOutput1 = new DF3DPipe.Stats.UC.UCPipeNodeStatsOutput();
     this.ucPipeNodeStatsChart1  = new DF3DPipe.Stats.UC.UCPipeNodeStatsChart();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControl1.Name     = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.ucPipeNodeStatsOutput1);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.ucPipeNodeStatsChart1);
     this.splitContainerControl1.Panel2.Text      = "Panel2";
     this.splitContainerControl1.Size             = new System.Drawing.Size(974, 482);
     this.splitContainerControl1.SplitterPosition = 400;
     this.splitContainerControl1.TabIndex         = 0;
     this.splitContainerControl1.Text             = "splitContainerControl1";
     //
     // ucPipeNodeStatsOutput1
     //
     this.ucPipeNodeStatsOutput1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ucPipeNodeStatsOutput1.Location = new System.Drawing.Point(0, 0);
     this.ucPipeNodeStatsOutput1.Name     = "ucPipeNodeStatsOutput1";
     this.ucPipeNodeStatsOutput1.Size     = new System.Drawing.Size(400, 482);
     this.ucPipeNodeStatsOutput1.TabIndex = 0;
     //
     // ucPipeNodeStatsChart1
     //
     this.ucPipeNodeStatsChart1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ucPipeNodeStatsChart1.Location = new System.Drawing.Point(0, 0);
     this.ucPipeNodeStatsChart1.Name     = "ucPipeNodeStatsChart1";
     this.ucPipeNodeStatsChart1.Size     = new System.Drawing.Size(569, 482);
     this.ucPipeNodeStatsChart1.TabIndex = 0;
     //
     // FrmPipeNodeStatsOutput
     //
     this.ClientSize = new System.Drawing.Size(974, 482);
     this.Controls.Add(this.splitContainerControl1);
     this.MinimizeBox   = false;
     this.Name          = "FrmPipeNodeStatsOutput";
     this.ShowIcon      = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "统计结果";
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #13
0
        private SplitContainerControl createColumnMetaDataControl(ImportDataColumn col, bool swapPanels)
        {
            if (col.MetaData == null)
            {
                return(null);
            }
            if (string.IsNullOrEmpty(col.Source))
            {
                return(null);
            }
            var colMetaDataControl = new MetaDataEditControl(col.MetaData)
            {
                Tag = col, AutoAcceptChanges = true
            };

            Controls.Add(colMetaDataControl);
            colMetaDataControl.OnCopyMetaData       += onCopyMetaDataColumnControlPanel;
            colMetaDataControl.OnIsDataValidChanged += onIsValidChangedColumnControlPanel;
            colMetaDataControl.OnMetaDataChanged    += onMetaDataChangedColumnControlPanel;
            if (col.MetaData.Rows.Count > 0)
            {
                col.SetColumnUnitDependingOnMetaData();
                reflectMetaDataChangesForColumn(col);
            }

            var newSplitter = new SplitContainerControl();

            Controls.Add(newSplitter);

            newSplitter.BeginInit();
            newSplitter.Horizontal = false;
            newSplitter.FixedPanel = SplitFixedPanel.Panel1;
            newSplitter.AlwaysScrollActiveControlIntoView = true;
            newSplitter.Panel2.Controls.Add(colMetaDataControl);
            colMetaDataControl.Dock        = DockStyle.Fill;
            newSplitter.Panel2.Name        = col.ColumnName;
            newSplitter.Panel2.Text        = col.GetCaptionForColumn();
            newSplitter.Panel2.ShowCaption = true;
            newSplitter.Panel2.BorderStyle = BorderStyles.Simple;
            newSplitter.Panel2.MinSize     = PANEL_MIN_SIZE;
            newSplitter.Panel2.Height      = (col.MetaData.Columns.Count + 2) * PANEL_ROW_HEIGHT;
            newSplitter.CollapsePanel      = SplitCollapsePanel.Panel2;
            if (swapPanels)
            {
                newSplitter.SwapPanels();
            }
            newSplitter.SplitterPosition = PANEL_ROW_HEIGHT;
            newSplitter.EndInit();

            return(newSplitter);
        }
Example #14
0
 void createcontrol() {
     UCJH_monthks ks = new UCJH_monthks(全局);
     ks.Dock = DockStyle.Fill;
     ucjh_year = ks;
     SplitContainerControl split = new SplitContainerControl();
     split.Dock = DockStyle.Fill;
     split.Horizontal = false;
     split.FixedPanel = SplitFixedPanel.Panel2;
     split.Parent = splitContainerControl1.Panel2;
     split.SplitterPosition = 200;
     ks.Parent = split.Panel2;
     gridControl1.Parent = split.Panel1;
     ks.RowDoubleClicked += new SendDataEventHandler<JH_monthks>(ks_RowDoubleClicked);
 }
Example #15
0
 private void init() {
     ucpS_GT1.HideList();
     SplitContainerControl scc = new SplitContainerControl();
     scc.Dock = DockStyle.Fill;
     scc.Parent = this;
     splitCC1.Parent = scc.Panel2;
     xltree = new UCxlTreeSelector();
     if (MainHelper.UserOrg != null && MainHelper.UserOrg.OrgType == "1") {//如果是供电所人员,则锁定
         xltree.SetShowOrg(MainHelper.UserOrg);
     }
     xltree.Dock = DockStyle.Fill;
     xltree.Parent = scc.Panel1;
     scc.SplitterPosition = 200;
     xltree.LineSelectionChanged += new Ebada.Client.SendDataEventHandler<Ebada.Scgl.Model.PS_xl>(xltree_LineSelectionChanged);
     
 }
        public ContentPageController(PanelControl tabControl, LabelControl captionLabel, SplitContainerControl splitContainer)
        {
            this.m_tabCtrlContainer = tabControl;
            this.m_captionLabel     = captionLabel;
            this.m_splitContainer   = splitContainer;

            m_UIFuncsDependonCase = new List <UIFunctionEnum>();

            m_DTFunction2TabPage = new Dictionary <UIFunctionEnum, ucContentBase>();
            Framework.Container.Instance.EvtAggregator.GetEvent <NavigateEvent>().Subscribe(this.OnUINavigatorEvent);
            Framework.Container.Instance.EvtAggregator.GetEvent <ShowDialogEvent>().Subscribe(this.OnShowDialogEvent);

            Framework.Container.Instance.EvtAggregator.GetEvent <LeaveCaseEvent>().Subscribe(OnLeaveCase);

            Framework.Container.Instance.RegisterEventSubscriber(this);
        }
Example #17
0
        private void lstBooksItem_DoubleClick(object sender, EventArgs e)
        {
            scc = (SplitContainerControl)((SplitGroupPanel)this.Parent).Parent;
            if (ss == SaveSender.EditBook && lstBooksItem.RowCount > 0)
            {
                int    count  = ((Authors)scc.Panel2.Controls[0]).lstAuthorsItem.RowCount;
                string bookID = lstBooksItem.GetRowCellValue(lstBooksItem.FocusedRowHandle, colBookID).ToString();
                addBookInfo.editID = bookID;
                //frmMain.ss = SaveSender.EditBook;
                scc.Panel1.Controls.Clear();
                scc.Panel2.Controls.Clear();
                addBookInfo info = new addBookInfo();
                info.Dock            = DockStyle.Fill;
                scc.SplitterPosition = info.Size.Width;
                scc.Panel1.Controls.Add(info);
                scc.Panel1.Enabled = true;
                addBookAuthor auth = new addBookAuthor();
                auth.Dock = DockStyle.Fill;
                auth.Size = scc.Size;
                scc.Panel2.Controls.Add(auth);

                scc.Panel2.Enabled = (count > 1?true:false);
                this.Dispose();

                /*
                 * ss = SaveSender.AddBook;
                 * ClearPanel();
                 * addBookInfo info = new addBookInfo();
                 * info.Dock = DockStyle.Fill;
                 * info.btnMultiAuthor.Checked = false;
                 * scMain.SplitterPosition = info.Size.Width;
                 * scMain.Panel1.Controls.Add(info);
                 * scMain.Panel1.Enabled = true;
                 * addBookAuthor auth = new addBookAuthor();
                 * auth.Dock = DockStyle.Fill;
                 * auth.Size = scMain.Size;
                 * scMain.Panel2.Controls.Add(auth);
                 * scMain.Panel2.Enabled = false;
                 * ClearCheckDoCheck(btnAddBooks);
                 */
            }
        }
Example #18
0
 private void lstLogsItem_RowCellClick(object sender, DevExpress.XtraGrid.Views.Grid.RowCellClickEventArgs e)
 {
     scc = (SplitContainerControl)((SplitGroupPanel)this.Parent).Parent;
     try
     {
         string description = lstLogsItem.GetRowCellValue(lstLogsItem.FocusedRowHandle, colLogDescription).ToString();
         description = description.Replace(";", Environment.NewLine);
         MemoEdit des = new MemoEdit();
         des.Text = description;
         LabelControl lc = new LabelControl();
         lc.Text      = "Description Details";
         lc.Location  = new Point(0, 0);
         des.Location = new Point(0, lc.Size.Height + 5);
         des.Size     = new Size(scc.Panel2.Width, scc.Panel2.Height - 5 - lc.Size.Height);
         des.Anchor   = (AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top);
         scc.Panel2.Controls.Clear();
         scc.Panel2.Enabled = true;
         scc.Panel2.Controls.Add(lc);
         scc.Panel2.Controls.Add(des);
     }
     catch (Exception ex)
     { XtraMessageBox.Show(ex.Message, "Error Encountered", MessageBoxButtons.OK, MessageBoxIcon.Error); }
 }
 public static void RestoreState(
     SplitContainerControl c)
 {
     restoreState(PersistanceHelper.Storage, c);
 }
 public static void SaveState(
     SplitContainerControl c)
 {
     saveState(PersistanceHelper.Storage, c);
 }
Example #21
0
        public static void ShowMenu(
            DevExpress.XtraBars.BarSubItem barSubItem1,
            bool _status,
            GridControl gridControlMaster,
            SplitContainerControl splitContainerControl1,
            SplitPanelVisibility _type)
        {
            barSubItem1.Enabled = _status;

            if (gridControlMaster.ContextMenuStrip != null)
            {
                foreach (ToolStripItem var in gridControlMaster.ContextMenuStrip.Items)
                {
                    var.Enabled = _status;
                }
            }
            splitContainerControl1.PanelVisibility = _type;
        }
Example #22
0
		private static void saveState(
			IPersistentPairStorage storage,
			SplitContainerControl c )
		{
			int realDistance;
			double percentageDistance;

			if (c.Horizontal)
			{
				if (c.FixedPanel == SplitFixedPanel.Panel1 ||
				    c.FixedPanel == SplitFixedPanel.None)
				{
					realDistance = c.SplitterPosition;
				}
				else
				{
					Debug.Assert(
						c.FixedPanel == SplitFixedPanel.Panel2,
						@"FixedPanel must be Panel2.");

					realDistance = c.Height - c.SplitterPosition;
				}

				percentageDistance = ((double) c.SplitterPosition/c.Height)*100.0;
			}
			else
			{
				if (c.FixedPanel == SplitFixedPanel.Panel1 ||
				    c.FixedPanel == SplitFixedPanel.None)
				{
					realDistance = c.SplitterPosition;
				}
				else
				{
					Debug.Assert(
						c.FixedPanel == SplitFixedPanel.Panel2,
						@"FixedPanel must be Panel2.");

					realDistance = c.Width - c.SplitterPosition;
				}

				percentageDistance = ((double) c.SplitterPosition/c.Width)*100.0;
			}

			// --

			var prefix = c.Name;

			if (c.SplitterPosition > 0)
			{
				PersistanceHelper.SaveValue(storage, prefix + @".SplitterPosition", c.SplitterPosition);
			}
			if (realDistance > 0)
			{
				PersistanceHelper.SaveValue(storage, prefix + @".RealSplitterPosition", realDistance);
			}
			if (percentageDistance > 0)
			{
				PersistanceHelper.SaveValue(storage, prefix + @".PercentageSplitterPosition",
				                     percentageDistance.ToString(CultureInfo.InvariantCulture));
			}

			PersistanceHelper.SaveValue(
				storage,
				prefix + @".PanelVisibility",
				c.PanelVisibility.ToString());
		}
Example #23
0
        private void InitializeComponent()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(FrmVideo));
            GridLevelNode            gridLevelNode            = new GridLevelNode();

            splitContainerControl1 = new SplitContainerControl();
            pbImage  = new PictureBox();
            gcImages = new GridControl();
            lvImages = new LayoutView();
            colImage = new LayoutViewColumn();
            repositoryItemPictureEdit1        = new RepositoryItemPictureEdit();
            layoutViewField_layoutViewColumn1 = new LayoutViewField();
            layoutViewCard1  = new LayoutViewCard();
            gridView1        = new GridView();
            btPlay           = new SimpleButton();
            btPause          = new SimpleButton();
            btStop           = new SimpleButton();
            btOpen           = new SimpleButton();
            btCancel         = new SimpleButton();
            btAccept         = new SimpleButton();
            trackBarControl1 = new TrackBarControl();
            labelControl1    = new LabelControl();
            btClear          = new SimpleButton();
            splitContainerControl1.BeginInit();
            splitContainerControl1.SuspendLayout();
            ((ISupportInitialize)pbImage).BeginInit();
            gcImages.BeginInit();
            lvImages.BeginInit();
            repositoryItemPictureEdit1.BeginInit();
            layoutViewField_layoutViewColumn1.BeginInit();
            layoutViewCard1.BeginInit();
            gridView1.BeginInit();
            ((ISupportInitialize)trackBarControl1).BeginInit();
            trackBarControl1.Properties.BeginInit();
            SuspendLayout();
            componentResourceManager.ApplyResources(splitContainerControl1, "splitContainerControl1");
            splitContainerControl1.Name = "splitContainerControl1";
            componentResourceManager.ApplyResources(splitContainerControl1.Panel1, "splitContainerControl1.Panel1");
            splitContainerControl1.Panel1.Controls.Add(pbImage);
            componentResourceManager.ApplyResources(splitContainerControl1.Panel2, "splitContainerControl1.Panel2");
            splitContainerControl1.Panel2.Controls.Add(gcImages);
            splitContainerControl1.SplitterPosition = 751;
            componentResourceManager.ApplyResources(pbImage, "pbImage");
            pbImage.Name    = "pbImage";
            pbImage.TabStop = false;
            componentResourceManager.ApplyResources(gcImages, "gcImages");
            gcImages.EmbeddedNavigator.AccessibleDescription  = componentResourceManager.GetString("gcImages.EmbeddedNavigator.AccessibleDescription");
            gcImages.EmbeddedNavigator.AccessibleName         = componentResourceManager.GetString("gcImages.EmbeddedNavigator.AccessibleName");
            gcImages.EmbeddedNavigator.AllowHtmlTextInToolTip = (DefaultBoolean)componentResourceManager.GetObject("gcImages.EmbeddedNavigator.AllowHtmlTextInToolTip");
            gcImages.EmbeddedNavigator.Anchor                = (AnchorStyles)componentResourceManager.GetObject("gcImages.EmbeddedNavigator.Anchor");
            gcImages.EmbeddedNavigator.BackgroundImage       = (Image)componentResourceManager.GetObject("gcImages.EmbeddedNavigator.BackgroundImage");
            gcImages.EmbeddedNavigator.BackgroundImageLayout = (ImageLayout)componentResourceManager.GetObject("gcImages.EmbeddedNavigator.BackgroundImageLayout");
            gcImages.EmbeddedNavigator.ImeMode               = (ImeMode)componentResourceManager.GetObject("gcImages.EmbeddedNavigator.ImeMode");
            gcImages.EmbeddedNavigator.MaximumSize           = (Size)componentResourceManager.GetObject("gcImages.EmbeddedNavigator.MaximumSize");
            gcImages.EmbeddedNavigator.TextLocation          = (NavigatorButtonsTextLocation)componentResourceManager.GetObject("gcImages.EmbeddedNavigator.TextLocation");
            gcImages.EmbeddedNavigator.ToolTip               = componentResourceManager.GetString("gcImages.EmbeddedNavigator.ToolTip");
            gcImages.EmbeddedNavigator.ToolTipIconType       = (ToolTipIconType)componentResourceManager.GetObject("gcImages.EmbeddedNavigator.ToolTipIconType");
            gcImages.EmbeddedNavigator.ToolTipTitle          = componentResourceManager.GetString("gcImages.EmbeddedNavigator.ToolTipTitle");
            gridLevelNode.RelationName = "Level1";
            gcImages.LevelTree.Nodes.AddRange(new GridLevelNode[1]
            {
                gridLevelNode
            });
            gcImages.MainView = lvImages;
            gcImages.Name     = "gcImages";
            gcImages.ViewCollection.AddRange(new BaseView[2]
            {
                lvImages,
                gridView1
            });
            componentResourceManager.ApplyResources(lvImages, "lvImages");
            lvImages.CardHorzInterval = 0;
            lvImages.CardMinSize      = new Size(150, 150);
            lvImages.CardVertInterval = 0;
            lvImages.Columns.AddRange(new LayoutViewColumn[1]
            {
                colImage
            });
            lvImages.GridControl = gcImages;
            lvImages.Name        = "lvImages";
            lvImages.OptionsBehavior.AllowAddRows           = DefaultBoolean.False;
            lvImages.OptionsBehavior.AllowDeleteRows        = DefaultBoolean.False;
            lvImages.OptionsBehavior.AllowExpandCollapse    = false;
            lvImages.OptionsBehavior.AutoPopulateColumns    = false;
            lvImages.OptionsBehavior.AutoSelectAllInEditor  = false;
            lvImages.OptionsCustomization.AllowFilter       = false;
            lvImages.OptionsCustomization.AllowSort         = false;
            lvImages.OptionsItemText.AlignMode              = FieldTextAlignMode.CustomSize;
            lvImages.OptionsItemText.TextToControlDistance  = 0;
            lvImages.OptionsLayout.Columns.AddNewColumns    = false;
            lvImages.OptionsLayout.Columns.RemoveOldColumns = false;
            lvImages.OptionsLayout.Columns.StoreLayout      = false;
            lvImages.OptionsLayout.StoreDataSettings        = false;
            lvImages.OptionsLayout.StoreVisualOptions       = false;
            lvImages.OptionsSelection.MultiSelect           = true;
            lvImages.OptionsView.AllowHotTrackFields        = false;
            lvImages.OptionsView.ShowButtonMode             = ShowButtonModeEnum.ShowAlways;
            lvImages.OptionsView.ShowCardExpandButton       = false;
            lvImages.OptionsView.ShowCardFieldBorders       = true;
            lvImages.OptionsView.ShowCardLines              = false;
            lvImages.OptionsView.ShowFieldHints             = false;
            lvImages.OptionsView.ShowFilterPanelMode        = ShowFilterPanelMode.Never;
            lvImages.OptionsView.ShowHeaderPanel            = false;
            lvImages.OptionsView.ViewMode             = LayoutViewMode.MultiColumn;
            lvImages.TemplateCard                     = layoutViewCard1;
            lvImages.CustomDrawCardCaption           += lvImages_CustomDrawCardCaption;
            colImage.AppearanceCell.Font              = (Font)componentResourceManager.GetObject("colImage.AppearanceCell.Font");
            colImage.AppearanceCell.FontSizeDelta     = (int)componentResourceManager.GetObject("colImage.AppearanceCell.FontSizeDelta");
            colImage.AppearanceCell.FontStyleDelta    = (FontStyle)componentResourceManager.GetObject("colImage.AppearanceCell.FontStyleDelta");
            colImage.AppearanceCell.GradientMode      = (LinearGradientMode)componentResourceManager.GetObject("colImage.AppearanceCell.GradientMode");
            colImage.AppearanceCell.Image             = (Image)componentResourceManager.GetObject("colImage.AppearanceCell.Image");
            colImage.AppearanceCell.Options.UseFont   = true;
            colImage.AppearanceHeader.Font            = (Font)componentResourceManager.GetObject("colImage.AppearanceHeader.Font");
            colImage.AppearanceHeader.FontSizeDelta   = (int)componentResourceManager.GetObject("colImage.AppearanceHeader.FontSizeDelta");
            colImage.AppearanceHeader.FontStyleDelta  = (FontStyle)componentResourceManager.GetObject("colImage.AppearanceHeader.FontStyleDelta");
            colImage.AppearanceHeader.GradientMode    = (LinearGradientMode)componentResourceManager.GetObject("colImage.AppearanceHeader.GradientMode");
            colImage.AppearanceHeader.Image           = (Image)componentResourceManager.GetObject("colImage.AppearanceHeader.Image");
            colImage.AppearanceHeader.Options.UseFont = true;
            componentResourceManager.ApplyResources(colImage, "colImage");
            colImage.ColumnEdit                  = repositoryItemPictureEdit1;
            colImage.FieldName                   = "Image";
            colImage.LayoutViewField             = layoutViewField_layoutViewColumn1;
            colImage.Name                        = "colImage";
            colImage.OptionsColumn.AllowEdit     = false;
            colImage.OptionsColumn.AllowMove     = false;
            colImage.OptionsColumn.AllowShowHide = false;
            colImage.OptionsColumn.AllowSize     = false;
            colImage.OptionsColumn.ReadOnly      = true;
            componentResourceManager.ApplyResources(repositoryItemPictureEdit1, "repositoryItemPictureEdit1");
            repositoryItemPictureEdit1.Name     = "repositoryItemPictureEdit1";
            repositoryItemPictureEdit1.SizeMode = PictureSizeMode.Zoom;
            layoutViewField_layoutViewColumn1.EditorPreferredWidth = 122;
            layoutViewField_layoutViewColumn1.Location             = new Point(0, 0);
            layoutViewField_layoutViewColumn1.Name     = "layoutViewField_layoutViewColumn1";
            layoutViewField_layoutViewColumn1.Padding  = new Padding(0, 0, 0, 0);
            layoutViewField_layoutViewColumn1.Size     = new Size(129, 22);
            layoutViewField_layoutViewColumn1.TextSize = new Size(7, 13);
            componentResourceManager.ApplyResources(layoutViewCard1, "layoutViewCard1");
            layoutViewCard1.ExpandButtonLocation = GroupElementLocation.AfterText;
            layoutViewCard1.Items.AddRange(new BaseLayoutItem[1]
            {
                layoutViewField_layoutViewColumn1
            });
            layoutViewCard1.Name = "layoutViewTemplateCard";
            layoutViewCard1.OptionsItemText.TextToControlDistance = 0;
            layoutViewCard1.Padding = new Padding(0, 0, 0, 0);
            componentResourceManager.ApplyResources(gridView1, "gridView1");
            gridView1.GridControl = gcImages;
            gridView1.Name        = "gridView1";
            componentResourceManager.ApplyResources(btPlay, "btPlay");
            btPlay.Appearance.Font            = (Font)componentResourceManager.GetObject("btPlay.Appearance.Font");
            btPlay.Appearance.FontSizeDelta   = (int)componentResourceManager.GetObject("btPlay.Appearance.FontSizeDelta");
            btPlay.Appearance.FontStyleDelta  = (FontStyle)componentResourceManager.GetObject("btPlay.Appearance.FontStyleDelta");
            btPlay.Appearance.GradientMode    = (LinearGradientMode)componentResourceManager.GetObject("btPlay.Appearance.GradientMode");
            btPlay.Appearance.Image           = (Image)componentResourceManager.GetObject("btPlay.Appearance.Image");
            btPlay.Appearance.Options.UseFont = true;
            btPlay.Image  = Resources.play36;
            btPlay.Name   = "btPlay";
            btPlay.Click += btPlay_Click;
            componentResourceManager.ApplyResources(btPause, "btPause");
            btPause.Appearance.Font            = (Font)componentResourceManager.GetObject("btPause.Appearance.Font");
            btPause.Appearance.FontSizeDelta   = (int)componentResourceManager.GetObject("btPause.Appearance.FontSizeDelta");
            btPause.Appearance.FontStyleDelta  = (FontStyle)componentResourceManager.GetObject("btPause.Appearance.FontStyleDelta");
            btPause.Appearance.GradientMode    = (LinearGradientMode)componentResourceManager.GetObject("btPause.Appearance.GradientMode");
            btPause.Appearance.Image           = (Image)componentResourceManager.GetObject("btPause.Appearance.Image");
            btPause.Appearance.Options.UseFont = true;
            btPause.Image  = Resources.pause36;
            btPause.Name   = "btPause";
            btPause.Click += btPause_Click;
            componentResourceManager.ApplyResources(btStop, "btStop");
            btStop.Appearance.Font            = (Font)componentResourceManager.GetObject("btStop.Appearance.Font");
            btStop.Appearance.FontSizeDelta   = (int)componentResourceManager.GetObject("btStop.Appearance.FontSizeDelta");
            btStop.Appearance.FontStyleDelta  = (FontStyle)componentResourceManager.GetObject("btStop.Appearance.FontStyleDelta");
            btStop.Appearance.GradientMode    = (LinearGradientMode)componentResourceManager.GetObject("btStop.Appearance.GradientMode");
            btStop.Appearance.Image           = (Image)componentResourceManager.GetObject("btStop.Appearance.Image");
            btStop.Appearance.Options.UseFont = true;
            btStop.Image  = Resources.stop36;
            btStop.Name   = "btStop";
            btStop.Click += btStop_Click;
            componentResourceManager.ApplyResources(btOpen, "btOpen");
            btOpen.Appearance.Font            = (Font)componentResourceManager.GetObject("btOpen.Appearance.Font");
            btOpen.Appearance.FontSizeDelta   = (int)componentResourceManager.GetObject("btOpen.Appearance.FontSizeDelta");
            btOpen.Appearance.FontStyleDelta  = (FontStyle)componentResourceManager.GetObject("btOpen.Appearance.FontStyleDelta");
            btOpen.Appearance.GradientMode    = (LinearGradientMode)componentResourceManager.GetObject("btOpen.Appearance.GradientMode");
            btOpen.Appearance.Image           = (Image)componentResourceManager.GetObject("btOpen.Appearance.Image");
            btOpen.Appearance.Options.UseFont = true;
            btOpen.Image  = Resources.Open3;
            btOpen.Name   = "btOpen";
            btOpen.Click += btOpen_Click;
            componentResourceManager.ApplyResources(btCancel, "btCancel");
            btCancel.Appearance.Font            = (Font)componentResourceManager.GetObject("btCancel.Appearance.Font");
            btCancel.Appearance.FontSizeDelta   = (int)componentResourceManager.GetObject("btCancel.Appearance.FontSizeDelta");
            btCancel.Appearance.FontStyleDelta  = (FontStyle)componentResourceManager.GetObject("btCancel.Appearance.FontStyleDelta");
            btCancel.Appearance.GradientMode    = (LinearGradientMode)componentResourceManager.GetObject("btCancel.Appearance.GradientMode");
            btCancel.Appearance.Image           = (Image)componentResourceManager.GetObject("btCancel.Appearance.Image");
            btCancel.Appearance.Options.UseFont = true;
            btCancel.DialogResult = DialogResult.Cancel;
            btCancel.Name         = "btCancel";
            btCancel.Click       += btCancel_Click;
            componentResourceManager.ApplyResources(btAccept, "btAccept");
            btAccept.Appearance.Font            = (Font)componentResourceManager.GetObject("btAccept.Appearance.Font");
            btAccept.Appearance.FontSizeDelta   = (int)componentResourceManager.GetObject("btAccept.Appearance.FontSizeDelta");
            btAccept.Appearance.FontStyleDelta  = (FontStyle)componentResourceManager.GetObject("btAccept.Appearance.FontStyleDelta");
            btAccept.Appearance.GradientMode    = (LinearGradientMode)componentResourceManager.GetObject("btAccept.Appearance.GradientMode");
            btAccept.Appearance.Image           = (Image)componentResourceManager.GetObject("btAccept.Appearance.Image");
            btAccept.Appearance.Options.UseFont = true;
            btAccept.Name   = "btAccept";
            btAccept.Click += btAccept_Click;
            componentResourceManager.ApplyResources(trackBarControl1, "trackBarControl1");
            trackBarControl1.Name = "trackBarControl1";
            trackBarControl1.Properties.AccessibleDescription = componentResourceManager.GetString("trackBarControl1.Properties.AccessibleDescription");
            trackBarControl1.Properties.AccessibleName        = componentResourceManager.GetString("trackBarControl1.Properties.AccessibleName");
            trackBarControl1.Properties.Orientation           = (Orientation)componentResourceManager.GetObject("trackBarControl1.Properties.Orientation");
            trackBarControl1.EditValueChanged += trackBarControl1_EditValueChanged;
            componentResourceManager.ApplyResources(labelControl1, "labelControl1");
            labelControl1.Name = "labelControl1";
            componentResourceManager.ApplyResources(btClear, "btClear");
            btClear.Appearance.Font            = (Font)componentResourceManager.GetObject("btClear.Appearance.Font");
            btClear.Appearance.FontSizeDelta   = (int)componentResourceManager.GetObject("btClear.Appearance.FontSizeDelta");
            btClear.Appearance.FontStyleDelta  = (FontStyle)componentResourceManager.GetObject("btClear.Appearance.FontStyleDelta");
            btClear.Appearance.GradientMode    = (LinearGradientMode)componentResourceManager.GetObject("btClear.Appearance.GradientMode");
            btClear.Appearance.Image           = (Image)componentResourceManager.GetObject("btClear.Appearance.Image");
            btClear.Appearance.Options.UseFont = true;
            btClear.Name   = "btClear";
            btClear.Click += btClear_Click;
            componentResourceManager.ApplyResources(this, "$this");
            AutoScaleMode = AutoScaleMode.Font;
            Controls.Add(btClear);
            Controls.Add(labelControl1);
            Controls.Add(trackBarControl1);
            Controls.Add(splitContainerControl1);
            Controls.Add(btCancel);
            Controls.Add(btAccept);
            Controls.Add(btOpen);
            Controls.Add(btStop);
            Controls.Add(btPause);
            Controls.Add(btPlay);
            FormBorderStyle = FormBorderStyle.FixedSingle;
            MaximizeBox     = false;
            MinimizeBox     = false;
            Name            = "FrmVideo";
            FormClosing    += frmVideo_FormClosing;
            Load           += frmVideo_Load;
            splitContainerControl1.EndInit();
            splitContainerControl1.ResumeLayout(false);
            ((ISupportInitialize)pbImage).EndInit();
            gcImages.EndInit();
            lvImages.EndInit();
            repositoryItemPictureEdit1.EndInit();
            layoutViewField_layoutViewColumn1.EndInit();
            layoutViewCard1.EndInit();
            gridView1.EndInit();
            trackBarControl1.Properties.EndInit();
            ((ISupportInitialize)trackBarControl1).EndInit();
            ResumeLayout(false);
            PerformLayout();
        }
        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);

        }
		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);
		}
        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);

        }
Example #27
0
 private void InitializeComponent()
 {
     this.horizontalSplitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.xtraTabControl1                = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1                   = new DevExpress.XtraTab.XtraTabPage();
     this.richEditControlCS              = new DevExpress.XtraRichEdit.RichEditControl();
     this.xtraTabPage2                   = new DevExpress.XtraTab.XtraTabPage();
     this.richEditControlVB              = new DevExpress.XtraRichEdit.RichEditControl();
     this.codeExampleNameLbl             = new DevExpress.XtraEditors.LabelControl();
     this.spreadsheet                    = new DevExpress.XtraSpreadsheet.SpreadsheetControl();
     this.verticalSplitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     ((System.ComponentModel.ISupportInitialize)(this.horizontalSplitContainerControl1)).BeginInit();
     this.horizontalSplitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.verticalSplitContainerControl1)).BeginInit();
     this.verticalSplitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     this.SuspendLayout();
     //
     // horizontalSplitContainerControl1
     //
     this.horizontalSplitContainerControl1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.horizontalSplitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
     this.horizontalSplitContainerControl1.Horizontal = false;
     this.horizontalSplitContainerControl1.Location   = new System.Drawing.Point(0, 0);
     this.horizontalSplitContainerControl1.Name       = "horizontalSplitContainerControl1";
     this.horizontalSplitContainerControl1.Panel1.Controls.Add(this.xtraTabControl1);
     this.horizontalSplitContainerControl1.Panel1.Controls.Add(this.codeExampleNameLbl);
     this.horizontalSplitContainerControl1.Panel1.Text = "Panel1";
     this.horizontalSplitContainerControl1.Panel2.Controls.Add(this.spreadsheet);
     this.horizontalSplitContainerControl1.Panel2.Text      = "Panel2";
     this.horizontalSplitContainerControl1.Size             = new System.Drawing.Size(945, 655);
     this.horizontalSplitContainerControl1.SplitterPosition = 340;
     this.horizontalSplitContainerControl1.TabIndex         = 2;
     this.horizontalSplitContainerControl1.Text             = "splitContainerControl1";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.AppearancePage.PageClient.BackColor              = System.Drawing.Color.Transparent;
     this.xtraTabControl1.AppearancePage.PageClient.BackColor2             = System.Drawing.Color.Transparent;
     this.xtraTabControl1.AppearancePage.PageClient.BorderColor            = System.Drawing.Color.Transparent;
     this.xtraTabControl1.AppearancePage.PageClient.Options.UseBackColor   = true;
     this.xtraTabControl1.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.HeaderAutoFill  = DevExpress.Utils.DefaultBoolean.True;
     this.xtraTabControl1.Location        = new System.Drawing.Point(0, 44);
     this.xtraTabControl1.Name            = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size            = new System.Drawing.Size(945, 266);
     this.xtraTabControl1.TabIndex        = 11;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.xtraTabPage1,
         this.xtraTabPage2
     });
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Appearance.HeaderActive.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabPage1.Appearance.HeaderActive.Options.UseFont = true;
     this.xtraTabPage1.Controls.Add(this.richEditControlCS);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(939, 238);
     this.xtraTabPage1.Text = "C#";
     //
     // richEditControlCS
     //
     this.richEditControlCS.ActiveViewType = DevExpress.XtraRichEdit.RichEditViewType.Draft;
     this.richEditControlCS.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.richEditControlCS.EnableToolTips = true;
     this.richEditControlCS.Location       = new System.Drawing.Point(0, 0);
     this.richEditControlCS.Name           = "richEditControlCS";
     this.richEditControlCS.Options.Comments.ShowAllAuthors = false;
     this.richEditControlCS.Options.CopyPaste.MaintainDocumentSectionSettings = false;
     this.richEditControlCS.Options.Fields.UseCurrentCultureDateTimeFormat    = false;
     this.richEditControlCS.Options.HorizontalRuler.Visibility  = DevExpress.XtraRichEdit.RichEditRulerVisibility.Hidden;
     this.richEditControlCS.Options.MailMerge.KeepLastParagraph = false;
     this.richEditControlCS.Size     = new System.Drawing.Size(939, 238);
     this.richEditControlCS.TabIndex = 14;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Appearance.HeaderActive.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabPage2.Appearance.HeaderActive.Options.UseFont = true;
     this.xtraTabPage2.Controls.Add(this.richEditControlVB);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(939, 238);
     this.xtraTabPage2.Text = "VB";
     //
     // richEditControlVB
     //
     this.richEditControlVB.ActiveViewType = DevExpress.XtraRichEdit.RichEditViewType.Draft;
     this.richEditControlVB.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.richEditControlVB.EnableToolTips = true;
     this.richEditControlVB.Location       = new System.Drawing.Point(0, 0);
     this.richEditControlVB.Name           = "richEditControlVB";
     this.richEditControlVB.Options.Comments.ShowAllAuthors = false;
     this.richEditControlVB.Options.CopyPaste.MaintainDocumentSectionSettings = false;
     this.richEditControlVB.Options.Fields.UseCurrentCultureDateTimeFormat    = false;
     this.richEditControlVB.Options.HorizontalRuler.Visibility  = DevExpress.XtraRichEdit.RichEditRulerVisibility.Hidden;
     this.richEditControlVB.Options.MailMerge.KeepLastParagraph = false;
     this.richEditControlVB.Size     = new System.Drawing.Size(939, 238);
     this.richEditControlVB.TabIndex = 15;
     //
     // codeExampleNameLbl
     //
     this.codeExampleNameLbl.Appearance.Font = new System.Drawing.Font("Arial", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.codeExampleNameLbl.Dock            = System.Windows.Forms.DockStyle.Top;
     this.codeExampleNameLbl.Location        = new System.Drawing.Point(0, 0);
     this.codeExampleNameLbl.Margin          = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.codeExampleNameLbl.Name            = "codeExampleNameLbl";
     this.codeExampleNameLbl.Padding         = new System.Windows.Forms.Padding(0, 0, 0, 12);
     this.codeExampleNameLbl.Size            = new System.Drawing.Size(72, 44);
     this.codeExampleNameLbl.TabIndex        = 10;
     this.codeExampleNameLbl.Text            = "label1";
     //
     // spreadsheet
     //
     this.spreadsheet.Dock                             = System.Windows.Forms.DockStyle.Fill;
     this.spreadsheet.Location                         = new System.Drawing.Point(0, 0);
     this.spreadsheet.Name                             = "spreadsheet";
     this.spreadsheet.Options.Culture                  = new System.Globalization.CultureInfo("ru-RU");
     this.spreadsheet.Options.Export.Csv.Culture       = new System.Globalization.CultureInfo("");
     this.spreadsheet.Options.Export.Txt.Culture       = new System.Globalization.CultureInfo("");
     this.spreadsheet.Options.Import.Csv.Culture       = new System.Globalization.CultureInfo("");
     this.spreadsheet.Options.Import.Csv.Delimiter     = ',';
     this.spreadsheet.Options.Import.Txt.Culture       = new System.Globalization.CultureInfo("");
     this.spreadsheet.Options.Import.Txt.Delimiter     = ',';
     this.spreadsheet.Options.View.Charts.Antialiasing = DevExpress.XtraSpreadsheet.DocumentCapability.Enabled;
     this.spreadsheet.Size                             = new System.Drawing.Size(945, 340);
     this.spreadsheet.TabIndex                         = 5;
     //
     // verticalSplitContainerControl1
     //
     this.verticalSplitContainerControl1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.verticalSplitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
     this.verticalSplitContainerControl1.Location   = new System.Drawing.Point(0, 0);
     this.verticalSplitContainerControl1.Name       = "verticalSplitContainerControl1";
     this.verticalSplitContainerControl1.Panel1.Controls.Add(this.horizontalSplitContainerControl1);
     this.verticalSplitContainerControl1.Panel1.Text = "Panel1";
     this.verticalSplitContainerControl1.Panel2.Controls.Add(this.treeList1);
     this.verticalSplitContainerControl1.Panel2.Text      = "Panel2";
     this.verticalSplitContainerControl1.Size             = new System.Drawing.Size(1212, 655);
     this.verticalSplitContainerControl1.SplitterPosition = 262;
     this.verticalSplitContainerControl1.TabIndex         = 0;
     this.verticalSplitContainerControl1.Text             = "verticalSplitContainerControl1";
     //
     // treeList1
     //
     this.treeList1.Appearance.FocusedCell.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline);
     this.treeList1.Appearance.FocusedCell.Options.UseFont = true;
     this.treeList1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(0, 0);
     this.treeList1.Name     = "treeList1";
     this.treeList1.Size     = new System.Drawing.Size(262, 655);
     this.treeList1.TabIndex = 11;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1212, 655);
     this.Controls.Add(this.verticalSplitContainerControl1);
     this.Name = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.horizontalSplitContainerControl1)).EndInit();
     this.horizontalSplitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.verticalSplitContainerControl1)).EndInit();
     this.verticalSplitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RolesChangeRibbonForm));
     this.sccRoles = new DevExpress.XtraEditors.SplitContainerControl();
     this.cgcRole = new CommonLibrary.GridControlFolder.CommonGridControl();
     this.bsRole = new System.Windows.Forms.BindingSource();
     this.cgvRole = new CommonLibrary.GridControlFolder.CommonGridView();
     this.colRoleName = new CommonLibrary.GridControlFolder.CommonGridColumn();
     this.cgcUsers = new CommonLibrary.GridControlFolder.CommonGridControl();
     this.bsRoleUsers = new System.Windows.Forms.BindingSource();
     this.cgvUsers = new CommonLibrary.GridControlFolder.CommonGridView();
     this.colSurnameInitials = new CommonLibrary.GridControlFolder.CommonGridColumn();
     this.riccbeUsers = new DevExpress.XtraEditors.Repository.RepositoryItemCheckedComboBoxEdit();
     this.toolTip = new DevExpress.Utils.ToolTipController();
     this.sccUsers = new DevExpress.XtraEditors.SplitContainerControl();
     this.cgcAllUsers = new CommonLibrary.GridControlFolder.CommonGridControl();
     this.bsUser = new System.Windows.Forms.BindingSource();
     this.cgvAllUsers = new CommonLibrary.GridControlFolder.CommonGridView();
     this.colUserId = new CommonLibrary.GridControlFolder.CommonGridColumn();
     this.colLastName = new CommonLibrary.GridControlFolder.CommonGridColumn();
     this.colFirstName = new CommonLibrary.GridControlFolder.CommonGridColumn();
     this.colMiddleName = new CommonLibrary.GridControlFolder.CommonGridColumn();
     this.colIsLocked = new CommonLibrary.GridControlFolder.CommonGridColumn();
     this.pmUsers = new DevExpress.XtraBars.PopupMenu();
     this.bbiChangePassword = new DevExpress.XtraBars.BarButtonItem();
     this.bbiRemovePassword = new DevExpress.XtraBars.BarButtonItem();
     this.bbiLockUser = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUnlock = new DevExpress.XtraBars.BarButtonItem();
     this.bm = new DevExpress.XtraBars.BarManager();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     ((System.ComponentModel.ISupportInitialize)(this.sccRoles)).BeginInit();
     this.sccRoles.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cgcRole)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bsRole)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cgvRole)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cgcUsers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bsRoleUsers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cgvUsers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riccbeUsers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sccUsers)).BeginInit();
     this.sccUsers.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cgcAllUsers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bsUser)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cgvAllUsers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pmUsers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     this.SuspendLayout();
     //
     // sccRoles
     //
     this.sccRoles.Dock = System.Windows.Forms.DockStyle.Fill;
     this.sccRoles.Horizontal = false;
     this.sccRoles.Location = new System.Drawing.Point(0, 0);
     this.sccRoles.Name = "sccRoles";
     this.sccRoles.Panel1.Controls.Add(this.cgcRole);
     this.sccRoles.Panel1.Text = "Panel1";
     this.sccRoles.Panel2.Controls.Add(this.cgcUsers);
     this.sccRoles.Panel2.Text = "Panel2";
     this.sccRoles.Size = new System.Drawing.Size(404, 681);
     this.sccRoles.SplitterPosition = 276;
     this.sccRoles.TabIndex = 2;
     this.sccRoles.Text = "sccRoles";
     //
     // cgcRole
     //
     this.cgcRole.Cursor = System.Windows.Forms.Cursors.Default;
     this.cgcRole.DataSource = this.bsRole;
     this.cgcRole.Dock = System.Windows.Forms.DockStyle.Fill;
     this.cgcRole.Location = new System.Drawing.Point(0, 0);
     this.cgcRole.MainView = this.cgvRole;
     this.cgcRole.Name = "cgcRole";
     this.cgcRole.Size = new System.Drawing.Size(404, 276);
     this.cgcRole.TabIndex = 3;
     this.cgcRole.UseEmbeddedNavigator = false;
     this.cgcRole.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.cgvRole});
     //
     // bsRole
     //
     this.bsRole.DataSource = typeof(ServerInformation.Role);
     this.bsRole.CurrentChanged += new System.EventHandler(this.RoleCurrentChanged);
     //
     // cgvRole
     //
     this.cgvRole.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colRoleName});
     this.cgvRole.CustomPopupMenu = null;
     this.cgvRole.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.cgvRole.GridControl = this.cgcRole;
     this.cgvRole.Name = "cgvRole";
     this.cgvRole.NewItemRowText = "Кликните здесь для добавления новой роли";
     this.cgvRole.OptionsBehavior.EditorShowMode = DevExpress.Utils.EditorShowMode.MouseDownFocused;
     this.cgvRole.OptionsCustomization.AllowQuickCustomisation = false;
     this.cgvRole.OptionsView.ShowDetailButtons = false;
     this.cgvRole.OptionsView.ShowGroupPanel = false;
     this.cgvRole.OptionsView.ShowViewCaption = true;
     this.cgvRole.ViewCaption = "Список ролей в системе";
     this.cgvRole.DoBeforeDeleteRow += new CommonLibrary.GridControlFolder.CommonGridView.EventBeforeDelete(this.RoleBeforeDelete);
     this.cgvRole.DoCheckBeforeDrawIndicator += new System.EventHandler<CommonLibrary.UIFolder.GridControlFolder.EventRowHandlerArgs>(this.RoleDoCheckBeforeDrawIndicator);
     //
     // colRoleName
     //
     this.colRoleName.Caption = "Название роли";
     this.colRoleName.FieldName = "Name";
     this.colRoleName.Name = "colRoleName";
     this.colRoleName.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.colRoleName.Visible = true;
     this.colRoleName.VisibleIndex = 0;
     this.colRoleName.Width = 256;
     //
     // cgcUsers
     //
     this.cgcUsers.AllowDrop = true;
     this.cgcUsers.Cursor = System.Windows.Forms.Cursors.Default;
     this.cgcUsers.DataSource = this.bsRoleUsers;
     this.cgcUsers.Dock = System.Windows.Forms.DockStyle.Fill;
     this.cgcUsers.Location = new System.Drawing.Point(0, 0);
     this.cgcUsers.MainView = this.cgvUsers;
     this.cgcUsers.Name = "cgcUsers";
     this.cgcUsers.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.riccbeUsers});
     this.cgcUsers.Size = new System.Drawing.Size(404, 400);
     this.cgcUsers.TabIndex = 2;
     this.cgcUsers.UseEmbeddedNavigator = false;
     this.cgcUsers.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.cgvUsers});
     //
     // bsRoleUsers
     //
     this.bsRoleUsers.AllowNew = false;
     this.bsRoleUsers.DataSource = typeof(ServerInformation.User);
     //
     // cgvUsers
     //
     this.cgvUsers.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSurnameInitials});
     this.cgvUsers.CustomPopupMenu = null;
     this.cgvUsers.FixedLineWidth = 1;
     this.cgvUsers.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.cgvUsers.GridControl = this.cgcUsers;
     this.cgvUsers.Name = "cgvUsers";
     this.cgvUsers.NewItemRowText = "Кликните здесь для добавления пользователей к роли";
     this.cgvUsers.OptionsCustomization.AllowAdd = false;
     this.cgvUsers.OptionsCustomization.AllowQuickCustomisation = false;
     this.cgvUsers.OptionsCustomization.AllowSelectionColumn = true;
     this.cgvUsers.OptionsSelection.CheckBoxSelectorColumnWidth = 25;
     this.cgvUsers.OptionsSelection.MultiSelect = true;
     this.cgvUsers.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CheckBoxRowSelect;
     this.cgvUsers.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.cgvUsers.OptionsView.ShowGroupPanel = false;
     this.cgvUsers.OptionsView.ShowViewCaption = true;
     this.cgvUsers.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colSurnameInitials, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.cgvUsers.ViewCaption = "Сотрудники, относящиеся к выбранной роли";
     this.cgvUsers.CustomRowCellEdit += new DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventHandler(this.UsersCustomRowCellEdit);
     this.cgvUsers.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.UsersShowingEditor);
     //
     // colSurnameInitials
     //
     this.colSurnameInitials.Caption = "Сотрудник";
     this.colSurnameInitials.FieldName = "SurnameInitials";
     this.colSurnameInitials.Name = "colSurnameInitials";
     this.colSurnameInitials.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.colSurnameInitials.Visible = true;
     this.colSurnameInitials.VisibleIndex = 1;
     this.colSurnameInitials.Width = 193;
     //
     // riccbeUsers
     //
     this.riccbeUsers.AutoHeight = false;
     this.riccbeUsers.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.riccbeUsers.DisplayMember = "SurnameInitials";
     this.riccbeUsers.Name = "riccbeUsers";
     this.riccbeUsers.SelectAllItemCaption = "Выбрать всё";
     this.riccbeUsers.ValueMember = "Id";
     this.riccbeUsers.EditValueChanged += new System.EventHandler(this.UsersEditValueChanged);
     //
     // toolTip
     //
     this.toolTip.Rounded = true;
     this.toolTip.ShowBeak = true;
     //
     // sccUsers
     //
     this.sccUsers.Dock = System.Windows.Forms.DockStyle.Fill;
     this.sccUsers.Location = new System.Drawing.Point(0, 0);
     this.sccUsers.Name = "sccUsers";
     this.sccUsers.Panel1.Controls.Add(this.sccRoles);
     this.sccUsers.Panel1.Text = "Panel1";
     this.sccUsers.Panel2.Controls.Add(this.cgcAllUsers);
     this.sccUsers.Panel2.Text = "Panel2";
     this.sccUsers.Size = new System.Drawing.Size(1086, 681);
     this.sccUsers.SplitterPosition = 404;
     this.sccUsers.TabIndex = 3;
     this.sccUsers.Text = "sccUsers";
     //
     // cgcAllUsers
     //
     this.cgcAllUsers.AllowDrop = true;
     this.cgcAllUsers.Cursor = System.Windows.Forms.Cursors.Default;
     this.cgcAllUsers.DataSource = this.bsUser;
     this.cgcAllUsers.Dock = System.Windows.Forms.DockStyle.Fill;
     this.cgcAllUsers.Location = new System.Drawing.Point(0, 0);
     this.cgcAllUsers.MainView = this.cgvAllUsers;
     this.cgcAllUsers.Name = "cgcAllUsers";
     this.cgcAllUsers.Size = new System.Drawing.Size(677, 681);
     this.cgcAllUsers.TabIndex = 5;
     this.cgcAllUsers.UseEmbeddedNavigator = false;
     this.cgcAllUsers.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.cgvAllUsers});
     //
     // bsUser
     //
     this.bsUser.DataSource = typeof(ServerInformation.User);
     //
     // cgvAllUsers
     //
     this.cgvAllUsers.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colUserId,
     this.colLastName,
     this.colFirstName,
     this.colMiddleName,
     this.colIsLocked});
     this.cgvAllUsers.CustomPopupMenu = null;
     this.cgvAllUsers.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.cgvAllUsers.GridControl = this.cgcAllUsers;
     this.cgvAllUsers.Name = "cgvAllUsers";
     this.cgvAllUsers.NewItemRowText = "Кликните здесь для добавления нового сотрудника";
     this.cgvAllUsers.OptionsBehavior.EditorShowMode = DevExpress.Utils.EditorShowMode.MouseDownFocused;
     this.cgvAllUsers.OptionsCustomization.AllowDelete = false;
     this.cgvAllUsers.OptionsCustomization.AllowQuickCustomisation = false;
     this.cgvAllUsers.OptionsDetail.EnableMasterViewMode = false;
     this.cgvAllUsers.OptionsView.ShowGroupPanel = false;
     this.cgvAllUsers.OptionsView.ShowViewCaption = true;
     this.cgvAllUsers.ViewCaption = "Список всех пользователей в системе";
     this.cgvAllUsers.DoCheckBeforeDrawIndicator += new System.EventHandler<CommonLibrary.UIFolder.GridControlFolder.EventRowHandlerArgs>(this.CheckBeforeDrawImage);
     this.cgvAllUsers.PopupMenuShowing += new DevExpress.XtraGrid.Views.Grid.PopupMenuShowingEventHandler(this.UserPopupMenuShowing);
     this.cgvAllUsers.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.AllUsersCellValueChanging);
     this.cgvAllUsers.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.AllUsersValidateRow);
     //
     // colUserId
     //
     this.colUserId.FieldName = "Id";
     this.colUserId.Name = "colUserId";
     this.colUserId.OptionsColumn.ReadOnly = true;
     //
     // colLastName
     //
     this.colLastName.Caption = "Фамилия";
     this.colLastName.FieldName = "LastName";
     this.colLastName.Name = "colLastName";
     this.colLastName.Visible = true;
     this.colLastName.VisibleIndex = 0;
     //
     // colFirstName
     //
     this.colFirstName.Caption = "Имя";
     this.colFirstName.FieldName = "FirstName";
     this.colFirstName.Name = "colFirstName";
     this.colFirstName.Visible = true;
     this.colFirstName.VisibleIndex = 1;
     //
     // colMiddleName
     //
     this.colMiddleName.Caption = "Отчество";
     this.colMiddleName.FieldName = "MiddleName";
     this.colMiddleName.Name = "colMiddleName";
     this.colMiddleName.Visible = true;
     this.colMiddleName.VisibleIndex = 2;
     //
     // colIsLocked
     //
     this.colIsLocked.Caption = "Заблокирован";
     this.colIsLocked.FieldName = "IsLocked";
     this.colIsLocked.Name = "colIsLocked";
     this.colIsLocked.Visible = true;
     this.colIsLocked.VisibleIndex = 3;
     //
     // pmUsers
     //
     this.pmUsers.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiChangePassword),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiRemovePassword),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiLockUser),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiUnlock)});
     this.pmUsers.Manager = this.bm;
     this.pmUsers.Name = "pmUsers";
     this.pmUsers.BeforePopup += new System.ComponentModel.CancelEventHandler(this.UsersBeforePopup);
     //
     // bbiChangePassword
     //
     this.bbiChangePassword.Caption = "Изменить пароль";
     this.bbiChangePassword.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiChangePassword.Glyph")));
     this.bbiChangePassword.Id = 4;
     this.bbiChangePassword.Name = "bbiChangePassword";
     this.bbiChangePassword.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.NewPasswordUserClick);
     //
     // bbiRemovePassword
     //
     this.bbiRemovePassword.Caption = "Удалить пароль";
     this.bbiRemovePassword.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiRemovePassword.Glyph")));
     this.bbiRemovePassword.Id = 3;
     this.bbiRemovePassword.Name = "bbiRemovePassword";
     this.bbiRemovePassword.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.RemovePasswordUserClick);
     //
     // bbiLockUser
     //
     this.bbiLockUser.Caption = "Заблокировать сотрудника";
     this.bbiLockUser.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiLockUser.Glyph")));
     this.bbiLockUser.Id = 5;
     this.bbiLockUser.Name = "bbiLockUser";
     this.bbiLockUser.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.LockUserClick);
     //
     // bbiUnlock
     //
     this.bbiUnlock.Caption = "Разблокировать сотрудника";
     this.bbiUnlock.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiUnlock.Glyph")));
     this.bbiUnlock.Id = 6;
     this.bbiUnlock.Name = "bbiUnlock";
     this.bbiUnlock.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.UnlockUserClick);
     //
     // bm
     //
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiRemovePassword,
     this.bbiChangePassword,
     this.bbiLockUser,
     this.bbiUnlock});
     this.bm.MaxItemId = 9;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1086, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 681);
     this.barDockControlBottom.Size = new System.Drawing.Size(1086, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 681);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1086, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 681);
     //
     // RolesChangeRibbonForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1086, 681);
     this.Controls.Add(this.sccUsers);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "RolesChangeRibbonForm";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Настройка ролей и сотрудников";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.RolesChangeRibbonFormLoad);
     this.Shown += new System.EventHandler(this.RolesChangeRibbonFormShown);
     ((System.ComponentModel.ISupportInitialize)(this.sccRoles)).EndInit();
     this.sccRoles.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cgcRole)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bsRole)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cgvRole)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cgcUsers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bsRoleUsers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cgvUsers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riccbeUsers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sccUsers)).EndInit();
     this.sccUsers.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cgcAllUsers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bsUser)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cgvAllUsers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pmUsers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).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.sptPanel1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.treeCtl1 = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.groupPanel1 = new DevExpress.XtraEditors.GroupControl();
     this.btnSaveToSvr = new DevExpress.XtraEditors.SimpleButton();
     this.groupPanel3 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.btnSaveMnuItem = new DevExpress.XtraEditors.SimpleButton();
     this.chkUsing = new DevExpress.XtraEditors.CheckEdit();
     this.txtmnuAsmName = new DevExpress.XtraEditors.TextEdit();
     this.txtmnuClassName = new DevExpress.XtraEditors.TextEdit();
     this.txtmnuName = new DevExpress.XtraEditors.TextEdit();
     this.groupPanel2 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btnSaveMnuGrp = new DevExpress.XtraEditors.SimpleButton();
     this.txtmnuGrp = new DevExpress.XtraEditors.TextEdit();
     this.barManager1 = new DevExpress.XtraBars.BarManager();
     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.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barBtnLogoff = new DevExpress.XtraBars.BarButtonItem();
     this.barBtnExit = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barLabel = new DevExpress.XtraBars.BarStaticItem();
     this.barSubOpt = new DevExpress.XtraBars.BarSubItem();
     this.barSkin = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
     this.barChkSys = new DevExpress.XtraBars.BarCheckItem();
     this.barChkTaobao = new DevExpress.XtraBars.BarCheckItem();
     this.barBtnSysMnu = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem3 = new DevExpress.XtraBars.BarSubItem();
     this.barBtnSysInfo = new DevExpress.XtraBars.BarButtonItem();
     this.barMnuTaobao = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem3 = new DevExpress.XtraBars.BarStaticItem();
     this.barbtnMnuGrp = new DevExpress.XtraBars.BarButtonItem();
     this.barbtnMnuItem = new DevExpress.XtraBars.BarButtonItem();
     this.barbtnDel = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.popMenuCtl1 = new DevExpress.XtraBars.PopupMenu();
     this.fdlg = new System.Windows.Forms.SaveFileDialog();
     ((System.ComponentModel.ISupportInitialize)(this.sptPanel1)).BeginInit();
     this.sptPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeCtl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel1)).BeginInit();
     this.groupPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel3)).BeginInit();
     this.groupPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkUsing.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuAsmName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuClassName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel2)).BeginInit();
     this.groupPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuGrp.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popMenuCtl1)).BeginInit();
     this.SuspendLayout();
     //
     // sptPanel1
     //
     this.sptPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.sptPanel1.Location = new System.Drawing.Point(0, 0);
     this.sptPanel1.Name = "sptPanel1";
     this.sptPanel1.Panel1.Controls.Add(this.treeCtl1);
     this.sptPanel1.Panel1.Text = "Panel1";
     this.sptPanel1.Panel2.Controls.Add(this.groupPanel1);
     this.sptPanel1.Panel2.Text = "Panel2";
     this.sptPanel1.Size = new System.Drawing.Size(732, 448);
     this.sptPanel1.SplitterPosition = 214;
     this.sptPanel1.TabIndex = 0;
     this.sptPanel1.Text = "sptPanel1";
     //
     // treeCtl1
     //
     this.treeCtl1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1});
     this.treeCtl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeCtl1.HorzScrollVisibility = DevExpress.XtraTreeList.ScrollVisibility.Always;
     this.treeCtl1.Location = new System.Drawing.Point(0, 0);
     this.treeCtl1.Name = "treeCtl1";
     this.treeCtl1.BeginUnboundLoad();
     this.treeCtl1.AppendNode(new object[] {
     "1"}, -1);
     this.treeCtl1.AppendNode(new object[] {
     "11"}, 0);
     this.treeCtl1.AppendNode(new object[] {
     "2"}, -1);
     this.treeCtl1.AppendNode(new object[] {
     "22"}, 2);
     this.treeCtl1.AppendNode(new object[] {
     "222"}, 3);
     this.treeCtl1.AppendNode(new object[] {
     "3"}, -1);
     this.treeCtl1.EndUnboundLoad();
     this.treeCtl1.OptionsBehavior.DragNodes = true;
     this.treeCtl1.OptionsBehavior.Editable = false;
     this.treeCtl1.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.treeCtl1.OptionsSelection.InvertSelection = true;
     this.treeCtl1.OptionsView.ShowColumns = false;
     this.treeCtl1.OptionsView.ShowFocusedFrame = false;
     this.treeCtl1.OptionsView.ShowHorzLines = false;
     this.treeCtl1.OptionsView.ShowIndicator = false;
     this.treeCtl1.OptionsView.ShowVertLines = false;
     this.treeCtl1.ShowButtonMode = DevExpress.XtraTreeList.ShowButtonModeEnum.ShowForFocusedRow;
     this.treeCtl1.Size = new System.Drawing.Size(214, 448);
     this.treeCtl1.TabIndex = 0;
     this.treeCtl1.TreeLineStyle = DevExpress.XtraTreeList.LineStyle.Solid;
     this.treeCtl1.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeCtl1_FocusedNodeChanged);
     this.treeCtl1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.treeCtl1_MouseUp);
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "treeListColumn1";
     this.treeListColumn1.FieldName = "treeListColumn1";
     this.treeListColumn1.MinWidth = 86;
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     this.treeListColumn1.Width = 91;
     //
     // groupPanel1
     //
     this.groupPanel1.Controls.Add(this.btnSaveToSvr);
     this.groupPanel1.Controls.Add(this.groupPanel3);
     this.groupPanel1.Controls.Add(this.groupPanel2);
     this.groupPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupPanel1.Location = new System.Drawing.Point(0, 0);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(513, 448);
     this.groupPanel1.TabIndex = 0;
     this.groupPanel1.Text = "菜单编辑";
     //
     // btnSaveToSvr
     //
     this.btnSaveToSvr.Location = new System.Drawing.Point(14, 377);
     this.btnSaveToSvr.Name = "btnSaveToSvr";
     this.btnSaveToSvr.Size = new System.Drawing.Size(130, 23);
     this.btnSaveToSvr.TabIndex = 1;
     this.btnSaveToSvr.Text = "保存菜单至服务器";
     this.btnSaveToSvr.Click += new System.EventHandler(this.btnSaveToSvr_Click);
     //
     // groupPanel3
     //
     this.groupPanel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupPanel3.Controls.Add(this.labelControl4);
     this.groupPanel3.Controls.Add(this.labelControl3);
     this.groupPanel3.Controls.Add(this.labelControl2);
     this.groupPanel3.Controls.Add(this.btnSaveMnuItem);
     this.groupPanel3.Controls.Add(this.chkUsing);
     this.groupPanel3.Controls.Add(this.txtmnuAsmName);
     this.groupPanel3.Controls.Add(this.txtmnuClassName);
     this.groupPanel3.Controls.Add(this.txtmnuName);
     this.groupPanel3.Location = new System.Drawing.Point(14, 140);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(487, 217);
     this.groupPanel3.TabIndex = 0;
     this.groupPanel3.Text = "菜单项";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(22, 67);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(48, 14);
     this.labelControl4.TabIndex = 6;
     this.labelControl4.Text = "主画面类";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(10, 94);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(60, 14);
     this.labelControl3.TabIndex = 5;
     this.labelControl3.Text = "程序集名称";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(10, 40);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(60, 14);
     this.labelControl2.TabIndex = 4;
     this.labelControl2.Text = "菜单项名称";
     //
     // btnSaveMnuItem
     //
     this.btnSaveMnuItem.Location = new System.Drawing.Point(7, 152);
     this.btnSaveMnuItem.Name = "btnSaveMnuItem";
     this.btnSaveMnuItem.Size = new System.Drawing.Size(75, 23);
     this.btnSaveMnuItem.TabIndex = 1;
     this.btnSaveMnuItem.Text = "保存修改";
     this.btnSaveMnuItem.Click += new System.EventHandler(this.btnSaveMnuItem_Click);
     //
     // chkUsing
     //
     this.chkUsing.EditValue = true;
     this.chkUsing.Location = new System.Drawing.Point(5, 117);
     this.chkUsing.Name = "chkUsing";
     this.chkUsing.Properties.Caption = "启用";
     this.chkUsing.Size = new System.Drawing.Size(92, 19);
     this.chkUsing.TabIndex = 3;
     //
     // txtmnuAsmName
     //
     this.txtmnuAsmName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtmnuAsmName.Location = new System.Drawing.Point(76, 91);
     this.txtmnuAsmName.Name = "txtmnuAsmName";
     this.txtmnuAsmName.Size = new System.Drawing.Size(406, 20);
     this.txtmnuAsmName.TabIndex = 2;
     //
     // txtmnuClassName
     //
     this.txtmnuClassName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtmnuClassName.Location = new System.Drawing.Point(76, 64);
     this.txtmnuClassName.Name = "txtmnuClassName";
     this.txtmnuClassName.Size = new System.Drawing.Size(406, 20);
     this.txtmnuClassName.TabIndex = 1;
     //
     // txtmnuName
     //
     this.txtmnuName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtmnuName.Location = new System.Drawing.Point(76, 37);
     this.txtmnuName.Name = "txtmnuName";
     this.txtmnuName.Size = new System.Drawing.Size(406, 20);
     this.txtmnuName.TabIndex = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupPanel2.Controls.Add(this.labelControl1);
     this.groupPanel2.Controls.Add(this.btnSaveMnuGrp);
     this.groupPanel2.Controls.Add(this.txtmnuGrp);
     this.groupPanel2.Location = new System.Drawing.Point(14, 25);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(487, 100);
     this.groupPanel2.TabIndex = 0;
     this.groupPanel2.Text = "菜单组";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(10, 38);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(60, 14);
     this.labelControl1.TabIndex = 2;
     this.labelControl1.Text = "菜单组名称";
     //
     // btnSaveMnuGrp
     //
     this.btnSaveMnuGrp.Location = new System.Drawing.Point(5, 62);
     this.btnSaveMnuGrp.Name = "btnSaveMnuGrp";
     this.btnSaveMnuGrp.Size = new System.Drawing.Size(75, 23);
     this.btnSaveMnuGrp.TabIndex = 1;
     this.btnSaveMnuGrp.Text = "保存修改";
     this.btnSaveMnuGrp.Click += new System.EventHandler(this.btnSaveMnuGrp_Click);
     //
     // txtmnuGrp
     //
     this.txtmnuGrp.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtmnuGrp.Location = new System.Drawing.Point(76, 35);
     this.txtmnuGrp.Name = "txtmnuGrp";
     this.txtmnuGrp.Size = new System.Drawing.Size(406, 20);
     this.txtmnuGrp.TabIndex = 0;
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItem1,
     this.barSubItem1,
     this.barBtnLogoff,
     this.barBtnExit,
     this.barStaticItem1,
     this.barLabel,
     this.barSubOpt,
     this.barSubItem3,
     this.barSkin,
     this.barSubItem2,
     this.barMnuTaobao,
     this.barChkSys,
     this.barChkTaobao,
     this.barBtnSysInfo,
     this.barStaticItem2,
     this.barStaticItem3,
     this.barBtnSysMnu,
     this.barbtnMnuGrp,
     this.barbtnMnuItem,
     this.barbtnDel,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5});
     this.barManager1.MaxItemId = 26;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(732, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 448);
     this.barDockControlBottom.Size = new System.Drawing.Size(732, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 448);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(732, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 448);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "txx";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "系统(&S)";
     this.barSubItem1.Id = 1;
     this.barSubItem1.ImageIndex = 0;
     this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barBtnLogoff),
     new DevExpress.XtraBars.LinkPersistInfo(this.barBtnExit)});
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barBtnLogoff
     //
     this.barBtnLogoff.Caption = "注销(&L)";
     this.barBtnLogoff.Id = 2;
     this.barBtnLogoff.ImageIndex = 1;
     this.barBtnLogoff.Name = "barBtnLogoff";
     //
     // barBtnExit
     //
     this.barBtnExit.Caption = "退出(&X)";
     this.barBtnExit.Id = 3;
     this.barBtnExit.ImageIndex = 2;
     this.barBtnExit.Name = "barBtnExit";
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "当前登录用户:";
     this.barStaticItem1.Id = 4;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barLabel
     //
     this.barLabel.Caption = " ";
     this.barLabel.Id = 5;
     this.barLabel.Name = "barLabel";
     this.barLabel.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barSubOpt
     //
     this.barSubOpt.Caption = "设置(&S)";
     this.barSubOpt.Id = 6;
     this.barSubOpt.ImageIndex = 3;
     this.barSubOpt.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSkin),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barBtnSysMnu)});
     this.barSubOpt.Name = "barSubOpt";
     this.barSubOpt.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSkin
     //
     this.barSkin.Caption = "外观";
     this.barSkin.Id = 8;
     this.barSkin.ImageIndex = 4;
     this.barSkin.Name = "barSkin";
     //
     // barSubItem2
     //
     this.barSubItem2.Caption = "菜单样式";
     this.barSubItem2.Id = 10;
     this.barSubItem2.ImageIndex = 5;
     this.barSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barChkSys),
     new DevExpress.XtraBars.LinkPersistInfo(this.barChkTaobao)});
     this.barSubItem2.Name = "barSubItem2";
     this.barSubItem2.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barChkSys
     //
     this.barChkSys.Caption = "系统风格";
     this.barChkSys.Checked = true;
     this.barChkSys.Id = 13;
     this.barChkSys.Name = "barChkSys";
     //
     // barChkTaobao
     //
     this.barChkTaobao.Caption = "商家后台风格";
     this.barChkTaobao.Id = 14;
     this.barChkTaobao.Name = "barChkTaobao";
     //
     // barBtnSysMnu
     //
     this.barBtnSysMnu.Caption = "系统菜单";
     this.barBtnSysMnu.Id = 18;
     this.barBtnSysMnu.Name = "barBtnSysMnu";
     this.barBtnSysMnu.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barSubItem3
     //
     this.barSubItem3.Caption = "帮助(&H)";
     this.barSubItem3.Id = 7;
     this.barSubItem3.ImageIndex = 6;
     this.barSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barBtnSysInfo)});
     this.barSubItem3.Name = "barSubItem3";
     this.barSubItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barBtnSysInfo
     //
     this.barBtnSysInfo.Caption = "系统信息";
     this.barBtnSysInfo.Id = 15;
     this.barBtnSysInfo.Name = "barBtnSysInfo";
     //
     // barMnuTaobao
     //
     this.barMnuTaobao.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
     this.barMnuTaobao.Caption = "商家后台风格";
     this.barMnuTaobao.Id = 12;
     this.barMnuTaobao.Name = "barMnuTaobao";
     //
     // barStaticItem2
     //
     this.barStaticItem2.Caption = "barStaticItem2";
     this.barStaticItem2.Id = 16;
     this.barStaticItem2.Name = "barStaticItem2";
     this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem3
     //
     this.barStaticItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barStaticItem3.Caption = "SvrTime";
     this.barStaticItem3.Id = 17;
     this.barStaticItem3.Name = "barStaticItem3";
     this.barStaticItem3.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barbtnMnuGrp
     //
     this.barbtnMnuGrp.Caption = "添加菜单组";
     this.barbtnMnuGrp.Id = 19;
     this.barbtnMnuGrp.Name = "barbtnMnuGrp";
     this.barbtnMnuGrp.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnMnuGrp_ItemClick);
     //
     // barbtnMnuItem
     //
     this.barbtnMnuItem.Caption = "添加菜单项";
     this.barbtnMnuItem.Id = 20;
     this.barbtnMnuItem.Name = "barbtnMnuItem";
     this.barbtnMnuItem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnMnuItem_ItemClick);
     //
     // barbtnDel
     //
     this.barbtnDel.Caption = "删除";
     this.barbtnDel.Id = 21;
     this.barbtnDel.Name = "barbtnDel";
     this.barbtnDel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnDel_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 22;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "加载最新菜单";
     this.barButtonItem3.Id = 23;
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "barButtonItem4";
     this.barButtonItem4.Id = 24;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "导出菜单";
     this.barButtonItem5.Id = 25;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // popMenuCtl1
     //
     this.popMenuCtl1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barbtnMnuGrp),
     new DevExpress.XtraBars.LinkPersistInfo(this.barbtnMnuItem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barbtnDel),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem5)});
     this.popMenuCtl1.Manager = this.barManager1;
     this.popMenuCtl1.Name = "popMenuCtl1";
     //
     // fdlg
     //
     this.fdlg.Filter = "*.xml|*.xml";
     this.fdlg.Title = "菜单导出";
     //
     // MenuView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(732, 448);
     this.Controls.Add(this.sptPanel1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "MenuView";
     this.Text = "系统菜单设置";
     this.Load += new System.EventHandler(this.MenuView_Load);
     ((System.ComponentModel.ISupportInitialize)(this.sptPanel1)).EndInit();
     this.sptPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeCtl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel1)).EndInit();
     this.groupPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel3)).EndInit();
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkUsing.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuAsmName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuClassName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel2)).EndInit();
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuGrp.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popMenuCtl1)).EndInit();
     this.ResumeLayout(false);
 }
        private static void restoreState(
            IPersistentPairStorage storage,
            SplitContainerControl c)
        {
            var prefix = c.Name;

            var o1 = PersistanceHelper.RestoreValue(storage, prefix + @".SplitterPosition");
            var o2 = PersistanceHelper.RestoreValue(storage, prefix + @".RealSplitterPosition");
            //var o3 = PersistanceHelper.RestoreValue(storage, prefix + @".PercentageSplitterPosition");
            var o4 = PersistanceHelper.RestoreValue(storage, prefix + @".PanelVisibility");

            if (o4 != null)
            {
                var s4 =
                    ConvertHelper.ToString(
                        o4,
                        SplitPanelVisibility.Both.ToString());

                c.PanelVisibility =
                    (SplitPanelVisibility)
                    Enum.Parse(typeof(SplitPanelVisibility), s4, true);
            }

            /*if (o3 != null)
             *          {
             *                  // New method, saving and restoring the percentage.
             *                  // See http://bytes.com/forum/thread616388.html.
             *
             *                  var percentageDistance = ConvertHelper.ToDouble(o3, CultureInfo.InvariantCulture);
             *
             *                  if (c.Horizontal)
             *                  {
             *                          var realDistance = (int) (c.Width*(percentageDistance/100.0));
             *                          if (realDistance > 0)
             *                          {
             *                                  c.SplitterPosition = realDistance;
             *                          }
             *                  }
             *                  else
             *                  {
             *                          var realDistance = (int) (c.Height*(percentageDistance/100.0));
             *                          if (realDistance > 0)
             *                          {
             *                                  c.SplitterPosition = realDistance;
             *                          }
             *                  }
             *          }
             *          else*/
            if (o1 != null && o2 != null)
            {
                var realDistance = Convert.ToInt32(o2);

                if (c.Horizontal)
                {
                    if (c.FixedPanel == SplitFixedPanel.Panel1 ||
                        c.FixedPanel == SplitFixedPanel.None)
                    {
                        if (realDistance > 0)
                        {
                            c.SplitterPosition = realDistance;
                        }
                    }
                    else
                    {
                        if (c.FixedPanel != SplitFixedPanel.Panel2)
                        {
                            throw new Exception(@"FixedPanel must be Panel2.");
                        }

                        if (c.Width - realDistance > 0)
                        {
                            c.SplitterPosition = c.Width - realDistance;
                        }
                    }
                }
                else
                {
                    if (c.FixedPanel == SplitFixedPanel.Panel1 ||
                        c.FixedPanel == SplitFixedPanel.None)
                    {
                        if (realDistance > 0)
                        {
                            c.SplitterPosition = realDistance;
                        }
                    }
                    else
                    {
                        if (c.FixedPanel != SplitFixedPanel.Panel2)
                        {
                            throw new Exception(@"You must set one panel inside a splitter to be fixed.");
                        }

                        if (c.Height - realDistance > 0)
                        {
                            c.SplitterPosition = c.Height - realDistance;
                        }
                    }
                }
            }
        }
        private static void saveState(
            IPersistentPairStorage storage,
            SplitContainerControl c)
        {
            int    realDistance;
            double percentageDistance;

            if (c.Horizontal)
            {
                if (c.FixedPanel == SplitFixedPanel.Panel1 ||
                    c.FixedPanel == SplitFixedPanel.None)
                {
                    realDistance = c.SplitterPosition;
                }
                else
                {
                    if (c.FixedPanel != SplitFixedPanel.Panel2)
                    {
                        throw new Exception(@"FixedPanel must be Panel2.");
                    }

                    realDistance = c.Width - c.SplitterPosition;
                }

                percentageDistance = (double)c.SplitterPosition / c.Width * 100.0;
            }
            else
            {
                if (c.FixedPanel == SplitFixedPanel.Panel1 ||
                    c.FixedPanel == SplitFixedPanel.None)
                {
                    realDistance = c.SplitterPosition;
                }
                else
                {
                    if (c.FixedPanel != SplitFixedPanel.Panel2)
                    {
                        throw new Exception(@"FixedPanel must be Panel2.");
                    }

                    realDistance = c.Height - c.SplitterPosition;
                }

                percentageDistance = (double)c.SplitterPosition / c.Height * 100.0;
            }

            // --

            var prefix = c.Name;

            if (c.SplitterPosition > 0)
            {
                PersistanceHelper.SaveValue(storage, prefix + @".SplitterPosition", c.SplitterPosition);
            }
            if (realDistance > 0)
            {
                PersistanceHelper.SaveValue(storage, prefix + @".RealSplitterPosition", realDistance);
            }
            if (percentageDistance > 0)
            {
                PersistanceHelper.SaveValue(storage, prefix + @".PercentageSplitterPosition",
                                            percentageDistance.ToString(CultureInfo.InvariantCulture));
            }

            PersistanceHelper.SaveValue(
                storage,
                prefix + @".PanelVisibility",
                c.PanelVisibility.ToString());
        }
 private void InitializeComponent()
 {
     this.horizontalSplitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.xtraTabControl1                = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1                   = new DevExpress.XtraTab.XtraTabPage();
     this.richEditControlCS              = new DevExpress.XtraRichEdit.RichEditControl();
     this.xtraTabPage2                   = new DevExpress.XtraTab.XtraTabPage();
     this.richEditControlVB              = new DevExpress.XtraRichEdit.RichEditControl();
     this.xtraTabPage3                   = new DevExpress.XtraTab.XtraTabPage();
     this.richEditControlCSClass         = new DevExpress.XtraRichEdit.RichEditControl();
     this.xtraTabPage4                   = new DevExpress.XtraTab.XtraTabPage();
     this.richEditControlVBClass         = new DevExpress.XtraRichEdit.RichEditControl();
     this.codeExampleNameLbl             = new DevExpress.XtraEditors.LabelControl();
     this.displayResultControl1          = new SpreadsheetControl_API_Part03.DisplayResultControl();
     this.verticalSplitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     ((System.ComponentModel.ISupportInitialize)(this.horizontalSplitContainerControl1)).BeginInit();
     this.horizontalSplitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.xtraTabPage2.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.verticalSplitContainerControl1)).BeginInit();
     this.verticalSplitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     this.SuspendLayout();
     //
     // horizontalSplitContainerControl1
     //
     this.horizontalSplitContainerControl1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.horizontalSplitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
     this.horizontalSplitContainerControl1.Horizontal = false;
     this.horizontalSplitContainerControl1.Location   = new System.Drawing.Point(0, 0);
     this.horizontalSplitContainerControl1.Name       = "horizontalSplitContainerControl1";
     this.horizontalSplitContainerControl1.Panel1.Controls.Add(this.xtraTabControl1);
     this.horizontalSplitContainerControl1.Panel1.Controls.Add(this.codeExampleNameLbl);
     this.horizontalSplitContainerControl1.Panel1.Text = "Panel1";
     this.horizontalSplitContainerControl1.Panel2.Controls.Add(this.displayResultControl1);
     this.horizontalSplitContainerControl1.Panel2.Text      = "Panel2";
     this.horizontalSplitContainerControl1.Size             = new System.Drawing.Size(989, 655);
     this.horizontalSplitContainerControl1.SplitterPosition = 340;
     this.horizontalSplitContainerControl1.TabIndex         = 2;
     this.horizontalSplitContainerControl1.Text             = "splitContainerControl1";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.AppearancePage.PageClient.BackColor              = System.Drawing.Color.Transparent;
     this.xtraTabControl1.AppearancePage.PageClient.BackColor2             = System.Drawing.Color.Transparent;
     this.xtraTabControl1.AppearancePage.PageClient.BorderColor            = System.Drawing.Color.Transparent;
     this.xtraTabControl1.AppearancePage.PageClient.Options.UseBackColor   = true;
     this.xtraTabControl1.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.HeaderAutoFill  = DevExpress.Utils.DefaultBoolean.True;
     this.xtraTabControl1.Location        = new System.Drawing.Point(0, 44);
     this.xtraTabControl1.Name            = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size            = new System.Drawing.Size(989, 266);
     this.xtraTabControl1.TabIndex        = 11;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.xtraTabPage1,
         this.xtraTabPage2,
         this.xtraTabPage3,
         this.xtraTabPage4
     });
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Appearance.HeaderActive.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabPage1.Appearance.HeaderActive.Options.UseFont = true;
     this.xtraTabPage1.Controls.Add(this.richEditControlCS);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(983, 238);
     this.xtraTabPage1.Tag  = "CS";
     this.xtraTabPage1.Text = "CS";
     //
     // richEditControlCS
     //
     this.richEditControlCS.ActiveViewType = DevExpress.XtraRichEdit.RichEditViewType.Draft;
     this.richEditControlCS.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.richEditControlCS.EnableToolTips = true;
     this.richEditControlCS.Location       = new System.Drawing.Point(0, 0);
     this.richEditControlCS.Name           = "richEditControlCS";
     this.richEditControlCS.Options.Export.PlainText.ExportFinalParagraphMark = DevExpress.XtraRichEdit.Export.PlainText.ExportFinalParagraphMark.Never;
     this.richEditControlCS.Options.HorizontalRuler.Visibility = DevExpress.XtraRichEdit.RichEditRulerVisibility.Hidden;
     this.richEditControlCS.Size     = new System.Drawing.Size(983, 238);
     this.richEditControlCS.TabIndex = 14;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Appearance.HeaderActive.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabPage2.Appearance.HeaderActive.Options.UseFont = true;
     this.xtraTabPage2.Controls.Add(this.richEditControlVB);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(983, 238);
     this.xtraTabPage2.Tag  = "VB";
     this.xtraTabPage2.Text = "VB";
     //
     // richEditControlVB
     //
     this.richEditControlVB.ActiveViewType = DevExpress.XtraRichEdit.RichEditViewType.Draft;
     this.richEditControlVB.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.richEditControlVB.EnableToolTips = true;
     this.richEditControlVB.Location       = new System.Drawing.Point(0, 0);
     this.richEditControlVB.Name           = "richEditControlVB";
     this.richEditControlVB.Options.Export.PlainText.ExportFinalParagraphMark = DevExpress.XtraRichEdit.Export.PlainText.ExportFinalParagraphMark.Never;
     this.richEditControlVB.Options.HorizontalRuler.Visibility = DevExpress.XtraRichEdit.RichEditRulerVisibility.Hidden;
     this.richEditControlVB.Size     = new System.Drawing.Size(983, 238);
     this.richEditControlVB.TabIndex = 15;
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.richEditControlCSClass);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(983, 238);
     this.xtraTabPage3.Tag  = "CS";
     this.xtraTabPage3.Text = "СS Helper";
     //
     // richEditControlCSClass
     //
     this.richEditControlCSClass.ActiveViewType = DevExpress.XtraRichEdit.RichEditViewType.Draft;
     this.richEditControlCSClass.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.richEditControlCSClass.EnableToolTips = true;
     this.richEditControlCSClass.Location       = new System.Drawing.Point(0, 0);
     this.richEditControlCSClass.Name           = "richEditControlCSClass";
     this.richEditControlCSClass.Options.Export.PlainText.ExportFinalParagraphMark = DevExpress.XtraRichEdit.Export.PlainText.ExportFinalParagraphMark.Never;
     this.richEditControlCSClass.Options.HorizontalRuler.Visibility = DevExpress.XtraRichEdit.RichEditRulerVisibility.Hidden;
     this.richEditControlCSClass.Size     = new System.Drawing.Size(983, 238);
     this.richEditControlCSClass.TabIndex = 0;
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.richEditControlVBClass);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(983, 238);
     this.xtraTabPage4.Tag  = "VB";
     this.xtraTabPage4.Text = "VB Helper";
     //
     // richEditControlVBClass
     //
     this.richEditControlVBClass.ActiveViewType = DevExpress.XtraRichEdit.RichEditViewType.Draft;
     this.richEditControlVBClass.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.richEditControlVBClass.EnableToolTips = true;
     this.richEditControlVBClass.Location       = new System.Drawing.Point(0, 0);
     this.richEditControlVBClass.Name           = "richEditControlVBClass";
     this.richEditControlVBClass.Options.Export.PlainText.ExportFinalParagraphMark = DevExpress.XtraRichEdit.Export.PlainText.ExportFinalParagraphMark.Never;
     this.richEditControlVBClass.Options.HorizontalRuler.Visibility = DevExpress.XtraRichEdit.RichEditRulerVisibility.Hidden;
     this.richEditControlVBClass.Size     = new System.Drawing.Size(983, 238);
     this.richEditControlVBClass.TabIndex = 1;
     //
     // codeExampleNameLbl
     //
     this.codeExampleNameLbl.Appearance.Font = new System.Drawing.Font("Arial", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.codeExampleNameLbl.Dock            = System.Windows.Forms.DockStyle.Top;
     this.codeExampleNameLbl.Location        = new System.Drawing.Point(0, 0);
     this.codeExampleNameLbl.Margin          = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.codeExampleNameLbl.Name            = "codeExampleNameLbl";
     this.codeExampleNameLbl.Padding         = new System.Windows.Forms.Padding(0, 0, 0, 12);
     this.codeExampleNameLbl.Size            = new System.Drawing.Size(72, 44);
     this.codeExampleNameLbl.TabIndex        = 10;
     this.codeExampleNameLbl.Text            = "label1";
     //
     // displayResultControl1
     //
     this.displayResultControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.displayResultControl1.Location = new System.Drawing.Point(0, 0);
     this.displayResultControl1.Name     = "displayResultControl1";
     this.displayResultControl1.Size     = new System.Drawing.Size(989, 340);
     this.displayResultControl1.TabIndex = 0;
     //
     // verticalSplitContainerControl1
     //
     this.verticalSplitContainerControl1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.verticalSplitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
     this.verticalSplitContainerControl1.Location   = new System.Drawing.Point(0, 0);
     this.verticalSplitContainerControl1.Name       = "verticalSplitContainerControl1";
     this.verticalSplitContainerControl1.Panel1.Controls.Add(this.horizontalSplitContainerControl1);
     this.verticalSplitContainerControl1.Panel1.Text = "Panel1";
     this.verticalSplitContainerControl1.Panel2.Controls.Add(this.treeList1);
     this.verticalSplitContainerControl1.Panel2.Text      = "Panel2";
     this.verticalSplitContainerControl1.Size             = new System.Drawing.Size(1212, 655);
     this.verticalSplitContainerControl1.SplitterPosition = 218;
     this.verticalSplitContainerControl1.TabIndex         = 0;
     this.verticalSplitContainerControl1.Text             = "verticalSplitContainerControl1";
     //
     // treeList1
     //
     this.treeList1.Appearance.FocusedCell.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline);
     this.treeList1.Appearance.FocusedCell.Options.UseFont = true;
     this.treeList1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(0, 0);
     this.treeList1.Name     = "treeList1";
     this.treeList1.Size     = new System.Drawing.Size(218, 655);
     this.treeList1.TabIndex = 11;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1212, 655);
     this.Controls.Add(this.verticalSplitContainerControl1);
     this.Name = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.horizontalSplitContainerControl1)).EndInit();
     this.horizontalSplitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage2.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.verticalSplitContainerControl1)).EndInit();
     this.verticalSplitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     this.ResumeLayout(false);
 }
Example #33
0
 public static void ShowMenu(BarSubItem barSubItem1, bool _status,
     PivotGridControl pivotGridMaster, SplitContainerControl splitContainerControl1)
 {
     barSubItem1.Enabled = _status;
     if (pivotGridMaster.ContextMenuStrip != null)
     {
         foreach (ToolStripItem item in pivotGridMaster.ContextMenuStrip.Items)
         {
             item.Enabled = _status;
         }
     }
 }
Example #34
0
		public static void RestoreState(
			SplitContainerControl splitContainer )
		{
			restoreState( PersistanceHelper.Storage, splitContainer );
		}
Example #35
0
		public static void SaveState(
			SplitContainerControl splitContainer )
		{
			saveState( PersistanceHelper.Storage, splitContainer );
		}
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.BarraBotones = new BarManager();
            this.bar1 = new Bar();
            this.ToolNuevo = new BarButtonItem();
            this.ToolEditar = new BarButtonItem();
            this.ToolEliminar = new BarButtonItem();
            this.ToolBuscar = new BarButtonItem();
            this.ToolActualizar = new BarButtonItem();
            this.barDockControlTop = new BarDockControl();
            this.barDockControlBottom = new BarDockControl();
            this.barDockControlLeft = new BarDockControl();
            this.barDockControlRight = new BarDockControl();
            this.splitContainerControl1 = new SplitContainerControl();
            this.splitContainerControl2 = new SplitContainerControl();
            this.grpCriterios = new GroupControl();
            this.grpValores = new GroupControl();
            this.btnBusqueda = new PlantillaBoton();
            this.txtFiltro = new ButtonEdit();
            this.grpGrilla = new GroupControl();
            this.bar2 = new Bar();
            this.lblEstado = new BarStaticItem();
            this.BarraBotones.BeginInit();
            this.splitContainerControl1.BeginInit();
            this.splitContainerControl1.SuspendLayout();
            this.splitContainerControl2.BeginInit();
            this.splitContainerControl2.SuspendLayout();
            this.grpCriterios.BeginInit();
            this.grpValores.BeginInit();
            this.grpValores.SuspendLayout();
            this.txtFiltro.Properties.BeginInit();
            this.grpGrilla.BeginInit();
            base.SuspendLayout();
            this.BarraBotones.AllowCustomization = false;
            this.BarraBotones.AllowQuickCustomization = false;
            this.BarraBotones.Bars.AddRange(new Bar[] { this.bar1, this.bar2 });
            this.BarraBotones.DockControls.Add(this.barDockControlTop);
            this.BarraBotones.DockControls.Add(this.barDockControlBottom);
            this.BarraBotones.DockControls.Add(this.barDockControlLeft);
            this.BarraBotones.DockControls.Add(this.barDockControlRight);
            this.BarraBotones.Form = this;
            this.BarraBotones.Items.AddRange(new BarItem[] { this.ToolNuevo, this.ToolEditar, this.ToolEliminar, this.ToolBuscar, this.ToolActualizar, this.lblEstado });
            this.BarraBotones.MaxItemId = 6;
            this.BarraBotones.StatusBar = this.bar2;
            this.bar1.BarName = "Herramientas";
            this.bar1.DockCol = 0;
            this.bar1.DockRow = 0;
            this.bar1.DockStyle = BarDockStyle.Top;
            this.bar1.LinksPersistInfo.AddRange(new LinkPersistInfo[] { new LinkPersistInfo((BarItem)this.ToolNuevo), new LinkPersistInfo((BarItem)this.ToolEditar), new LinkPersistInfo((BarItem)this.ToolEliminar), new LinkPersistInfo((BarItem)this.ToolBuscar), new LinkPersistInfo((BarItem)this.ToolActualizar) });
            this.bar1.Text = "Herramientas";
            this.ToolNuevo.Caption = "&Nuevo";
            this.ToolNuevo.Glyph = Resources.nuevo;
            this.ToolNuevo.Id = 0;
            this.ToolNuevo.Name = "ToolNuevo";
            this.ToolNuevo.PaintStyle = BarItemPaintStyle.CaptionGlyph;
            this.ToolNuevo.ItemClick += new ItemClickEventHandler(this.btnNuevo_ItemClick);
            this.ToolEditar.Caption = "Ver/&Editar";
            this.ToolEditar.Glyph = Resources.editar;
            this.ToolEditar.Id = 1;
            this.ToolEditar.Name = "ToolEditar";
            this.ToolEditar.PaintStyle = BarItemPaintStyle.CaptionGlyph;
            this.ToolEditar.ItemClick +=new ItemClickEventHandler(this.btnEditar_ItemClick);
            this.ToolEliminar.Caption = "E&liminar";
            this.ToolEliminar.Glyph = Resources.eliminar;
            this.ToolEliminar.Id = 2;
            this.ToolEliminar.Name = "ToolEliminar";
            this.ToolEliminar.PaintStyle = BarItemPaintStyle.CaptionGlyph;
            this.ToolEliminar.ItemClick +=new ItemClickEventHandler(this.btnEliminar_ItemClick);
            this.ToolBuscar.Caption = "&Buscar";
            this.ToolBuscar.Glyph = Resources.buscar;
            this.ToolBuscar.Id = 3;
            this.ToolBuscar.Name = "ToolBuscar";
            this.ToolBuscar.PaintStyle = BarItemPaintStyle.CaptionGlyph;
            this.ToolBuscar.ItemClick +=new ItemClickEventHandler(this.btnBuscar_ItemClick);
            this.ToolActualizar.Caption = "&Refrescar";
            this.ToolActualizar.Glyph = Resources.refrescar;
            this.ToolActualizar.Id = 4;
            this.ToolActualizar.Name = "ToolActualizar";
            this.ToolActualizar.PaintStyle = BarItemPaintStyle.CaptionGlyph;
            this.ToolActualizar.ItemClick +=new ItemClickEventHandler(this.btnActualizar_ItemClick);
            this.barDockControlTop.CausesValidation = false;
            this.barDockControlTop.Dock = DockStyle.Top;
            this.barDockControlTop.Location = new Point(0, 0);
            this.barDockControlTop.Size = new Size(0x305, 0x1f);
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = DockStyle.Bottom;
            this.barDockControlBottom.Location = new Point(0, 0x1c5);
            this.barDockControlBottom.Size = new Size(0x305, 0x19);
            this.barDockControlLeft.CausesValidation = false;
            this.barDockControlLeft.Dock = DockStyle.Left;
            this.barDockControlLeft.Location = new Point(0, 0x1f);
            this.barDockControlLeft.Size = new Size(0, 0x1a6);
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = DockStyle.Right;
            this.barDockControlRight.Location = new Point(0x305, 0x1f);
            this.barDockControlRight.Size = new Size(0, 0x1a6);
            this.splitContainerControl1.Dock = DockStyle.Fill;
            this.splitContainerControl1.Horizontal = false;
            this.splitContainerControl1.Location = new Point(0, 0x1f);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.splitContainerControl2);
            this.splitContainerControl1.Panel1.Text = "Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.grpGrilla);
            this.splitContainerControl1.Panel2.Text = "Contenedor";
            this.splitContainerControl1.Size = new Size(0x305, 0x1a6);
            this.splitContainerControl1.TabIndex = 14;
            this.splitContainerControl1.Text = "splitContainerControl1";
            this.splitContainerControl2.Dock = DockStyle.Fill;
            this.splitContainerControl2.Location = new Point(0, 0);
            this.splitContainerControl2.Name = "splitContainerControl2";
            this.splitContainerControl2.Panel1.Controls.Add(this.grpCriterios);
            this.splitContainerControl2.Panel1.Text = "Panel1";
            this.splitContainerControl2.Panel2.Controls.Add(this.grpValores);
            this.splitContainerControl2.Panel2.Text = "Panel2";
            this.splitContainerControl2.Size = new Size(0x305, 100);
            this.splitContainerControl2.SplitterPosition = 0x147;
            this.splitContainerControl2.TabIndex = 0;
            this.splitContainerControl2.Text = "splitContainerControl2";
            this.grpCriterios.AppearanceCaption.Font = new Font("Tahoma", 11.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.grpCriterios.AppearanceCaption.Options.UseFont = true;
            this.grpCriterios.Dock = DockStyle.Fill;
            this.grpCriterios.Location = new Point(0, 0);
            this.grpCriterios.Name = "grpCriterios";
            this.grpCriterios.Size = new Size(0x147, 100);
            this.grpCriterios.TabIndex = 0;
            this.grpCriterios.Text = "Criterios de Busqueda";
            this.grpValores.AppearanceCaption.Font = new Font("Tahoma", 11.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.grpValores.AppearanceCaption.Options.UseFont = true;
            this.grpValores.Controls.Add(this.btnBusqueda);
            this.grpValores.Controls.Add(this.txtFiltro);
            this.grpValores.Dock = DockStyle.Fill;
            this.grpValores.Location = new Point(0, 0);
            this.grpValores.Name = "grpValores";
            this.grpValores.Size = new Size(0x1b9, 100);
            this.grpValores.TabIndex = 0;
            this.grpValores.Text = "Valores";
            this.btnBusqueda.CajaTexto = (TextEdit)this.txtFiltro;
            this.btnBusqueda.CajaTextoConBoton = null;
            this.btnBusqueda.Imagen = PlantillaBoton.TipoBoton.Buscar;
            this.btnBusqueda.Location = new Point(0x153, 0x26);
            this.btnBusqueda.Name = "btnBusqueda";
            this.btnBusqueda.Size = new Size(0x23, 0x1b);
            this.btnBusqueda.TabIndex = 3;
            this.btnBusqueda.Click += new PlantillaBoton.BotonClick(this.btnBusqueda_Click);
            this.txtFiltro.Location = new Point(0x39, 0x2d);
            this.txtFiltro.MenuManager= (IDXMenuManager)this.BarraBotones;
            this.txtFiltro.Name = "txtFiltro";
            this.txtFiltro.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton((ButtonPredefines)ButtonPredefines.Delete) });
            this.txtFiltro.Size = new Size(0x114, 20);
            this.txtFiltro.TabIndex = 2;
            this.grpGrilla.AppearanceCaption.Font = new Font("Tahoma", 11.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.grpGrilla.AppearanceCaption.Options.UseFont = true;
            this.grpGrilla.Dock = DockStyle.Fill;
            this.grpGrilla.Location = new Point(0, 0);
            this.grpGrilla.Name = "grpGrilla";
            this.grpGrilla.Size = new Size(0x305, 0x13d);
            this.grpGrilla.TabIndex = 0;
            this.grpGrilla.Text = "Lista de ";
            this.bar2.BarName = "Personalizada 3";
            this.bar2.CanDockStyle = BarCanDockStyle.Bottom;
            this.bar2.DockCol = 0;
            this.bar2.DockRow = 0;
            this.bar2.DockStyle = BarDockStyle.Bottom;
            this.bar2.LinksPersistInfo.AddRange(new LinkPersistInfo[] { new LinkPersistInfo(lblEstado) });
            this.bar2.OptionsBar.AllowQuickCustomization = false;
            this.bar2.OptionsBar.DrawDragBorder = false;
            this.bar2.OptionsBar.UseWholeRow = true;
            this.bar2.Text = "Personalizada 3";
            this.lblEstado.Caption = "Listo";
            this.lblEstado.Id = 5;
            this.lblEstado.Name = "lblEstado";
            this.lblEstado.TextAlignment = StringAlignment.Near;
            base.AutoScaleDimensions = new SizeF(6f, 13f);
            base.AutoScaleMode = AutoScaleMode.Font;
            base.ClientSize = new Size(0x305, 0x1de);
            base.Controls.Add(this.splitContainerControl1);
            base.Controls.Add(this.barDockControlLeft);
            base.Controls.Add(this.barDockControlRight);
            base.Controls.Add(this.barDockControlBottom);
            base.Controls.Add(this.barDockControlTop);
            base.EtiquetaEstado = this.lblEstado;
            base.Name = "_PlantillaGestor";
            this.Text = "_PlantillaGestor";
            this.BarraBotones.EndInit();
            this.splitContainerControl1.EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            this.splitContainerControl2.EndInit();
            this.splitContainerControl2.ResumeLayout(false);
            this.grpCriterios.EndInit();
            this.grpValores.EndInit();
            this.grpValores.ResumeLayout(false);
            this.txtFiltro.Properties.EndInit();
            this.grpGrilla.EndInit();
            base.ResumeLayout(false);

        }
Example #37
0
		private static void restoreState(
			IPersistentPairStorage storage,
			SplitContainerControl c )
		{
			var prefix = c.Name;

			var o1 = PersistanceHelper.RestoreValue( storage, prefix + @".SplitterPosition" );
			var o2 = PersistanceHelper.RestoreValue( storage, prefix + @".RealSplitterPosition" );
			var o3 = PersistanceHelper.RestoreValue( storage, prefix + @".PercentageSplitterPosition" );
			var o4 = PersistanceHelper.RestoreValue( storage, prefix + @".PanelVisibility" );

			if ( o4!=null)
			{
				var s4 =
					ConvertHelper.ToString(
						o4,
						SplitPanelVisibility.Both.ToString());

				c.PanelVisibility =
					(SplitPanelVisibility)
					Enum.Parse(typeof (SplitPanelVisibility), s4, true);
			}

			if ( o3 != null )
			{
				// New method, saving and restoring the percentage.
				// See http://bytes.com/forum/thread616388.html.

				var percentageDistance = ConvertHelper.ToDouble( o3, CultureInfo.InvariantCulture );

				if ( c.Horizontal )
				{
					var realDistance = (int)(c.Height * (percentageDistance / 100.0));
					if ( realDistance > 0 )
					{
						c.SplitterPosition = realDistance;
					}
				}
				else
				{
					var realDistance = (int)(c.Width * (percentageDistance / 100.0));
					if ( realDistance > 0 )
					{
						c.SplitterPosition = realDistance;
					}
				}
			}
			else if ( o1 != null && o2 != null )
			{
				var realDistance = Convert.ToInt32( o2 );

				if ( c.Horizontal )
				{
					if ( c.FixedPanel == SplitFixedPanel.Panel1 ||
						c.FixedPanel == SplitFixedPanel.None )
					{
						if ( realDistance > 0 )
						{
							c.SplitterPosition = realDistance;
						}
					}
					else
					{
						Debug.Assert(
							c.FixedPanel == SplitFixedPanel.Panel2,
							@"You must set one panel inside a splitter to be fixed." );

						if ( (c.Height - realDistance) > 0 )
						{
							c.SplitterPosition = c.Height - realDistance;
						}
					}
				}
				else
				{
					if ( c.FixedPanel == SplitFixedPanel.Panel1 ||
						c.FixedPanel == SplitFixedPanel.None )
					{
						if ( realDistance > 0 )
						{
							c.SplitterPosition = realDistance;
						}
					}
					else
					{
						Debug.Assert(
							c.FixedPanel == SplitFixedPanel.Panel2,
							@"FixedPanel must be Panel2." );

						if ( (c.Width - realDistance) > 0 )
						{
							c.SplitterPosition = c.Width - realDistance;
						}
					}
				}
			}
		}
Example #38
0
        private void buildControl()
        {
            var cursor = Cursor.Current;

            Cursor.Current = Cursors.WaitCursor;
            try
            {
                Controls.Clear();
                _gridPresenter.Edit(Table);
                if (Table.MetaData != null)
                {
                    var splitter = new SplitContainerControl();
                    Controls.Add(splitter);
                    splitter.Dock = DockStyle.Fill;
                    splitter.AlwaysScrollActiveControlIntoView = true;

                    var panel = splitter.Panel1;
                    SplitContainerControl newSplitter = null;
                    for (var i = Table.Columns.Count - 1; i >= 0; i--)
                    {
                        var col = Table.Columns.ItemByIndex(i);
                        if (col.MetaData == null)
                        {
                            continue;
                        }
                        newSplitter = createColumnMetaDataControl(col, false);
                        if (newSplitter == null)
                        {
                            continue;
                        }
                        panel.Controls.Add(newSplitter);
                        newSplitter.Dock = DockStyle.Fill;
                        panel            = newSplitter.Panel1;
                    }

                    if (newSplitter != null)
                    {
                        panel = newSplitter.Panel1;
                    }

                    _metaDataControl = new MetaDataEditControl(Table.MetaData)
                    {
                        AutoAcceptChanges = true
                    };
                    Controls.Add(_metaDataControl);
                    panel.Name        = "Meta Data";
                    panel.Text        = Captions.Importer.MetaData;
                    panel.ShowCaption = false;
                    panel.MinSize     = PANEL_MIN_SIZE;
                    panel.Width       = PANEL_MIN_WIDTH;
                    panel.Height      = (Table.MetaData.Columns.Count + 2) * PANEL_ROW_HEIGHT;
                    panel.Controls.Add(_metaDataControl);
                    _metaDataControl.Dock                  = DockStyle.Fill;
                    _metaDataControl.OnCopyMetaData       += onCopyMetaDataTableControl;
                    _metaDataControl.OnBroadCastMetaData  += onBroadCastMetaDataTableControl;
                    _metaDataControl.OnIsDataValidChanged += metaDataControlOnIsDataValidChanged;

                    splitter.SplitterPosition = PANEL_MIN_WIDTH;

                    splitter.Panel2.Name    = "Data";
                    splitter.Panel2.Text    = Captions.Importer.Data;
                    splitter.Panel2.MinSize = PANEL_MIN_SIZE;

                    var datasplitter = new SplitContainerControl {
                        Dock = DockStyle.Fill, Horizontal = false
                    };
                    datasplitter.Panel1.FillWith(_gridPresenter.View);
                    datasplitter.Panel1.Padding = new Padding(10, 12, 10, 10);
                    datasplitter.Panel2.FillWith(_presenter.View);
                    datasplitter.Panel2.Padding = new Padding(10);
                    datasplitter.CollapsePanel  = SplitCollapsePanel.Panel2;
                    rePlot();

                    UnitChanged += (sender, args) => rePlot();
                    _gridPresenter.MetaDataChangedEvent += rePlot;
                    splitter.Panel2.Controls.Add(datasplitter);
                }
                else
                {
                    var metaDataExists = false;
                    foreach (ImportDataColumn col in Table.Columns)
                    {
                        metaDataExists = (col.MetaData != null && !string.IsNullOrEmpty(col.Source));
                        if (metaDataExists)
                        {
                            break;
                        }
                    }
                    if (metaDataExists)
                    {
                        var splitter = new SplitContainerControl();
                        Controls.Add(splitter);
                        splitter.Dock          = DockStyle.Fill;
                        splitter.Horizontal    = true;
                        splitter.CollapsePanel = SplitCollapsePanel.Panel1;
                        splitter.Panel2.FillWith(_gridPresenter.View);
                        splitter.Panel2.MinSize = PANEL_MIN_SIZE;

                        var panel = splitter.Panel1;
                        panel.Width = PANEL_MIN_WIDTH;
                        splitter.SplitterPosition = panel.Width;
                        SplitContainerControl newSplitter = null;
                        foreach (ImportDataColumn col in Table.Columns)
                        {
                            if (col.MetaData == null)
                            {
                                continue;
                            }
                            newSplitter = createColumnMetaDataControl(col, true);
                            if (newSplitter == null)
                            {
                                continue;
                            }
                            panel.Controls.Add(newSplitter);
                            newSplitter.Dock = DockStyle.Fill;
                            panel            = newSplitter.Panel2;
                        }
                        if (newSplitter != null)
                        {
                            newSplitter.Collapsed = true;
                        }
                    }
                    else
                    {
                        this.FillWith(_gridPresenter.View);
                    }
                }
                PerformLayout();
            }
            finally
            {
                Cursor.Current = cursor;
            }
        }
Example #39
0
        XtraUserControl CreateUserControl(string text)
        {
            XtraUserControl result = new XtraUserControl();

            result.Name = text.ToLower() + "UserControl";
            result.Text = text;
            LabelControl label = new LabelControl();

            label.Parent               = result;
            label.Appearance.Font      = new Font("Tahoma", 25.25F);
            label.Appearance.ForeColor = Color.Gray;
            label.Dock         = DockStyle.Fill;
            label.AutoSizeMode = LabelAutoSizeMode.None;
            label.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            label.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;


            SplitContainerControl scc = new SplitContainerControl();

            scc.Parent = label;
            scc.Dock   = DockStyle.Fill;
            scc.Appearance.ForeColor = Color.Gray;
            scc.PanelVisibility      = SplitPanelVisibility.Both;
            scc.SplitterPosition     = 500;

            GroupControl control1 = new GroupControl();

            control1.Parent = scc.Panel1;
            control1.Dock   = DockStyle.Fill;

            GroupControl control2 = new GroupControl();

            control2.Parent = scc.Panel2;
            control2.Dock   = DockStyle.Fill;

            if (text == "SQL格式调整")
            {
                control1.Text = "输入SQL";
                control2.Text = "输出SQL";

                txt_input                   = new SelectableTextBox();
                txt_input.Parent            = control1;
                txt_input.Dock              = DockStyle.Fill;
                txt_input.Multiline         = true;
                txt_input.Font              = new Font("Consolas", 8.5F);
                txt_input.ScrollBars        = ScrollBars.Both;
                this.txt_input.TextChanged += new EventHandler(this.txt_input_TextChanged);

                webBrowser        = new CustomContentWebBrowser();
                webBrowser.Parent = control2;
                webBrowser.Dock   = DockStyle.Fill;
            }
            else if (text == "SQL解析记录")
            {
                control1.Text = "SQL字段标记结果";
                control2.Text = "SQL解析结果(XML)";

                scc.SplitterPosition     = 570;
                txt_tokenized            = new SelectableTextBox();
                txt_tokenized.Parent     = control1;
                txt_tokenized.Dock       = DockStyle.Fill;
                txt_tokenized.Multiline  = true;
                txt_tokenized.ReadOnly   = true;
                txt_tokenized.ScrollBars = ScrollBars.Both;

                txt_parsed            = new SelectableTextBox();
                txt_parsed.Parent     = control2;
                txt_parsed.Dock       = DockStyle.Fill;
                txt_parsed.Multiline  = true;
                txt_parsed.ReadOnly   = true;
                txt_parsed.ScrollBars = ScrollBars.Both;
            }

            return(result);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components             = new System.ComponentModel.Container();
     this.grpResultados          = new GroupControl();
     this.grpCriterios           = new GroupControl();
     this.btnBusqueda            = new PlantillaBoton();
     this.txtFiltro              = new ButtonEdit();
     this.cboFiltro              = new ComboBoxEdit();
     this.lblValor               = new LabelControl();
     this.lblFiltro              = new LabelControl();
     this.splitContainerControl1 = new SplitContainerControl();
     this.BarraBotones           = new BarManager();
     this.bar1            = new DevExpress.XtraBars.Bar();
     this.bar3            = new DevExpress.XtraBars.Bar();
     this.barDockControl1 = new BarDockControl();
     this.barDockControl2 = new BarDockControl();
     this.barDockControl3 = new BarDockControl();
     this.barDockControl4 = new BarDockControl();
     this.ToolAceptar     = new BarButtonItem();
     this.ToolCancelar    = new BarButtonItem();
     this.ToolActualizar  = new BarButtonItem();
     this.lblEstado       = new BarStaticItem();
     this.grpResultados.BeginInit();
     this.grpCriterios.BeginInit();
     this.grpCriterios.SuspendLayout();
     this.txtFiltro.Properties.BeginInit();
     this.cboFiltro.Properties.BeginInit();
     this.splitContainerControl1.BeginInit();
     this.splitContainerControl1.SuspendLayout();
     this.BarraBotones.BeginInit();
     base.SuspendLayout();
     this.grpResultados.AppearanceCaption.Font            = new Font("Tahoma", 11.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.grpResultados.AppearanceCaption.Options.UseFont = true;
     this.grpResultados.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.grpResultados.Location = new Point(0, 0);
     this.grpResultados.Name     = "grpResultados";
     this.grpResultados.Size     = new Size(0x217, 0xf6);
     this.grpResultados.TabIndex = 0;
     this.grpResultados.Text     = "Resultados";
     this.grpCriterios.AppearanceCaption.Font            = new Font("Tahoma", 11.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.grpCriterios.AppearanceCaption.Options.UseFont = true;
     this.grpCriterios.Controls.Add(this.btnBusqueda);
     this.grpCriterios.Controls.Add(this.txtFiltro);
     this.grpCriterios.Controls.Add(this.cboFiltro);
     this.grpCriterios.Controls.Add(this.lblValor);
     this.grpCriterios.Controls.Add(this.lblFiltro);
     this.grpCriterios.Dock             = DockStyle.Fill;
     this.grpCriterios.Location         = new Point(0, 0);
     this.grpCriterios.Name             = "grpCriterios";
     this.grpCriterios.Size             = new Size(0x217, 0x70);
     this.grpCriterios.TabIndex         = 0;
     this.grpCriterios.Text             = "Criterios de B\x00fasqueda";
     this.btnBusqueda.CajaTexto         = (TextEdit)this.txtFiltro;
     this.btnBusqueda.CajaTextoConBoton = null;
     this.btnBusqueda.Imagen            = PlantillaBoton.TipoBoton.Buscar;
     this.btnBusqueda.Location          = new Point(0x1ef, 0x38);
     this.btnBusqueda.Name     = "btnBusqueda";
     this.btnBusqueda.Size     = new Size(0x23, 0x1b);
     this.btnBusqueda.TabIndex = 2;
     this.txtFiltro.Location   = new Point(0xda, 0x3f);
     this.txtFiltro.Name       = "txtFiltro";
     this.txtFiltro.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Delete) });
     this.txtFiltro.Size     = new Size(0x110, 20);
     this.txtFiltro.TabIndex = 1;
     this.cboFiltro.Location = new Point(0x16, 0x3f);
     this.cboFiltro.Name     = "cboFiltro";
     this.cboFiltro.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) });
     this.cboFiltro.Properties.TextEditStyle = TextEditStyles.DisableTextEditor;
     this.cboFiltro.Size                    = new Size(0x90, 20);
     this.cboFiltro.TabIndex                = 0;
     this.lblValor.Location                 = new Point(0xda, 0x2c);
     this.lblValor.Name                     = "lblValor";
     this.lblValor.Size                     = new Size(0x1c, 13);
     this.lblValor.TabIndex                 = 0;
     this.lblValor.Text                     = "Valor:";
     this.lblFiltro.Location                = new Point(0x16, 0x2c);
     this.lblFiltro.Name                    = "lblFiltro";
     this.lblFiltro.Size                    = new Size(0x1c, 13);
     this.lblFiltro.TabIndex                = 0;
     this.lblFiltro.Text                    = "Filtro:";
     this.splitContainerControl1.Dock       = DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location   = new Point(0, 0x1f);
     this.splitContainerControl1.Name       = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.grpCriterios);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.grpResultados);
     this.splitContainerControl1.Panel2.Text      = "Panel2";
     this.splitContainerControl1.Size             = new Size(0x217, 0x16b);
     this.splitContainerControl1.SplitterPosition = 0x70;
     this.splitContainerControl1.TabIndex         = 14;
     this.BarraBotones.AllowCustomization         = false;
     this.BarraBotones.Bars.AddRange(new DevExpress.XtraBars.Bar[] { this.bar1, this.bar3 });
     this.BarraBotones.DockControls.Add(this.barDockControl1);
     this.BarraBotones.DockControls.Add(this.barDockControl2);
     this.BarraBotones.DockControls.Add(this.barDockControl3);
     this.BarraBotones.DockControls.Add(this.barDockControl4);
     this.BarraBotones.Form = this;
     this.BarraBotones.Items.AddRange(new BarItem[] { this.ToolAceptar, this.ToolCancelar, this.ToolActualizar, this.lblEstado });
     this.BarraBotones.MaxItemId = 4;
     this.BarraBotones.StatusBar = (bar3);
     this.bar1.BarName           = "Personalizada 2";
     this.bar1.DockCol           = 0;
     this.bar1.DockRow           = 0;
     bar1.DockStyle = BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new LinkPersistInfo[] { new LinkPersistInfo((BarLinkUserDefines)BarLinkUserDefines.PaintStyle, (BarItem)this.ToolAceptar, (BarItemPaintStyle)BarItemPaintStyle.CaptionGlyph), new LinkPersistInfo((BarLinkUserDefines)BarLinkUserDefines.PaintStyle, (BarItem)this.ToolCancelar, "", true, true, true, 0, null, (BarItemPaintStyle)BarItemPaintStyle.CaptionGlyph), new LinkPersistInfo((BarLinkUserDefines)BarLinkUserDefines.PaintStyle, (BarItem)this.ToolActualizar, "", true, true, true, 0, null, (BarItemPaintStyle)BarItemPaintStyle.CaptionGlyph) });
     this.bar1.Text         = "Personalizada 2";
     this.bar3.BarName      = "Personalizada 3";
     this.bar3.CanDockStyle = BarCanDockStyle.Bottom;
     this.bar3.DockCol      = 0;
     this.bar3.DockRow      = 0;
     this.bar3.DockStyle    = BarDockStyle.Bottom;
     this.bar3.LinksPersistInfo.AddRange(new LinkPersistInfo[] { new LinkPersistInfo((BarItem)this.lblEstado) });
     this.bar3.OptionsBar.AllowQuickCustomization = false;
     this.bar3.OptionsBar.DrawDragBorder          = false;
     this.bar3.OptionsBar.UseWholeRow             = true;
     this.bar3.Text = "Personalizada 3";
     this.barDockControl1.CausesValidation = false;
     this.barDockControl1.Dock             = DockStyle.Top;
     this.barDockControl1.Location         = new Point(0, 0);
     this.barDockControl1.Size             = new Size(0x217, 0x1f);
     this.barDockControl2.CausesValidation = false;
     this.barDockControl2.Dock             = DockStyle.Bottom;
     this.barDockControl2.Location         = new Point(0, 0x18a);
     this.barDockControl2.Size             = new Size(0x217, 0x19);
     this.barDockControl3.CausesValidation = false;
     this.barDockControl3.Dock             = DockStyle.Left;
     this.barDockControl3.Location         = new Point(0, 0x1f);
     this.barDockControl3.Size             = new Size(0, 0x16b);
     this.barDockControl4.CausesValidation = false;
     this.barDockControl4.Dock             = DockStyle.Right;
     this.barDockControl4.Location         = new Point(0x217, 0x1f);
     this.barDockControl4.Size             = new Size(0, 0x16b);
     this.ToolAceptar.Caption     = "&Aceptar";
     this.ToolAceptar.Glyph       = Resources.ok;
     this.ToolAceptar.Id          = 0;
     this.ToolAceptar.Name        = "ToolAceptar";
     this.ToolCancelar.Caption    = "&Cancelar";
     this.ToolCancelar.Glyph      = Resources.cancelar;
     this.ToolCancelar.Id         = 1;
     this.ToolCancelar.Name       = "ToolCancelar";
     this.ToolActualizar.Caption  = "&Refrescar";
     this.ToolActualizar.Glyph    = Resources.refrescar;
     this.ToolActualizar.Id       = 2;
     this.ToolActualizar.Name     = "ToolActualizar";
     this.lblEstado.Caption       = "Listo";
     this.lblEstado.Id            = 3;
     this.lblEstado.Name          = "lblEstado";
     this.lblEstado.TextAlignment = StringAlignment.Near;
     base.AutoScaleDimensions     = new SizeF(6f, 13f);
     base.AutoScaleMode           = AutoScaleMode.Font;
     base.ClientSize = new Size(0x217, 0x1a3);
     base.Controls.Add(this.splitContainerControl1);
     base.Controls.Add(this.barDockControl3);
     base.Controls.Add(this.barDockControl4);
     base.Controls.Add(this.barDockControl2);
     base.Controls.Add(this.barDockControl1);
     base.EtiquetaEstado = this.lblEstado;
     base.Name           = "_PlantillaPrompt";
     this.Text           = "_PlantillaPrompt";
     this.grpResultados.EndInit();
     this.grpCriterios.EndInit();
     this.grpCriterios.ResumeLayout(false);
     this.grpCriterios.PerformLayout();
     this.txtFiltro.Properties.EndInit();
     this.cboFiltro.Properties.EndInit();
     this.splitContainerControl1.EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     this.BarraBotones.EndInit();
     base.ResumeLayout(false);
 }
		private void InitializeComponent()
		{
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.btnNewTerminal = new DevExpress.XtraBars.BarButtonItem();
            this.btnNewTerminal2 = new DevExpress.XtraBars.BarButtonItem();
            this.btnNewTerminal3 = new DevExpress.XtraBars.BarButtonItem();
            this.btnStart = new DevExpress.XtraBars.BarButtonItem();
            this.btnStop = new DevExpress.XtraBars.BarButtonItem();
            this.btnClear = new DevExpress.XtraBars.BarButtonItem();
            this.txtUsername = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.txtPassword = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.btnLogin = new DevExpress.XtraBars.BarButtonItem();
            this.btnChangePassword = new DevExpress.XtraBars.BarButtonItem();
            this.btnLogout = new DevExpress.XtraBars.BarButtonItem();
            this.lblSystemTime = new DevExpress.XtraBars.BarStaticItem();
            this.lblTotalTransaction = new DevExpress.XtraBars.BarStaticItem();
            this.lblTotalTerminal = new DevExpress.XtraBars.BarStaticItem();
            this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemPopupContainerEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
            this.ribbonGalleryBarItem1 = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonGroup2 = new DevExpress.XtraBars.BarButtonGroup();
            this.skinGalleryBarItem = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage1 = 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.gridColumn8 = 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.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
            this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
            this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
            this.btnStatement = new DevExpress.XtraEditors.SimpleButton();
            this.btnBetList = new DevExpress.XtraEditors.SimpleButton();
            this.cbeSignatureTemplate = new DevExpress.XtraEditors.ComboBoxEdit();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.webBrowser2 = new System.Windows.Forms.WebBrowser();
            this.splitter1 = new System.Windows.Forms.Splitter();
            this.webBrowser1 = new System.Windows.Forms.WebBrowser();
            this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
            this.textEdit4 = new DevExpress.XtraEditors.MemoEdit();
            this.chkSCloud = new DevExpress.XtraEditors.CheckEdit();
            this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
            this.textEdit3 = new DevExpress.XtraEditors.TextEdit();
            this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
            this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.chkRCloud = new DevExpress.XtraEditors.CheckEdit();
            this.btnSignMeIn = new DevExpress.XtraEditors.SimpleButton();
            this.txtServerIP = new DevExpress.XtraEditors.TextEdit();
            this.txtServerUserName = new DevExpress.XtraEditors.TextEdit();
            this.txtServerPassword = new DevExpress.XtraEditors.TextEdit();
            this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
            this.xtraTabControl2 = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit1)).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.grdTransaction)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
            this.xtraTabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cbeSignatureTemplate.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            this.xtraTabPage5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
            this.panelControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkSCloud.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkRCloud.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServerIP.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServerUserName.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServerPassword.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).BeginInit();
            this.xtraTabControl2.SuspendLayout();
            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.btnNewTerminal,
            this.btnNewTerminal2,
            this.btnNewTerminal3,
            this.btnStart,
            this.btnStop,
            this.btnClear,
            this.txtUsername,
            this.txtPassword,
            this.btnLogin,
            this.btnChangePassword,
            this.btnLogout,
            this.lblSystemTime,
            this.lblTotalTransaction,
            this.lblTotalTerminal,
            this.barEditItem1,
            this.ribbonGalleryBarItem1,
            this.barButtonGroup1,
            this.barButtonGroup2,
            this.skinGalleryBarItem});
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 22;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemTextEdit1,
            this.repositoryItemTextEdit2,
            this.repositoryItemPopupContainerEdit1});
            this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
            this.ribbonControl1.SelectedPage = this.ribbonPage1;
            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(1056, 125);
            this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
            this.ribbonControl1.Toolbar.ShowCustomizeItem = false;
            // 
            // btnNewTerminal
            // 
            this.btnNewTerminal.Caption = "ibet-3in1";
            this.btnNewTerminal.Enabled = false;
            this.btnNewTerminal.Id = 1;
            this.btnNewTerminal.LargeGlyph = global::iBet.App.Properties.Resources.i4;
            this.btnNewTerminal.Name = "btnNewTerminal";
            this.btnNewTerminal.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnNewTerminal_ItemClick);
            // 
            // btnNewTerminal2
            // 
            this.btnNewTerminal2.Caption = "ibet-sbo";
            this.btnNewTerminal2.Enabled = false;
            this.btnNewTerminal2.Id = 13;
            this.btnNewTerminal2.LargeGlyph = global::iBet.App.Properties.Resources.i9;
            this.btnNewTerminal2.Name = "btnNewTerminal2";
            this.btnNewTerminal2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnNewTerminal2_ItemClick);
            // 
            // btnNewTerminal3
            // 
            this.btnNewTerminal3.Caption = "Follow Sub";
            this.btnNewTerminal3.Enabled = false;
            this.btnNewTerminal3.Id = 14;
            this.btnNewTerminal3.LargeGlyph = global::iBet.App.Properties.Resources.i10;
            this.btnNewTerminal3.Name = "btnNewTerminal3";
            this.btnNewTerminal3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnNewTerminal3_ItemClick);
            // 
            // btnStart
            // 
            this.btnStart.Caption = "Start";
            this.btnStart.Enabled = false;
            this.btnStart.Id = 2;
            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 = 3;
            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.Glyph = global::iBet.App.Properties.Resources.i7;
            this.btnClear.Id = 4;
            this.btnClear.LargeGlyph = global::iBet.App.Properties.Resources.i7;
            this.btnClear.Name = "btnClear";
            this.btnClear.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnClear_ItemClick);
            // 
            // txtUsername
            // 
            this.txtUsername.Caption = "Username";
            this.txtUsername.Edit = this.repositoryItemTextEdit1;
            this.txtUsername.Id = 5;
            this.txtUsername.Name = "txtUsername";
            this.txtUsername.Width = 150;
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // txtPassword
            // 
            this.txtPassword.Caption = "Password ";
            this.txtPassword.Edit = this.repositoryItemTextEdit2;
            this.txtPassword.Id = 6;
            this.txtPassword.Name = "txtPassword";
            this.txtPassword.Width = 150;
            // 
            // repositoryItemTextEdit2
            // 
            this.repositoryItemTextEdit2.AutoHeight = false;
            this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
            this.repositoryItemTextEdit2.PasswordChar = '*';
            // 
            // btnLogin
            // 
            this.btnLogin.Caption = "Login";
            this.btnLogin.Id = 7;
            this.btnLogin.LargeGlyph = global::iBet.App.Properties.Resources.i1;
            this.btnLogin.Name = "btnLogin";
            this.btnLogin.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnLogin_ItemClick);
            // 
            // btnChangePassword
            // 
            this.btnChangePassword.Caption = "Change Password";
            this.btnChangePassword.Enabled = false;
            this.btnChangePassword.Id = 8;
            this.btnChangePassword.LargeGlyph = global::iBet.App.Properties.Resources.i3;
            this.btnChangePassword.Name = "btnChangePassword";
            this.btnChangePassword.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnChangePassword_ItemClick);
            // 
            // btnLogout
            // 
            this.btnLogout.Caption = "Logout";
            this.btnLogout.Enabled = false;
            this.btnLogout.Id = 9;
            this.btnLogout.LargeGlyph = global::iBet.App.Properties.Resources.i2;
            this.btnLogout.Name = "btnLogout";
            this.btnLogout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnLogout_ItemClick);
            // 
            // lblSystemTime
            // 
            this.lblSystemTime.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.lblSystemTime.Id = 10;
            this.lblSystemTime.Name = "lblSystemTime";
            this.lblSystemTime.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // lblTotalTransaction
            // 
            this.lblTotalTransaction.Caption = "Total transaction(s): 0";
            this.lblTotalTransaction.Id = 11;
            this.lblTotalTransaction.Name = "lblTotalTransaction";
            this.lblTotalTransaction.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // lblTotalTerminal
            // 
            this.lblTotalTerminal.Caption = "Total Terminal(s): 0";
            this.lblTotalTerminal.Id = 12;
            this.lblTotalTerminal.Name = "lblTotalTerminal";
            this.lblTotalTerminal.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barEditItem1
            // 
            this.barEditItem1.Caption = "barEditItem1";
            this.barEditItem1.Edit = this.repositoryItemPopupContainerEdit1;
            this.barEditItem1.Id = 15;
            this.barEditItem1.Name = "barEditItem1";
            // 
            // repositoryItemPopupContainerEdit1
            // 
            this.repositoryItemPopupContainerEdit1.AutoHeight = false;
            this.repositoryItemPopupContainerEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemPopupContainerEdit1.Name = "repositoryItemPopupContainerEdit1";
            // 
            // ribbonGalleryBarItem1
            // 
            this.ribbonGalleryBarItem1.Caption = "ribbonGalleryBarItem1";
            this.ribbonGalleryBarItem1.Id = 17;
            this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
            // 
            // barButtonGroup1
            // 
            this.barButtonGroup1.Caption = "barButtonGroup1";
            this.barButtonGroup1.Id = 18;
            this.barButtonGroup1.Name = "barButtonGroup1";
            // 
            // barButtonGroup2
            // 
            this.barButtonGroup2.Caption = "barButtonGroup2";
            this.barButtonGroup2.Id = 19;
            this.barButtonGroup2.Name = "barButtonGroup2";
            // 
            // skinGalleryBarItem
            // 
            this.skinGalleryBarItem.Caption = "skinGalleryBarItem";
            // 
            // skinGalleryBarItem
            // 
            this.skinGalleryBarItem.Gallery.AllowHoverImages = true;
            this.skinGalleryBarItem.Gallery.FixedHoverImageSize = false;
            galleryItemGroup1.Caption = "Standard";
            galleryItemGroup2.Caption = "Bonus";
            galleryItemGroup2.Visible = false;
            galleryItemGroup3.Caption = "Office";
            galleryItemGroup3.Visible = false;
            this.skinGalleryBarItem.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1,
            galleryItemGroup2,
            galleryItemGroup3});
            this.skinGalleryBarItem.Gallery.ImageSize = new System.Drawing.Size(58, 43);
            this.skinGalleryBarItem.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.skinGalleryBarItem.Id = 1;
            this.skinGalleryBarItem.Name = "skinGalleryBarItem";
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup3,
            this.ribbonPageGroup1,
            this.ribbonPageGroup2,
            this.ribbonPageGroup5});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "Terminal";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.ItemLinks.Add(this.txtUsername);
            this.ribbonPageGroup3.ItemLinks.Add(this.txtPassword);
            this.ribbonPageGroup3.ItemLinks.Add(this.btnLogin);
            this.ribbonPageGroup3.ItemLinks.Add(this.btnChangePassword);
            this.ribbonPageGroup3.ItemLinks.Add(this.btnLogout);
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.ShowCaptionButton = false;
            this.ribbonPageGroup3.Text = "Authentication";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.btnNewTerminal);
            this.ribbonPageGroup1.ItemLinks.Add(this.btnNewTerminal2);
            this.ribbonPageGroup1.ItemLinks.Add(this.btnNewTerminal3);
            this.ribbonPageGroup1.ItemLinks.Add(this.btnStart);
            this.ribbonPageGroup1.ItemLinks.Add(this.btnStop);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.ShowCaptionButton = false;
            this.ribbonPageGroup1.Text = "Terminal";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.ItemLinks.Add(this.btnClear);
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.ShowCaptionButton = false;
            this.ribbonPageGroup2.Text = "Tracking";
            // 
            // ribbonPageGroup5
            // 
            this.ribbonPageGroup5.ItemLinks.Add(this.skinGalleryBarItem);
            this.ribbonPageGroup5.Name = "ribbonPageGroup5";
            this.ribbonPageGroup5.Text = "Skins";
            // 
            // ribbonStatusBar1
            // 
            this.ribbonStatusBar1.ItemLinks.Add(this.lblSystemTime);
            this.ribbonStatusBar1.ItemLinks.Add(this.lblTotalTerminal);
            this.ribbonStatusBar1.ItemLinks.Add(this.lblTotalTransaction);
            this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 617);
            this.ribbonStatusBar1.Name = "ribbonStatusBar1";
            this.ribbonStatusBar1.Ribbon = this.ribbonControl1;
            this.ribbonStatusBar1.Size = new System.Drawing.Size(1056, 31);
            // 
            // 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(1056, 492);
            this.splitContainerControl1.SplitterPosition = 44;
            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(1056, 443);
            this.xtraTabControl1.TabIndex = 0;
            this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage1,
            this.xtraTabPage3,
            this.xtraTabPage5});
            // 
            // xtraTabPage1
            // 
            this.xtraTabPage1.Controls.Add(this.grdTransaction);
            this.xtraTabPage1.Controls.Add(this.panelControl3);
            this.xtraTabPage1.Controls.Add(this.panelControl4);
            this.xtraTabPage1.Name = "xtraTabPage1";
            this.xtraTabPage1.Size = new System.Drawing.Size(1050, 417);
            this.xtraTabPage1.Text = "Transactions";
            // 
            // grdTransaction
            // 
            this.grdTransaction.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdTransaction.EmbeddedNavigator.ShowToolTips = false;
            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(1050, 417);
            this.grdTransaction.TabIndex = 7;
            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.gridColumn8,
            this.gridColumn2,
            this.gridColumn3,
            this.gridColumn6,
            this.gridColumn4,
            this.gridColumn5,
            this.gridColumn7,
            this.gridColumn10,
            this.gridColumn11,
            this.gridColumn12,
            this.gridColumn9,
            this.gridColumn14,
            this.gridColumn15,
            this.gridColumn13});
            this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
            this.gridView2.GridControl = this.grdTransaction;
            this.gridView2.Name = "gridView2";
            this.gridView2.OptionsBehavior.Editable = false;
            this.gridView2.OptionsCustomization.AllowGroup = false;
            this.gridView2.OptionsMenu.EnableColumnMenu = false;
            this.gridView2.OptionsMenu.EnableFooterMenu = false;
            this.gridView2.OptionsMenu.EnableGroupPanelMenu = false;
            this.gridView2.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
            this.gridView2.OptionsView.ShowAutoFilterRow = true;
            this.gridView2.OptionsView.ShowGroupPanel = false;
            this.gridView2.OptionsView.ShowPreview = true;
            this.gridView2.PreviewFieldName = "Note";
            this.gridView2.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowForFocusedRow;
            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.FieldName = "ID";
            this.gridColumn1.Name = "gridColumn1";
            this.gridColumn1.OptionsColumn.AllowFocus = false;
            this.gridColumn1.OptionsColumn.AllowMove = false;
            this.gridColumn1.OptionsColumn.AllowSize = false;
            this.gridColumn1.OptionsColumn.FixedWidth = true;
            this.gridColumn1.Visible = true;
            this.gridColumn1.VisibleIndex = 0;
            this.gridColumn1.Width = 30;
            // 
            // gridColumn8
            // 
            this.gridColumn8.Caption = "Account Pair";
            this.gridColumn8.FieldName = "AccountPair";
            this.gridColumn8.Name = "gridColumn8";
            this.gridColumn8.OptionsColumn.AllowFocus = false;
            this.gridColumn8.OptionsColumn.FixedWidth = true;
            this.gridColumn8.Visible = true;
            this.gridColumn8.VisibleIndex = 1;
            this.gridColumn8.Width = 120;
            // 
            // gridColumn2
            // 
            this.gridColumn2.Caption = "Home Team";
            this.gridColumn2.FieldName = "HomeTeamName";
            this.gridColumn2.Name = "gridColumn2";
            this.gridColumn2.OptionsColumn.AllowFocus = false;
            this.gridColumn2.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn2.Visible = true;
            this.gridColumn2.VisibleIndex = 2;
            this.gridColumn2.Width = 107;
            // 
            // gridColumn3
            // 
            this.gridColumn3.Caption = "Away Team";
            this.gridColumn3.FieldName = "AwayTeamName";
            this.gridColumn3.Name = "gridColumn3";
            this.gridColumn3.OptionsColumn.AllowFocus = false;
            this.gridColumn3.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn3.Visible = true;
            this.gridColumn3.VisibleIndex = 3;
            this.gridColumn3.Width = 119;
            // 
            // gridColumn6
            // 
            this.gridColumn6.Caption = "Type";
            this.gridColumn6.FieldName = "OddType";
            this.gridColumn6.Name = "gridColumn6";
            this.gridColumn6.OptionsColumn.AllowFocus = false;
            this.gridColumn6.OptionsColumn.FixedWidth = true;
            this.gridColumn6.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn6.Visible = true;
            this.gridColumn6.VisibleIndex = 4;
            this.gridColumn6.Width = 150;
            // 
            // gridColumn4
            // 
            this.gridColumn4.Caption = "Odd";
            this.gridColumn4.FieldName = "OddKindValue";
            this.gridColumn4.Name = "gridColumn4";
            this.gridColumn4.OptionsColumn.AllowFocus = false;
            this.gridColumn4.OptionsColumn.FixedWidth = true;
            this.gridColumn4.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn4.Visible = true;
            this.gridColumn4.VisibleIndex = 5;
            this.gridColumn4.Width = 60;
            // 
            // gridColumn5
            // 
            this.gridColumn5.Caption = "Value";
            this.gridColumn5.FieldName = "OddValue";
            this.gridColumn5.Name = "gridColumn5";
            this.gridColumn5.OptionsColumn.AllowFocus = false;
            this.gridColumn5.OptionsColumn.FixedWidth = true;
            this.gridColumn5.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn5.Visible = true;
            this.gridColumn5.VisibleIndex = 6;
            this.gridColumn5.Width = 60;
            // 
            // gridColumn7
            // 
            this.gridColumn7.Caption = "Stake";
            this.gridColumn7.FieldName = "Stake";
            this.gridColumn7.Name = "gridColumn7";
            this.gridColumn7.OptionsColumn.AllowFocus = false;
            this.gridColumn7.OptionsColumn.FixedWidth = true;
            this.gridColumn7.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn7.Visible = true;
            this.gridColumn7.VisibleIndex = 7;
            this.gridColumn7.Width = 60;
            // 
            // gridColumn10
            // 
            this.gridColumn10.Caption = "I";
            this.gridColumn10.FieldName = "IBETTrade";
            this.gridColumn10.Name = "gridColumn10";
            this.gridColumn10.OptionsColumn.AllowFocus = false;
            this.gridColumn10.OptionsColumn.FixedWidth = true;
            this.gridColumn10.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
            this.gridColumn10.Visible = true;
            this.gridColumn10.VisibleIndex = 8;
            this.gridColumn10.Width = 30;
            // 
            // gridColumn11
            // 
            this.gridColumn11.Caption = "3";
            this.gridColumn11.FieldName = "THREEIN1Trade";
            this.gridColumn11.Name = "gridColumn11";
            this.gridColumn11.OptionsColumn.AllowFocus = false;
            this.gridColumn11.OptionsColumn.FixedWidth = true;
            this.gridColumn11.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
            this.gridColumn11.Visible = true;
            this.gridColumn11.VisibleIndex = 9;
            this.gridColumn11.Width = 30;
            // 
            // gridColumn12
            // 
            this.gridColumn12.Caption = "3 Re";
            this.gridColumn12.FieldName = "THREEIN1ReTrade";
            this.gridColumn12.Name = "gridColumn12";
            this.gridColumn12.OptionsColumn.AllowFocus = false;
            this.gridColumn12.OptionsColumn.FixedWidth = true;
            this.gridColumn12.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
            this.gridColumn12.Visible = true;
            this.gridColumn12.VisibleIndex = 11;
            this.gridColumn12.Width = 30;
            // 
            // gridColumn9
            // 
            this.gridColumn9.Caption = "I Re";
            this.gridColumn9.FieldName = "IBETReTrade";
            this.gridColumn9.Name = "gridColumn9";
            this.gridColumn9.OptionsColumn.AllowFocus = false;
            this.gridColumn9.OptionsColumn.FixedWidth = true;
            this.gridColumn9.Visible = true;
            this.gridColumn9.VisibleIndex = 12;
            this.gridColumn9.Width = 30;
            // 
            // gridColumn14
            // 
            this.gridColumn14.Caption = "B";
            this.gridColumn14.FieldName = "SBOBETTrade";
            this.gridColumn14.Name = "gridColumn14";
            this.gridColumn14.OptionsColumn.AllowFocus = false;
            this.gridColumn14.OptionsColumn.FixedWidth = true;
            this.gridColumn14.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
            this.gridColumn14.Visible = true;
            this.gridColumn14.VisibleIndex = 10;
            this.gridColumn14.Width = 30;
            // 
            // gridColumn15
            // 
            this.gridColumn15.Caption = "B Re";
            this.gridColumn15.FieldName = "SBOBETReTrade";
            this.gridColumn15.Name = "gridColumn15";
            this.gridColumn15.OptionsColumn.AllowFocus = false;
            this.gridColumn15.OptionsColumn.FixedWidth = true;
            this.gridColumn15.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
            this.gridColumn15.Visible = true;
            this.gridColumn15.VisibleIndex = 13;
            this.gridColumn15.Width = 30;
            // 
            // 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.AllowFocus = false;
            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 = 14;
            this.gridColumn13.Width = 150;
            // 
            // 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 = 8;
            // 
            // 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 = 9;
            // 
            // xtraTabPage3
            // 
            this.xtraTabPage3.Controls.Add(this.btnStatement);
            this.xtraTabPage3.Controls.Add(this.btnBetList);
            this.xtraTabPage3.Controls.Add(this.cbeSignatureTemplate);
            this.xtraTabPage3.Controls.Add(this.panelControl1);
            this.xtraTabPage3.Name = "xtraTabPage3";
            this.xtraTabPage3.Size = new System.Drawing.Size(1050, 417);
            this.xtraTabPage3.Text = "Bet List - Statement";
            // 
            // btnStatement
            // 
            this.btnStatement.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnStatement.Location = new System.Drawing.Point(295, 391);
            this.btnStatement.Name = "btnStatement";
            this.btnStatement.Size = new System.Drawing.Size(99, 23);
            this.btnStatement.TabIndex = 7;
            this.btnStatement.Text = "Statement";
            this.btnStatement.Click += new System.EventHandler(this.btnStatement_Click);
            // 
            // btnBetList
            // 
            this.btnBetList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnBetList.Location = new System.Drawing.Point(198, 391);
            this.btnBetList.Name = "btnBetList";
            this.btnBetList.Size = new System.Drawing.Size(91, 23);
            this.btnBetList.TabIndex = 6;
            this.btnBetList.Text = "Refresh";
            this.btnBetList.Click += new System.EventHandler(this.btnRefresh_Click);
            // 
            // cbeSignatureTemplate
            // 
            this.cbeSignatureTemplate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cbeSignatureTemplate.EditValue = "Select account pair";
            this.cbeSignatureTemplate.Location = new System.Drawing.Point(3, 394);
            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.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.cbeSignatureTemplate.Size = new System.Drawing.Size(189, 20);
            this.cbeSignatureTemplate.TabIndex = 5;
            // 
            // panelControl1
            // 
            this.panelControl1.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.panelControl1.Controls.Add(this.webBrowser2);
            this.panelControl1.Controls.Add(this.splitter1);
            this.panelControl1.Controls.Add(this.webBrowser1);
            this.panelControl1.Location = new System.Drawing.Point(2, 3);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(1044, 382);
            this.panelControl1.TabIndex = 3;
            // 
            // webBrowser2
            // 
            this.webBrowser2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.webBrowser2.Location = new System.Drawing.Point(364, 2);
            this.webBrowser2.MinimumSize = new System.Drawing.Size(20, 20);
            this.webBrowser2.Name = "webBrowser2";
            this.webBrowser2.Size = new System.Drawing.Size(678, 378);
            this.webBrowser2.TabIndex = 2;
            this.webBrowser2.Url = new System.Uri("", System.UriKind.Relative);
            // 
            // splitter1
            // 
            this.splitter1.Location = new System.Drawing.Point(361, 2);
            this.splitter1.Name = "splitter1";
            this.splitter1.Size = new System.Drawing.Size(3, 378);
            this.splitter1.TabIndex = 1;
            this.splitter1.TabStop = false;
            // 
            // webBrowser1
            // 
            this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Left;
            this.webBrowser1.Location = new System.Drawing.Point(2, 2);
            this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
            this.webBrowser1.Name = "webBrowser1";
            this.webBrowser1.Size = new System.Drawing.Size(359, 378);
            this.webBrowser1.TabIndex = 0;
            this.webBrowser1.Url = new System.Uri("", System.UriKind.Relative);
            // 
            // xtraTabPage5
            // 
            this.xtraTabPage5.Controls.Add(this.panelControl2);
            this.xtraTabPage5.Name = "xtraTabPage5";
            this.xtraTabPage5.Size = new System.Drawing.Size(1050, 417);
            this.xtraTabPage5.Text = "Settings";
            // 
            // panelControl2
            // 
            this.panelControl2.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.panelControl2.Controls.Add(this.textEdit4);
            this.panelControl2.Controls.Add(this.chkSCloud);
            this.panelControl2.Controls.Add(this.simpleButton2);
            this.panelControl2.Controls.Add(this.textEdit3);
            this.panelControl2.Controls.Add(this.textEdit2);
            this.panelControl2.Controls.Add(this.textEdit1);
            this.panelControl2.Controls.Add(this.simpleButton1);
            this.panelControl2.Controls.Add(this.label4);
            this.panelControl2.Controls.Add(this.label3);
            this.panelControl2.Controls.Add(this.label2);
            this.panelControl2.Controls.Add(this.label1);
            this.panelControl2.Controls.Add(this.chkRCloud);
            this.panelControl2.Controls.Add(this.btnSignMeIn);
            this.panelControl2.Controls.Add(this.txtServerIP);
            this.panelControl2.Controls.Add(this.txtServerUserName);
            this.panelControl2.Controls.Add(this.txtServerPassword);
            this.panelControl2.Controls.Add(this.pictureEdit1);
            this.panelControl2.Location = new System.Drawing.Point(3, 3);
            this.panelControl2.Name = "panelControl2";
            this.panelControl2.Size = new System.Drawing.Size(1044, 497);
            this.panelControl2.TabIndex = 0;
            // 
            // textEdit4
            // 
            this.textEdit4.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.textEdit4.Location = new System.Drawing.Point(244, 5);
            this.textEdit4.Name = "textEdit4";
            this.textEdit4.Size = new System.Drawing.Size(408, 406);
            this.textEdit4.TabIndex = 18;
            // 
            // chkSCloud
            // 
            this.chkSCloud.EditValue = true;
            this.chkSCloud.Location = new System.Drawing.Point(13, 27);
            this.chkSCloud.Name = "chkSCloud";
            this.chkSCloud.Properties.Caption = "S cloud";
            this.chkSCloud.Size = new System.Drawing.Size(86, 19);
            this.chkSCloud.TabIndex = 17;
            // 
            // simpleButton2
            // 
            this.simpleButton2.Location = new System.Drawing.Point(130, 307);
            this.simpleButton2.Name = "simpleButton2";
            this.simpleButton2.Size = new System.Drawing.Size(97, 23);
            this.simpleButton2.TabIndex = 16;
            this.simpleButton2.Text = "Set";
            this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
            // 
            // textEdit3
            // 
            this.textEdit3.EditValue = "0";
            this.textEdit3.Location = new System.Drawing.Point(94, 216);
            this.textEdit3.Name = "textEdit3";
            this.textEdit3.Size = new System.Drawing.Size(142, 20);
            this.textEdit3.TabIndex = 15;
            // 
            // textEdit2
            // 
            this.textEdit2.Location = new System.Drawing.Point(94, 268);
            this.textEdit2.Name = "textEdit2";
            this.textEdit2.Size = new System.Drawing.Size(142, 20);
            this.textEdit2.TabIndex = 14;
            // 
            // textEdit1
            // 
            this.textEdit1.Location = new System.Drawing.Point(94, 241);
            this.textEdit1.Name = "textEdit1";
            this.textEdit1.Size = new System.Drawing.Size(142, 20);
            this.textEdit1.TabIndex = 13;
            // 
            // simpleButton1
            // 
            this.simpleButton1.Location = new System.Drawing.Point(18, 307);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(97, 23);
            this.simpleButton1.TabIndex = 12;
            this.simpleButton1.Text = "Get";
            this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(12, 176);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(0, 13);
            this.label4.TabIndex = 11;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(11, 140);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(53, 13);
            this.label3.TabIndex = 10;
            this.label3.Text = "Password";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(11, 113);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(55, 13);
            this.label2.TabIndex = 9;
            this.label2.Text = "Username";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(11, 86);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(81, 13);
            this.label1.TabIndex = 8;
            this.label1.Text = "Server Address";
            // 
            // chkRCloud
            // 
            this.chkRCloud.EditValue = true;
            this.chkRCloud.Location = new System.Drawing.Point(12, 53);
            this.chkRCloud.Name = "chkRCloud";
            this.chkRCloud.Properties.Caption = "R cloud";
            this.chkRCloud.Size = new System.Drawing.Size(86, 19);
            this.chkRCloud.TabIndex = 7;
            this.chkRCloud.CheckedChanged += new System.EventHandler(this.chbCloud_CheckedChanged);
            // 
            // btnSignMeIn
            // 
            this.btnSignMeIn.Location = new System.Drawing.Point(154, 171);
            this.btnSignMeIn.Name = "btnSignMeIn";
            this.btnSignMeIn.Size = new System.Drawing.Size(75, 23);
            this.btnSignMeIn.TabIndex = 3;
            this.btnSignMeIn.Text = "Sign me in";
            this.btnSignMeIn.Click += new System.EventHandler(this.btnSignMeIn_Click);
            // 
            // txtServerIP
            // 
            this.txtServerIP.EditValue = "115.84.178.100";
            this.txtServerIP.Location = new System.Drawing.Point(95, 83);
            this.txtServerIP.Name = "txtServerIP";
            this.txtServerIP.Size = new System.Drawing.Size(142, 20);
            this.txtServerIP.TabIndex = 4;
            // 
            // txtServerUserName
            // 
            this.txtServerUserName.EditValue = "tuns";
            this.txtServerUserName.Location = new System.Drawing.Point(95, 110);
            this.txtServerUserName.Name = "txtServerUserName";
            this.txtServerUserName.Size = new System.Drawing.Size(142, 20);
            this.txtServerUserName.TabIndex = 5;
            // 
            // txtServerPassword
            // 
            this.txtServerPassword.EditValue = "anhkomuonradi";
            this.txtServerPassword.Location = new System.Drawing.Point(95, 137);
            this.txtServerPassword.Name = "txtServerPassword";
            this.txtServerPassword.Properties.UseSystemPasswordChar = true;
            this.txtServerPassword.Size = new System.Drawing.Size(142, 20);
            this.txtServerPassword.TabIndex = 6;
            // 
            // pictureEdit1
            // 
            this.pictureEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.pictureEdit1.EditValue = ((object)(resources.GetObject("pictureEdit1.EditValue")));
            this.pictureEdit1.Location = new System.Drawing.Point(658, 5);
            this.pictureEdit1.Name = "pictureEdit1";
            this.pictureEdit1.Properties.AllowFocused = false;
            this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
            this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pictureEdit1.Properties.PictureAlignment = System.Drawing.ContentAlignment.TopLeft;
            this.pictureEdit1.Properties.ShowMenu = false;
            this.pictureEdit1.Size = new System.Drawing.Size(382, 448);
            this.pictureEdit1.TabIndex = 2;
            // 
            // xtraTabControl2
            // 
            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.xtraTabPage2;
            this.xtraTabControl2.Size = new System.Drawing.Size(1056, 44);
            this.xtraTabControl2.TabIndex = 1;
            this.xtraTabControl2.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage2,
            this.xtraTabPage4});
            // 
            // xtraTabPage2
            // 
            this.xtraTabPage2.Name = "xtraTabPage2";
            this.xtraTabPage2.Size = new System.Drawing.Size(1050, 18);
            this.xtraTabPage2.Text = "Waiting list";
            // 
            // xtraTabPage4
            // 
            this.xtraTabPage4.Name = "xtraTabPage4";
            this.xtraTabPage4.Size = new System.Drawing.Size(1050, 18);
            this.xtraTabPage4.Text = "Clones monitor";
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.ItemLinks.Add(this.btnClear);
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.ShowCaptionButton = false;
            this.ribbonPageGroup4.Text = "Tracking";
            // 
            // MainForm
            // 
            this.AutoHideRibbon = false;
            this.ClientSize = new System.Drawing.Size(1056, 648);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.ribbonStatusBar1);
            this.Controls.Add(this.ribbonControl1);
            this.Icon = global::iBet.App.Properties.Resources.BetBrokerLogo;
            this.Name = "MainForm";
            this.Ribbon = this.ribbonControl1;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.StatusBar = this.ribbonStatusBar1;
            this.Text = "Bet Broker";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit1)).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.grdTransaction)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
            this.xtraTabPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.cbeSignatureTemplate.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.xtraTabPage5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
            this.panelControl2.ResumeLayout(false);
            this.panelControl2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkSCloud.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkRCloud.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServerIP.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServerUserName.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServerPassword.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).EndInit();
            this.xtraTabControl2.ResumeLayout(false);
            this.ResumeLayout(false);

		}
Example #42
0
 public static void ChangeCaptionSplitContainerControl(string parent_name, string language, SplitContainerControl split_container_control)
 {
     split_container_control.Panel1.Text = CaptionEngine.GetControlCaption(parent_name, split_container_control.Name + "_Panel1", BaseConstant.CONTROL_TEXT, language);
     split_container_control.Panel2.Text = CaptionEngine.GetControlCaption(parent_name, split_container_control.Name + "_Panel2", BaseConstant.CONTROL_TEXT, language);
 }
Example #43
0
        private void SetDetails()
        {
            scc = (SplitContainerControl)((SplitGroupPanel)this.Parent).Parent;
            DataTable tbl = db.SelectTable("SELECT * FROM (((tblbookauthor ba LEFT JOIN tblbook b ON ba.bookID=b.bookID) LEFT JOIN " +
                                           "tblauthor a ON ba.authorID=a.authorID) LEFT JOIN tblpublisher p ON b.publisherID=p.publisherID) LEFT JOIN tblsubject s ON b.subjectID=s.subjectID" +
                                           " WHERE b.bookID=" + editID);

            if (tbl != null)
            {
                if (tbl.Rows.Count > 1)
                {
                    DataRow r = tbl.Rows[0];
                    txtCatters.Text          = r["cattersNo"].ToString();
                    txtDewey.Text            = r["deweyDecimal"].ToString();
                    txtISBN.Text             = r["ISBN"].ToString();
                    txtNoteArea.Text         = r["noteArea"].ToString();
                    txtPage.Text             = r["pages"].ToString();
                    txtPublisherAddress.Text = r["address"].ToString();
                    txtPublisherName.Text    = r["publisherName"].ToString();
                    txtQuantity.Text         = r["quantity"].ToString();
                    txtTitle.Text            = r["title"].ToString();
                    txtTypeOfIll.Text        = r["typeOfIllustration"].ToString();
                    txtVolume.Text           = r["volume"].ToString();
                    txtYearOfPub.Text        = r["yearOfPublication"].ToString();
                    if (r["isCopyright"].ToString().Equals("1"))
                    {
                        chkCopyright.Checked = true;
                    }
                    else
                    {
                        chkCopyright.Checked = false;
                    }
                    cmbSubject.Text = r["subjectName"].ToString();
                    List <string> auID = new List <string>();
                    foreach (DataRow row in tbl.Rows)
                    {
                        auID.Add(row["authorID"].ToString());
                        oAuthors.Add(row["authorID"].ToString());
                    }
                    oTitle    = r["title"].ToString();
                    oQuantity = r["quantity"].ToString();
                    oVolume   = r["volume"].ToString();
                    //scc.Panel2.Controls.Clear();
                    //addBookAuthor ab = new addBookAuthor();
                    addBookAuthor.ids      = auID;
                    btnMultiAuthor.Checked = true;
                    optPerson.Checked      = true;
                    //ab.Dock = DockStyle.Fill;
                    //ab.Size = scc.Size;
                    //scc.Panel2.Enabled = true;
                    //scc.Panel2.Controls.Add(ab);
                    //scc.Panel2.Controls.Clear();
                }
                else if (tbl.Rows.Count == 1)
                {
                    addBookAuthor.ids = null;
                    DataRow r = tbl.Rows[0];
                    txtCatters.Text          = r["cattersNo"].ToString();
                    txtDewey.Text            = r["deweyDecimal"].ToString();
                    txtISBN.Text             = r["ISBN"].ToString();
                    txtNoteArea.Text         = r["noteArea"].ToString();
                    txtPage.Text             = r["pages"].ToString();
                    txtPublisherAddress.Text = r["address"].ToString();
                    txtPublisherName.Text    = r["publisherName"].ToString();
                    txtQuantity.Text         = r["quantity"].ToString();
                    txtTitle.Text            = r["title"].ToString();
                    txtTypeOfIll.Text        = r["typeOfIllustration"].ToString();
                    txtVolume.Text           = r["volume"].ToString();
                    txtYearOfPub.Text        = r["yearOfPublication"].ToString();
                    if (r["isCopyright"].ToString().Equals("1"))
                    {
                        chkCopyright.Checked = true;
                    }
                    else
                    {
                        chkCopyright.Checked = false;
                    }
                    cmbSubject.Text = r["subjectName"].ToString();
                    if (r["fname"].ToString().Equals(""))
                    {
                        optCorporate.Checked   = true;
                        txtCorporate.Text      = r["corporation"].ToString();
                        btnMultiAuthor.Checked = false;
                    }
                    else
                    {
                        optPerson.Checked      = true;
                        txtAuthorFname.Text    = r["fname"].ToString();
                        txtAuthorMname.Text    = r["mname"].ToString();
                        txtAuthorLname.Text    = r["lname"].ToString();
                        btnMultiAuthor.Checked = false;
                    }
                    oTitle    = r["title"].ToString();
                    oQuantity = r["quantity"].ToString();
                    oVolume   = r["volume"].ToString();
                    oAuthors.Add(r["authorID"].ToString());
                }
            }
        }
Example #44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components             = new System.ComponentModel.Container();
     this.BarraBotones           = new BarManager();
     this.bar1                   = new Bar();
     this.ToolNuevo              = new BarButtonItem();
     this.ToolEditar             = new BarButtonItem();
     this.ToolEliminar           = new BarButtonItem();
     this.ToolBuscar             = new BarButtonItem();
     this.ToolActualizar         = new BarButtonItem();
     this.barDockControlTop      = new BarDockControl();
     this.barDockControlBottom   = new BarDockControl();
     this.barDockControlLeft     = new BarDockControl();
     this.barDockControlRight    = new BarDockControl();
     this.splitContainerControl1 = new SplitContainerControl();
     this.splitContainerControl2 = new SplitContainerControl();
     this.grpCriterios           = new GroupControl();
     this.grpValores             = new GroupControl();
     this.btnBusqueda            = new PlantillaBoton();
     this.txtFiltro              = new ButtonEdit();
     this.grpGrilla              = new GroupControl();
     this.bar2                   = new Bar();
     this.lblEstado              = new BarStaticItem();
     this.BarraBotones.BeginInit();
     this.splitContainerControl1.BeginInit();
     this.splitContainerControl1.SuspendLayout();
     this.splitContainerControl2.BeginInit();
     this.splitContainerControl2.SuspendLayout();
     this.grpCriterios.BeginInit();
     this.grpValores.BeginInit();
     this.grpValores.SuspendLayout();
     this.txtFiltro.Properties.BeginInit();
     this.grpGrilla.BeginInit();
     base.SuspendLayout();
     this.BarraBotones.AllowCustomization      = false;
     this.BarraBotones.AllowQuickCustomization = false;
     this.BarraBotones.Bars.AddRange(new Bar[] { this.bar1, this.bar2 });
     this.BarraBotones.DockControls.Add(this.barDockControlTop);
     this.BarraBotones.DockControls.Add(this.barDockControlBottom);
     this.BarraBotones.DockControls.Add(this.barDockControlLeft);
     this.BarraBotones.DockControls.Add(this.barDockControlRight);
     this.BarraBotones.Form = this;
     this.BarraBotones.Items.AddRange(new BarItem[] { this.ToolNuevo, this.ToolEditar, this.ToolEliminar, this.ToolBuscar, this.ToolActualizar, this.lblEstado });
     this.BarraBotones.MaxItemId = 6;
     this.BarraBotones.StatusBar = this.bar2;
     this.bar1.BarName           = "Herramientas";
     this.bar1.DockCol           = 0;
     this.bar1.DockRow           = 0;
     this.bar1.DockStyle         = BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new LinkPersistInfo[] { new LinkPersistInfo((BarItem)this.ToolNuevo), new LinkPersistInfo((BarItem)this.ToolEditar), new LinkPersistInfo((BarItem)this.ToolEliminar), new LinkPersistInfo((BarItem)this.ToolBuscar), new LinkPersistInfo((BarItem)this.ToolActualizar) });
     this.bar1.Text                             = "Herramientas";
     this.ToolNuevo.Caption                     = "&Nuevo";
     this.ToolNuevo.Glyph                       = Resources.nuevo;
     this.ToolNuevo.Id                          = 0;
     this.ToolNuevo.Name                        = "ToolNuevo";
     this.ToolNuevo.PaintStyle                  = BarItemPaintStyle.CaptionGlyph;
     this.ToolNuevo.ItemClick                  += new ItemClickEventHandler(this.btnNuevo_ItemClick);
     this.ToolEditar.Caption                    = "Ver/&Editar";
     this.ToolEditar.Glyph                      = Resources.editar;
     this.ToolEditar.Id                         = 1;
     this.ToolEditar.Name                       = "ToolEditar";
     this.ToolEditar.PaintStyle                 = BarItemPaintStyle.CaptionGlyph;
     this.ToolEditar.ItemClick                 += new ItemClickEventHandler(this.btnEditar_ItemClick);
     this.ToolEliminar.Caption                  = "E&liminar";
     this.ToolEliminar.Glyph                    = Resources.eliminar;
     this.ToolEliminar.Id                       = 2;
     this.ToolEliminar.Name                     = "ToolEliminar";
     this.ToolEliminar.PaintStyle               = BarItemPaintStyle.CaptionGlyph;
     this.ToolEliminar.ItemClick               += new ItemClickEventHandler(this.btnEliminar_ItemClick);
     this.ToolBuscar.Caption                    = "&Buscar";
     this.ToolBuscar.Glyph                      = Resources.buscar;
     this.ToolBuscar.Id                         = 3;
     this.ToolBuscar.Name                       = "ToolBuscar";
     this.ToolBuscar.PaintStyle                 = BarItemPaintStyle.CaptionGlyph;
     this.ToolBuscar.ItemClick                 += new ItemClickEventHandler(this.btnBuscar_ItemClick);
     this.ToolActualizar.Caption                = "&Refrescar";
     this.ToolActualizar.Glyph                  = Resources.refrescar;
     this.ToolActualizar.Id                     = 4;
     this.ToolActualizar.Name                   = "ToolActualizar";
     this.ToolActualizar.PaintStyle             = BarItemPaintStyle.CaptionGlyph;
     this.ToolActualizar.ItemClick             += new ItemClickEventHandler(this.btnActualizar_ItemClick);
     this.barDockControlTop.CausesValidation    = false;
     this.barDockControlTop.Dock                = DockStyle.Top;
     this.barDockControlTop.Location            = new Point(0, 0);
     this.barDockControlTop.Size                = new Size(0x305, 0x1f);
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock             = DockStyle.Bottom;
     this.barDockControlBottom.Location         = new Point(0, 0x1c5);
     this.barDockControlBottom.Size             = new Size(0x305, 0x19);
     this.barDockControlLeft.CausesValidation   = false;
     this.barDockControlLeft.Dock               = DockStyle.Left;
     this.barDockControlLeft.Location           = new Point(0, 0x1f);
     this.barDockControlLeft.Size               = new Size(0, 0x1a6);
     this.barDockControlRight.CausesValidation  = false;
     this.barDockControlRight.Dock              = DockStyle.Right;
     this.barDockControlRight.Location          = new Point(0x305, 0x1f);
     this.barDockControlRight.Size              = new Size(0, 0x1a6);
     this.splitContainerControl1.Dock           = DockStyle.Fill;
     this.splitContainerControl1.Horizontal     = false;
     this.splitContainerControl1.Location       = new Point(0, 0x1f);
     this.splitContainerControl1.Name           = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.splitContainerControl2);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.grpGrilla);
     this.splitContainerControl1.Panel2.Text = "Contenedor";
     this.splitContainerControl1.Size        = new Size(0x305, 0x1a6);
     this.splitContainerControl1.TabIndex    = 14;
     this.splitContainerControl1.Text        = "splitContainerControl1";
     this.splitContainerControl2.Dock        = DockStyle.Fill;
     this.splitContainerControl2.Location    = new Point(0, 0);
     this.splitContainerControl2.Name        = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.grpCriterios);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.grpValores);
     this.splitContainerControl2.Panel2.Text             = "Panel2";
     this.splitContainerControl2.Size                    = new Size(0x305, 100);
     this.splitContainerControl2.SplitterPosition        = 0x147;
     this.splitContainerControl2.TabIndex                = 0;
     this.splitContainerControl2.Text                    = "splitContainerControl2";
     this.grpCriterios.AppearanceCaption.Font            = new Font("Tahoma", 11.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.grpCriterios.AppearanceCaption.Options.UseFont = true;
     this.grpCriterios.Dock                            = DockStyle.Fill;
     this.grpCriterios.Location                        = new Point(0, 0);
     this.grpCriterios.Name                            = "grpCriterios";
     this.grpCriterios.Size                            = new Size(0x147, 100);
     this.grpCriterios.TabIndex                        = 0;
     this.grpCriterios.Text                            = "Criterios de Busqueda";
     this.grpValores.AppearanceCaption.Font            = new Font("Tahoma", 11.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.grpValores.AppearanceCaption.Options.UseFont = true;
     this.grpValores.Controls.Add(this.btnBusqueda);
     this.grpValores.Controls.Add(this.txtFiltro);
     this.grpValores.Dock               = DockStyle.Fill;
     this.grpValores.Location           = new Point(0, 0);
     this.grpValores.Name               = "grpValores";
     this.grpValores.Size               = new Size(0x1b9, 100);
     this.grpValores.TabIndex           = 0;
     this.grpValores.Text               = "Valores";
     this.btnBusqueda.CajaTexto         = (TextEdit)this.txtFiltro;
     this.btnBusqueda.CajaTextoConBoton = null;
     this.btnBusqueda.Imagen            = PlantillaBoton.TipoBoton.Buscar;
     this.btnBusqueda.Location          = new Point(0x153, 0x26);
     this.btnBusqueda.Name              = "btnBusqueda";
     this.btnBusqueda.Size              = new Size(0x23, 0x1b);
     this.btnBusqueda.TabIndex          = 3;
     this.btnBusqueda.Click            += new PlantillaBoton.BotonClick(this.btnBusqueda_Click);
     this.txtFiltro.Location            = new Point(0x39, 0x2d);
     this.txtFiltro.MenuManager         = (IDXMenuManager)this.BarraBotones;
     this.txtFiltro.Name = "txtFiltro";
     this.txtFiltro.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton((ButtonPredefines)ButtonPredefines.Delete) });
     this.txtFiltro.Size     = new Size(0x114, 20);
     this.txtFiltro.TabIndex = 2;
     this.grpGrilla.AppearanceCaption.Font            = new Font("Tahoma", 11.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.grpGrilla.AppearanceCaption.Options.UseFont = true;
     this.grpGrilla.Dock     = DockStyle.Fill;
     this.grpGrilla.Location = new Point(0, 0);
     this.grpGrilla.Name     = "grpGrilla";
     this.grpGrilla.Size     = new Size(0x305, 0x13d);
     this.grpGrilla.TabIndex = 0;
     this.grpGrilla.Text     = "Lista de ";
     this.bar2.BarName       = "Personalizada 3";
     this.bar2.CanDockStyle  = BarCanDockStyle.Bottom;
     this.bar2.DockCol       = 0;
     this.bar2.DockRow       = 0;
     this.bar2.DockStyle     = BarDockStyle.Bottom;
     this.bar2.LinksPersistInfo.AddRange(new LinkPersistInfo[] { new LinkPersistInfo(lblEstado) });
     this.bar2.OptionsBar.AllowQuickCustomization = false;
     this.bar2.OptionsBar.DrawDragBorder          = false;
     this.bar2.OptionsBar.UseWholeRow             = true;
     this.bar2.Text               = "Personalizada 3";
     this.lblEstado.Caption       = "Listo";
     this.lblEstado.Id            = 5;
     this.lblEstado.Name          = "lblEstado";
     this.lblEstado.TextAlignment = StringAlignment.Near;
     base.AutoScaleDimensions     = new SizeF(6f, 13f);
     base.AutoScaleMode           = AutoScaleMode.Font;
     base.ClientSize              = new Size(0x305, 0x1de);
     base.Controls.Add(this.splitContainerControl1);
     base.Controls.Add(this.barDockControlLeft);
     base.Controls.Add(this.barDockControlRight);
     base.Controls.Add(this.barDockControlBottom);
     base.Controls.Add(this.barDockControlTop);
     base.EtiquetaEstado = this.lblEstado;
     base.Name           = "_PlantillaGestor";
     this.Text           = "_PlantillaGestor";
     this.BarraBotones.EndInit();
     this.splitContainerControl1.EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     this.splitContainerControl2.EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     this.grpCriterios.EndInit();
     this.grpValores.EndInit();
     this.grpValores.ResumeLayout(false);
     this.txtFiltro.Properties.EndInit();
     this.grpGrilla.EndInit();
     base.ResumeLayout(false);
 }
Example #45
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UCShow3DPipe));
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.treeList1         = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1   = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2   = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.imageCollection1  = new DevExpress.Utils.ImageCollection(this.components);
     this.AxRenderControl3D = new Gvitech.CityMaker.Controls.AxRenderControl();
     this.barManager1       = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2                    = new DevExpress.XtraBars.Bar();
     this.bbiAddTerrain           = new DevExpress.XtraBars.BarButtonItem();
     this.beiTerrainOpac          = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemTrackBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemTrackBar();
     this.bbiFlyToTerrain         = new DevExpress.XtraBars.BarButtonItem();
     this.bbiWander               = new DevExpress.XtraBars.BarButtonItem();
     this.bbiClickQuery           = new DevExpress.XtraBars.BarButtonItem();
     this.bbiClear                = new DevExpress.XtraBars.BarButtonItem();
     this.bbiHDistance            = new DevExpress.XtraBars.BarButtonItem();
     this.bbiVDistance            = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDistance             = 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.bbiCoord                = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.AxRenderControl3D)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTrackBar1)).BeginInit();
     this.SuspendLayout();
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.CollapsePanel = DevExpress.XtraEditors.SplitCollapsePanel.Panel1;
     this.splitContainerControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location      = new System.Drawing.Point(0, 55);
     this.splitContainerControl1.Name          = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.treeList1);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.AxRenderControl3D);
     this.splitContainerControl1.Panel2.Text      = "Panel2";
     this.splitContainerControl1.Size             = new System.Drawing.Size(560, 392);
     this.splitContainerControl1.SplitterPosition = 193;
     this.splitContainerControl1.TabIndex         = 0;
     this.splitContainerControl1.Text             = "splitContainerControl1";
     //
     // treeList1
     //
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
         this.treeListColumn1,
         this.treeListColumn2
     });
     this.treeList1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(0, 0);
     this.treeList1.Name     = "treeList1";
     this.treeList1.OptionsBehavior.AllowRecursiveNodeChecking = true;
     this.treeList1.OptionsView.ShowCheckBoxes = true;
     this.treeList1.OptionsView.ShowColumns    = false;
     this.treeList1.OptionsView.ShowIndicator  = false;
     this.treeList1.Size              = new System.Drawing.Size(193, 392);
     this.treeList1.StateImageList    = this.imageCollection1;
     this.treeList1.TabIndex          = 0;
     this.treeList1.AfterCheckNode   += new DevExpress.XtraTreeList.NodeEventHandler(this.treeList1_AfterCheckNode);
     this.treeList1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.treeList1_MouseDoubleClick);
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption   = "名称";
     this.treeListColumn1.FieldName = "Name";
     this.treeListColumn1.MinWidth  = 49;
     this.treeListColumn1.Name      = "treeListColumn1";
     this.treeListColumn1.OptionsColumn.AllowEdit = false;
     this.treeListColumn1.Visible      = true;
     this.treeListColumn1.VisibleIndex = 0;
     this.treeListColumn1.Width        = 91;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption   = "对象";
     this.treeListColumn2.FieldName = "Object";
     this.treeListColumn2.Name      = "treeListColumn2";
     this.treeListColumn2.OptionsColumn.AllowEdit = false;
     //
     // imageCollection1
     //
     this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
     this.imageCollection1.Images.SetKeyName(0, "Database.png");
     this.imageCollection1.Images.SetKeyName(1, "Dataset.png");
     this.imageCollection1.Images.SetKeyName(2, "FeatureLayer_model.png");
     //
     // AxRenderControl3D
     //
     this.AxRenderControl3D.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.AxRenderControl3D.Enabled  = true;
     this.AxRenderControl3D.Location = new System.Drawing.Point(0, 0);
     this.AxRenderControl3D.Name     = "AxRenderControl3D";
     this.AxRenderControl3D.Size     = new System.Drawing.Size(362, 392);
     this.AxRenderControl3D.TabIndex = 0;
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
         this.bar2
     });
     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.bbiAddTerrain,
         this.bbiWander,
         this.bbiHDistance,
         this.bbiClickQuery,
         this.bbiVDistance,
         this.bbiDistance,
         this.beiTerrainOpac,
         this.bbiFlyToTerrain,
         this.bbiClear,
         this.bbiCoord
     });
     this.barManager1.MainMenu  = this.bar2;
     this.barManager1.MaxItemId = 10;
     this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemTrackBar1
     });
     //
     // bar2
     //
     this.bar2.BarName      = "Main menu";
     this.bar2.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Top;
     this.bar2.DockCol      = 0;
     this.bar2.DockRow      = 0;
     this.bar2.DockStyle    = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.bbiAddTerrain),
         new DevExpress.XtraBars.LinkPersistInfo(this.beiTerrainOpac),
         new DevExpress.XtraBars.LinkPersistInfo(this.bbiFlyToTerrain),
         new DevExpress.XtraBars.LinkPersistInfo(this.bbiWander, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.bbiClickQuery, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.bbiClear),
         new DevExpress.XtraBars.LinkPersistInfo(this.bbiCoord, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.bbiHDistance),
         new DevExpress.XtraBars.LinkPersistInfo(this.bbiVDistance),
         new DevExpress.XtraBars.LinkPersistInfo(this.bbiDistance)
     });
     this.bar2.OptionsBar.AllowQuickCustomization = false;
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.Text = "Main menu";
     //
     // bbiAddTerrain
     //
     this.bbiAddTerrain.Caption    = "添加地形";
     this.bbiAddTerrain.Id         = 0;
     this.bbiAddTerrain.Name       = "bbiAddTerrain";
     this.bbiAddTerrain.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiAddTerrain_ItemClick);
     //
     // beiTerrainOpac
     //
     this.beiTerrainOpac.Caption           = "地形透明度";
     this.beiTerrainOpac.Edit              = this.repositoryItemTrackBar1;
     this.beiTerrainOpac.EditValue         = "100";
     this.beiTerrainOpac.Enabled           = false;
     this.beiTerrainOpac.Id                = 6;
     this.beiTerrainOpac.Name              = "beiTerrainOpac";
     this.beiTerrainOpac.Width             = 100;
     this.beiTerrainOpac.EditValueChanged += new System.EventHandler(this.beiTerrainOpac_EditValueChanged);
     //
     // repositoryItemTrackBar1
     //
     this.repositoryItemTrackBar1.LabelAppearance.Options.UseTextOptions = true;
     this.repositoryItemTrackBar1.LabelAppearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repositoryItemTrackBar1.Maximum           = 100;
     this.repositoryItemTrackBar1.Name              = "repositoryItemTrackBar1";
     this.repositoryItemTrackBar1.EditValueChanged += new System.EventHandler(this.repositoryItemTrackBar1_EditValueChanged);
     //
     // bbiFlyToTerrain
     //
     this.bbiFlyToTerrain.Caption    = "飞向地形";
     this.bbiFlyToTerrain.Id         = 7;
     this.bbiFlyToTerrain.Name       = "bbiFlyToTerrain";
     this.bbiFlyToTerrain.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiFlyToTerrain_ItemClick);
     //
     // bbiWander
     //
     this.bbiWander.Caption    = "漫游模式";
     this.bbiWander.Id         = 1;
     this.bbiWander.Name       = "bbiWander";
     this.bbiWander.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiWander_ItemClick);
     //
     // bbiClickQuery
     //
     this.bbiClickQuery.Caption    = "点击查询";
     this.bbiClickQuery.Id         = 3;
     this.bbiClickQuery.Name       = "bbiClickQuery";
     this.bbiClickQuery.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiClickQuery_ItemClick);
     //
     // bbiClear
     //
     this.bbiClear.Caption    = "清除标签";
     this.bbiClear.Id         = 8;
     this.bbiClear.Name       = "bbiClear";
     this.bbiClear.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiClear_ItemClick);
     //
     // bbiHDistance
     //
     this.bbiHDistance.Caption    = "水平距离";
     this.bbiHDistance.Id         = 2;
     this.bbiHDistance.Name       = "bbiHDistance";
     this.bbiHDistance.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiHDistance_ItemClick);
     //
     // bbiVDistance
     //
     this.bbiVDistance.Caption    = "垂直距离";
     this.bbiVDistance.Id         = 4;
     this.bbiVDistance.Name       = "bbiVDistance";
     this.bbiVDistance.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiVDistance_ItemClick);
     //
     // bbiDistance
     //
     this.bbiDistance.Caption    = "直线距离";
     this.bbiDistance.Id         = 5;
     this.bbiDistance.Name       = "bbiDistance";
     this.bbiDistance.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiDistance_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock             = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location         = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size             = new System.Drawing.Size(560, 55);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location         = new System.Drawing.Point(0, 447);
     this.barDockControlBottom.Size             = new System.Drawing.Size(560, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock             = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location         = new System.Drawing.Point(0, 55);
     this.barDockControlLeft.Size             = new System.Drawing.Size(0, 392);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock             = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location         = new System.Drawing.Point(560, 55);
     this.barDockControlRight.Size             = new System.Drawing.Size(0, 392);
     //
     // bbiCoord
     //
     this.bbiCoord.Caption    = "坐标";
     this.bbiCoord.Id         = 9;
     this.bbiCoord.Name       = "bbiCoord";
     this.bbiCoord.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiCoord_ItemClick);
     //
     // UCShow3DPipe
     //
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name  = "UCShow3DPipe";
     this.Size  = new System.Drawing.Size(560, 447);
     this.Load += new System.EventHandler(this.UCShow3DPipe_Load);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.AxRenderControl3D)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTrackBar1)).EndInit();
     this.ResumeLayout(false);
 }
Example #46
0
 public static void ChangeCaptionSplitContainerControl(string parent_name, string language, SplitContainerControl split_container_control)
 {
     split_container_control.Panel1.Text = CaptionEngine.GetControlCaption(parent_name, split_container_control.Name + "_Panel1", BaseConstant.CONTROL_TEXT, language);
     split_container_control.Panel2.Text = CaptionEngine.GetControlCaption(parent_name, split_container_control.Name + "_Panel2", BaseConstant.CONTROL_TEXT, language);
 }