示例#1
0
        public static void SetFormXtraTab(XtraTabControl tab)
        {
            var pages = tab.TabPages;
            foreach (XtraTabPage p in pages) {
                if (p.Text.Equals(SelectePageText)) {
                    tab.SelectedTabPage = p;
                }
            }

            if (ActionEvt != null) {
                ActionEvt(null, null);
            }
        }
示例#2
0
 public ColorPopup(PopupControlContainer container, BarItem item, PLWord editor)
 {
     this.wordEditor = editor;
     this.container = container;
     itemFontColor = item;
     this.fResultColor = Color.Empty;
     this.tabControl = CreateTabControl();
     this.tabControl.TabStop = false;
     this.tabControl.TabPages.AddRange(new XtraTabPage[] { new XtraTabPage(), new XtraTabPage(), new XtraTabPage()});
     for(int i = 0; i < tabControl.TabPages.Count; i++) SetTabPageProperties(i);
     tabControl.Dock = DockStyle.Fill;
     this.container.Controls.AddRange(new System.Windows.Forms.Control[] {tabControl});
     this.container.Size = CalcFormSize();
 }
 public void AddTab(XtraTabControl XtraTabCha, string TabNameAdd, UserControl UserControl)
 {
     // Khởi tạo 1 Tab Con (XtraTabPage)
     DevExpress.XtraTab.XtraTabPage TAbAdd = new DevExpress.XtraTab.XtraTabPage();
     // Đặt đại cái tên cho nó là TestTab (Đây là tên nhé)
     TAbAdd.Name = "Tab";
     // Tên của nó là đối số như đã nói ở trên
     TAbAdd.Text = TabNameAdd;
     // Add đối số UserControl vào Tab con vừa khởi tạo ở trên
     TAbAdd.Controls.Add(UserControl);
     // Dock cho nó tràn hết TAb con đó
     UserControl.Dock = DockStyle.Fill;
     // Quăng nó lên TAb Cha (XtraTabCha là đối số thứ nhất như đã nói ở trên)
     XtraTabCha.TabPages.Add(TAbAdd);
 }
示例#4
0
 public ColorPopup(PopupControlContainer container, BarItem item, ProtocolVN.Framework.Win.Trial.PLWord editor)
 {
     this.wordEditor = editor;
     this.container = container;
     itemFontColor = item;
     this.fResultColor = Color.Empty;
     this.tabControl = this.CreateTabControl();
     this.tabControl.TabStop = false;
     this.tabControl.TabPages.AddRange(new XtraTabPage[] { new XtraTabPage(), new XtraTabPage(), new XtraTabPage() });
     for (int i = 0; i < this.tabControl.TabPages.Count; i++)
     {
         this.SetTabPageProperties(i);
     }
     this.tabControl.Dock = DockStyle.Fill;
     this.container.Controls.AddRange(new Control[] { this.tabControl });
     this.container.Size = this.CalcFormSize();
 }
示例#5
0
        public Offer_Update(DataRowView RowOffer, Offer offer, XtraTabControl TabControlSalesContent)
        {
            InitializeComponent();
            dbconnection           = new MySqlConnection(connection.connectionString);
            dbconnection1          = new MySqlConnection(connection.connectionString);
            dbconnection2          = new MySqlConnection(connection.connectionString);
            dbconnection3          = new MySqlConnection(connection.connectionString);
            myRows                 = new List <DataRowView>();
            offerForm              = offer;
            rowOffer               = RowOffer;
            tabControlSalesContent = TabControlSalesContent;

            panel3.AutoScroll             = false;
            panel3.VerticalScroll.Enabled = false;
            panel3.VerticalScroll.Visible = false;
            panel3.VerticalScroll.Maximum = 0;
            panel3.AutoScroll             = true;

            panel1.AutoScroll             = false;
            panel1.VerticalScroll.Enabled = false;
            panel1.VerticalScroll.Visible = false;
            panel1.VerticalScroll.Maximum = 0;
            panel1.AutoScroll             = true;
        }
示例#6
0
        /// <summary>
        /// Select the supplied property page from both the Treeview and the Tab controls
        /// </summary>
        /// <param name="pageName"></param>
        /// <param name="treeView"></param>
        /// <param name="tabs"></param>

        public static void SelectPropertyPage(
            string pageName,
            TreeView treeView,
            XtraTabControl tabs)
        {
            TreeNode fallbackNode = null;

            foreach (TreeNode node in treeView.Nodes)             // scan nodes
            {
                XtraTabPage page = node.Tag as XtraTabPage;       // get corresponding tab page
                if (page == null)
                {
                    continue;
                }

                if (page == tabs.SelectedTabPage)
                {
                    fallbackNode = node;
                }

                if (Lex.Eq(page.Name, pageName) || Lex.Eq(page.Name, pageName + "Tab") ||
                    Lex.Eq(page.Name, pageName + "TabPage"))
                {
                    treeView.SelectedNode = node;
                    tabs.SelectedTabPage  = page;
                    return;
                }
            }

            if (fallbackNode != null)
            {
                treeView.SelectedNode = fallbackNode;
            }

            return;
        }
示例#7
0
        internal static bool SaveFileCoreWithEncoding(Form1 form, String fileName, String text, bool savingAll = false)
        {
            XtraTabControl pagesTabControl = form.pagesTabControl;

            bool         success    = true;
            FileStream   fileStream = null;
            StreamWriter textFile   = null;

            try
            {
                Encoding fileEncoding = EncodingUtil.GetDefaultEncoding();

                if (pagesTabControl != null)
                {
                    fileEncoding = TabUtil.GetTabTextEncoding(pagesTabControl.SelectedTabPage);
                }

                if (fileName.EndsWith(".xml"))
                {
                    try
                    {
                        byte[]   byteArray = fileEncoding.GetBytes(text);
                        Encoding xmlEncoding;

                        using (MemoryStream stream = new MemoryStream(byteArray))
                        {
                            using (XmlTextReader xmlreader = new XmlTextReader(stream))
                            {
                                xmlreader.MoveToContent();
                                xmlEncoding = xmlreader.Encoding;
                            }
                        }

                        if (fileEncoding.GetType() != xmlEncoding.GetType())
                        {
                            TabsUpdate(pagesTabControl, savingAll, UpdatePhase.End);   //Useful to save all execution
                            WindowManager.ShowInfoBox(form, LanguageUtil.GetCurrentLanguageString("EncodingXmlToSave", className));
                            TabsUpdate(pagesTabControl, savingAll, UpdatePhase.Begin); //Useful to save all execution

                            fileEncoding = xmlEncoding;
                        }

                        if (!XmlValidator.Validate(form, ValidationType.DTD, false, fileEncoding))
                        {
                            throw new FakeException();
                        }
                    }
                    catch (Exception)
                    {
                        TabsUpdate(pagesTabControl, savingAll, UpdatePhase.End);   //Useful to save all execution
                        DialogResult questionResult = WindowManager.ShowQuestionBox(form, LanguageUtil.GetCurrentLanguageString("InvalidXmlToSave", className));
                        TabsUpdate(pagesTabControl, savingAll, UpdatePhase.Begin); //Useful to save all execution

                        if (questionResult == DialogResult.No)
                        {
                            throw;
                        }
                    }

                    //if (!XmlValidator.Validate(form, ValidationType.DTD, false))
                    //{
                    //    if (WindowManager.ShowQuestionBox(form, LanguageUtil.GetCurrentLanguageString("InvalidXmlToSave", className)) == DialogResult.No)
                    //    {
                    //        throw new FakeException();
                    //    }
                    //}
                    //else
                    //{
                    //    byte[] byteArray = fileEncoding.GetBytes(text);
                    //    Encoding xmlEncoding;

                    //    using (var stream = new MemoryStream(byteArray))
                    //    {
                    //        using (var xmlreader = new XmlTextReader(stream))
                    //        {
                    //            xmlreader.MoveToContent();
                    //            xmlEncoding = xmlreader.Encoding;
                    //        }
                    //    }

                    //    if (fileEncoding.GetType() != xmlEncoding.GetType())
                    //    {
                    //        WindowManager.ShowInfoBox(form, LanguageUtil.GetCurrentLanguageString("EncodingXmlToSave", className));
                    //        fileEncoding = xmlEncoding;
                    //    }
                    //}
                }

                fileStream = File.Create(fileName);
                textFile   = new StreamWriter(fileStream, fileEncoding);
                textFile.Write(text.Replace(ConstantUtil.newLine, Environment.NewLine));

                TabUtil.SetTabTextEncoding(pagesTabControl.SelectedTabPage, fileEncoding);
            }
            catch (UnauthorizedAccessException)
            {
                Form form1 = null;
                if (pagesTabControl != null)
                {
                    form1 = pagesTabControl.FindForm();
                }

                WindowManager.ShowAlertBox(form1, LanguageUtil.GetCurrentLanguageString("UnauthorizedAccess", className));
                success = false;
            }
            catch (FakeException)
            {
                success = false;
            }
            finally
            {
                if (textFile != null)
                {
                    textFile.Close();
                }
                if (fileStream != null)
                {
                    fileStream.Close();
                }
            }

            return(success);
        }
		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);
		}
示例#9
0
		public static void SaveState(
			XtraTabControl tabControl )
		{
			PersistanceHelper.SaveValue( tabControl + @".Index", tabControl.SelectedTabPageIndex );
		}
示例#10
0
 /// <summary>
 /// 构造器
 /// </summary>
 /// <param name="mdiMainForm">MDI主窗体</param>
 /// <param name="tabControlModules">主窗体的XtraTabControl控件</param>
 public ModuleManager(Form mdiMainForm, XtraTabControl tabControlModules)
 {
     _tabControlModules = tabControlModules;
     _MDIMainForm       = mdiMainForm;
 }
示例#11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabControl             = new DevExpress.DXCore.Controls.XtraTab.XtraTabControl();
     this.tabCustomInputShortcut = new DevExpress.DXCore.Controls.XtraTab.XtraTabPage();
     this.edCustomInput          = new CR_XkeysEngine.XkeysEditControl();
     this.tabFolder    = new DevExpress.DXCore.Controls.XtraTab.XtraTabPage();
     this.edFolderName = new DevExpress.DXCore.Controls.XtraEditors.TextEdit();
     this.label1       = new System.Windows.Forms.Label();
     this.tabCommand   = new DevExpress.DXCore.Controls.XtraTab.XtraTabPage();
     this.cmbCommands  = new DevExpress.DXCore.Controls.XtraEditors.ComboBoxEdit();
     this.label2       = new System.Windows.Forms.Label();
     this.btnFindNext  = new DevExpress.DXCore.Controls.XtraEditors.SimpleButton();
     this.btnFind      = new DevExpress.DXCore.Controls.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.Images16x16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl)).BeginInit();
     this.tabControl.SuspendLayout();
     this.tabCustomInputShortcut.SuspendLayout();
     this.tabFolder.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.edFolderName.Properties)).BeginInit();
     this.tabCommand.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCommands.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // tabControl
     //
     this.tabControl.Location        = new System.Drawing.Point(-4, 0);
     this.tabControl.Margin          = new System.Windows.Forms.Padding(0);
     this.tabControl.Name            = "tabControl";
     this.tabControl.SelectedTabPage = this.tabCustomInputShortcut;
     this.tabControl.Size            = new System.Drawing.Size(316, 217);
     this.tabControl.TabIndex        = 0;
     this.tabControl.TabPages.AddRange(new DevExpress.DXCore.Controls.XtraTab.XtraTabPage[] {
         this.tabFolder,
         this.tabCustomInputShortcut,
         this.tabCommand
     });
     //
     // tabCustomInputShortcut
     //
     this.tabCustomInputShortcut.Controls.Add(this.edCustomInput);
     this.tabCustomInputShortcut.Name = "tabCustomInputShortcut";
     this.tabCustomInputShortcut.Size = new System.Drawing.Size(314, 192);
     this.tabCustomInputShortcut.Text = "X-keys";
     //
     // edCustomInput
     //
     this.edCustomInput.AltKeyDown          = false;
     this.edCustomInput.AnyShiftModifier    = false;
     this.edCustomInput.CtrlKeyDown         = false;
     this.edCustomInput.Location            = new System.Drawing.Point(8, 9);
     this.edCustomInput.Name                = "edCustomInput";
     this.edCustomInput.ShiftKeyDown        = false;
     this.edCustomInput.Size                = new System.Drawing.Size(288, 180);
     this.edCustomInput.TabIndex            = 17;
     this.edCustomInput.CustomInputChanged += new CR_XkeysEngine.CustomInputChangedEventHandler(this.edCustomInput_CustomInputChanged);
     //
     // tabFolder
     //
     this.tabFolder.Controls.Add(this.edFolderName);
     this.tabFolder.Controls.Add(this.label1);
     this.tabFolder.Margin = new System.Windows.Forms.Padding(0);
     this.tabFolder.Name   = "tabFolder";
     this.tabFolder.Size   = new System.Drawing.Size(314, 192);
     this.tabFolder.Text   = "Folder";
     //
     // edFolderName
     //
     this.edFolderName.EditValue = "";
     this.edFolderName.Location  = new System.Drawing.Point(84, 16);
     this.edFolderName.Name      = "edFolderName";
     this.edFolderName.Size      = new System.Drawing.Size(213, 20);
     this.edFolderName.TabIndex  = 1;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(8, 13);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(100, 25);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Folder name";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tabCommand
     //
     this.tabCommand.Controls.Add(this.cmbCommands);
     this.tabCommand.Controls.Add(this.label2);
     this.tabCommand.Name = "tabCommand";
     this.tabCommand.Size = new System.Drawing.Size(314, 192);
     this.tabCommand.Text = "Command";
     //
     // cmbCommands
     //
     this.cmbCommands.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbCommands.EditValue = "";
     this.cmbCommands.Location  = new System.Drawing.Point(76, 10);
     this.cmbCommands.Name      = "cmbCommands";
     this.cmbCommands.Properties.Buttons.AddRange(new DevExpress.DXCore.Controls.XtraEditors.Controls.EditorButton[] {
         new DevExpress.DXCore.Controls.XtraEditors.Controls.EditorButton(DevExpress.DXCore.Controls.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbCommands.Properties.CycleOnDblClick = false;
     this.cmbCommands.Properties.DropDownRows    = 24;
     this.cmbCommands.Size     = new System.Drawing.Size(228, 20);
     this.cmbCommands.TabIndex = 9;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(8, 9);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(100, 24);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "Command";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnFindNext
     //
     this.btnFindNext.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnFindNext.ImageIndex = 387;
     this.btnFindNext.ImageList  = this.Images16x16;
     this.btnFindNext.Location   = new System.Drawing.Point(211, 220);
     this.btnFindNext.Name       = "btnFindNext";
     this.btnFindNext.Size       = new System.Drawing.Size(88, 25);
     this.btnFindNext.TabIndex   = 2;
     this.btnFindNext.Text       = "&Find Next";
     this.btnFindNext.Click     += new System.EventHandler(this.btnFindNext_Click);
     //
     // btnFind
     //
     this.btnFind.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnFind.ImageIndex = 388;
     this.btnFind.ImageList  = this.Images16x16;
     this.btnFind.Location   = new System.Drawing.Point(139, 220);
     this.btnFind.Name       = "btnFind";
     this.btnFind.Size       = new System.Drawing.Size(68, 25);
     this.btnFind.TabIndex   = 3;
     this.btnFind.Text       = "&Find";
     this.btnFind.Click     += new System.EventHandler(this.btnFind_Click);
     //
     // frmFind
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(306, 251);
     this.Controls.Add(this.btnFind);
     this.Controls.Add(this.btnFindNext);
     this.Controls.Add(this.tabControl);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmFind";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Find";
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.frmFind_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.Images16x16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl)).EndInit();
     this.tabControl.ResumeLayout(false);
     this.tabCustomInputShortcut.ResumeLayout(false);
     this.tabFolder.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.edFolderName.Properties)).EndInit();
     this.tabCommand.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmbCommands.Properties)).EndInit();
     this.ResumeLayout(false);
 }
示例#12
0
        private static bool ClosePage(Form1 form, bool showMessages, bool moreTabs, out bool closeAll)
        {
            XtraTabControl pagesTabControl = form.pagesTabControl;

            closeAll = false;

            if (showMessages && TabUtil.IsTabPageModified(pagesTabControl.SelectedTabPage))
            {
                if (moreTabs)
                {
                    DialogResult dialogResult = WindowManager.ShowQuestionCancelNoAllBox(form, LanguageUtil.GetCurrentLanguageString("SaveUntitled", className));

                    if ((dialogResult == DialogResult.Cancel) || (dialogResult == DialogResult.Yes && !FileManager.SaveFile(form, false)))
                    {
                        return(false);
                    }
                    if (dialogResult == DialogResult.Retry)
                    {
                        closeAll = true;
                    }
                }
                else
                {
                    DialogResult dialogResult = WindowManager.ShowQuestionCancelBox(form, LanguageUtil.GetCurrentLanguageString("SaveUntitled", className));

                    if ((dialogResult == DialogResult.Cancel) || (dialogResult == DialogResult.Yes && !FileManager.SaveFile(form, false)))
                    {
                        return(false);
                    }
                }
            }
            else if (!showMessages)
            {
                closeAll = true;
            }

            CustomPanel sectionsPanel   = ProgramUtil.GetSectionsPanel(pagesTabControl.SelectedTabPage);
            CustomPanel annotationPanel = ProgramUtil.GetAnnotationPanel(pagesTabControl.SelectedTabPage);

            if (sectionsPanel != null)
            {
                pagesTabControl.SelectedTabPage.Controls.Remove(sectionsPanel);
            }
            if (annotationPanel != null)
            {
                pagesTabControl.SelectedTabPage.Controls.Remove(annotationPanel);
            }

            if (pagesTabControl.TabPages.Count > 1)
            {
                String selectedTabName  = pagesTabControl.SelectedTabPage.Name;
                int    selectedTabIndex = pagesTabControl.SelectedTabPageIndex;

                pagesTabControl.TabPages.Remove(pagesTabControl.SelectedTabPage);
                ExplorerManager.RemoveNodeToTabExplorer(form, selectedTabName);

                pagesTabControl.SelectedTabPage = selectedTabIndex < pagesTabControl.TabPages.Count ? pagesTabControl.TabPages[selectedTabIndex] : pagesTabControl.TabPages[pagesTabControl.TabPages.Count - 1];

                if (String.IsNullOrEmpty(ProgramUtil.GetFilenameTabPage(pagesTabControl.SelectedTabPage)))
                {
                    ToggleTabFileTools(form, false);
                }
                OtherManager.FocusOnEditor(form);
            }
            else
            {
                ResetTab(form);
            }

            return(true);
        }
示例#13
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MasterDetailControl));
     this.PSTab = new XtraTabControl();
     this.tabPage1 = new XtraTabPage();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.imageList2 = new System.Windows.Forms.ImageList(this.components);
     this.PSTab.SuspendLayout();
     this.SuspendLayout();
     //
     // cmbExport
     //
     //
     // cmbEdit
     //
     //
     // PSTab
     //
     this.PSTab.TabPages.Add(this.tabPage1);
     //			this.PSTab.Controls.AddRange(new System.Windows.Forms.Control[] {
     //																				this.tabPage1});
     this.PSTab.Dock = System.Windows.Forms.DockStyle.Fill;
     this.PSTab.Location = new System.Drawing.Point(1, 1);
     this.PSTab.Name = "PSTab";
     this.PSTab.SelectedTabPageIndex = 0;
     this.PSTab.Size = new System.Drawing.Size(698, 295);
     this.PSTab.TabIndex = 3;
     this.PSTab.SelectedPageChanged += new TabPageChangedEventHandler(this.PSTab_SelectedIndexChanged);
     //
     // tabPage1
     //
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Size = new System.Drawing.Size(690, 269);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Main Report";
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     //
     // imageList2
     //
     this.imageList2.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList2.ImageSize = new System.Drawing.Size(32, 32);
     this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
     this.imageList2.TransparentColor = System.Drawing.Color.Magenta;
     //
     // PreviewControl
     //
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                   this.PSTab});
     this.Name = "PreviewControl";
     this.PSTab.ResumeLayout(false);
     this.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);

        }
示例#15
0
 private void StartPoolingReportPages(ref XtraTabControl pTabControl)
 {
     XtraTabPage _TabPage = null;
     ReportPagePoolDelegate _dlg = new ReportPagePoolDelegate(CreateReportReportPagePoolThread);
     for (int x = 0; x < pTabControl.TabPages.Count; ++x) {
         _TabPage = pTabControl.TabPages[x];
         _dlg.BeginInvoke(_TabPage, null, null);
         System.Threading.Thread.Sleep(750);
     }
 }
示例#16
0
        public void GenerateReportPages(ref XtraTabControl pTabControl, int[] pSubcampaignIds, int pViewConfigId = 0)
        {
            List<XtraTabPage> _lstGroup = new List<XtraTabPage>();
            ReportPage _ReportPage = null;
            int _DefaultTab = 0;
            int _SubcampaignId = 0;
            string _SubCampaignTitle = string.Empty;
            SubcampaignData _SubCampaignData = null;

            m_lstViewConfigData = this.GetConfigurationInfos(pSubcampaignIds);
            for (int x = 0; x < m_lstViewConfigData.Count; ++x) {
                /**
                 * if specific view is specified (pViewConfigId > 0), we will only need to use that view.
                 * so we can save process.
                 */
                if (pViewConfigId > 0 && m_lstViewConfigData[x].id != pViewConfigId)
                    continue;

                if (m_lstViewConfigData[x].id == pViewConfigId)
                    _DefaultTab = x;

                _SubcampaignId = m_lstViewConfigData[x].subcampaign_id;
                if (pSubcampaignIds.Length > 1) {
                    _SubCampaignData = LSubCampaignData.FirstOrDefault(f => f.id == _SubcampaignId);
                    if (_SubCampaignData != null)
                        _SubCampaignTitle = _SubCampaignData.title + ">";
                }

                _ReportPage = new ReportPage(ref this.gcReport, ref this.gvReport, string.Format("{0}{1}", _SubCampaignTitle, m_lstViewConfigData[x].name), CallingEnvironment, m_IsWebPortalCall) {
                    ConfigData = m_lstViewConfigData[x],
                    DatabaseConnection = m_DatabaseConnection,
                    WebPortalRequester = m_WebPortalRequester,
                    ReportsPath = m_ReportsPath,
                    CallingApplication = CallingApplication
                };

                _lstGroup.Add(_ReportPage);
            }

            /**
             * if its a web portal call, no need to thread tab loading.
             * since we only get one tab to process when called from web portal.
             */
            if (CallingEnvironment == eCallingEnvironment.BrightSales_SendEmail || m_IsWebPortalCall) {
                this.GenerateReportPage(_lstGroup[0]);
                return;
            }

            pTabControl.BeginUpdate();
            pTabControl.TabPages.AddRange(_lstGroup.ToArray());
            pTabControl.EndUpdate();
            pTabControl.SelectedTabPageIndex = _DefaultTab;
            this.StartPoolingReportPages(ref pTabControl);
        }
示例#17
0
 public void GenerateReportPages(int[] pSubcampaignIds, int pViewConfigId = 0)
 {
     XtraTabControl _DummyTab = new XtraTabControl();
     this.GenerateReportPages(ref _DummyTab, pSubcampaignIds, pViewConfigId);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel1 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.PointOptions pointOptions1 = new DevExpress.XtraCharts.PointOptions();
     DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel2 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel3 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.XYDiagram xyDiagram2 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel4 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel5 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel6 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.XYDiagram xyDiagram3 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series5 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel7 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.Series series6 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel8 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel9 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.XYDiagram xyDiagram4 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series7 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel10 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.Series series8 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel11 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel12 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.XYDiagram xyDiagram5 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series9 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel13 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.Series series10 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel14 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel15 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SimpleDiagram3D simpleDiagram3D1 = new DevExpress.XtraCharts.SimpleDiagram3D();
     DevExpress.XtraCharts.Series series11 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.Pie3DSeriesLabel pie3DSeriesLabel1 = new DevExpress.XtraCharts.Pie3DSeriesLabel();
     DevExpress.XtraCharts.PiePointOptions piePointOptions1 = new DevExpress.XtraCharts.PiePointOptions();
     DevExpress.XtraCharts.Pie3DSeriesView pie3DSeriesView1 = new DevExpress.XtraCharts.Pie3DSeriesView();
     DevExpress.XtraCharts.Pie3DSeriesLabel pie3DSeriesLabel2 = new DevExpress.XtraCharts.Pie3DSeriesLabel();
     DevExpress.XtraCharts.Pie3DSeriesView pie3DSeriesView2 = new DevExpress.XtraCharts.Pie3DSeriesView();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel16 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ItemDetailReport));
     this.txtItemName = new DevExpress.XtraEditors.TextEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.chartBar = new DevExpress.XtraCharts.ChartControl();
     this.tabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tbSummary = new DevExpress.XtraTab.XtraTabPage();
     this.lblLastIssue = new System.Windows.Forms.Label();
     this.txtSOH = new System.Windows.Forms.Label();
     this.txtAMC = new System.Windows.Forms.Label();
     this.txtMOS = new System.Windows.Forms.Label();
     this.txtMin = new System.Windows.Forms.Label();
     this.txtMax = new System.Windows.Forms.Label();
     this.txtReorderAmount = new System.Windows.Forms.Label();
     this.txtExpiredAmount = new System.Windows.Forms.Label();
     this.txtNearExp = new System.Windows.Forms.Label();
     this.lblLastRec = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label32 = new System.Windows.Forms.Label();
     this.lblstat = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.tbBinCard = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.printBinCard = new DevExpress.XtraPrinting.Control.PrintControl();
     this.label24 = new System.Windows.Forms.Label();
     this.lkBinCardWarehouse = new DevExpress.XtraEditors.LookUpEdit();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tbClassicBinCard = new DevExpress.XtraTab.XtraTabPage();
     this.lkWarehouses = new DevExpress.XtraEditors.LookUpEdit();
     this.lkYear = new DevExpress.XtraEditors.LookUpEdit();
     this.lkProgramFilter = new DevExpress.XtraEditors.LookUpEdit();
     this.transactionGrid = new DevExpress.XtraGrid.GridControl();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.tpDelete = new System.Windows.Forms.ToolStripMenuItem();
     this.gridViewBinCard = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colGRNF = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDocType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colManuf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = 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.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnitCost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTotalCost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label28 = new System.Windows.Forms.Label();
     this.tbSOHTrend = new DevExpress.XtraTab.XtraTabPage();
     this.groupSohDetail = new System.Windows.Forms.GroupBox();
     this.lkShowTable = new System.Windows.Forms.LinkLabel();
     this.label29 = new System.Windows.Forms.Label();
     this.tbAMCTrend = new DevExpress.XtraTab.XtraTabPage();
     this.lkDetailAmc = new System.Windows.Forms.LinkLabel();
     this.label34 = new System.Windows.Forms.Label();
     this.chartAmc = new DevExpress.XtraCharts.ChartControl();
     this.tbMOSTrend = new DevExpress.XtraTab.XtraTabPage();
     this.lkDetailMos = new System.Windows.Forms.LinkLabel();
     this.label35 = new System.Windows.Forms.Label();
     this.chartMOS = new DevExpress.XtraCharts.ChartControl();
     this.tbActivityTrend = new DevExpress.XtraTab.XtraTabPage();
     this.label36 = new System.Windows.Forms.Label();
     this.chartComp = new DevExpress.XtraCharts.ChartControl();
     this.tbSSTrend = new DevExpress.XtraTab.XtraTabPage();
     this.label20 = new System.Windows.Forms.Label();
     this.lblTime = new System.Windows.Forms.Label();
     this.lblCurStatus = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.label10 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.lblThreeStockout = new System.Windows.Forms.Label();
     this.lblSixStockOut = new System.Windows.Forms.Label();
     this.lblTwelveStockOut = new System.Windows.Forms.Label();
     this.lblThreeNearStock = new System.Windows.Forms.Label();
     this.lblSixNearStock = new System.Windows.Forms.Label();
     this.lblTwelveNear = new System.Windows.Forms.Label();
     this.lblThreeBelowMin = new System.Windows.Forms.Label();
     this.lblSixBelowMin = new System.Windows.Forms.Label();
     this.lblTwelveBelowMin = new System.Windows.Forms.Label();
     this.lblTwelveOverStock = new System.Windows.Forms.Label();
     this.lblSixOverStock = new System.Windows.Forms.Label();
     this.lblThreeOverStock = new System.Windows.Forms.Label();
     this.tbTransactions = new DevExpress.XtraTab.XtraTabPage();
     this.lblAvgIssues = new System.Windows.Forms.Label();
     this.lblAvgReceives = new System.Windows.Forms.Label();
     this.lblLastIssues = new System.Windows.Forms.Label();
     this.lblLastReceive = new System.Windows.Forms.Label();
     this.label23 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.tbConsumptionTrend = new DevExpress.XtraTab.XtraTabPage();
     this.lkDetailCons = new System.Windows.Forms.LinkLabel();
     this.label33 = new System.Windows.Forms.Label();
     this.consuTrend = new DevExpress.XtraCharts.ChartControl();
     this.tbStockExpiryStatus = new DevExpress.XtraTab.XtraTabPage();
     this.chartPie = new DevExpress.XtraCharts.ChartControl();
     this.tbLogisticsSummary = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.tbSOHLocation = new DevExpress.XtraTab.XtraTabPage();
     this.gridLocations = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPalletNumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPalletLocation = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tbSOHPriceSummary = new DevExpress.XtraTab.XtraTabPage();
     this.gridSOHSummary = new DevExpress.XtraGrid.GridControl();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = 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.lblItemID = new System.Windows.Forms.Label();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.dtDate = new CalendarLib.DateTimePickerEx();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     this.printDoc = new System.Drawing.Printing.PrintDocument();
     this.printDialog1 = new System.Windows.Forms.PrintDialog();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.txtitmName = new System.Windows.Forms.Label();
     this.label38 = new System.Windows.Forms.Label();
     this.lblBUnit = new System.Windows.Forms.Label();
     this.xpButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.btnExport = new DevExpress.XtraEditors.SimpleButton();
     this.lblItemSerialNumber = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tbSummary.SuspendLayout();
     this.tbBinCard.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     this.layoutControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkBinCardWarehouse.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     this.tbClassicBinCard.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkWarehouses.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkProgramFilter.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.transactionGrid)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewBinCard)).BeginInit();
     this.tbSOHTrend.SuspendLayout();
     this.tbAMCTrend.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartAmc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel6)).BeginInit();
     this.tbMOSTrend.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartMOS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel9)).BeginInit();
     this.tbActivityTrend.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartComp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel12)).BeginInit();
     this.tbSSTrend.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tbTransactions.SuspendLayout();
     this.tbConsumptionTrend.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.consuTrend)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel15)).BeginInit();
     this.tbStockExpiryStatus.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartPie)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(simpleDiagram3D1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView2)).BeginInit();
     this.tbLogisticsSummary.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     this.tbSOHLocation.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridLocations)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.tbSOHPriceSummary.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridSOHSummary)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel16)).BeginInit();
     this.SuspendLayout();
     //
     // txtItemName
     //
     this.txtItemName.Enabled = false;
     this.txtItemName.Location = new System.Drawing.Point(269, 21);
     this.txtItemName.Name = "txtItemName";
     this.txtItemName.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.txtItemName.Properties.Appearance.Options.UseForeColor = true;
     this.txtItemName.Size = new System.Drawing.Size(522, 20);
     this.txtItemName.TabIndex = 0;
     //
     // label1
     //
     this.label1.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label1.Location = new System.Drawing.Point(122, 25);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(117, 13);
     this.label1.TabIndex = 1;
     this.label1.Text = "Item Name";
     this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // chartBar
     //
     this.chartBar.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.chartBar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.chartBar.Diagram = xyDiagram1;
     this.chartBar.Location = new System.Drawing.Point(6, 42);
     this.chartBar.Name = "chartBar";
     sideBySideBarSeriesLabel1.LineVisible = true;
     pointOptions1.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Number;
     pointOptions1.ValueNumericOptions.Precision = 3;
     sideBySideBarSeriesLabel1.PointOptions = pointOptions1;
     series1.Label = sideBySideBarSeriesLabel1;
     series1.Name = "Series 1";
     sideBySideBarSeriesLabel2.LineVisible = true;
     series2.Label = sideBySideBarSeriesLabel2;
     series2.Name = "Series 2";
     this.chartBar.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1,
     series2};
     sideBySideBarSeriesLabel3.LineVisible = true;
     this.chartBar.SeriesTemplate.Label = sideBySideBarSeriesLabel3;
     this.chartBar.Size = new System.Drawing.Size(960, 475);
     this.chartBar.TabIndex = 2;
     //
     // tabControl1
     //
     this.tabControl1.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.tabControl1.Location = new System.Drawing.Point(1, 63);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedTabPage = this.tbSummary;
     this.tabControl1.Size = new System.Drawing.Size(1046, 549);
     this.tabControl1.TabIndex = 3;
     this.tabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tbSummary,
     this.tbBinCard,
     this.tbClassicBinCard,
     this.tbSOHTrend,
     this.tbAMCTrend,
     this.tbMOSTrend,
     this.tbActivityTrend,
     this.tbSSTrend,
     this.tbTransactions,
     this.tbConsumptionTrend,
     this.tbStockExpiryStatus,
     this.tbLogisticsSummary,
     this.tbSOHLocation,
     this.tbSOHPriceSummary});
     this.tabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabControl1_SelectedPageChanged);
     //
     // tbSummary
     //
     this.tbSummary.Controls.Add(this.lblLastIssue);
     this.tbSummary.Controls.Add(this.txtSOH);
     this.tbSummary.Controls.Add(this.txtAMC);
     this.tbSummary.Controls.Add(this.txtMOS);
     this.tbSummary.Controls.Add(this.txtMin);
     this.tbSummary.Controls.Add(this.txtMax);
     this.tbSummary.Controls.Add(this.txtReorderAmount);
     this.tbSummary.Controls.Add(this.txtExpiredAmount);
     this.tbSummary.Controls.Add(this.txtNearExp);
     this.tbSummary.Controls.Add(this.lblLastRec);
     this.tbSummary.Controls.Add(this.label31);
     this.tbSummary.Controls.Add(this.label32);
     this.tbSummary.Controls.Add(this.lblstat);
     this.tbSummary.Controls.Add(this.label30);
     this.tbSummary.Controls.Add(this.label9);
     this.tbSummary.Controls.Add(this.label8);
     this.tbSummary.Controls.Add(this.label7);
     this.tbSummary.Controls.Add(this.label1);
     this.tbSummary.Controls.Add(this.label6);
     this.tbSummary.Controls.Add(this.txtItemName);
     this.tbSummary.Controls.Add(this.label5);
     this.tbSummary.Controls.Add(this.label4);
     this.tbSummary.Controls.Add(this.label3);
     this.tbSummary.Controls.Add(this.label2);
     this.tbSummary.Name = "tbSummary";
     this.tbSummary.PageVisible = false;
     this.tbSummary.Size = new System.Drawing.Size(1040, 521);
     this.tbSummary.Text = "Summary";
     //
     // lblLastIssue
     //
     this.lblLastIssue.AutoSize = true;
     this.lblLastIssue.Enabled = false;
     this.lblLastIssue.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLastIssue.ForeColor = System.Drawing.Color.Black;
     this.lblLastIssue.Location = new System.Drawing.Point(266, 355);
     this.lblLastIssue.Name = "lblLastIssue";
     this.lblLastIssue.Size = new System.Drawing.Size(14, 13);
     this.lblLastIssue.TabIndex = 24;
     this.lblLastIssue.Text = "0";
     //
     // txtSOH
     //
     this.txtSOH.AutoSize = true;
     this.txtSOH.Enabled = false;
     this.txtSOH.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSOH.ForeColor = System.Drawing.Color.Black;
     this.txtSOH.Location = new System.Drawing.Point(266, 85);
     this.txtSOH.Name = "txtSOH";
     this.txtSOH.Size = new System.Drawing.Size(14, 13);
     this.txtSOH.TabIndex = 25;
     this.txtSOH.Text = "0";
     //
     // txtAMC
     //
     this.txtAMC.AutoSize = true;
     this.txtAMC.Enabled = false;
     this.txtAMC.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAMC.ForeColor = System.Drawing.Color.Black;
     this.txtAMC.Location = new System.Drawing.Point(266, 115);
     this.txtAMC.Name = "txtAMC";
     this.txtAMC.Size = new System.Drawing.Size(14, 13);
     this.txtAMC.TabIndex = 25;
     this.txtAMC.Text = "0";
     //
     // txtMOS
     //
     this.txtMOS.AutoSize = true;
     this.txtMOS.Enabled = false;
     this.txtMOS.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMOS.ForeColor = System.Drawing.Color.Black;
     this.txtMOS.Location = new System.Drawing.Point(266, 145);
     this.txtMOS.Name = "txtMOS";
     this.txtMOS.Size = new System.Drawing.Size(14, 13);
     this.txtMOS.TabIndex = 25;
     this.txtMOS.Text = "0";
     //
     // txtMin
     //
     this.txtMin.AutoSize = true;
     this.txtMin.Enabled = false;
     this.txtMin.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMin.ForeColor = System.Drawing.Color.Black;
     this.txtMin.Location = new System.Drawing.Point(266, 175);
     this.txtMin.Name = "txtMin";
     this.txtMin.Size = new System.Drawing.Size(14, 13);
     this.txtMin.TabIndex = 25;
     this.txtMin.Text = "0";
     //
     // txtMax
     //
     this.txtMax.AutoSize = true;
     this.txtMax.Enabled = false;
     this.txtMax.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtMax.ForeColor = System.Drawing.Color.Black;
     this.txtMax.Location = new System.Drawing.Point(266, 205);
     this.txtMax.Name = "txtMax";
     this.txtMax.Size = new System.Drawing.Size(14, 13);
     this.txtMax.TabIndex = 25;
     this.txtMax.Text = "0";
     //
     // txtReorderAmount
     //
     this.txtReorderAmount.AutoSize = true;
     this.txtReorderAmount.Enabled = false;
     this.txtReorderAmount.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtReorderAmount.ForeColor = System.Drawing.Color.Black;
     this.txtReorderAmount.Location = new System.Drawing.Point(266, 235);
     this.txtReorderAmount.Name = "txtReorderAmount";
     this.txtReorderAmount.Size = new System.Drawing.Size(14, 13);
     this.txtReorderAmount.TabIndex = 25;
     this.txtReorderAmount.Text = "0";
     //
     // txtExpiredAmount
     //
     this.txtExpiredAmount.AutoSize = true;
     this.txtExpiredAmount.Enabled = false;
     this.txtExpiredAmount.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtExpiredAmount.ForeColor = System.Drawing.Color.Black;
     this.txtExpiredAmount.Location = new System.Drawing.Point(266, 265);
     this.txtExpiredAmount.Name = "txtExpiredAmount";
     this.txtExpiredAmount.Size = new System.Drawing.Size(14, 13);
     this.txtExpiredAmount.TabIndex = 25;
     this.txtExpiredAmount.Text = "0";
     //
     // txtNearExp
     //
     this.txtNearExp.AutoSize = true;
     this.txtNearExp.Enabled = false;
     this.txtNearExp.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNearExp.ForeColor = System.Drawing.Color.Black;
     this.txtNearExp.Location = new System.Drawing.Point(266, 295);
     this.txtNearExp.Name = "txtNearExp";
     this.txtNearExp.Size = new System.Drawing.Size(14, 13);
     this.txtNearExp.TabIndex = 25;
     this.txtNearExp.Text = "0";
     //
     // lblLastRec
     //
     this.lblLastRec.AutoSize = true;
     this.lblLastRec.Enabled = false;
     this.lblLastRec.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLastRec.ForeColor = System.Drawing.Color.Black;
     this.lblLastRec.Location = new System.Drawing.Point(266, 325);
     this.lblLastRec.Name = "lblLastRec";
     this.lblLastRec.Size = new System.Drawing.Size(14, 13);
     this.lblLastRec.TabIndex = 25;
     this.lblLastRec.Text = "0";
     //
     // label31
     //
     this.label31.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label31.Location = new System.Drawing.Point(136, 355);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(103, 13);
     this.label31.TabIndex = 22;
     this.label31.Text = "Last Issued Date";
     this.label31.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label32.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label32.Location = new System.Drawing.Point(122, 325);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(117, 13);
     this.label32.TabIndex = 23;
     this.label32.Text = "Last Received Date";
     this.label32.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // lblstat
     //
     this.lblstat.AutoSize = true;
     this.lblstat.Enabled = false;
     this.lblstat.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblstat.ForeColor = System.Drawing.Color.Black;
     this.lblstat.Location = new System.Drawing.Point(266, 55);
     this.lblstat.Name = "lblstat";
     this.lblstat.Size = new System.Drawing.Size(14, 13);
     this.lblstat.TabIndex = 21;
     this.lblstat.Text = "0";
     //
     // label30
     //
     this.label30.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label30.Location = new System.Drawing.Point(109, 55);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(130, 13);
     this.label30.TabIndex = 20;
     this.label30.Text = "Current Status";
     this.label30.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label9
     //
     this.label9.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label9.Location = new System.Drawing.Point(136, 295);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(103, 13);
     this.label9.TabIndex = 17;
     this.label9.Text = "Near Expiry Amount";
     this.label9.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label8
     //
     this.label8.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label8.Location = new System.Drawing.Point(141, 265);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(98, 13);
     this.label8.TabIndex = 17;
     this.label8.Text = "Expired";
     this.label8.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label7
     //
     this.label7.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label7.Location = new System.Drawing.Point(79, 235);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(160, 13);
     this.label7.TabIndex = 17;
     this.label7.Text = "Reorder Amount";
     this.label7.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label6
     //
     this.label6.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label6.Location = new System.Drawing.Point(79, 145);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(160, 13);
     this.label6.TabIndex = 17;
     this.label6.Text = "Months Of Stock";
     this.label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label5
     //
     this.label5.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label5.Location = new System.Drawing.Point(112, 205);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(127, 13);
     this.label5.TabIndex = 17;
     this.label5.Text = "Maximum Value";
     this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label4
     //
     this.label4.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label4.Location = new System.Drawing.Point(91, 175);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(148, 13);
     this.label4.TabIndex = 16;
     this.label4.Text = "Minimum Value";
     this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label3
     //
     this.label3.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label3.Location = new System.Drawing.Point(0, 115);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(239, 13);
     this.label3.TabIndex = 19;
     this.label3.Text = "Average Monthly Consumption";
     this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // label2
     //
     this.label2.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.label2.Location = new System.Drawing.Point(114, 85);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(125, 13);
     this.label2.TabIndex = 18;
     this.label2.Text = "Stock On Hand";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // tbBinCard
     //
     this.tbBinCard.Controls.Add(this.layoutControl2);
     this.tbBinCard.Name = "tbBinCard";
     this.tbBinCard.Size = new System.Drawing.Size(1040, 521);
     this.tbBinCard.Text = "Bin Card";
     //
     // layoutControl2
     //
     this.layoutControl2.Controls.Add(this.printBinCard);
     this.layoutControl2.Controls.Add(this.label24);
     this.layoutControl2.Controls.Add(this.lkBinCardWarehouse);
     this.layoutControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl2.Location = new System.Drawing.Point(0, 0);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(1040, 521);
     this.layoutControl2.TabIndex = 107;
     this.layoutControl2.Text = "layoutControl2";
     //
     // printBinCard
     //
     this.printBinCard.BackColor = System.Drawing.Color.Empty;
     this.printBinCard.ForeColor = System.Drawing.Color.Empty;
     this.printBinCard.IsMetric = false;
     this.printBinCard.Location = new System.Drawing.Point(12, 60);
     this.printBinCard.Name = "printBinCard";
     this.printBinCard.Size = new System.Drawing.Size(1016, 449);
     this.printBinCard.TabIndex = 104;
     this.printBinCard.TooltipFont = new System.Drawing.Font("Tahoma", 8.25F);
     //
     // label24
     //
     this.label24.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label24.Location = new System.Drawing.Point(12, 12);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(224, 20);
     this.label24.TabIndex = 104;
     this.label24.Text = "Electronic Bin Card ";
     //
     // lkBinCardWarehouse
     //
     this.lkBinCardWarehouse.Location = new System.Drawing.Point(298, 36);
     this.lkBinCardWarehouse.Name = "lkBinCardWarehouse";
     this.lkBinCardWarehouse.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBinCardWarehouse.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkBinCardWarehouse.Properties.DisplayMember = "Name";
     this.lkBinCardWarehouse.Properties.NullText = "Select Warehouse";
     this.lkBinCardWarehouse.Properties.ValueMember = "ID";
     this.lkBinCardWarehouse.Size = new System.Drawing.Size(129, 20);
     this.lkBinCardWarehouse.StyleController = this.layoutControl2;
     this.lkBinCardWarehouse.TabIndex = 106;
     this.lkBinCardWarehouse.EditValueChanged += new System.EventHandler(this.lkBinCardWarehouse_EditValueChanged);
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem4,
     this.emptySpaceItem2,
     this.layoutControlItem3,
     this.emptySpaceItem3,
     this.emptySpaceItem5,
     this.layoutControlItem5});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(1040, 521);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.label24;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(228, 24);
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(228, 0);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(792, 24);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.lkBinCardWarehouse;
     this.layoutControlItem3.CustomizationFormText = "Warehouse";
     this.layoutControlItem3.Location = new System.Drawing.Point(228, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(191, 24);
     this.layoutControlItem3.Text = "Warehouse";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(55, 13);
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(0, 24);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(228, 24);
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.AllowHotTrack = false;
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(419, 24);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(601, 24);
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.printBinCard;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(1020, 453);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // tbClassicBinCard
     //
     this.tbClassicBinCard.Controls.Add(this.lkWarehouses);
     this.tbClassicBinCard.Controls.Add(this.lkYear);
     this.tbClassicBinCard.Controls.Add(this.lkProgramFilter);
     this.tbClassicBinCard.Controls.Add(this.btnExport);
     this.tbClassicBinCard.Controls.Add(this.transactionGrid);
     this.tbClassicBinCard.Controls.Add(this.label28);
     this.tbClassicBinCard.Controls.Add(this.xpButton1);
     this.tbClassicBinCard.Name = "tbClassicBinCard";
     this.tbClassicBinCard.Size = new System.Drawing.Size(1040, 521);
     this.tbClassicBinCard.Text = "Classic Bin Card";
     //
     // lkWarehouses
     //
     this.lkWarehouses.Location = new System.Drawing.Point(208, 41);
     this.lkWarehouses.Name = "lkWarehouses";
     this.lkWarehouses.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkWarehouses.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkWarehouses.Properties.DisplayMember = "Name";
     this.lkWarehouses.Properties.NullText = "Select Warehouse";
     this.lkWarehouses.Properties.ValueMember = "ID";
     this.lkWarehouses.Size = new System.Drawing.Size(209, 20);
     this.lkWarehouses.TabIndex = 105;
     this.lkWarehouses.EditValueChanged += new System.EventHandler(this.lkWarehouses_EditValueChanged);
     //
     // lkYear
     //
     this.lkYear.Location = new System.Drawing.Point(423, 42);
     this.lkYear.Name = "lkYear";
     this.lkYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkYear.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Year", "Year")});
     this.lkYear.Properties.DisplayMember = "Year";
     this.lkYear.Properties.ValueMember = "Year";
     this.lkYear.Size = new System.Drawing.Size(100, 20);
     this.lkYear.TabIndex = 104;
     this.lkYear.EditValueChanged += new System.EventHandler(this.lkYear_EditValueChanged);
     //
     // lkProgramFilter
     //
     this.lkProgramFilter.Location = new System.Drawing.Point(529, 42);
     this.lkProgramFilter.Name = "lkProgramFilter";
     this.lkProgramFilter.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkProgramFilter.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("CompanyName", "Name")});
     this.lkProgramFilter.Properties.DisplayMember = "CompanyName";
     this.lkProgramFilter.Properties.NullText = "Select Program";
     this.lkProgramFilter.Properties.ValueMember = "ID";
     this.lkProgramFilter.Size = new System.Drawing.Size(209, 20);
     this.lkProgramFilter.TabIndex = 13;
     this.lkProgramFilter.Visible = false;
     this.lkProgramFilter.EditValueChanged += new System.EventHandler(this.LkProgramFilterEditValueChanged);
     //
     // transactionGrid
     //
     this.transactionGrid.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.transactionGrid.ContextMenuStrip = this.contextMenuStrip1;
     this.transactionGrid.Location = new System.Drawing.Point(7, 68);
     this.transactionGrid.MainView = this.gridViewBinCard;
     this.transactionGrid.Name = "transactionGrid";
     this.transactionGrid.Size = new System.Drawing.Size(1032, 449);
     this.transactionGrid.TabIndex = 12;
     this.transactionGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewBinCard});
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tpDelete});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(108, 26);
     //
     // tpDelete
     //
     this.tpDelete.Name = "tpDelete";
     this.tpDelete.Size = new System.Drawing.Size(107, 22);
     this.tpDelete.Text = "Delete";
     this.tpDelete.Click += new System.EventHandler(this.tpDelete_Click);
     //
     // gridViewBinCard
     //
     this.gridViewBinCard.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colGRNF,
     this.colDocType,
     this.gridColumn15,
     this.colManuf,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn19,
     this.gridColumn20,
     this.gridColumn21,
     this.colUnitCost,
     this.colTotalCost,
     this.gridColumn24});
     this.gridViewBinCard.GridControl = this.transactionGrid;
     this.gridViewBinCard.Name = "gridViewBinCard";
     this.gridViewBinCard.OptionsBehavior.Editable = false;
     this.gridViewBinCard.OptionsCustomization.AllowSort = false;
     this.gridViewBinCard.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewBinCard.OptionsView.ShowGroupPanel = false;
     //
     // colGRNF
     //
     this.colGRNF.Caption = "GRNF";
     this.colGRNF.FieldName = "GRNF";
     this.colGRNF.Name = "colGRNF";
     this.colGRNF.Visible = true;
     this.colGRNF.VisibleIndex = 0;
     //
     // colDocType
     //
     this.colDocType.Caption = "Type";
     this.colDocType.FieldName = "DocType";
     this.colDocType.Name = "colDocType";
     this.colDocType.Visible = true;
     this.colDocType.VisibleIndex = 1;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Reference No";
     this.gridColumn15.FieldName = "RefNo";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 2;
     //
     // colManuf
     //
     this.colManuf.Caption = "Manufacturer";
     this.colManuf.FieldName = "Manufacturer";
     this.colManuf.Name = "colManuf";
     this.colManuf.Visible = true;
     this.colManuf.VisibleIndex = 3;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Date";
     this.gridColumn16.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn16.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn16.FieldName = "Date";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 4;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Batch No";
     this.gridColumn17.FieldName = "BatchNo";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 5;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Expiry Date";
     this.gridColumn18.DisplayFormat.FormatString = "MM/yyyy";
     this.gridColumn18.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn18.FieldName = "ExpDate";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 6;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Received";
     this.gridColumn19.DisplayFormat.FormatString = "#,##0";
     this.gridColumn19.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn19.FieldName = "Received";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 7;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Issued";
     this.gridColumn20.DisplayFormat.FormatString = "#,##0";
     this.gridColumn20.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn20.FieldName = "Issued";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 8;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "Balance";
     this.gridColumn21.DisplayFormat.FormatString = "#,##0";
     this.gridColumn21.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn21.FieldName = "Balance";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 9;
     //
     // colUnitCost
     //
     this.colUnitCost.Caption = "Unit Cost";
     this.colUnitCost.DisplayFormat.FormatString = "#,##0.#0";
     this.colUnitCost.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colUnitCost.FieldName = "UnitPrice";
     this.colUnitCost.Name = "colUnitCost";
     this.colUnitCost.Visible = true;
     this.colUnitCost.VisibleIndex = 10;
     //
     // colTotalCost
     //
     this.colTotalCost.Caption = "Total Cost";
     this.colTotalCost.DisplayFormat.FormatString = "#,##0.#0";
     this.colTotalCost.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colTotalCost.FieldName = "TotalPrice";
     this.colTotalCost.Name = "colTotalCost";
     this.colTotalCost.Visible = true;
     this.colTotalCost.VisibleIndex = 11;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "To/From";
     this.gridColumn24.FieldName = "ToFrom";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 12;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(7, 15);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(200, 23);
     this.label28.TabIndex = 10;
     this.label28.Text = "Electronic Bin Card ";
     //
     // tbSOHTrend
     //
     this.tbSOHTrend.Controls.Add(this.groupSohDetail);
     this.tbSOHTrend.Controls.Add(this.lkShowTable);
     this.tbSOHTrend.Controls.Add(this.label29);
     this.tbSOHTrend.Controls.Add(this.chartBar);
     this.tbSOHTrend.Name = "tbSOHTrend";
     this.tbSOHTrend.Padding = new System.Windows.Forms.Padding(3);
     this.tbSOHTrend.PageVisible = false;
     this.tbSOHTrend.Size = new System.Drawing.Size(1040, 521);
     this.tbSOHTrend.Text = "SOH Trend";
     //
     // groupSohDetail
     //
     this.groupSohDetail.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.groupSohDetail.Location = new System.Drawing.Point(-1, 37);
     this.groupSohDetail.Name = "groupSohDetail";
     this.groupSohDetail.Size = new System.Drawing.Size(968, 496);
     this.groupSohDetail.TabIndex = 13;
     this.groupSohDetail.TabStop = false;
     this.groupSohDetail.Text = "Show trend by month";
     this.groupSohDetail.Visible = false;
     //
     // lkShowTable
     //
     this.lkShowTable.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lkShowTable.AutoSize = true;
     this.lkShowTable.Location = new System.Drawing.Point(1094, 12);
     this.lkShowTable.Name = "lkShowTable";
     this.lkShowTable.Size = new System.Drawing.Size(72, 13);
     this.lkShowTable.TabIndex = 12;
     this.lkShowTable.TabStop = true;
     this.lkShowTable.Text = "Show Table";
     this.lkShowTable.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LkShowTableLinkClicked);
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label29.Location = new System.Drawing.Point(7, 15);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(229, 23);
     this.label29.TabIndex = 11;
     this.label29.Text = "Trend - Stock On Hand";
     //
     // tbAMCTrend
     //
     this.tbAMCTrend.Controls.Add(this.lkDetailAmc);
     this.tbAMCTrend.Controls.Add(this.label34);
     this.tbAMCTrend.Controls.Add(this.chartAmc);
     this.tbAMCTrend.Name = "tbAMCTrend";
     this.tbAMCTrend.Padding = new System.Windows.Forms.Padding(3);
     this.tbAMCTrend.PageVisible = false;
     this.tbAMCTrend.Size = new System.Drawing.Size(1040, 521);
     this.tbAMCTrend.Text = "AMC Trend";
     //
     // lkDetailAmc
     //
     this.lkDetailAmc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lkDetailAmc.AutoSize = true;
     this.lkDetailAmc.Location = new System.Drawing.Point(1101, 22);
     this.lkDetailAmc.Name = "lkDetailAmc";
     this.lkDetailAmc.Size = new System.Drawing.Size(72, 13);
     this.lkDetailAmc.TabIndex = 14;
     this.lkDetailAmc.TabStop = true;
     this.lkDetailAmc.Text = "Show Table";
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label34.Location = new System.Drawing.Point(7, 15);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(453, 23);
     this.label34.TabIndex = 12;
     this.label34.Text = "Trend - Average Monthly Consumption (AMC) ";
     //
     // chartAmc
     //
     this.chartAmc.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.chartAmc.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     xyDiagram2.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram2.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram2.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram2.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram2.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram2.AxisY.VisibleInPanesSerializable = "-1";
     this.chartAmc.Diagram = xyDiagram2;
     this.chartAmc.Location = new System.Drawing.Point(4, 58);
     this.chartAmc.Name = "chartAmc";
     this.chartAmc.PaletteRepository.Add("Palette 1", new DevExpress.XtraCharts.Palette("Palette 1", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[0]));
     this.chartAmc.PaletteRepository.Add("Palette 2", new DevExpress.XtraCharts.Palette("Palette 2", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[0]));
     sideBySideBarSeriesLabel4.LineVisible = true;
     series3.Label = sideBySideBarSeriesLabel4;
     series3.Name = "Series 1";
     sideBySideBarSeriesLabel5.LineVisible = true;
     series4.Label = sideBySideBarSeriesLabel5;
     series4.Name = "Series 2";
     this.chartAmc.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series3,
     series4};
     sideBySideBarSeriesLabel6.LineVisible = true;
     this.chartAmc.SeriesTemplate.Label = sideBySideBarSeriesLabel6;
     this.chartAmc.Size = new System.Drawing.Size(963, 452);
     this.chartAmc.TabIndex = 3;
     //
     // tbMOSTrend
     //
     this.tbMOSTrend.Controls.Add(this.lkDetailMos);
     this.tbMOSTrend.Controls.Add(this.label35);
     this.tbMOSTrend.Controls.Add(this.chartMOS);
     this.tbMOSTrend.Name = "tbMOSTrend";
     this.tbMOSTrend.Padding = new System.Windows.Forms.Padding(3);
     this.tbMOSTrend.PageVisible = false;
     this.tbMOSTrend.Size = new System.Drawing.Size(1040, 521);
     this.tbMOSTrend.Text = "MOS Trend";
     //
     // lkDetailMos
     //
     this.lkDetailMos.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lkDetailMos.AutoSize = true;
     this.lkDetailMos.Location = new System.Drawing.Point(1100, 24);
     this.lkDetailMos.Name = "lkDetailMos";
     this.lkDetailMos.Size = new System.Drawing.Size(72, 13);
     this.lkDetailMos.TabIndex = 16;
     this.lkDetailMos.TabStop = true;
     this.lkDetailMos.Text = "Show Table";
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label35.Location = new System.Drawing.Point(7, 15);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(248, 23);
     this.label35.TabIndex = 12;
     this.label35.Text = "Trend - Months of Stock ";
     //
     // chartMOS
     //
     this.chartMOS.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.chartMOS.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     xyDiagram3.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram3.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram3.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram3.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram3.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram3.AxisY.VisibleInPanesSerializable = "-1";
     this.chartMOS.Diagram = xyDiagram3;
     this.chartMOS.Location = new System.Drawing.Point(7, 48);
     this.chartMOS.Name = "chartMOS";
     this.chartMOS.PaletteName = "Palette 2";
     this.chartMOS.PaletteRepository.Add("Palette 1", new DevExpress.XtraCharts.Palette("Palette 1", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[] {
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(163)))), ((int)(((byte)(54))))), System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(163)))), ((int)(((byte)(54)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(73)))), ((int)(((byte)(51))))), System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(73)))), ((int)(((byte)(51))))))}));
     this.chartMOS.PaletteRepository.Add("Palette 2", new DevExpress.XtraCharts.Palette("Palette 2", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[] {
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(168)))), ((int)(((byte)(39))))), System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(168)))), ((int)(((byte)(39)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(44)))), ((int)(((byte)(35))))), System.Drawing.Color.FromArgb(((int)(((byte)(214)))), ((int)(((byte)(44)))), ((int)(((byte)(35))))))}));
     sideBySideBarSeriesLabel7.LineVisible = true;
     series5.Label = sideBySideBarSeriesLabel7;
     series5.Name = "Series 1";
     sideBySideBarSeriesLabel8.LineVisible = true;
     series6.Label = sideBySideBarSeriesLabel8;
     series6.Name = "Series 2";
     this.chartMOS.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series5,
     series6};
     sideBySideBarSeriesLabel9.LineVisible = true;
     this.chartMOS.SeriesTemplate.Label = sideBySideBarSeriesLabel9;
     this.chartMOS.Size = new System.Drawing.Size(1160, 452);
     this.chartMOS.TabIndex = 4;
     //
     // tbActivityTrend
     //
     this.tbActivityTrend.Appearance.PageClient.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.tbActivityTrend.Appearance.PageClient.Options.UseBackColor = true;
     this.tbActivityTrend.Controls.Add(this.label36);
     this.tbActivityTrend.Controls.Add(this.chartComp);
     this.tbActivityTrend.Name = "tbActivityTrend";
     this.tbActivityTrend.Padding = new System.Windows.Forms.Padding(3);
     this.tbActivityTrend.PageVisible = false;
     this.tbActivityTrend.Size = new System.Drawing.Size(1040, 521);
     this.tbActivityTrend.Text = "Activity Trend";
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label36.Location = new System.Drawing.Point(7, 15);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(164, 23);
     this.label36.TabIndex = 12;
     this.label36.Text = "Trend - Activity ";
     //
     // chartComp
     //
     this.chartComp.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     xyDiagram4.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram4.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram4.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram4.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram4.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram4.AxisY.VisibleInPanesSerializable = "-1";
     this.chartComp.Diagram = xyDiagram4;
     this.chartComp.Location = new System.Drawing.Point(7, 48);
     this.chartComp.Name = "chartComp";
     this.chartComp.PaletteRepository.Add("Palette 1", new DevExpress.XtraCharts.Palette("Palette 1", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[0]));
     this.chartComp.PaletteRepository.Add("Palette 2", new DevExpress.XtraCharts.Palette("Palette 2", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[0]));
     sideBySideBarSeriesLabel10.LineVisible = true;
     series7.Label = sideBySideBarSeriesLabel10;
     series7.Name = "Series 1";
     sideBySideBarSeriesLabel11.LineVisible = true;
     series8.Label = sideBySideBarSeriesLabel11;
     series8.Name = "Series 2";
     this.chartComp.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series7,
     series8};
     sideBySideBarSeriesLabel12.LineVisible = true;
     this.chartComp.SeriesTemplate.Label = sideBySideBarSeriesLabel12;
     this.chartComp.Size = new System.Drawing.Size(967, 476);
     this.chartComp.TabIndex = 3;
     //
     // tbSSTrend
     //
     this.tbSSTrend.Controls.Add(this.label20);
     this.tbSSTrend.Controls.Add(this.lblTime);
     this.tbSSTrend.Controls.Add(this.lblCurStatus);
     this.tbSSTrend.Controls.Add(this.label19);
     this.tbSSTrend.Controls.Add(this.tableLayoutPanel1);
     this.tbSSTrend.Name = "tbSSTrend";
     this.tbSSTrend.PageVisible = false;
     this.tbSSTrend.Size = new System.Drawing.Size(1040, 521);
     this.tbSSTrend.Text = "Stock Status Trend";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.Location = new System.Drawing.Point(35, 106);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(142, 16);
     this.label20.TabIndex = 1;
     this.label20.Text = "Trend (No. of times)";
     //
     // lblTime
     //
     this.lblTime.AutoSize = true;
     this.lblTime.Location = new System.Drawing.Point(257, 68);
     this.lblTime.Name = "lblTime";
     this.lblTime.Size = new System.Drawing.Size(0, 13);
     this.lblTime.TabIndex = 1;
     //
     // lblCurStatus
     //
     this.lblCurStatus.AutoSize = true;
     this.lblCurStatus.Location = new System.Drawing.Point(150, 68);
     this.lblCurStatus.Name = "lblCurStatus";
     this.lblCurStatus.Size = new System.Drawing.Size(0, 13);
     this.lblCurStatus.TabIndex = 1;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(45, 68);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(104, 13);
     this.label19.TabIndex = 1;
     this.label19.Text = "Current Status : ";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
     this.tableLayoutPanel1.ColumnCount = 4;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 182F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 75F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 85F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 277F));
     this.tableLayoutPanel1.Controls.Add(this.label10, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.label11, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.label12, 2, 0);
     this.tableLayoutPanel1.Controls.Add(this.label13, 3, 0);
     this.tableLayoutPanel1.Controls.Add(this.label14, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.label15, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.label16, 0, 3);
     this.tableLayoutPanel1.Controls.Add(this.label18, 0, 4);
     this.tableLayoutPanel1.Controls.Add(this.lblThreeStockout, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.lblSixStockOut, 2, 1);
     this.tableLayoutPanel1.Controls.Add(this.lblTwelveStockOut, 3, 1);
     this.tableLayoutPanel1.Controls.Add(this.lblThreeNearStock, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.lblSixNearStock, 2, 2);
     this.tableLayoutPanel1.Controls.Add(this.lblTwelveNear, 3, 2);
     this.tableLayoutPanel1.Controls.Add(this.lblThreeBelowMin, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblSixBelowMin, 2, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblTwelveBelowMin, 3, 3);
     this.tableLayoutPanel1.Controls.Add(this.lblTwelveOverStock, 3, 4);
     this.tableLayoutPanel1.Controls.Add(this.lblSixOverStock, 2, 4);
     this.tableLayoutPanel1.Controls.Add(this.lblThreeOverStock, 1, 4);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(38, 134);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 5;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(419, 109);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(4, 1);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(0, 13);
     this.label10.TabIndex = 0;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(187, 1);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(52, 13);
     this.label11.TabIndex = 1;
     this.label11.Text = "3 Month";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(263, 1);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(52, 13);
     this.label12.TabIndex = 1;
     this.label12.Text = "6 Month";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(349, 1);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(59, 13);
     this.label13.TabIndex = 1;
     this.label13.Text = "12 Month";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(4, 22);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(63, 13);
     this.label14.TabIndex = 1;
     this.label14.Text = "Stock Out";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(4, 43);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(94, 13);
     this.label15.TabIndex = 1;
     this.label15.Text = "Near Stock Out";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(4, 64);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(64, 13);
     this.label16.TabIndex = 1;
     this.label16.Text = "Below Min";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(4, 85);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(71, 13);
     this.label18.TabIndex = 1;
     this.label18.Text = "Over Stock";
     //
     // lblThreeStockout
     //
     this.lblThreeStockout.AutoSize = true;
     this.lblThreeStockout.Location = new System.Drawing.Point(187, 22);
     this.lblThreeStockout.Name = "lblThreeStockout";
     this.lblThreeStockout.Size = new System.Drawing.Size(14, 13);
     this.lblThreeStockout.TabIndex = 1;
     this.lblThreeStockout.Text = "0";
     //
     // lblSixStockOut
     //
     this.lblSixStockOut.AutoSize = true;
     this.lblSixStockOut.Location = new System.Drawing.Point(263, 22);
     this.lblSixStockOut.Name = "lblSixStockOut";
     this.lblSixStockOut.Size = new System.Drawing.Size(14, 13);
     this.lblSixStockOut.TabIndex = 1;
     this.lblSixStockOut.Text = "0";
     //
     // lblTwelveStockOut
     //
     this.lblTwelveStockOut.AutoSize = true;
     this.lblTwelveStockOut.Location = new System.Drawing.Point(349, 22);
     this.lblTwelveStockOut.Name = "lblTwelveStockOut";
     this.lblTwelveStockOut.Size = new System.Drawing.Size(14, 13);
     this.lblTwelveStockOut.TabIndex = 1;
     this.lblTwelveStockOut.Text = "0";
     //
     // lblThreeNearStock
     //
     this.lblThreeNearStock.AutoSize = true;
     this.lblThreeNearStock.Location = new System.Drawing.Point(187, 43);
     this.lblThreeNearStock.Name = "lblThreeNearStock";
     this.lblThreeNearStock.Size = new System.Drawing.Size(14, 13);
     this.lblThreeNearStock.TabIndex = 1;
     this.lblThreeNearStock.Text = "0";
     //
     // lblSixNearStock
     //
     this.lblSixNearStock.AutoSize = true;
     this.lblSixNearStock.Location = new System.Drawing.Point(263, 43);
     this.lblSixNearStock.Name = "lblSixNearStock";
     this.lblSixNearStock.Size = new System.Drawing.Size(14, 13);
     this.lblSixNearStock.TabIndex = 1;
     this.lblSixNearStock.Text = "0";
     //
     // lblTwelveNear
     //
     this.lblTwelveNear.AutoSize = true;
     this.lblTwelveNear.Location = new System.Drawing.Point(349, 43);
     this.lblTwelveNear.Name = "lblTwelveNear";
     this.lblTwelveNear.Size = new System.Drawing.Size(14, 13);
     this.lblTwelveNear.TabIndex = 1;
     this.lblTwelveNear.Text = "0";
     //
     // lblThreeBelowMin
     //
     this.lblThreeBelowMin.AutoSize = true;
     this.lblThreeBelowMin.Location = new System.Drawing.Point(187, 64);
     this.lblThreeBelowMin.Name = "lblThreeBelowMin";
     this.lblThreeBelowMin.Size = new System.Drawing.Size(14, 13);
     this.lblThreeBelowMin.TabIndex = 1;
     this.lblThreeBelowMin.Text = "0";
     //
     // lblSixBelowMin
     //
     this.lblSixBelowMin.AutoSize = true;
     this.lblSixBelowMin.Location = new System.Drawing.Point(263, 64);
     this.lblSixBelowMin.Name = "lblSixBelowMin";
     this.lblSixBelowMin.Size = new System.Drawing.Size(14, 13);
     this.lblSixBelowMin.TabIndex = 1;
     this.lblSixBelowMin.Text = "0";
     //
     // lblTwelveBelowMin
     //
     this.lblTwelveBelowMin.AutoSize = true;
     this.lblTwelveBelowMin.Location = new System.Drawing.Point(349, 64);
     this.lblTwelveBelowMin.Name = "lblTwelveBelowMin";
     this.lblTwelveBelowMin.Size = new System.Drawing.Size(14, 13);
     this.lblTwelveBelowMin.TabIndex = 1;
     this.lblTwelveBelowMin.Text = "0";
     //
     // lblTwelveOverStock
     //
     this.lblTwelveOverStock.AutoSize = true;
     this.lblTwelveOverStock.Location = new System.Drawing.Point(349, 85);
     this.lblTwelveOverStock.Name = "lblTwelveOverStock";
     this.lblTwelveOverStock.Size = new System.Drawing.Size(14, 13);
     this.lblTwelveOverStock.TabIndex = 1;
     this.lblTwelveOverStock.Text = "0";
     //
     // lblSixOverStock
     //
     this.lblSixOverStock.AutoSize = true;
     this.lblSixOverStock.Location = new System.Drawing.Point(263, 85);
     this.lblSixOverStock.Name = "lblSixOverStock";
     this.lblSixOverStock.Size = new System.Drawing.Size(14, 13);
     this.lblSixOverStock.TabIndex = 1;
     this.lblSixOverStock.Text = "0";
     //
     // lblThreeOverStock
     //
     this.lblThreeOverStock.AutoSize = true;
     this.lblThreeOverStock.Location = new System.Drawing.Point(187, 85);
     this.lblThreeOverStock.Name = "lblThreeOverStock";
     this.lblThreeOverStock.Size = new System.Drawing.Size(14, 13);
     this.lblThreeOverStock.TabIndex = 1;
     this.lblThreeOverStock.Text = "0";
     //
     // tbTransactions
     //
     this.tbTransactions.Controls.Add(this.lblAvgIssues);
     this.tbTransactions.Controls.Add(this.lblAvgReceives);
     this.tbTransactions.Controls.Add(this.lblLastIssues);
     this.tbTransactions.Controls.Add(this.lblLastReceive);
     this.tbTransactions.Controls.Add(this.label23);
     this.tbTransactions.Controls.Add(this.label22);
     this.tbTransactions.Controls.Add(this.label21);
     this.tbTransactions.Controls.Add(this.label17);
     this.tbTransactions.Name = "tbTransactions";
     this.tbTransactions.PageVisible = false;
     this.tbTransactions.Size = new System.Drawing.Size(1040, 521);
     this.tbTransactions.Text = "Transaction";
     //
     // lblAvgIssues
     //
     this.lblAvgIssues.AutoSize = true;
     this.lblAvgIssues.Location = new System.Drawing.Point(357, 184);
     this.lblAvgIssues.Name = "lblAvgIssues";
     this.lblAvgIssues.Size = new System.Drawing.Size(14, 13);
     this.lblAvgIssues.TabIndex = 1;
     this.lblAvgIssues.Text = "0";
     this.lblAvgIssues.Visible = false;
     //
     // lblAvgReceives
     //
     this.lblAvgReceives.AutoSize = true;
     this.lblAvgReceives.Location = new System.Drawing.Point(357, 153);
     this.lblAvgReceives.Name = "lblAvgReceives";
     this.lblAvgReceives.Size = new System.Drawing.Size(14, 13);
     this.lblAvgReceives.TabIndex = 1;
     this.lblAvgReceives.Text = "0";
     this.lblAvgReceives.Visible = false;
     //
     // lblLastIssues
     //
     this.lblLastIssues.AutoSize = true;
     this.lblLastIssues.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLastIssues.Location = new System.Drawing.Point(353, 105);
     this.lblLastIssues.Name = "lblLastIssues";
     this.lblLastIssues.Size = new System.Drawing.Size(22, 23);
     this.lblLastIssues.TabIndex = 1;
     this.lblLastIssues.Text = "0";
     //
     // lblLastReceive
     //
     this.lblLastReceive.AutoSize = true;
     this.lblLastReceive.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblLastReceive.Location = new System.Drawing.Point(353, 67);
     this.lblLastReceive.Name = "lblLastReceive";
     this.lblLastReceive.Size = new System.Drawing.Size(22, 23);
     this.lblLastReceive.TabIndex = 1;
     this.lblLastReceive.Text = "0";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label23.Location = new System.Drawing.Point(141, 182);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(210, 16);
     this.label23.TabIndex = 0;
     this.label23.Text = "AVG. no. of days b/n Issues : ";
     this.label23.Visible = false;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(125, 151);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(226, 16);
     this.label22.TabIndex = 0;
     this.label22.Text = "AVG. no. of days b/n Receives : ";
     this.label22.Visible = false;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.Location = new System.Drawing.Point(141, 105);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(214, 23);
     this.label21.TabIndex = 0;
     this.label21.Text = "Last Issued Date : ";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(116, 67);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(239, 23);
     this.label17.TabIndex = 0;
     this.label17.Text = "Last Received Date : ";
     //
     // tbConsumptionTrend
     //
     this.tbConsumptionTrend.Controls.Add(this.lkDetailCons);
     this.tbConsumptionTrend.Controls.Add(this.label33);
     this.tbConsumptionTrend.Controls.Add(this.consuTrend);
     this.tbConsumptionTrend.Name = "tbConsumptionTrend";
     this.tbConsumptionTrend.Padding = new System.Windows.Forms.Padding(3);
     this.tbConsumptionTrend.PageVisible = false;
     this.tbConsumptionTrend.Size = new System.Drawing.Size(1040, 521);
     this.tbConsumptionTrend.Text = "Consumption Trend";
     //
     // lkDetailCons
     //
     this.lkDetailCons.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lkDetailCons.AutoSize = true;
     this.lkDetailCons.Location = new System.Drawing.Point(1100, 17);
     this.lkDetailCons.Name = "lkDetailCons";
     this.lkDetailCons.Size = new System.Drawing.Size(72, 13);
     this.lkDetailCons.TabIndex = 16;
     this.lkDetailCons.TabStop = true;
     this.lkDetailCons.Text = "Show Table";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label33.Location = new System.Drawing.Point(7, 15);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(212, 23);
     this.label33.TabIndex = 12;
     this.label33.Text = "Trend - Consumption";
     //
     // consuTrend
     //
     this.consuTrend.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.consuTrend.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     xyDiagram5.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram5.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram5.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram5.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram5.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram5.AxisY.VisibleInPanesSerializable = "-1";
     this.consuTrend.Diagram = xyDiagram5;
     this.consuTrend.Location = new System.Drawing.Point(10, 41);
     this.consuTrend.Name = "consuTrend";
     sideBySideBarSeriesLabel13.LineVisible = true;
     series9.Label = sideBySideBarSeriesLabel13;
     series9.Name = "Series 1";
     sideBySideBarSeriesLabel14.LineVisible = true;
     series10.Label = sideBySideBarSeriesLabel14;
     series10.Name = "Series 2";
     this.consuTrend.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series9,
     series10};
     sideBySideBarSeriesLabel15.LineVisible = true;
     this.consuTrend.SeriesTemplate.Label = sideBySideBarSeriesLabel15;
     this.consuTrend.Size = new System.Drawing.Size(955, 476);
     this.consuTrend.TabIndex = 3;
     //
     // tbStockExpiryStatus
     //
     this.tbStockExpiryStatus.Appearance.PageClient.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.tbStockExpiryStatus.Appearance.PageClient.Options.UseBackColor = true;
     this.tbStockExpiryStatus.Controls.Add(this.chartPie);
     this.tbStockExpiryStatus.Name = "tbStockExpiryStatus";
     this.tbStockExpiryStatus.Padding = new System.Windows.Forms.Padding(3);
     this.tbStockExpiryStatus.PageVisible = false;
     this.tbStockExpiryStatus.Size = new System.Drawing.Size(1040, 521);
     this.tbStockExpiryStatus.Text = "Stock Expiry Status";
     //
     // chartPie
     //
     this.chartPie.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.chartPie.BorderOptions.Visible = false;
     simpleDiagram3D1.RotationMatrixSerializable = "1;0;0;0;0;0.5;-0.866025403784439;0;0;0.866025403784439;0.5;0;0;0;0;1";
     this.chartPie.Diagram = simpleDiagram3D1;
     this.chartPie.Dock = System.Windows.Forms.DockStyle.Fill;
     this.chartPie.Location = new System.Drawing.Point(3, 3);
     this.chartPie.Name = "chartPie";
     this.chartPie.PaletteName = "Palette 2";
     this.chartPie.PaletteRepository.Add("Palette 1", new DevExpress.XtraCharts.Palette("Palette 1", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[] {
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(187)))), ((int)(((byte)(47))))), System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(187)))), ((int)(((byte)(47)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))), System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))))}));
     this.chartPie.PaletteRepository.Add("Palette 2", new DevExpress.XtraCharts.Palette("Palette 2", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[] {
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(151)))), ((int)(((byte)(73))))), System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(151)))), ((int)(((byte)(73)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(198)))), ((int)(((byte)(23)))), ((int)(((byte)(23))))), System.Drawing.Color.FromArgb(((int)(((byte)(198)))), ((int)(((byte)(23)))), ((int)(((byte)(23)))))),
         new DevExpress.XtraCharts.PaletteEntry(System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(6))))), System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(6))))))}));
     pie3DSeriesLabel1.LineVisible = true;
     piePointOptions1.PointView = DevExpress.XtraCharts.PointView.SeriesName;
     piePointOptions1.ValueNumericOptions.Format = DevExpress.XtraCharts.NumericFormat.Percent;
     pie3DSeriesLabel1.PointOptions = piePointOptions1;
     series11.Label = pie3DSeriesLabel1;
     series11.Name = "Series 1";
     series11.View = pie3DSeriesView1;
     this.chartPie.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series11};
     pie3DSeriesLabel2.LineVisible = true;
     this.chartPie.SeriesTemplate.Label = pie3DSeriesLabel2;
     this.chartPie.SeriesTemplate.View = pie3DSeriesView2;
     this.chartPie.Size = new System.Drawing.Size(1034, 515);
     this.chartPie.TabIndex = 21;
     //
     // tbLogisticsSummary
     //
     this.tbLogisticsSummary.Controls.Add(this.layoutControl1);
     this.tbLogisticsSummary.Name = "tbLogisticsSummary";
     this.tbLogisticsSummary.Padding = new System.Windows.Forms.Padding(3);
     this.tbLogisticsSummary.PageVisible = false;
     this.tbLogisticsSummary.Size = new System.Drawing.Size(1040, 521);
     this.tbLogisticsSummary.Text = "Logistics Summary";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.lookUpEdit1);
     this.layoutControl1.Controls.Add(this.gridControl1);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(3, 3);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1034, 515);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.Location = new System.Drawing.Point(45, 12);
     this.lookUpEdit1.Name = "lookUpEdit1";
     this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit1.Size = new System.Drawing.Size(168, 20);
     this.lookUpEdit1.StyleController = this.layoutControl1;
     this.lookUpEdit1.TabIndex = 5;
     //
     // gridControl1
     //
     this.gridControl1.Location = new System.Drawing.Point(12, 52);
     this.gridControl1.MainView = this.gridView3;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(1010, 451);
     this.gridControl1.TabIndex = 4;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView3});
     //
     // gridView3
     //
     this.gridView3.GridControl = this.gridControl1;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Root";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.emptySpaceItem1});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Size = new System.Drawing.Size(1034, 515);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gridControl1;
     this.layoutControlItem1.CustomizationFormText = "Text";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1014, 471);
     this.layoutControlItem1.Text = "Text";
     this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Top;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(30, 13);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.lookUpEdit1;
     this.layoutControlItem2.CustomizationFormText = "Month";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(205, 24);
     this.layoutControlItem2.Text = "Month";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(30, 13);
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(205, 0);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(809, 24);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // tbSOHLocation
     //
     this.tbSOHLocation.Controls.Add(this.gridLocations);
     this.tbSOHLocation.Name = "tbSOHLocation";
     this.tbSOHLocation.Padding = new System.Windows.Forms.Padding(3);
     this.tbSOHLocation.Size = new System.Drawing.Size(1040, 521);
     this.tbSOHLocation.Text = "SOH Locations";
     //
     // gridLocations
     //
     this.gridLocations.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridLocations.Location = new System.Drawing.Point(3, 3);
     this.gridLocations.MainView = this.gridView1;
     this.gridLocations.Name = "gridLocations";
     this.gridLocations.Size = new System.Drawing.Size(1034, 515);
     this.gridLocations.TabIndex = 0;
     this.gridLocations.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn3,
     this.gridColumn5,
     this.gridColumn2,
     this.colPalletNumber,
     this.colPalletLocation,
     this.gridColumn4});
     this.gridView1.GridControl = this.gridLocations;
     this.gridView1.GroupCount = 1;
     this.gridView1.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Balance", null, "")});
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsBehavior.SummariesIgnoreNullValues = true;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowFooter = true;
     this.gridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colPalletLocation, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Receive Date";
     this.gridColumn1.FieldName = "EurDate";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 100;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Batch No";
     this.gridColumn3.FieldName = "BatchNo";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 4;
     this.gridColumn3.Width = 113;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Expiry Date";
     this.gridColumn5.FieldName = "ExpiryDate";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 1;
     this.gridColumn5.Width = 227;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Balance";
     this.gridColumn2.FieldName = "Balance";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum)});
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 2;
     this.gridColumn2.Width = 184;
     //
     // colPalletNumber
     //
     this.colPalletNumber.Caption = "PalletNumber";
     this.colPalletNumber.FieldName = "PalletNo";
     this.colPalletNumber.Name = "colPalletNumber";
     this.colPalletNumber.Visible = true;
     this.colPalletNumber.VisibleIndex = 5;
     this.colPalletNumber.Width = 147;
     //
     // colPalletLocation
     //
     this.colPalletLocation.Caption = "Pallet Location";
     this.colPalletLocation.FieldName = "PalletLocation";
     this.colPalletLocation.Name = "colPalletLocation";
     this.colPalletLocation.OptionsColumn.AllowEdit = false;
     this.colPalletLocation.Visible = true;
     this.colPalletLocation.VisibleIndex = 6;
     this.colPalletLocation.Width = 182;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Manufacturer";
     this.gridColumn4.FieldName = "ManufacturerName";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 199;
     //
     // tbSOHPriceSummary
     //
     this.tbSOHPriceSummary.Controls.Add(this.gridSOHSummary);
     this.tbSOHPriceSummary.Name = "tbSOHPriceSummary";
     this.tbSOHPriceSummary.Size = new System.Drawing.Size(1040, 521);
     this.tbSOHPriceSummary.Text = "SOH Price Summary";
     //
     // gridSOHSummary
     //
     this.gridSOHSummary.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridSOHSummary.Location = new System.Drawing.Point(0, 0);
     this.gridSOHSummary.MainView = this.gridView4;
     this.gridSOHSummary.Name = "gridSOHSummary";
     this.gridSOHSummary.Size = new System.Drawing.Size(1040, 521);
     this.gridSOHSummary.TabIndex = 1;
     this.gridSOHSummary.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView4});
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn14,
     this.gridColumn13,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12});
     this.gridView4.GridControl = this.gridSOHSummary;
     this.gridView4.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Balance", null, "")});
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsBehavior.Editable = false;
     this.gridView4.OptionsBehavior.SummariesIgnoreNullValues = true;
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ShowFooter = true;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Unit Cost";
     this.gridColumn14.FieldName = "Cost";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 4;
     this.gridColumn14.Width = 97;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Supplier";
     this.gridColumn13.FieldName = "Supplier";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 2;
     this.gridColumn13.Width = 166;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Receive Date";
     this.gridColumn6.FieldName = "EurDate";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width = 90;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Batch No";
     this.gridColumn7.FieldName = "BatchNo";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 128;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Expiry Date";
     this.gridColumn8.FieldName = "ExpiryDate";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowEdit = false;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 1;
     this.gridColumn8.Width = 161;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Balance";
     this.gridColumn9.FieldName = "Balance";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowEdit = false;
     this.gridColumn9.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum)});
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 3;
     this.gridColumn9.Width = 102;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "PalletNumber";
     this.gridColumn10.FieldName = "PalletNo";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 7;
     this.gridColumn10.Width = 106;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Pallet Location";
     this.gridColumn11.FieldName = "PalletLocation";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowEdit = false;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 8;
     this.gridColumn11.Width = 157;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Manufacturer";
     this.gridColumn12.FieldName = "ManufacturerName";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowEdit = false;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 5;
     this.gridColumn12.Width = 167;
     //
     // lblItemID
     //
     this.lblItemID.AutoSize = true;
     this.lblItemID.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblItemID.ForeColor = System.Drawing.SystemColors.AppWorkspace;
     this.lblItemID.Location = new System.Drawing.Point(12, 36);
     this.lblItemID.Name = "lblItemID";
     this.lblItemID.Size = new System.Drawing.Size(0, 18);
     this.lblItemID.TabIndex = 26;
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(973, 520);
     this.xtraTabPage1.Text = "xtraTabPage1";
     //
     // dtDate
     //
     this.dtDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.dtDate.CalendarFont = new System.Drawing.Font("Nyala", 10.75F);
     this.dtDate.CalendarForeColor = System.Drawing.Color.Black;
     this.dtDate.CustomFormat = "MM/dd/ yy";
     this.dtDate.DayOfWeekCharacters = 2;
     this.dtDate.ForeColor = System.Drawing.Color.Black;
     this.dtDate.Location = new System.Drawing.Point(748, 10);
     this.dtDate.Name = "dtDate";
     this.dtDate.PopUpFontSize = 9.75F;
     this.dtDate.Size = new System.Drawing.Size(114, 20);
     this.dtDate.TabIndex = 17;
     this.dtDate.Value = new System.DateTime(2008, 10, 21, 0, 0, 0, 0);
     this.dtDate.Visible = false;
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.Location = new System.Drawing.Point(962, 34);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 20;
     this.btnCancel.Text = "Close";
     this.btnCancel.Click += new System.EventHandler(this.BtnCancelClick);
     //
     // chartControl1
     //
     this.chartControl1.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.chartControl1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(231)))), ((int)(((byte)(253)))));
     this.chartControl1.Location = new System.Drawing.Point(7, 25);
     this.chartControl1.Name = "chartControl1";
     this.chartControl1.PaletteRepository.Add("Palette 1", new DevExpress.XtraCharts.Palette("Palette 1", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[0]));
     this.chartControl1.PaletteRepository.Add("Palette 2", new DevExpress.XtraCharts.Palette("Palette 2", DevExpress.XtraCharts.PaletteScaleMode.Repeat, new DevExpress.XtraCharts.PaletteEntry[0]));
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[0];
     sideBySideBarSeriesLabel16.LineVisible = true;
     this.chartControl1.SeriesTemplate.Label = sideBySideBarSeriesLabel16;
     this.chartControl1.Size = new System.Drawing.Size(974, 411);
     this.chartControl1.TabIndex = 2;
     //
     // printDialog1
     //
     this.printDialog1.UseEXDialog = true;
     //
     // toolTip1
     //
     this.toolTip1.AutoPopDelay = 5000;
     this.toolTip1.InitialDelay = 500;
     this.toolTip1.ReshowDelay = 0;
     this.toolTip1.ShowAlways = true;
     this.toolTip1.ToolTipTitle = "Item Name";
     //
     // txtitmName
     //
     this.txtitmName.AutoSize = true;
     this.txtitmName.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtitmName.Location = new System.Drawing.Point(81, 12);
     this.txtitmName.Name = "txtitmName";
     this.txtitmName.Size = new System.Drawing.Size(0, 18);
     this.txtitmName.TabIndex = 100;
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Location = new System.Drawing.Point(71, 40);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(92, 13);
     this.label38.TabIndex = 101;
     this.label38.Text = "Unit of Issue : ";
     //
     // lblBUnit
     //
     this.lblBUnit.AutoSize = true;
     this.lblBUnit.Location = new System.Drawing.Point(168, 40);
     this.lblBUnit.Name = "lblBUnit";
     this.lblBUnit.Size = new System.Drawing.Size(0, 13);
     this.lblBUnit.TabIndex = 101;
     //
     // xpButton1
     //
     this.xpButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.xpButton1.Image = ((System.Drawing.Image)(resources.GetObject("xpButton1.Image")));
     this.xpButton1.Location = new System.Drawing.Point(893, 38);
     this.xpButton1.Name = "xpButton1";
     this.xpButton1.Size = new System.Drawing.Size(75, 23);
     this.xpButton1.TabIndex = 15;
     this.xpButton1.Text = "Print";
     this.xpButton1.Click += new System.EventHandler(this.BtnPrintClicked);
     //
     // btnExport
     //
     this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExport.Location = new System.Drawing.Point(770, 38);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(106, 23);
     this.btnExport.TabIndex = 103;
     this.btnExport.Text = "Export Bin Card";
     this.btnExport.Click += new System.EventHandler(this.BtnExportClick);
     //
     // lblItemSerialNumber
     //
     this.lblItemSerialNumber.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.lblItemSerialNumber.Location = new System.Drawing.Point(287, 5);
     this.lblItemSerialNumber.Name = "lblItemSerialNumber";
     this.lblItemSerialNumber.Size = new System.Drawing.Size(132, 16);
     this.lblItemSerialNumber.TabIndex = 104;
     this.lblItemSerialNumber.Text = "Item Serial Number: ";
     //
     // ItemDetailReport
     //
     this.Appearance.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1049, 614);
     this.Controls.Add(this.lblItemSerialNumber);
     this.Controls.Add(this.lblItemID);
     this.Controls.Add(this.lblBUnit);
     this.Controls.Add(this.label38);
     this.Controls.Add(this.txtitmName);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.dtDate);
     this.Controls.Add(this.tabControl1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "ItemDetailReport";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Item Detail Reports";
     this.Load += new System.EventHandler(this.BinCardTransactionLoad);
     ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tbSummary.ResumeLayout(false);
     this.tbSummary.PerformLayout();
     this.tbBinCard.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     this.layoutControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkBinCardWarehouse.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     this.tbClassicBinCard.ResumeLayout(false);
     this.tbClassicBinCard.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkWarehouses.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkProgramFilter.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.transactionGrid)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewBinCard)).EndInit();
     this.tbSOHTrend.ResumeLayout(false);
     this.tbSOHTrend.PerformLayout();
     this.tbAMCTrend.ResumeLayout(false);
     this.tbAMCTrend.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartAmc)).EndInit();
     this.tbMOSTrend.ResumeLayout(false);
     this.tbMOSTrend.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartMOS)).EndInit();
     this.tbActivityTrend.ResumeLayout(false);
     this.tbActivityTrend.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartComp)).EndInit();
     this.tbSSTrend.ResumeLayout(false);
     this.tbSSTrend.PerformLayout();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.tbTransactions.ResumeLayout(false);
     this.tbTransactions.PerformLayout();
     this.tbConsumptionTrend.ResumeLayout(false);
     this.tbConsumptionTrend.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.consuTrend)).EndInit();
     this.tbStockExpiryStatus.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(simpleDiagram3D1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pie3DSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartPie)).EndInit();
     this.tbLogisticsSummary.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     this.tbSOHLocation.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridLocations)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.tbSOHPriceSummary.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridSOHSummary)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		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);

		}
示例#20
0
 /// <summary>
 /// 构造器
 /// </summary>
 /// <param name="mdiMainForm">MDI主窗体</param>
 /// <param name="tabControlModules">主窗体的XtraTabControl控件</param>
 public ModuleManager(Form mdiMainForm, XtraTabControl tabControlModules)
 {
     _tabControlModules = tabControlModules;
     _MDIMainForm = mdiMainForm;
 }
示例#21
0
        private IList<string> CreateParrentTabs(DataTable tblIndexes)
        {
            IList<string> indexList = new List<string>();
            string value = "";


            foreach (DataRow row in tblIndexes.Rows)
            {
                value = (string)row[axFolder.GroupByIndexField];
                if (value != "")
                {
                    if (!indexList.Contains(value))
                    {
                        indexList.Add(value);
                    }
                }
            }

            foreach (string tabName in indexList)
            {
                XtraTabPage versionTabPage = new XtraTabPage();
                versionTabPage.Name = "tabPage_" + tabName;
                versionTabPage.Text = tabName;
                xtraTabControl1.TabPages.AddRange(new XtraTabPage[] { versionTabPage });

                // create the tabControl to hold the document version for this type of document...
                XtraTabControl tabControl = null;
                if (tabControl == null)
                {
                    tabControl = new XtraTabControl();
                    tabControl.Dock = DockStyle.Fill;
                    tabControl.Name = "tabCntrl_" + tabName;
                    tabControl.TabPages.Clear();
                    versionTabPage.Controls.Add(tabControl);
                }
            }

            return indexList;
        }
示例#22
0
        public UpdateSellPrice(List <DataRowView> rows, ProductsSellPriceForm productsSellPriceForm, string query, XtraTabControl xtraTabControlSalesContent)
        {
            try
            {
                InitializeComponent();
                this.xtraTabControlSalesContent = xtraTabControlSalesContent;
                this.rows = rows;
                this.productsSellPriceForm = productsSellPriceForm;
                this.query   = query;
                dbconnection = new MySqlConnection(connection.connectionString);

                customPanel = new customPanel();
                panContent.Controls.Add(customPanel.Controls["panContent"]);
                panContent.Controls["panContent"].Visible = false;
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
示例#23
0
        private XtraTabControl GetVersionTabControl(XtraTabPage versionTabPage, string versionIndexField)
        {
            string tabControlName = "tabCntrl_" + versionIndexField;
            XtraTabControl tabControl = null;

            foreach (Control control in versionTabPage.Controls)
            {
                if (control is XtraTabControl)
                {
                    if (tabControlName.Equals(control.Name))
                    {
                        tabControl = (XtraTabControl)control;
                        break;
                    }
                }
            }
            if (tabControl == null)
            {
                tabControl = new XtraTabControl();
                tabControl.Dock = DockStyle.Fill;
                tabControl.Name = tabControlName;
                tabControl.TabPages.Clear();
                versionTabPage.Controls.Add(tabControl);
            }
            return tabControl;
        }
示例#24
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormChangePassword));
     this.xtraTabControl1         = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1            = new DevExpress.XtraTab.XtraTabPage();
     this.panel1                  = new DevExpress.XtraEditors.PanelControl();
     this.panel2                  = new DevExpress.XtraEditors.PanelControl();
     this.pictureBox1             = new System.Windows.Forms.PictureBox();
     this.pictureBox2             = new System.Windows.Forms.PictureBox();
     this.textBoxConform          = new DevExpress.XtraEditors.TextEdit();
     this.label4                  = new System.Windows.Forms.Label();
     this.textBoxNewPassword      = new DevExpress.XtraEditors.TextEdit();
     this.label3                  = new System.Windows.Forms.Label();
     this.label2                  = new System.Windows.Forms.Label();
     this.textBoxOldPassword      = new DevExpress.XtraEditors.TextEdit();
     this.buttonCancel            = new DevExpress.XtraEditors.SimpleButton();
     this.buttonOK                = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabPage2            = new DevExpress.XtraTab.XtraTabPage();
     this.gridControl1            = new DevExpress.XtraGrid.GridControl();
     this.gridView1               = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.col_userid              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn1             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.panelControl1           = new DevExpress.XtraEditors.PanelControl();
     this.btn_Delete              = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Add                 = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Exit                = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panel1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panel2)).BeginInit();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textBoxConform.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textBoxNewPassword.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textBoxOldPassword.Properties)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // 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(433, 264);
     this.xtraTabControl1.TabIndex        = 15;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.xtraTabPage1,
         this.xtraTabPage2
     });
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.panel1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(427, 235);
     this.xtraTabPage1.Text = "密码管理";
     //
     // panel1
     //
     this.panel1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Controls.Add(this.textBoxConform);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.textBoxNewPassword);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.textBoxOldPassword);
     this.panel1.Controls.Add(this.buttonCancel);
     this.panel1.Controls.Add(this.buttonOK);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(427, 235);
     this.panel1.TabIndex = 15;
     //
     // panel2
     //
     this.panel2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panel2.Controls.Add(this.pictureBox1);
     this.panel2.Controls.Add(this.pictureBox2);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(427, 77);
     this.panel2.TabIndex = 20;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Location = new System.Drawing.Point(78, 0);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(349, 77);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 21;
     this.pictureBox1.TabStop  = false;
     //
     // pictureBox2
     //
     this.pictureBox2.Dock       = System.Windows.Forms.DockStyle.Left;
     this.pictureBox2.ErrorImage = null;
     this.pictureBox2.Image      = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location   = new System.Drawing.Point(0, 0);
     this.pictureBox2.Name       = "pictureBox2";
     this.pictureBox2.Size       = new System.Drawing.Size(78, 77);
     this.pictureBox2.SizeMode   = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex   = 20;
     this.pictureBox2.TabStop    = false;
     //
     // textBoxConform
     //
     this.textBoxConform.Location = new System.Drawing.Point(140, 141);
     this.textBoxConform.Name     = "textBoxConform";
     this.textBoxConform.Properties.PasswordChar = '*';
     this.textBoxConform.Size     = new System.Drawing.Size(191, 20);
     this.textBoxConform.TabIndex = 2;
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label4.Location  = new System.Drawing.Point(61, 145);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(77, 14);
     this.label4.TabIndex  = 18;
     this.label4.Text      = "确认新密码";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // textBoxNewPassword
     //
     this.textBoxNewPassword.Location = new System.Drawing.Point(140, 112);
     this.textBoxNewPassword.Name     = "textBoxNewPassword";
     this.textBoxNewPassword.Properties.PasswordChar = '*';
     this.textBoxNewPassword.Size     = new System.Drawing.Size(191, 20);
     this.textBoxNewPassword.TabIndex = 1;
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location  = new System.Drawing.Point(61, 116);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(63, 14);
     this.label3.TabIndex  = 17;
     this.label3.Text      = "新 密 码";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Font      = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location  = new System.Drawing.Point(61, 87);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(63, 14);
     this.label2.TabIndex  = 16;
     this.label2.Text      = "原 密 码";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // textBoxOldPassword
     //
     this.textBoxOldPassword.Location = new System.Drawing.Point(140, 83);
     this.textBoxOldPassword.Name     = "textBoxOldPassword";
     this.textBoxOldPassword.Properties.PasswordChar = '*';
     this.textBoxOldPassword.Size     = new System.Drawing.Size(191, 20);
     this.textBoxOldPassword.TabIndex = 0;
     //
     // buttonCancel
     //
     this.buttonCancel.Appearance.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonCancel.Appearance.Options.UseFont = true;
     this.buttonCancel.Location = new System.Drawing.Point(242, 170);
     this.buttonCancel.Name     = "buttonCancel";
     this.buttonCancel.Size     = new System.Drawing.Size(89, 23);
     this.buttonCancel.TabIndex = 4;
     this.buttonCancel.Text     = "取消(&C)";
     this.buttonCancel.Click   += new System.EventHandler(this.buttonCancel_Click);
     //
     // buttonOK
     //
     this.buttonOK.Appearance.Font            = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.buttonOK.Appearance.Options.UseFont = true;
     this.buttonOK.Location = new System.Drawing.Point(140, 170);
     this.buttonOK.Name     = "buttonOK";
     this.buttonOK.Size     = new System.Drawing.Size(89, 23);
     this.buttonOK.TabIndex = 3;
     this.buttonOK.Text     = "确定(&O)";
     this.buttonOK.Click   += new System.EventHandler(this.buttonOK_Click);
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.gridControl1);
     this.xtraTabPage2.Controls.Add(this.panelControl1);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(427, 235);
     this.xtraTabPage2.Text = "附属账号";
     //
     // gridControl1
     //
     this.gridControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemDateEdit1,
         this.repositoryItemDateEdit2
     });
     this.gridControl1.Size     = new System.Drawing.Size(427, 202);
     this.gridControl1.TabIndex = 2;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.col_userid,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumn1
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowColumnMoving   = false;
     this.gridView1.OptionsCustomization.AllowColumnResizing = false;
     this.gridView1.OptionsCustomization.AllowFilter         = false;
     this.gridView1.OptionsCustomization.AllowGroup          = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.OptionsView.ShowIndicator  = false;
     //
     // col_userid
     //
     this.col_userid.Caption   = "临时工号";
     this.col_userid.FieldName = "UserID";
     this.col_userid.Name      = "col_userid";
     this.col_userid.OptionsColumn.AllowEdit = false;
     this.col_userid.OptionsColumn.ReadOnly  = true;
     this.col_userid.Visible      = true;
     this.col_userid.VisibleIndex = 0;
     this.col_userid.Width        = 60;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption   = "姓名";
     this.gridColumn2.FieldName = "Name";
     this.gridColumn2.Name      = "gridColumn2";
     this.gridColumn2.OptionsColumn.ReadOnly = true;
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width        = 70;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption                = "开始日期";
     this.gridColumn3.ColumnEdit             = this.repositoryItemDateEdit1;
     this.gridColumn3.FieldName              = "startdate";
     this.gridColumn3.Name                   = "gridColumn3";
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     this.gridColumn3.Visible                = true;
     this.gridColumn3.VisibleIndex           = 2;
     this.gridColumn3.Width                  = 128;
     //
     // repositoryItemDateEdit1
     //
     this.repositoryItemDateEdit1.AutoHeight = false;
     this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemDateEdit1.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.repositoryItemDateEdit1.EditFormat.FormatString = "d";
     this.repositoryItemDateEdit1.EditFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.repositoryItemDateEdit1.Name          = "repositoryItemDateEdit1";
     this.repositoryItemDateEdit1.QueryCloseUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemDateEdit1_QueryCloseUp);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption                = "结束日期";
     this.gridColumn1.ColumnEdit             = this.repositoryItemDateEdit2;
     this.gridColumn1.FieldName              = "enddate";
     this.gridColumn1.Name                   = "gridColumn1";
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.Visible                = true;
     this.gridColumn1.VisibleIndex           = 3;
     this.gridColumn1.Width                  = 134;
     //
     // repositoryItemDateEdit2
     //
     this.repositoryItemDateEdit2.AutoHeight = false;
     this.repositoryItemDateEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemDateEdit2.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.repositoryItemDateEdit2.EditFormat.FormatString = "yyyy/MM/dd";
     this.repositoryItemDateEdit2.EditFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit2.Name = "repositoryItemDateEdit2";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btn_Delete);
     this.panelControl1.Controls.Add(this.btn_Add);
     this.panelControl1.Controls.Add(this.btn_Exit);
     this.panelControl1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 202);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(427, 33);
     this.panelControl1.TabIndex = 1;
     //
     // btn_Delete
     //
     this.btn_Delete.Location = new System.Drawing.Point(195, 6);
     this.btn_Delete.Name     = "btn_Delete";
     this.btn_Delete.Size     = new System.Drawing.Size(59, 23);
     this.btn_Delete.TabIndex = 3;
     this.btn_Delete.Text     = "删除";
     this.btn_Delete.Click   += new System.EventHandler(this.btnDelete_Click);
     //
     // btn_Add
     //
     this.btn_Add.Location = new System.Drawing.Point(117, 6);
     this.btn_Add.Name     = "btn_Add";
     this.btn_Add.Size     = new System.Drawing.Size(59, 23);
     this.btn_Add.TabIndex = 2;
     this.btn_Add.Text     = "增加";
     this.btn_Add.Click   += new System.EventHandler(this.btn_Add_Click);
     //
     // btn_Exit
     //
     this.btn_Exit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btn_Exit.Location     = new System.Drawing.Point(278, 5);
     this.btn_Exit.Name         = "btn_Exit";
     this.btn_Exit.Size         = new System.Drawing.Size(59, 23);
     this.btn_Exit.TabIndex     = 0;
     this.btn_Exit.Text         = "退出";
     this.btn_Exit.Click       += new System.EventHandler(this.btnSave_Click);
     //
     // FormChangePassword
     //
     this.BackColor  = System.Drawing.SystemColors.ControlLight;
     this.ClientSize = new System.Drawing.Size(433, 264);
     this.Controls.Add(this.xtraTabControl1);
     this.Font          = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ForeColor     = System.Drawing.SystemColors.ControlText;
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview    = true;
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormChangePassword";
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "账号管理";
     this.Load         += new System.EventHandler(this.FormChangePassword_Load);
     this.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.FormChangePassword_KeyPress);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panel1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panel2)).EndInit();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textBoxConform.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textBoxNewPassword.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textBoxOldPassword.Properties)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#25
0
 private void InitializeComponent()
 {
     this.xtraTabControl1               = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageBasic              = new DevExpress.XtraTab.XtraTabPage();
     this.groupBox3                     = new System.Windows.Forms.GroupBox();
     this.memoDataSource                = new DevExpress.XtraEditors.MemoEdit();
     this.groupBox2                     = new System.Windows.Forms.GroupBox();
     this.xtraScrollableControl1        = new DevExpress.XtraEditors.XtraScrollableControl();
     this.panelUnkownSystem             = new DevExpress.XtraEditors.PanelControl();
     this.tableLayoutPanel1             = new System.Windows.Forms.TableLayoutPanel();
     this.labelControl5                 = new DevExpress.XtraEditors.LabelControl();
     this.lblUnknown                    = new DevExpress.XtraEditors.LabelControl();
     this.ctrlGeographicCoordinateInfo1 = new GFS.Commands.UI.ctrlGeographicCoordinateInfo();
     this.ctrlProjectionCoordinateInfo1 = new GFS.Commands.UI.ctrlProjectionCoordinateInfo();
     this.groupBox1                     = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel2             = new System.Windows.Forms.TableLayoutPanel();
     this.lblRight                 = new DevExpress.XtraEditors.LabelControl();
     this.lblBottom                = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4            = new DevExpress.XtraEditors.LabelControl();
     this.lblTop                   = new DevExpress.XtraEditors.LabelControl();
     this.lblLeft                  = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3            = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1            = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2            = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPageFields        = new DevExpress.XtraTab.XtraTabPage();
     this.gridControl1             = new DevExpress.XtraGrid.GridControl();
     this.gridView1                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.xtraTabPageRaster        = new DevExpress.XtraTab.XtraTabPage();
     this.tableLayoutPanel3        = new System.Windows.Forms.TableLayoutPanel();
     this.labelControl7            = new DevExpress.XtraEditors.LabelControl();
     this.lblPhotoDate             = new DevExpress.XtraEditors.LabelControl();
     this.lblSize                  = new DevExpress.XtraEditors.LabelControl();
     this.lblSensorType            = new DevExpress.XtraEditors.LabelControl();
     this.lblCompresionType        = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9            = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14           = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12           = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8            = new DevExpress.XtraEditors.LabelControl();
     this.lblFormat                = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13           = new DevExpress.XtraEditors.LabelControl();
     this.lblPixelType             = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10           = new DevExpress.XtraEditors.LabelControl();
     this.lblCellSize              = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19           = new DevExpress.XtraEditors.LabelControl();
     this.lblBandCount             = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15           = new DevExpress.XtraEditors.LabelControl();
     this.lblColAndRow             = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPageBasic.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoDataSource.Properties)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelUnkownSystem)).BeginInit();
     this.panelUnkownSystem.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     this.xtraTabPageFields.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     this.xtraTabPageRaster.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.SuspendLayout();
     //
     // 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.xtraTabPageBasic;
     this.xtraTabControl1.Size            = new System.Drawing.Size(477, 485);
     this.xtraTabControl1.TabIndex        = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.xtraTabPageBasic,
         this.xtraTabPageFields,
         this.xtraTabPageRaster
     });
     //
     // xtraTabPageBasic
     //
     this.xtraTabPageBasic.Controls.Add(this.groupBox3);
     this.xtraTabPageBasic.Controls.Add(this.groupBox2);
     this.xtraTabPageBasic.Controls.Add(this.groupBox1);
     this.xtraTabPageBasic.Name = "xtraTabPageBasic";
     this.xtraTabPageBasic.Size = new System.Drawing.Size(471, 456);
     this.xtraTabPageBasic.Text = "基本属性";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.memoDataSource);
     this.groupBox3.Location = new System.Drawing.Point(11, 3);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(535, 70);
     this.groupBox3.TabIndex = 4;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "数据源";
     //
     // memoDataSource
     //
     this.memoDataSource.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.memoDataSource.Location = new System.Drawing.Point(3, 18);
     this.memoDataSource.Name     = "memoDataSource";
     this.memoDataSource.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.memoDataSource.Properties.Appearance.Options.UseBackColor = true;
     this.memoDataSource.Properties.ReadOnly = true;
     this.memoDataSource.Size     = new System.Drawing.Size(529, 49);
     this.memoDataSource.TabIndex = 3;
     this.memoDataSource.UseOptimizedRendering = true;
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.xtraScrollableControl1);
     this.groupBox2.Location = new System.Drawing.Point(11, 210);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(453, 243);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "坐标系";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.panelUnkownSystem);
     this.xtraScrollableControl1.Controls.Add(this.ctrlGeographicCoordinateInfo1);
     this.xtraScrollableControl1.Controls.Add(this.ctrlProjectionCoordinateInfo1);
     this.xtraScrollableControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(3, 18);
     this.xtraScrollableControl1.Name     = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size     = new System.Drawing.Size(447, 222);
     this.xtraScrollableControl1.TabIndex = 0;
     //
     // panelUnkownSystem
     //
     this.panelUnkownSystem.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.panelUnkownSystem.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.panelUnkownSystem.Appearance.Options.UseBackColor = true;
     this.panelUnkownSystem.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelUnkownSystem.Controls.Add(this.tableLayoutPanel1);
     this.panelUnkownSystem.Location = new System.Drawing.Point(3, 0);
     this.panelUnkownSystem.Name     = "panelUnkownSystem";
     this.panelUnkownSystem.Size     = new System.Drawing.Size(339, 1014);
     this.panelUnkownSystem.TabIndex = 2;
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel1.Controls.Add(this.labelControl5, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.lblUnknown, 1, 0);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(33, 36);
     this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Size     = new System.Drawing.Size(441, 33);
     this.tableLayoutPanel1.TabIndex = 2;
     //
     // labelControl5
     //
     this.labelControl5.Anchor   = System.Windows.Forms.AnchorStyles.Right;
     this.labelControl5.Location = new System.Drawing.Point(3, 9);
     this.labelControl5.Name     = "labelControl5";
     this.labelControl5.Size     = new System.Drawing.Size(72, 14);
     this.labelControl5.TabIndex = 0;
     this.labelControl5.Text     = "坐标系名称:";
     //
     // lblUnknown
     //
     this.lblUnknown.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.lblUnknown.Location = new System.Drawing.Point(81, 9);
     this.lblUnknown.Name     = "lblUnknown";
     this.lblUnknown.Size     = new System.Drawing.Size(0, 14);
     this.lblUnknown.TabIndex = 1;
     //
     // ctrlGeographicCoordinateInfo1
     //
     this.ctrlGeographicCoordinateInfo1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.ctrlGeographicCoordinateInfo1.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.ctrlGeographicCoordinateInfo1.Appearance.Options.UseBackColor = true;
     this.ctrlGeographicCoordinateInfo1.Location = new System.Drawing.Point(3, 0);
     this.ctrlGeographicCoordinateInfo1.Name     = "ctrlGeographicCoordinateInfo1";
     this.ctrlGeographicCoordinateInfo1.Size     = new System.Drawing.Size(339, 219);
     this.ctrlGeographicCoordinateInfo1.TabIndex = 1;
     //
     // ctrlProjectionCoordinateInfo1
     //
     this.ctrlProjectionCoordinateInfo1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.ctrlProjectionCoordinateInfo1.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.ctrlProjectionCoordinateInfo1.Appearance.Options.UseBackColor = true;
     this.ctrlProjectionCoordinateInfo1.Location = new System.Drawing.Point(3, 0);
     this.ctrlProjectionCoordinateInfo1.Name     = "ctrlProjectionCoordinateInfo1";
     this.ctrlProjectionCoordinateInfo1.Size     = new System.Drawing.Size(339, 381);
     this.ctrlProjectionCoordinateInfo1.TabIndex = 0;
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.tableLayoutPanel2);
     this.groupBox1.Location = new System.Drawing.Point(11, 79);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(453, 125);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "图层范围";
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 4;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
     this.tableLayoutPanel2.Controls.Add(this.lblRight, 3, 1);
     this.tableLayoutPanel2.Controls.Add(this.lblBottom, 2, 2);
     this.tableLayoutPanel2.Controls.Add(this.labelControl4, 2, 1);
     this.tableLayoutPanel2.Controls.Add(this.lblTop, 2, 0);
     this.tableLayoutPanel2.Controls.Add(this.lblLeft, 1, 1);
     this.tableLayoutPanel2.Controls.Add(this.labelControl3, 0, 1);
     this.tableLayoutPanel2.Controls.Add(this.labelControl1, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.labelControl2, 0, 2);
     this.tableLayoutPanel2.Location = new System.Drawing.Point(16, 20);
     this.tableLayoutPanel2.Name     = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 3;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
     this.tableLayoutPanel2.Size     = new System.Drawing.Size(419, 97);
     this.tableLayoutPanel2.TabIndex = 8;
     //
     // lblRight
     //
     this.lblRight.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.lblRight.Location = new System.Drawing.Point(294, 41);
     this.lblRight.Name     = "lblRight";
     this.lblRight.Size     = new System.Drawing.Size(0, 14);
     this.lblRight.TabIndex = 6;
     //
     // lblBottom
     //
     this.lblBottom.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.tableLayoutPanel2.SetColumnSpan(this.lblBottom, 2);
     this.lblBottom.Location = new System.Drawing.Point(190, 73);
     this.lblBottom.Name     = "lblBottom";
     this.lblBottom.Size     = new System.Drawing.Size(0, 14);
     this.lblBottom.TabIndex = 7;
     //
     // labelControl4
     //
     this.labelControl4.Anchor   = System.Windows.Forms.AnchorStyles.Right;
     this.labelControl4.Location = new System.Drawing.Point(264, 41);
     this.labelControl4.Name     = "labelControl4";
     this.labelControl4.Size     = new System.Drawing.Size(24, 14);
     this.labelControl4.TabIndex = 3;
     this.labelControl4.Text     = "右:";
     //
     // lblTop
     //
     this.lblTop.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.tableLayoutPanel2.SetColumnSpan(this.lblTop, 2);
     this.lblTop.Location = new System.Drawing.Point(190, 9);
     this.lblTop.Name     = "lblTop";
     this.lblTop.Size     = new System.Drawing.Size(0, 14);
     this.lblTop.TabIndex = 4;
     //
     // lblLeft
     //
     this.lblLeft.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.lblLeft.Location = new System.Drawing.Point(86, 41);
     this.lblLeft.Name     = "lblLeft";
     this.lblLeft.Size     = new System.Drawing.Size(0, 14);
     this.lblLeft.TabIndex = 5;
     //
     // labelControl3
     //
     this.labelControl3.Anchor   = System.Windows.Forms.AnchorStyles.Right;
     this.labelControl3.Location = new System.Drawing.Point(56, 41);
     this.labelControl3.Name     = "labelControl3";
     this.labelControl3.Size     = new System.Drawing.Size(24, 14);
     this.labelControl3.TabIndex = 2;
     this.labelControl3.Text     = "左:";
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.tableLayoutPanel2.SetColumnSpan(this.labelControl1, 2);
     this.labelControl1.Location = new System.Drawing.Point(160, 9);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(24, 14);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text     = "上:";
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.tableLayoutPanel2.SetColumnSpan(this.labelControl2, 2);
     this.labelControl2.Location = new System.Drawing.Point(160, 73);
     this.labelControl2.Name     = "labelControl2";
     this.labelControl2.Size     = new System.Drawing.Size(24, 14);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text     = "下:";
     //
     // xtraTabPageFields
     //
     this.xtraTabPageFields.Controls.Add(this.gridControl1);
     this.xtraTabPageFields.Name = "xtraTabPageFields";
     this.xtraTabPageFields.Size = new System.Drawing.Size(471, 456);
     this.xtraTabPageFields.Text = "字段信息";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.EmbeddedNavigator.Buttons.Append.Visible     = false;
     this.gridControl1.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControl1.EmbeddedNavigator.Buttons.Edit.Visible       = false;
     this.gridControl1.EmbeddedNavigator.Buttons.EndEdit.Visible    = false;
     this.gridControl1.EmbeddedNavigator.Buttons.First.Visible      = false;
     this.gridControl1.EmbeddedNavigator.Buttons.Last.Visible       = false;
     this.gridControl1.EmbeddedNavigator.Buttons.Next.Visible       = false;
     this.gridControl1.EmbeddedNavigator.Buttons.NextPage.Visible   = false;
     this.gridControl1.EmbeddedNavigator.Buttons.Prev.Visible       = false;
     this.gridControl1.EmbeddedNavigator.Buttons.PrevPage.Visible   = false;
     this.gridControl1.EmbeddedNavigator.ButtonStyle      = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.gridControl1.EmbeddedNavigator.TextStringFormat = "";
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit1
     });
     this.gridControl1.Size     = new System.Drawing.Size(471, 456);
     this.gridControl1.TabIndex = 2;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsBehavior.AllowAddRows    = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsBehavior.Editable        = false;
     this.gridView1.OptionsBehavior.ReadOnly        = true;
     this.gridView1.OptionsSelection.MultiSelect    = true;
     this.gridView1.OptionsView.ColumnAutoWidth     = false;
     this.gridView1.OptionsView.ShowGroupPanel      = false;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Caption    = "Check";
     this.repositoryItemCheckEdit1.Name       = "repositoryItemCheckEdit1";
     //
     // xtraTabPageRaster
     //
     this.xtraTabPageRaster.Controls.Add(this.tableLayoutPanel3);
     this.xtraTabPageRaster.Name = "xtraTabPageRaster";
     this.xtraTabPageRaster.Size = new System.Drawing.Size(471, 456);
     this.xtraTabPageRaster.Text = "栅格信息";
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 3;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 50F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.Controls.Add(this.labelControl7, 1, 0);
     this.tableLayoutPanel3.Controls.Add(this.lblPhotoDate, 2, 8);
     this.tableLayoutPanel3.Controls.Add(this.lblSize, 2, 5);
     this.tableLayoutPanel3.Controls.Add(this.lblSensorType, 2, 7);
     this.tableLayoutPanel3.Controls.Add(this.lblCompresionType, 2, 6);
     this.tableLayoutPanel3.Controls.Add(this.labelControl9, 1, 1);
     this.tableLayoutPanel3.Controls.Add(this.labelControl14, 1, 5);
     this.tableLayoutPanel3.Controls.Add(this.labelControl12, 1, 8);
     this.tableLayoutPanel3.Controls.Add(this.labelControl8, 1, 2);
     this.tableLayoutPanel3.Controls.Add(this.lblFormat, 2, 4);
     this.tableLayoutPanel3.Controls.Add(this.labelControl13, 1, 3);
     this.tableLayoutPanel3.Controls.Add(this.lblPixelType, 2, 3);
     this.tableLayoutPanel3.Controls.Add(this.labelControl10, 1, 6);
     this.tableLayoutPanel3.Controls.Add(this.lblCellSize, 2, 2);
     this.tableLayoutPanel3.Controls.Add(this.labelControl19, 1, 7);
     this.tableLayoutPanel3.Controls.Add(this.lblBandCount, 2, 1);
     this.tableLayoutPanel3.Controls.Add(this.labelControl15, 1, 4);
     this.tableLayoutPanel3.Controls.Add(this.lblColAndRow, 2, 0);
     this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel3.Name     = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 9;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 11.11111F));
     this.tableLayoutPanel3.Size     = new System.Drawing.Size(553, 424);
     this.tableLayoutPanel3.TabIndex = 22;
     //
     // labelControl7
     //
     this.labelControl7.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl7.Location = new System.Drawing.Point(53, 16);
     this.labelControl7.Name     = "labelControl7";
     this.labelControl7.Size     = new System.Drawing.Size(48, 14);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text     = "列和行:";
     //
     // lblPhotoDate
     //
     this.lblPhotoDate.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.lblPhotoDate.Location = new System.Drawing.Point(131, 393);
     this.lblPhotoDate.Name     = "lblPhotoDate";
     this.lblPhotoDate.Size     = new System.Drawing.Size(0, 14);
     this.lblPhotoDate.TabIndex = 17;
     //
     // lblSize
     //
     this.lblSize.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.lblSize.Location = new System.Drawing.Point(131, 251);
     this.lblSize.Name     = "lblSize";
     this.lblSize.Size     = new System.Drawing.Size(0, 14);
     this.lblSize.TabIndex = 21;
     //
     // lblSensorType
     //
     this.lblSensorType.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.lblSensorType.Location = new System.Drawing.Point(131, 345);
     this.lblSensorType.Name     = "lblSensorType";
     this.lblSensorType.Size     = new System.Drawing.Size(0, 14);
     this.lblSensorType.TabIndex = 13;
     //
     // lblCompresionType
     //
     this.lblCompresionType.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.lblCompresionType.Location = new System.Drawing.Point(131, 298);
     this.lblCompresionType.Name     = "lblCompresionType";
     this.lblCompresionType.Size     = new System.Drawing.Size(0, 14);
     this.lblCompresionType.TabIndex = 15;
     //
     // labelControl9
     //
     this.labelControl9.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl9.Location = new System.Drawing.Point(53, 63);
     this.labelControl9.Name     = "labelControl9";
     this.labelControl9.Size     = new System.Drawing.Size(48, 14);
     this.labelControl9.TabIndex = 2;
     this.labelControl9.Text     = "波段数:";
     //
     // labelControl14
     //
     this.labelControl14.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl14.Location = new System.Drawing.Point(53, 251);
     this.labelControl14.Name     = "labelControl14";
     this.labelControl14.Size     = new System.Drawing.Size(60, 14);
     this.labelControl14.TabIndex = 20;
     this.labelControl14.Text     = "图像大小:";
     //
     // labelControl12
     //
     this.labelControl12.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl12.Location = new System.Drawing.Point(53, 393);
     this.labelControl12.Name     = "labelControl12";
     this.labelControl12.Size     = new System.Drawing.Size(60, 14);
     this.labelControl12.TabIndex = 16;
     this.labelControl12.Text     = "拍摄时间:";
     //
     // labelControl8
     //
     this.labelControl8.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl8.Location = new System.Drawing.Point(53, 110);
     this.labelControl8.Name     = "labelControl8";
     this.labelControl8.Size     = new System.Drawing.Size(60, 14);
     this.labelControl8.TabIndex = 4;
     this.labelControl8.Text     = "像元大小:";
     //
     // lblFormat
     //
     this.lblFormat.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.lblFormat.Location = new System.Drawing.Point(131, 204);
     this.lblFormat.Name     = "lblFormat";
     this.lblFormat.Size     = new System.Drawing.Size(0, 14);
     this.lblFormat.TabIndex = 9;
     //
     // labelControl13
     //
     this.labelControl13.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl13.Location = new System.Drawing.Point(53, 157);
     this.labelControl13.Name     = "labelControl13";
     this.labelControl13.Size     = new System.Drawing.Size(60, 14);
     this.labelControl13.TabIndex = 6;
     this.labelControl13.Text     = "像素类型:";
     //
     // lblPixelType
     //
     this.lblPixelType.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.lblPixelType.Location = new System.Drawing.Point(131, 157);
     this.lblPixelType.Name     = "lblPixelType";
     this.lblPixelType.Size     = new System.Drawing.Size(0, 14);
     this.lblPixelType.TabIndex = 7;
     //
     // labelControl10
     //
     this.labelControl10.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl10.Location = new System.Drawing.Point(53, 298);
     this.labelControl10.Name     = "labelControl10";
     this.labelControl10.Size     = new System.Drawing.Size(60, 14);
     this.labelControl10.TabIndex = 14;
     this.labelControl10.Text     = "压缩方式:";
     //
     // lblCellSize
     //
     this.lblCellSize.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.lblCellSize.Location = new System.Drawing.Point(131, 110);
     this.lblCellSize.Name     = "lblCellSize";
     this.lblCellSize.Size     = new System.Drawing.Size(0, 14);
     this.lblCellSize.TabIndex = 5;
     //
     // labelControl19
     //
     this.labelControl19.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl19.Location = new System.Drawing.Point(53, 345);
     this.labelControl19.Name     = "labelControl19";
     this.labelControl19.Size     = new System.Drawing.Size(72, 14);
     this.labelControl19.TabIndex = 12;
     this.labelControl19.Text     = "传感器类型:";
     //
     // lblBandCount
     //
     this.lblBandCount.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.lblBandCount.Location = new System.Drawing.Point(131, 63);
     this.lblBandCount.Name     = "lblBandCount";
     this.lblBandCount.Size     = new System.Drawing.Size(0, 14);
     this.lblBandCount.TabIndex = 3;
     //
     // labelControl15
     //
     this.labelControl15.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl15.Location = new System.Drawing.Point(53, 204);
     this.labelControl15.Name     = "labelControl15";
     this.labelControl15.Size     = new System.Drawing.Size(60, 14);
     this.labelControl15.TabIndex = 8;
     this.labelControl15.Text     = "数据格式:";
     //
     // lblColAndRow
     //
     this.lblColAndRow.Anchor   = System.Windows.Forms.AnchorStyles.Left;
     this.lblColAndRow.Location = new System.Drawing.Point(131, 16);
     this.lblColAndRow.Name     = "lblColAndRow";
     this.lblColAndRow.Size     = new System.Drawing.Size(0, 14);
     this.lblColAndRow.TabIndex = 1;
     //
     // frmLayerProperty
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(477, 485);
     this.Controls.Add(this.xtraTabControl1);
     this.FormBorderStyle    = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.HelpButton         = true;
     this.MaximizeBox        = false;
     this.MinimizeBox        = false;
     this.Name               = "frmLayerProperty";
     this.StartPosition      = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text               = "图层属性";
     this.HelpButtonClicked += new System.ComponentModel.CancelEventHandler(this.frmLayerProperty_HelpButtonClicked);
     this.Load              += new System.EventHandler(this.frmVectorLayerProperty_Load);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPageBasic.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.memoDataSource.Properties)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelUnkownSystem)).EndInit();
     this.panelUnkownSystem.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel2.PerformLayout();
     this.xtraTabPageFields.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     this.xtraTabPageRaster.ResumeLayout(false);
     this.tableLayoutPanel3.ResumeLayout(false);
     this.tableLayoutPanel3.PerformLayout();
     this.ResumeLayout(false);
 }
示例#26
0
        internal static void LoadFileTree(Form1 form, bool forceLoad)
        {
            TreeView         fileExplorerTreeView      = form.filePanel.fileExplorerTreeView;
            ContextMenuStrip directoryContextMenuStrip = form.filePanel.directoryContextMenuStrip;
            XtraTabControl   verticalTabControl        = form.verticalTabControl;
            XtraTabPage      fileExplorerTabPage       = form.fileExplorerTabPage;

            if ((verticalTabControl.SelectedTabPage != fileExplorerTabPage) || (!forceLoad && fileExplorerTreeView.Nodes.Count > 0))
            {
                return;
            }

            try
            {
                fileExplorerTreeView.BeginUpdate();
                fileExplorerTreeView.Nodes.Clear();

                TreeNode desktop = new TreeNode
                {
                    Text               = "Desktop",
                    Tag                = "Desktop",
                    ToolTipText        = Environment.GetFolderPath(Environment.SpecialFolder.Desktop),
                    ImageIndex         = 0,
                    SelectedImageIndex = 0,
                    ContextMenuStrip   = directoryContextMenuStrip
                };
                desktop.Nodes.Add(String.Empty);
                fileExplorerTreeView.Nodes.Add(desktop);

                foreach (DriveInfo drv in DriveInfo.GetDrives())
                {
                    TreeNode fChild = new TreeNode();

                    switch (drv.DriveType)
                    {
                    case DriveType.Fixed:
                        fChild.ImageIndex         = 1;
                        fChild.SelectedImageIndex = 1;
                        fChild.Tag = "Fixed";
                        break;

                    case DriveType.CDRom:
                        fChild.ImageIndex         = 2;
                        fChild.SelectedImageIndex = 2;
                        fChild.Tag = "CDRom";
                        break;

                    case DriveType.Network:
                        fChild.ImageIndex         = 3;
                        fChild.SelectedImageIndex = 3;
                        fChild.Tag = "Network";
                        break;

                    case DriveType.Ram:
                    case DriveType.Removable:
                        fChild.ImageIndex         = 4;
                        fChild.SelectedImageIndex = 4;
                        fChild.Tag = "Removable";
                        break;
                    }

                    fChild.Text             = drv.Name;
                    fChild.ToolTipText      = drv.Name;
                    fChild.ContextMenuStrip = directoryContextMenuStrip;
                    fChild.Nodes.Add(String.Empty);
                    fileExplorerTreeView.Nodes.Add(fChild);
                }

                fileExplorerTreeView.EndUpdate();
            }
            catch (Exception exception)
            {
                WindowManager.ShowErrorBox(form, LanguageUtil.GetCurrentLanguageString("ErrorLoadingTree", className), exception);
            }
        }
 public TransportationStoreBill_Update2(int transferProductID, string fromStore, string toStore, DateTime date, Transportation_Report transportationReport, XtraTabControl xtraTabControlStoresContent)
 {
     InitializeComponent();
     dbconnection      = new MySqlConnection(connection.connectionString);
     dbconnection2     = new MySqlConnection(connection.connectionString);
     TransferProductID = transferProductID;
     FromStore         = fromStore;
     ToStore           = toStore;
     Date = date;
     tabControlStoresContent = xtraTabControlStoresContent;
 }
示例#28
0
 public PageManager(XtraTabControl tabControl, IEntityGridControlFactory entityGridControlFactory)
 {
     _tabControl = tabControl;
     _entityGridControlFactory = entityGridControlFactory;
 }
示例#29
0
        internal static bool SaveAsPdf(Form1 form)
        {
            XtraTabControl       pagesTabControl      = form.pagesTabControl;
            CustomRichTextBox    pageTextBox          = ProgramUtil.GetPageTextBox(pagesTabControl.SelectedTabPage);
            SaveFileDialog       saveFileDialog       = form.saveFileDialog;
            ToolStripStatusLabel toolStripStatusLabel = form.toolStripStatusLabel;
            ToolStripProgressBar toolStripProgressBar = form.toolStripProgressBar;

            if (String.IsNullOrEmpty(pageTextBox.Text))
            {
                WindowManager.ShowInfoBox(form, LanguageUtil.GetCurrentLanguageString("NoTextForPDF", className));
                return(false);
            }

            try
            {
                saveFileDialog.InitialDirectory = FileUtil.GetInitialFolder(form);
                saveFileDialog.Filter           = LanguageUtil.GetCurrentLanguageString("PDFFile", className); //"PDF document (*.pdf)|*.pdf";
                saveFileDialog.FilterIndex      = 0;

                String filenameTabPage = ProgramUtil.GetFilenameTabPage(pagesTabControl.SelectedTabPage);
                if (String.IsNullOrEmpty(filenameTabPage))
                {
                    saveFileDialog.FileName = "*.pdf";
                }
                else if (filenameTabPage.Contains("."))
                {
                    saveFileDialog.FileName = filenameTabPage.Substring(0, filenameTabPage.LastIndexOf('.')) + ".pdf";
                }
                else
                {
                    saveFileDialog.FileName = filenameTabPage + ".pdf";
                }

                if (saveFileDialog.ShowDialog() != DialogResult.OK)
                {
                    toolStripProgressBar.Visible = false;
                    return(false);
                }

                Application.DoEvents();
                toolStripProgressBar.Value   = 0;
                toolStripProgressBar.Visible = true;

                String fileName = saveFileDialog.FileName;
                toolStripProgressBar.PerformStep();

                ConfigUtil.UpdateParameter("LastUserFolder", Path.GetDirectoryName(fileName));
                FileInfo fileInfo = new FileInfo(fileName);
                if (fileInfo.IsReadOnly && fileInfo.Exists)
                {
                    toolStripProgressBar.Visible = false;
                    WindowManager.ShowInfoBox(form, LanguageUtil.GetCurrentLanguageString("SavingReadonly", className));
                    return(SaveAsPdf(form));
                }

                toolStripProgressBar.PerformStep();
                String fileTitle = fileName.Substring(0, fileName.LastIndexOf(".pdf"));

                //Document document = new Document();
                //FileStream fileStream = File.Create(fileName);
                //PdfWriter.GetInstance(document, fileStream);

                //document.Open();
                //document.AddTitle(fileTitle);
                //document.AddCreationDate();
                //document.AddCreator("DtPad " + AssemblyUtil.AssemblyVersion);
                //document.Add(new Paragraph(pageTextBox.Text));

                //if (document.IsOpen())
                //{
                //    document.CloseDocument();
                //}
                //fileStream.Dispose();
                PdfUtil.SaveText(fileName, fileTitle, pageTextBox.Text);

                toolStripProgressBar.PerformStep();
                toolStripStatusLabel.Text = String.Format("{0} \"{1}\" {2}", LanguageUtil.GetCurrentLanguageString("File", className), Path.GetFileName(fileName), LanguageUtil.GetCurrentLanguageString("Saved", className));

                toolStripProgressBar.PerformStep();
                toolStripProgressBar.Visible = false;

                OtherManager.StartProcess(form, fileName);
                saveFileDialog.FileName = "*.txt";
                return(true);
            }
            catch (Exception exception)
            {
                toolStripProgressBar.Visible = false;
                saveFileDialog.FileName      = "*.txt";
                WindowManager.ShowErrorBox(form, exception.Message, exception);
                return(false);
            }
        }
示例#30
0
		public static void RestoreState(
			XtraTabControl tabControl )
		{
			var index =
				ConvertHelper.ToInt32(
					PersistanceHelper.RestoreValue( tabControl + @".Index", tabControl.SelectedTabPageIndex ),
					tabControl.SelectedTabPageIndex );

			if ( index < tabControl.TabPages.Count )
			{
				tabControl.SelectedTabPageIndex = index;
			}
		}
示例#31
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WfView));
     this.tblClient = new XtraTabControl();
     base.toolStripContainer.ContentPanel.SuspendLayout();
     base.toolStripContainer.SuspendLayout();
     this.tblClient.BeginInit();
     base.SuspendLayout();
     base.toolStripContainer.BottomToolStripPanelVisible = true;
     base.toolStripContainer.ContentPanel.Controls.Add(this.tblClient);
     base.toolStripContainer.ContentPanel.Size = new Size(0x282, 0x1e6);
     base.toolStripContainer.LeftToolStripPanelVisible = true;
     base.toolStripContainer.RightToolStripPanelVisible = true;
     base.toolStripContainer.Size = new Size(0x282, 0x1ff);
     base.toolStripContainer.TopToolStripPanelVisible = true;
     this.tblClient.Dock = DockStyle.Fill;
     this.tblClient.Location = new Point(0, 0);
     this.tblClient.Name = "tblClient";
     this.tblClient.Size = new Size(0x282, 0x1e6);
     this.tblClient.TabIndex = 0;
     this.tblClient.SelectedPageChanged += new TabPageChangedEventHandler(this.tblClient_SelectedIndexChanged);
     base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     base.ClientSize = new Size(0x282, 0x1ff);
     base.Icon = (Icon) resources.GetObject("$this.Icon");
     base.LookAndFeel.UseDefaultLookAndFeel = false;
     base.Name = "WfView";
     base.StartPosition = FormStartPosition.CenterScreen;
     this.Text = "WfForm";
     base.WindowState = FormWindowState.Maximized;
     base.Closed += new EventHandler(this.WfView_Closed);
     base.Closing += new CancelEventHandler(this.WfView_Closing);
     base.toolStripContainer.ContentPanel.ResumeLayout(false);
     base.toolStripContainer.ResumeLayout(false);
     base.toolStripContainer.PerformLayout();
     this.tblClient.EndInit();
     base.ResumeLayout(false);
 }
示例#32
0
        public SafePropertyExpense_Update(DataRowView selRow, Property_Transitions_Report ExpensesTransitionsReport, XtraTabControl MainTabControlProperty, MainForm mainForm)
        {
            InitializeComponent();
            dbconnection       = new MySqlConnection(connection.connectionString);
            tabControlProperty = MainTabControlProperty;

            comBank.AutoCompleteMode   = AutoCompleteMode.Suggest;
            comBank.AutoCompleteSource = AutoCompleteSource.ListItems;

            comMain.AutoCompleteMode   = AutoCompleteMode.Suggest;
            comMain.AutoCompleteSource = AutoCompleteSource.ListItems;

            comSub.AutoCompleteMode   = AutoCompleteMode.Suggest;
            comSub.AutoCompleteSource = AutoCompleteSource.ListItems;

            comDetails.AutoCompleteMode   = AutoCompleteMode.Suggest;
            comDetails.AutoCompleteSource = AutoCompleteSource.ListItems;
        }
示例#33
0
        public XtraTabPage AddNewTab(ref XtraTabControl tab_control, int width, int height, string text, int curTabIndex, RibbonControl ribbonControl)
        {
            XtraTabPage newTab = new XtraTabPage();
            //TreeList newTree = new TreeList();
            GridControl newGrid = new GridControl();

            GridView newGridView = new GridView();

            if (tab_control != null)
            {
                try
                {
                    tab_control.SuspendLayout();

                    tab_control.TabPages.Add(newTab);

                    newTab.Controls.Add(newGrid);
                    //newTab.Name = name;
                    newTab.Size = new System.Drawing.Size(width, height);
                    newTab.Text = text;

                    newGrid.Dock = DockStyle.Fill;
                    newGrid.Location = new System.Drawing.Point(0, 0);
                    newGrid.MainView = newGridView;
                    newGrid.MenuManager = ribbonControl;
                    newGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { newGridView });
                    //newTree.Name = "tab_" + noOfTab;
                    newGrid.TabIndex = curTabIndex++;
                    noOfTab++;
                    newGrid.Click += new EventHandler(newTree_Click);
                    newGridView.GridControl = newGrid;
                    tab_control.ResumeLayout(false);

                }
                catch (Exception e1) { MessageBox.Show(e1.ToString()); }
                return newTab;
            }
            else
            {
                return null;
            }
        }
示例#34
0
        private static bool SaveFile(bool saveNewRecentFile, Form1 form, bool forceSaveAs, bool forceBackup, bool savingAll = false)
        {
            XtraTabControl       pagesTabControl      = form.pagesTabControl;
            ToolStripStatusLabel toolStripStatusLabel = form.toolStripStatusLabel;
            ToolStripProgressBar toolStripProgressBar = form.toolStripProgressBar;
            SaveFileDialog       saveFileDialog       = form.saveFileDialog;

            try
            {
                String fileName;

                if (String.IsNullOrEmpty(ProgramUtil.GetFilenameTabPage(pagesTabControl.SelectedTabPage)) || forceSaveAs)
                {
                    saveFileDialog.InitialDirectory = FileUtil.GetInitialFolder(form);
                    SetFileDialogFilter(saveFileDialog);

                    TabsUpdate(pagesTabControl, savingAll, UpdatePhase.End);   //Useful to save all execution
                    DialogResult saveNewResult = saveFileDialog.ShowDialog();
                    TabsUpdate(pagesTabControl, savingAll, UpdatePhase.Begin); //Useful to save all execution

                    if (saveNewResult != DialogResult.OK)
                    {
                        toolStripProgressBar.Visible = false;
                        return(false);
                    }

                    fileName = saveFileDialog.FileName;
                }
                else
                {
                    fileName = ProgramUtil.GetFilenameTabPage(pagesTabControl.SelectedTabPage);
                }

                //Check that fileName is not already opened into another tab
                foreach (XtraTabPage tabPage in pagesTabControl.TabPages)
                {
                    if (tabPage == pagesTabControl.SelectedTabPage || ProgramUtil.GetFilenameTabPage(tabPage) != fileName)
                    {
                        continue;
                    }

                    pagesTabControl.SelectedTabPage = tabPage;

                    TabsUpdate(pagesTabControl, savingAll, UpdatePhase.End);   //Useful to save all execution
                    WindowManager.ShowAlertBox(form, LanguageUtil.GetCurrentLanguageString("FileAlreadyOpen", className));
                    TabsUpdate(pagesTabControl, savingAll, UpdatePhase.Begin); //Useful to save all execution

                    return(false);
                }

                bool favouriteFile = FavouriteManager.IsFileFavourite(fileName);

                Application.DoEvents();
                toolStripProgressBar.Value   = 0;
                toolStripProgressBar.Visible = true;

                toolStripProgressBar.PerformStep();

                if (!favouriteFile)
                {
                    ConfigUtil.UpdateParameter("LastUserFolder", Path.GetDirectoryName(fileName));
                }

                FileInfo fileInfo = new FileInfo(fileName);
                if (fileInfo.IsReadOnly && fileInfo.Exists)
                {
                    toolStripProgressBar.Visible = false;

                    TabsUpdate(pagesTabControl, savingAll, UpdatePhase.End);   //Useful to save all execution
                    WindowManager.ShowInfoBox(form, LanguageUtil.GetCurrentLanguageString("SavingReadonly", className));
                    TabsUpdate(pagesTabControl, savingAll, UpdatePhase.Begin); //Useful to save all execution

                    return(SaveFile(form, true));
                }

                bool backupConfigActive = ConfigUtil.GetBoolParameter("BackupEnabled");
                if ((!String.IsNullOrEmpty(ProgramUtil.GetFilenameTabPage(pagesTabControl.SelectedTabPage)) && !forceSaveAs) && (forceBackup || backupConfigActive))
                {
                    TabsUpdate(pagesTabControl, savingAll, UpdatePhase.End);   //Useful to save all execution
                    bool saved = BackupFileOnSaving(form, fileName);
                    TabsUpdate(pagesTabControl, savingAll, UpdatePhase.Begin); //Useful to save all execution

                    if (saved == false)
                    {
                        toolStripProgressBar.Visible = false;
                        return(false);
                    }
                }

                toolStripProgressBar.PerformStep();
                if (SaveFileCoreWithEncoding(form, fileName, savingAll) == false)
                {
                    toolStripProgressBar.Visible = false;
                    return(false);
                }

                if (!favouriteFile && saveNewRecentFile)
                {
                    FileListManager.SetNewRecentFile(form, fileName);
                }

                if (CustomFilesManager.IsHostsSectionPanelOpen(form))
                {
                    CustomFilesManager.GetSections(form, false);
                }
                toolStripProgressBar.PerformStep();

                CustomRichTextBox pageTextBox = ProgramUtil.GetPageTextBox(pagesTabControl.SelectedTabPage);

                ProgramUtil.SetFilenameTabPage(pagesTabControl.SelectedTabPage, fileName);
                pagesTabControl.SelectedTabPage.ImageIndex = 0;
                pagesTabControl.SelectedTabPage.Text       = Path.GetFileName(fileName);
                pageTextBox.CustomModified = false;
                pageTextBox.CustomOriginal = ProgramUtil.GetPageTextBox(pagesTabControl.SelectedTabPage).Text.GetHashCode().ToString();
                form.Text = String.Format("DtPad - {0}", Path.GetFileName(fileName));
                toolStripStatusLabel.Text = String.Format("{0} \"{1}\" {2}", LanguageUtil.GetCurrentLanguageString("File", className), Path.GetFileName(fileName), LanguageUtil.GetCurrentLanguageString("Saved", className));
                TabManager.ToggleTabFileTools(form, true);

                toolStripProgressBar.PerformStep();
                toolStripProgressBar.Visible = false;
            }
            catch (Exception exception)
            {
                TabManager.ToggleTabFileTools(form, false);
                toolStripProgressBar.Visible = false;

                TabsUpdate(pagesTabControl, savingAll, UpdatePhase.End);   //Useful to save all execution
                WindowManager.ShowErrorBox(form, exception.Message, exception);
                TabsUpdate(pagesTabControl, savingAll, UpdatePhase.Begin); //Useful to save all execution

                return(false);
            }

            return(true);
        }
示例#35
0
 public ucPart(XtraTabControl _x1, XtraTabPage _p1)
 {
     InitializeComponent();
     p1 = _p1;
     x1 = _x1;
 }
示例#36
0
        internal static bool SaveFileCoreWithEncoding(Form1 form, String fileName, bool savingAll = false)
        {
            XtraTabControl pagesTabControl = form.pagesTabControl;

            return(SaveFileCoreWithEncoding(form, fileName, ProgramUtil.GetPageTextBox(pagesTabControl.SelectedTabPage).Text, savingAll));
        }
示例#37
0
 private void BorderGrid(XtraTabControl grp, bool select)
 {
     if (select)
     {
         grp.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
         grp.Appearance.Options.UseBorderColor = true;
         grp.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
         grp.LookAndFeel.UseDefaultLookAndFeel = false;
         this.SelectedGroup = grp.Name;
     }
     else
     {
         grp.Appearance.Options.UseBorderColor = false;
         grp.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
         grp.LookAndFeel.UseDefaultLookAndFeel = true;
         this.SelectedGroup = "";
     }
 }
 public XtraTabDragDropHelper(XtraTabControl tabControl)
 {
     _tabControl = tabControl;
     SubscribeEvents();
 }
示例#39
0
 public void BindAccordionItemTabpageClick(DevExpress.XtraBars.Navigation.AccordionControlElement ele, XtraTabControl xtraTabControl)
 {
     //添加点击后动态添加tabpage事件
     ele.Click += (s, e) =>
     {
         AddNewPageIfNotExist(ele.Text.Trim(), xtraTabControl);
         SelectPageByTitle(ele.Text.Trim(), xtraTabControl);
     };
     //添加点击后的第二个事件 tabpage上的tag字符串绑定的UserControl 反射实例化后绑定到tabpage上去
     ele.Click += (s, e) =>
     {
         AccordionControl_Load_TabpageControl_Click(s, e, xtraTabControl);
     };
 }
示例#40
0
 public static void MakeTabControlInvisible(
     XtraTabControl tabControl)
 {
 }
 public SubPropertyTransitions_Report(XtraTabControl XtraTabControlProperty)
 {
     InitializeComponent();
     conn = new MySqlConnection(connection.connectionString);
     xtraTabControlProperty = XtraTabControlProperty;
 }
示例#42
0
 private int FindTabPageIndex(string s, XtraTabControl tbc)
 {
     for(int i = 0; i < tbc.TabPages.Count; i++)
         if(tbc.TabPages[i].Text == s) return i;
     return -1;
 }
示例#43
0
 public IPageManager CreateInstance(XtraTabControl tabControl)
 {
     IEntityGridControlFactory entityGridControlFactory = new EntityGridControlFactory();
     return new PageManager(tabControl, entityGridControlFactory);
 }
        public static void ViewAddPanel(Switchboard panel,
                                        XtraTabControl tabControl,
                                        XtraTabPage tabPage,
                                        SwitchboardDesignControl.CellClickedEventHandler cellClickEvent,
                                        SwitchboardDesignControl.BlockClickedEventHandler blockClickEvent,
                                        SwitchboardDesignControl.BlockDoubleClickedEventHandler blockDoubleClickEvent)
        {
            XtraTabPage tabPanel;

            tabControl.SuspendLayout();

            // Generate the grid
            SwitchboardDesignControl spcPanel = new SwitchboardDesignControl(panel);

            spcPanel.Dock        = DockStyle.Fill;
            spcPanel.Location    = new System.Drawing.Point(5, 5);
            spcPanel.Name        = "grdPanel" + panel.ID;
            spcPanel.BorderStyle = BorderStyle.FixedSingle;

            // Enable grid events
            if (cellClickEvent != null)
            {
                spcPanel.CellClick += cellClickEvent;
            }
            if (blockClickEvent != null)
            {
                spcPanel.ElementClick += blockClickEvent;
            }
            if (blockDoubleClickEvent != null)
            {
                spcPanel.BlockDoubleClick += blockDoubleClickEvent;
            }

            // Generate the tab page
            if (tabPage == null)
            {
                tabPanel = new XtraTabPage();

                // tabPanel.Controls.Add(grdPanel);
                tabPanel.Name    = "tabPanel" + panel.ID;
                tabPanel.Padding = new Padding(5);
                tabPanel.Text    = panel.Name;
                tabPanel.Image   = Properties.Resources.ICO_PANEL_16;
                tabPanel.Tag     = panel;
                tabPanel.Controls.Add(spcPanel);
            }
            else
            {
                // Clear all page contents
                tabPage.Controls.Clear();

                tabPanel = tabPage;
            }

            tabControl.TabPages.Add(tabPanel);

            // Select the new panel
            tabControl.SelectedTabPage = tabPanel;

            tabControl.ResumeLayout(false);
        }
示例#45
0
        // http://www.devexpress.com/Support/Center/p/S130636.aspx
        // http://www.devexpress.com/Support/Center/p/CQ23743.aspx

        public MyHelperXtraTabPageCollection(XtraTabControl tabControl) :
            base(tabControl)
        {
        }
示例#46
0
 public TabControlHelper(XtraTabControl TabControl)
 {
     this.TabControl = TabControl;
 }
 public TransportationStore_Update(DataRow rows, Transportation_Report transportationReport, XtraTabControl xtraTabControlStoresContent)
 {
     InitializeComponent();
     dbconnection  = new MySqlConnection(connection.connectionString);
     dbconnection2 = new MySqlConnection(connection.connectionString);
     selRow        = rows;
 }
示例#48
0
        internal static int AddNewPage(Form1 form, int tabIdentity)
        {
            XtraTabControl    pagesTabControl              = form.pagesTabControl;
            ToolStripMenuItem wordWrapToolStripMenuItem    = form.wordWrapToolStripMenuItem;
            ToolStripMenuItem lineNumbersToolStripMenuItem = form.lineNumbersToolStripMenuItem;
            ContextMenuStrip  textBoxContextMenuStrip      = form.textBoxContextMenuStrip;

            bool rowNumbersVisibile = lineNumbersToolStripMenuItem.Checked;
            bool wordWrapEnabled    = wordWrapToolStripMenuItem.Checked;

            if (form.WindowMode == CustomForm.WindowModeEnum.Note)
            {
                rowNumbersVisibile = false;
                wordWrapEnabled    = true;
            }

            String newTabTitle = LanguageUtil.GetCurrentLanguageString("tabPage1", form.Name);

            tabIdentity++;
            String newTabPageName = String.Format("tabPage{0}", tabIdentity);

            XtraTabPage newTabPageControl = new XtraTabPage
            {
                ImageIndex = 0,
                Name       = newTabPageName,
                Padding    = new Padding(3),
                Text       = newTabTitle,
                Tooltip    = newTabTitle
            };

            //newTabPageControl.Appearance.Header.ForeColor = Color.Black;
            //newTabPageControl.Appearance.PageClient.BackColor = Color.White;
            newTabPageControl.TextChanged += form.tabPage_TextChanged;

            CustomRichTextBox newTabPageTextBox = new CustomRichTextBox
            {
                AcceptsTab           = true,
                AllowDrop            = true,
                AutoWordSelection    = false,
                BackColor            = form.TextBackgroundColor,
                BorderStyle          = BorderStyle.None,
                ContextMenuStrip     = textBoxContextMenuStrip,
                CustomEncodingForced = false,
                CustomInsertMode     = "INS",
                CustomModified       = false,
                CustomOriginal       = String.Empty.GetHashCode().ToString(),
                CustomZoom           = 100,
                DetectUrls           = ConfigUtil.GetBoolParameter("HighlightURL"),
                Dock          = DockStyle.Fill,
                Font          = form.TextFont,
                ForeColor     = form.TextFontColor,
                HideSelection = false,
                //Multiline = true,
                Name = "pageTextBox",
                //ScrollBars = RichTextBoxScrollBars.Both,
                Text     = String.Empty,
                WordWrap = wordWrapEnabled
            };

            newTabPageControl.Controls.Add(newTabPageTextBox);

            CustomLineNumbers customLineNumbers = new CustomLineNumbers
            {
                AutoSizing = true,
                BackColor  = form.TextBackgroundColor,
                BackgroundGradient_AlphaColor = Color.FromArgb(0, 0, 0, 0),
                BackgroundGradient_BetaColor  = SystemColors.Window,
                BackgroundGradient_Direction  = LinearGradientMode.Horizontal,
                BorderLines_Color             = Color.DeepSkyBlue,
                BorderLines_Style             = DashStyle.Solid,
                BorderLines_Thickness         = 1F,
                Dock                           = DockStyle.Left,
                DockSide                       = CustomLineNumbers.LineNumberDockSide.Left,
                Font                           = form.TextFont,
                ForeColor                      = SystemColors.AppWorkspace,
                GridLines_Color                = Color.DeepSkyBlue,
                GridLines_Style                = DashStyle.Solid,
                GridLines_Thickness            = 1F,
                LineNrs_Alignment              = ContentAlignment.TopRight,
                LineNrs_AntiAlias              = false,
                LineNrs_ClippedByItemRectangle = true,
                LineNrs_Offset                 = new Size(0, 0),
                Location                       = new Point(3, 3),
                Margin                         = new Padding(0),
                MarginLines_Color              = Color.DeepSkyBlue,
                MarginLines_Side               = CustomLineNumbers.LineNumberDockSide.Right,
                MarginLines_Style              = DashStyle.Dash,
                MarginLines_Thickness          = 1F,
                MinimumSize                    = new Size(47, 0),
                Name                           = "customLineNumbers",
                Padding                        = new Padding(0, 0, 7, 0),
                ParentRichTextBox              = newTabPageTextBox,
                Show_LineNrs                   = true,
                Show_MarginLines               = true,
                Size                           = new Size(47, 308),
                TabIndex                       = 2,
                Visible                        = rowNumbersVisibile
            };

            newTabPageControl.Controls.Add(customLineNumbers);

            Label newTabPageLabel = new Label
            {
                AutoSize = true,
                Location = new Point(3, 3),
                Name     = "filenameTabPage",
                Size     = new Size(0, 13),
                Visible  = false
            };

            newTabPageLabel.TextChanged += form.filenameTabPage_TextChanged;
            newTabPageControl.Controls.Add(newTabPageLabel);

            pagesTabControl.TabPages.Add(newTabPageControl);
            pagesTabControl.SelectedTabPage = newTabPageControl;

            ExplorerManager.AddNodeToTabExplorer(form, newTabPageControl.Text, newTabPageControl.Name, 0, 0);
            OtherManager.FocusOnEditor(form);
            WindowModeManager.AddRelaxModeMargins(form);

            return(tabIdentity);
        }
 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);
 }
示例#50
0
 public frm_Main()
 {
     InitializeComponent();
     tabstatic = xtraTabControl1;
 }
示例#51
0
 public SearchRecive_Date(MainForm mainform, XtraTabControl TabControlContent)
 {
     InitializeComponent();
     dbconnection      = new MySqlConnection(connection.connectionString);
     tabControlContent = TabControlContent;
 }
示例#52
0
 /// <summary>
 /// Required meTechHidraulics_ERP_CRMod for Designer support - do not modify
 /// TechHidraulics_ERP_CRMe contents of TechHidraulics_ERP_CRMis meTechHidraulics_ERP_CRMod wiTechHidraulics_ERP_CRM TechHidraulics_ERP_CRMe code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridInventario    = new DevExpress.XtraGrid.GridControl();
     this.viewArticulo      = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6       = 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.gridColumn2       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repchkWarning     = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridView3         = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.btnNuevoArticulo  = new DevExpress.XtraEditors.SimpleButton();
     this.frmEditarArticulo = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1     = new DevExpress.XtraEditors.LabelControl();
     this.btnBorrarArticulo = new DevExpress.XtraEditors.SimpleButton();
     this.xtabMain          = new DevExpress.XtraTab.XtraTabControl();
     this.tab1 = new DevExpress.XtraTab.XtraTabPage();
     ((System.ComponentModel.ISupportInitialize)(this.gridInventario)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.viewArticulo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repchkWarning)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtabMain)).BeginInit();
     this.xtabMain.SuspendLayout();
     this.tab1.SuspendLayout();
     this.SuspendLayout();
     //
     // gridInventario
     //
     this.gridInventario.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.gridInventario.Location = new System.Drawing.Point(26, 59);
     this.gridInventario.MainView = this.viewArticulo;
     this.gridInventario.Name     = "gridInventario";
     this.gridInventario.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repchkWarning
     });
     this.gridInventario.Size     = new System.Drawing.Size(1182, 509);
     this.gridInventario.TabIndex = 43;
     this.gridInventario.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.viewArticulo,
         this.gridView3
     });
     //
     // viewArticulo
     //
     this.viewArticulo.Appearance.HeaderPanel.Font            = new System.Drawing.Font("Segoe UI Semibold", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.viewArticulo.Appearance.HeaderPanel.Options.UseFont = true;
     this.viewArticulo.Appearance.Row.Font            = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.viewArticulo.Appearance.Row.Options.UseFont = true;
     this.viewArticulo.ColumnPanelRowHeight           = 30;
     this.viewArticulo.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumn4,
         this.gridColumn3,
         this.gridColumn6,
         this.gridColumn5,
         this.gridColumn7,
         this.gridColumn8,
         this.gridColumn2
     });
     this.viewArticulo.GridControl = this.gridInventario;
     this.viewArticulo.Name        = "viewArticulo";
     this.viewArticulo.OptionsBehavior.Editable  = false;
     this.viewArticulo.OptionsFind.AlwaysVisible = true;
     this.viewArticulo.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.viewArticulo.RowHeight    = 30;
     this.viewArticulo.DoubleClick += new System.EventHandler(this.viewInventario_DoubleClick);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption   = "ID";
     this.gridColumn1.FieldName = "id_articulo";
     this.gridColumn1.Name      = "gridColumn1";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption   = "Categoria";
     this.gridColumn4.FieldName = "nombre_categoria";
     this.gridColumn4.Name      = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width        = 227;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption   = "Nombre";
     this.gridColumn3.FieldName = "nombre";
     this.gridColumn3.Name      = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width        = 296;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceCell.Options.UseTextOptions   = true;
     this.gridColumn6.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.Caption      = "Existencias";
     this.gridColumn6.FieldName    = "cantidad_existencia";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width        = 107;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceCell.Options.UseTextOptions   = true;
     this.gridColumn5.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.Caption = "Precio";
     this.gridColumn5.DisplayFormat.FormatString = "c";
     this.gridColumn5.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName    = "precio";
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 5;
     this.gridColumn5.Width        = 98;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption      = "Codigo";
     this.gridColumn7.FieldName    = "codigo";
     this.gridColumn7.Name         = "gridColumn7";
     this.gridColumn7.Visible      = true;
     this.gridColumn7.VisibleIndex = 0;
     this.gridColumn7.Width        = 162;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption      = "Marca";
     this.gridColumn8.FieldName    = "marca";
     this.gridColumn8.Name         = "gridColumn8";
     this.gridColumn8.Visible      = true;
     this.gridColumn8.VisibleIndex = 2;
     this.gridColumn8.Width        = 274;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions   = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption      = "Estatus";
     this.gridColumn2.ColumnEdit   = this.repchkWarning;
     this.gridColumn2.FieldName    = "estatus_existencias";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.UnboundType  = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 6;
     //
     // repchkWarning
     //
     this.repchkWarning.AutoHeight = false;
     this.repchkWarning.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.repchkWarning.Name       = "repchkWarning";
     //
     // gridView3
     //
     this.gridView3.GridControl = this.gridInventario;
     this.gridView3.Name        = "gridView3";
     //
     // btnNuevoArticulo
     //
     this.btnNuevoArticulo.Appearance.Font                   = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNuevoArticulo.Appearance.Options.UseFont        = true;
     this.btnNuevoArticulo.Appearance.Options.UseTextOptions = true;
     this.btnNuevoArticulo.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.btnNuevoArticulo.ImageToTextAlignment              = DevExpress.XtraEditors.ImageAlignToText.RightCenter;
     this.btnNuevoArticulo.Location        = new System.Drawing.Point(26, 20);
     this.btnNuevoArticulo.Name            = "btnNuevoArticulo";
     this.btnNuevoArticulo.Size            = new System.Drawing.Size(77, 24);
     this.btnNuevoArticulo.TabIndex        = 44;
     this.btnNuevoArticulo.Text            = "Nuevo";
     this.btnNuevoArticulo.ToolTip         = "Le permite al usuario añadir un nuevo articulo al Inventario.";
     this.btnNuevoArticulo.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btnNuevoArticulo.ToolTipTitle    = "Nuevo";
     this.btnNuevoArticulo.Click          += new System.EventHandler(this.btnNuevoArticulo_Click);
     //
     // frmEditarArticulo
     //
     this.frmEditarArticulo.Appearance.Font                   = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.frmEditarArticulo.Appearance.Options.UseFont        = true;
     this.frmEditarArticulo.Appearance.Options.UseTextOptions = true;
     this.frmEditarArticulo.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.frmEditarArticulo.ImageToTextAlignment              = DevExpress.XtraEditors.ImageAlignToText.RightCenter;
     this.frmEditarArticulo.Location        = new System.Drawing.Point(109, 20);
     this.frmEditarArticulo.Name            = "frmEditarArticulo";
     this.frmEditarArticulo.Size            = new System.Drawing.Size(77, 24);
     this.frmEditarArticulo.TabIndex        = 40;
     this.frmEditarArticulo.Text            = "Editar";
     this.frmEditarArticulo.ToolTip         = "Le permite al usuario añadir un nuevo articulo al Inventario.";
     this.frmEditarArticulo.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.frmEditarArticulo.ToolTipTitle    = "Agregar";
     this.frmEditarArticulo.Click          += new System.EventHandler(this.frmEditarArticulo_Click);
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Segoe UI Light", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Location        = new System.Drawing.Point(27, 12);
     this.labelControl1.Name            = "labelControl1";
     this.labelControl1.Size            = new System.Drawing.Size(134, 45);
     this.labelControl1.TabIndex        = 45;
     this.labelControl1.Text            = "Inventario";
     //
     // btnBorrarArticulo
     //
     this.btnBorrarArticulo.Appearance.Font                   = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnBorrarArticulo.Appearance.Options.UseFont        = true;
     this.btnBorrarArticulo.Appearance.Options.UseTextOptions = true;
     this.btnBorrarArticulo.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.btnBorrarArticulo.ImageToTextAlignment              = DevExpress.XtraEditors.ImageAlignToText.RightCenter;
     this.btnBorrarArticulo.Location        = new System.Drawing.Point(192, 20);
     this.btnBorrarArticulo.Name            = "btnBorrarArticulo";
     this.btnBorrarArticulo.Size            = new System.Drawing.Size(77, 24);
     this.btnBorrarArticulo.TabIndex        = 48;
     this.btnBorrarArticulo.Text            = "Borrar";
     this.btnBorrarArticulo.ToolTip         = "Le permite al usuario añadir un nuevo articulo al Inventario.";
     this.btnBorrarArticulo.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btnBorrarArticulo.ToolTipTitle    = "Nuevo";
     this.btnBorrarArticulo.Click          += new System.EventHandler(this.btnBorrarArticulo_Click);
     //
     // xtabMain
     //
     this.xtabMain.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.xtabMain.AppearancePage.Header.Font            = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xtabMain.AppearancePage.Header.Options.UseFont = true;
     this.xtabMain.Location        = new System.Drawing.Point(27, 74);
     this.xtabMain.Name            = "xtabMain";
     this.xtabMain.SelectedTabPage = this.tab1;
     this.xtabMain.Size            = new System.Drawing.Size(1230, 619);
     this.xtabMain.TabIndex        = 49;
     this.xtabMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.tab1
     });
     //
     // tab1
     //
     this.tab1.Controls.Add(this.gridInventario);
     this.tab1.Controls.Add(this.btnBorrarArticulo);
     this.tab1.Controls.Add(this.frmEditarArticulo);
     this.tab1.Controls.Add(this.btnNuevoArticulo);
     this.tab1.Name = "tab1";
     this.tab1.Size = new System.Drawing.Size(1224, 587);
     this.tab1.Text = "Inventario";
     //
     // FrmInventario
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1282, 705);
     this.Controls.Add(this.xtabMain);
     this.Controls.Add(this.labelControl1);
     this.Name  = "FrmInventario";
     this.Text  = "Inventario";
     this.Load += new System.EventHandler(this.frmArticulo_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridInventario)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.viewArticulo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repchkWarning)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtabMain)).EndInit();
     this.xtabMain.ResumeLayout(false);
     this.tab1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#53
0
        private void InitializeComponent()
        {
            ComponentResourceManager manager = new ComponentResourceManager(typeof(едакторФормул));

            this.layoutControl1               = new LayoutControl();
            this.ВыборОтчетнойФормы           = new GridLookUpEdit();
            this.gridLookUpEdit1View          = new GridView();
            this.gridColumn_Код               = new GridColumn();
            this.gridColumn_Идентификатор     = new GridColumn();
            this.gridColumn_Наименование      = new GridColumn();
            this.gridColumn_НачалоДействия    = new GridColumn();
            this.gridColumn_ОкончаниеДействия = new GridColumn();
            this.simpleButton_Cancel          = new SimpleButton();
            this.simpleButton_Ok              = new SimpleButton();
            this.textEditФормула              = new TextEdit();
            this.tabТаблицы          = new XtraTabControl();
            this.layoutControlGroup1 = new LayoutControlGroup();
            this.layoutControlItem2  = new LayoutControlItem();
            this.layoutControlItem3  = new LayoutControlItem();
            this.emptySpaceItem1     = new EmptySpaceItem();
            this.emptySpaceItem2     = new EmptySpaceItem();
            this.layoutControlItem4  = new LayoutControlItem();
            this.layoutControlItem5  = new LayoutControlItem();
            this.layoutControlItem1  = new LayoutControlItem();
            this.layoutControl1.BeginInit();
            this.layoutControl1.SuspendLayout();
            this.ВыборОтчетнойФормы.Properties.BeginInit();
            this.gridLookUpEdit1View.BeginInit();
            this.textEditФормула.Properties.BeginInit();
            this.tabТаблицы.BeginInit();
            this.layoutControlGroup1.BeginInit();
            this.layoutControlItem2.BeginInit();
            this.layoutControlItem3.BeginInit();
            this.emptySpaceItem1.BeginInit();
            this.emptySpaceItem2.BeginInit();
            this.layoutControlItem4.BeginInit();
            this.layoutControlItem5.BeginInit();
            this.layoutControlItem1.BeginInit();
            base.SuspendLayout();
            this.layoutControl1.Controls.Add(this.ВыборОтчетнойФормы);
            this.layoutControl1.Controls.Add(this.simpleButton_Cancel);
            this.layoutControl1.Controls.Add(this.simpleButton_Ok);
            this.layoutControl1.Controls.Add(this.textEditФормула);
            this.layoutControl1.Controls.Add(this.tabТаблицы);
            this.layoutControl1.Dock         = DockStyle.Fill;
            this.layoutControl1.Location     = new Point(0, 0);
            this.layoutControl1.Name         = "layoutControl1";
            this.layoutControl1.Root         = this.layoutControlGroup1;
            this.layoutControl1.Size         = new Size(0x282, 0x1e4);
            this.layoutControl1.TabIndex     = 0;
            this.layoutControl1.Text         = "layoutControl1";
            this.layoutControl1.KeyUp       += new KeyEventHandler(this.MainView_KeyUp);
            this.layoutControl1.KeyDown     += new KeyEventHandler(this.MainView_KeyDown);
            this.ВыборОтчетнойФормы.Location = new Point(0x61, 7);
            this.ВыборОтчетнойФормы.Name     = "ВыборОтчетнойФормы";
            this.ВыборОтчетнойФормы.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) });
            this.ВыборОтчетнойФормы.Properties.NullText         = "";
            this.ВыборОтчетнойФормы.Properties.PopupFormMinSize = new Size(600, 0);
            this.ВыборОтчетнойФормы.Properties.View             = this.gridLookUpEdit1View;
            this.ВыборОтчетнойФормы.Size              = new Size(0xdb, 20);
            this.ВыборОтчетнойФормы.StyleController   = this.layoutControl1;
            this.ВыборОтчетнойФормы.TabIndex          = 9;
            this.ВыборОтчетнойФормы.EditValueChanged += new EventHandler(this.ВыборОтчетнойФормы_EditValueChanged);
            this.ВыборОтчетнойФормы.KeyUp            += new KeyEventHandler(this.MainView_KeyUp);
            this.ВыборОтчетнойФормы.KeyDown          += new KeyEventHandler(this.MainView_KeyDown);
            this.gridLookUpEdit1View.Columns.AddRange(new GridColumn[] { this.gridColumn_Код, this.gridColumn_Идентификатор, this.gridColumn_Наименование, this.gridColumn_НачалоДействия, this.gridColumn_ОкончаниеДействия });
            this.gridLookUpEdit1View.FocusRectStyle = DrawFocusRectStyle.RowFocus;
            this.gridLookUpEdit1View.Name           = "gridLookUpEdit1View";
            this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
            this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
            this.gridLookUpEdit1View.OptionsView.ShowIndicator  = false;
            this.gridLookUpEdit1View.KeyDown              += new KeyEventHandler(this.MainView_KeyDown);
            this.gridLookUpEdit1View.KeyUp                += new KeyEventHandler(this.MainView_KeyUp);
            this.gridColumn_Код.Caption                    = "Код формы";
            this.gridColumn_Код.FieldName                  = "КодФормы";
            this.gridColumn_Код.Name                       = "gridColumn_Код";
            this.gridColumn_Код.Visible                    = true;
            this.gridColumn_Код.VisibleIndex               = 0;
            this.gridColumn_Код.Width                      = 0x3a;
            this.gridColumn_Идентификатор.Caption          = "Идентификатор";
            this.gridColumn_Идентификатор.FieldName        = "Идентификатор";
            this.gridColumn_Идентификатор.Name             = "gridColumn_Идентификатор";
            this.gridColumn_Идентификатор.Visible          = true;
            this.gridColumn_Идентификатор.VisibleIndex     = 1;
            this.gridColumn_Идентификатор.Width            = 0x3a;
            this.gridColumn_Наименование.Caption           = "Наименование";
            this.gridColumn_Наименование.FieldName         = "Наименование";
            this.gridColumn_Наименование.Name              = "gridColumn_Наименование";
            this.gridColumn_Наименование.Visible           = true;
            this.gridColumn_Наименование.VisibleIndex      = 2;
            this.gridColumn_Наименование.Width             = 0x4d;
            this.gridColumn_НачалоДействия.Caption         = "Начало действия";
            this.gridColumn_НачалоДействия.FieldName       = "НачалоДействия";
            this.gridColumn_НачалоДействия.Name            = "gridColumn_НачалоДействия";
            this.gridColumn_НачалоДействия.Visible         = true;
            this.gridColumn_НачалоДействия.VisibleIndex    = 3;
            this.gridColumn_НачалоДействия.Width           = 0x7a;
            this.gridColumn_ОкончаниеДействия.Caption      = "Окончание действия";
            this.gridColumn_ОкончаниеДействия.FieldName    = "ОкончаниеДействия";
            this.gridColumn_ОкончаниеДействия.Name         = "gridColumn_ОкончаниеДействия";
            this.gridColumn_ОкончаниеДействия.Visible      = true;
            this.gridColumn_ОкончаниеДействия.VisibleIndex = 4;
            this.gridColumn_ОкончаниеДействия.Width        = 0x53;
            this.simpleButton_Cancel.DialogResult          = DialogResult.Cancel;
            this.simpleButton_Cancel.Location              = new Point(0x215, 0x1c8);
            this.simpleButton_Cancel.Name                  = "simpleButton_Cancel";
            this.simpleButton_Cancel.Size                  = new Size(0x67, 0x16);
            this.simpleButton_Cancel.StyleController       = this.layoutControl1;
            this.simpleButton_Cancel.TabIndex              = 8;
            this.simpleButton_Cancel.Text                  = "Отменить";
            this.simpleButton_Cancel.KeyUp                += new KeyEventHandler(this.MainView_KeyUp);
            this.simpleButton_Cancel.KeyDown              += new KeyEventHandler(this.MainView_KeyDown);
            this.simpleButton_Ok.DialogResult              = DialogResult.OK;
            this.simpleButton_Ok.Location                  = new Point(0x1a3, 0x1c8);
            this.simpleButton_Ok.Name                      = "simpleButton_Ok";
            this.simpleButton_Ok.Size                      = new Size(0x67, 0x16);
            this.simpleButton_Ok.StyleController           = this.layoutControl1;
            this.simpleButton_Ok.TabIndex                  = 7;
            this.simpleButton_Ok.Text                      = "Применить";
            this.simpleButton_Ok.KeyUp                    += new KeyEventHandler(this.MainView_KeyUp);
            this.simpleButton_Ok.KeyDown                  += new KeyEventHandler(this.MainView_KeyDown);
            this.textEditФормула.Location                  = new Point(0x61, 0x26);
            this.textEditФормула.Name                      = "textEditФормула";
            this.textEditФормула.Size                      = new Size(0x21b, 20);
            this.textEditФормула.StyleController           = this.layoutControl1;
            this.textEditФормула.TabIndex                  = 6;
            this.textEditФормула.DragDrop                 += new DragEventHandler(this.textEditФормула_DragDrop);
            this.textEditФормула.KeyUp                    += new KeyEventHandler(this.MainView_KeyUp);
            this.textEditФормула.KeyDown                  += new KeyEventHandler(this.MainView_KeyDown);
            this.tabТаблицы.Location                       = new Point(7, 0x45);
            this.tabТаблицы.Name     = "tabТаблицы";
            this.tabТаблицы.Size     = new Size(0x275, 0x178);
            this.tabТаблицы.TabIndex = 5;
            this.tabТаблицы.KeyUp   += new KeyEventHandler(this.MainView_KeyUp);
            this.tabТаблицы.KeyDown += new KeyEventHandler(this.MainView_KeyDown);
            this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
            this.layoutControlGroup1.Items.AddRange(new BaseLayoutItem[] { this.layoutControlItem2, this.layoutControlItem3, this.emptySpaceItem1, this.emptySpaceItem2, this.layoutControlItem4, this.layoutControlItem5, this.layoutControlItem1 });
            this.layoutControlGroup1.Location             = new Point(0, 0);
            this.layoutControlGroup1.Name                 = "layoutControlGroup1";
            this.layoutControlGroup1.Size                 = new Size(0x282, 0x1e4);
            this.layoutControlGroup1.Spacing              = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
            this.layoutControlGroup1.Text                 = "layoutControlGroup1";
            this.layoutControlGroup1.TextVisible          = false;
            this.layoutControlItem2.Control               = this.tabТаблицы;
            this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
            this.layoutControlItem2.Location              = new Point(0, 0x3e);
            this.layoutControlItem2.Name                  = "layoutControlItem2";
            this.layoutControlItem2.Size                  = new Size(640, 0x183);
            this.layoutControlItem2.Text                  = "layoutControlItem2";
            this.layoutControlItem2.TextLocation          = Locations.Left;
            this.layoutControlItem2.TextSize              = new Size(0, 0);
            this.layoutControlItem2.TextToControlDistance = 0;
            this.layoutControlItem2.TextVisible           = false;
            this.layoutControlItem3.Control               = this.textEditФормула;
            this.layoutControlItem3.CustomizationFormText = "Формула";
            this.layoutControlItem3.Location              = new Point(0, 0x1f);
            this.layoutControlItem3.Name                  = "layoutControlItem3";
            this.layoutControlItem3.Size                  = new Size(640, 0x1f);
            this.layoutControlItem3.Text                  = "Формула";
            this.layoutControlItem3.TextLocation          = Locations.Left;
            this.layoutControlItem3.TextSize              = new Size(0x55, 0x19);
            this.emptySpaceItem1.CustomizationFormText    = "emptySpaceItem1";
            this.emptySpaceItem1.Location                 = new Point(320, 0);
            this.emptySpaceItem1.Name     = "emptySpaceItem1";
            this.emptySpaceItem1.Size     = new Size(320, 0x1f);
            this.emptySpaceItem1.Text     = "emptySpaceItem1";
            this.emptySpaceItem1.TextSize = new Size(0, 0);
            this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
            this.emptySpaceItem2.Location   = new Point(0, 0x1c1);
            this.emptySpaceItem2.Name       = "emptySpaceItem2";
            this.emptySpaceItem2.Size       = new Size(0x19c, 0x21);
            this.emptySpaceItem2.Text       = "emptySpaceItem2";
            this.emptySpaceItem2.TextSize   = new Size(0, 0);
            this.layoutControlItem4.Control = this.simpleButton_Ok;
            this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
            this.layoutControlItem4.Location              = new Point(0x19c, 0x1c1);
            this.layoutControlItem4.MaxSize               = new Size(0x72, 0x21);
            this.layoutControlItem4.MinSize               = new Size(0x72, 0x21);
            this.layoutControlItem4.Name                  = "layoutControlItem4";
            this.layoutControlItem4.Size                  = new Size(0x72, 0x21);
            this.layoutControlItem4.SizeConstraintsType   = SizeConstraintsType.Custom;
            this.layoutControlItem4.Text                  = "layoutControlItem4";
            this.layoutControlItem4.TextLocation          = Locations.Left;
            this.layoutControlItem4.TextSize              = new Size(0, 0);
            this.layoutControlItem4.TextToControlDistance = 0;
            this.layoutControlItem4.TextVisible           = false;
            this.layoutControlItem5.Control               = this.simpleButton_Cancel;
            this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
            this.layoutControlItem5.Location              = new Point(0x20e, 0x1c1);
            this.layoutControlItem5.MaxSize               = new Size(0x72, 0x21);
            this.layoutControlItem5.MinSize               = new Size(0x72, 0x21);
            this.layoutControlItem5.Name                  = "layoutControlItem5";
            this.layoutControlItem5.Size                  = new Size(0x72, 0x21);
            this.layoutControlItem5.SizeConstraintsType   = SizeConstraintsType.Custom;
            this.layoutControlItem5.Text                  = "layoutControlItem5";
            this.layoutControlItem5.TextLocation          = Locations.Left;
            this.layoutControlItem5.TextSize              = new Size(0, 0);
            this.layoutControlItem5.TextToControlDistance = 0;
            this.layoutControlItem5.TextVisible           = false;
            this.layoutControlItem1.Control               = this.ВыборОтчетнойФормы;
            this.layoutControlItem1.CustomizationFormText = "Отчетная форма";
            this.layoutControlItem1.Location              = new Point(0, 0);
            this.layoutControlItem1.MaxSize               = new Size(320, 0x1f);
            this.layoutControlItem1.MinSize               = new Size(320, 0x1f);
            this.layoutControlItem1.Name                  = "layoutControlItem1";
            this.layoutControlItem1.Size                  = new Size(320, 0x1f);
            this.layoutControlItem1.SizeConstraintsType   = SizeConstraintsType.Custom;
            this.layoutControlItem1.Text                  = "Отчетная форма";
            this.layoutControlItem1.TextLocation          = Locations.Left;
            this.layoutControlItem1.TextSize              = new Size(0x55, 20);
            base.AcceptButton        = this.simpleButton_Ok;
            base.AutoScaleDimensions = new SizeF(6f, 13f);
            base.AutoScaleMode       = AutoScaleMode.Font;
            base.CancelButton        = this.simpleButton_Cancel;
            base.ClientSize          = new Size(0x282, 0x1e4);
            base.Controls.Add(this.layoutControl1);
            base.Icon          = (Icon)manager.GetObject("$this.Icon");
            base.Name          = "РедакторФормул";
            base.StartPosition = FormStartPosition.CenterScreen;
            this.Text          = "Редактор формул";
            base.WindowState   = FormWindowState.Maximized;
            base.Load         += new EventHandler(this.едакторФормул_Load);
            base.KeyUp        += new KeyEventHandler(this.MainView_KeyUp);
            base.KeyDown      += new KeyEventHandler(this.MainView_KeyDown);
            this.layoutControl1.EndInit();
            this.layoutControl1.ResumeLayout(false);
            this.ВыборОтчетнойФормы.Properties.EndInit();
            this.gridLookUpEdit1View.EndInit();
            this.textEditФормула.Properties.EndInit();
            this.tabТаблицы.EndInit();
            this.layoutControlGroup1.EndInit();
            this.layoutControlItem2.EndInit();
            this.layoutControlItem3.EndInit();
            this.emptySpaceItem1.EndInit();
            this.emptySpaceItem2.EndInit();
            this.layoutControlItem4.EndInit();
            this.layoutControlItem5.EndInit();
            this.layoutControlItem1.EndInit();
            base.ResumeLayout(false);
        }
示例#54
0
        internal static void ListFolderContentIntoFile(Form1 form, TreeNode parentNode, bool withSizes, String filePattern = "*", SearchOption searchOption = SearchOption.TopDirectoryOnly)
        {
            ToolStripButton   hiddenToolStripButton = form.filePanel.hiddenToolStripButton;
            XtraTabControl    pagesTabControl       = form.pagesTabControl;
            CustomRichTextBox pageTextBox           = ProgramUtil.GetPageTextBox(pagesTabControl.SelectedTabPage);

            long totalSize = 0;

            //bool warningShown = false;

            try
            {
                //Root directory
                DirectoryInfo rootDir;
                Char[]        arr      = { '\\' };
                String[]      nameList = parentNode.FullPath.Split(arr);

                if (nameList.GetValue(0).ToString() == "Desktop")
                {
                    String path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + "\\";

                    for (int i = 1; i < nameList.Length; i++)
                    {
                        path = path + nameList[i] + "\\";
                    }

                    rootDir = new DirectoryInfo(path);
                }
                else
                {
                    rootDir = new DirectoryInfo(parentNode.FullPath + "\\");
                }

                String fileList = LanguageUtil.GetCurrentLanguageString("ListDirectoryHeader", className) + " " + rootDir.FullName + ConstantUtil.newLine + ConstantUtil.newLine;

                //Child directories
                DirectoryInfo[] directories = rootDir.GetDirectories(filePattern, searchOption);
                Array.Sort(directories, new Comparison <DirectoryInfo>((d1, d2) => String.Compare(d1.Name, d2.Name))); //return string.Compare(d1.Name, d2.Name);
                foreach (DirectoryInfo directory in directories)
                {
                    if (!hiddenToolStripButton.Checked && directory.Attributes.ToString().Contains("Hidden"))
                    {
                        continue;
                    }

                    //String size = String.Empty;
                    //if (withSizes)
                    //{
                    //    if (!warningShown && WindowManager.ShowQuestionBox(form, LanguageUtil.GetCurrentLanguageString("SureToWait", className)) == DialogResult.No)
                    //    {
                    //        return;
                    //    }

                    //    warningShown = true;
                    //    int filesCount = 0;
                    //    int dirsCount = 0;
                    //    try
                    //    {
                    //        long sizeLong = DirectoryUtil.GetSize(directory, filesCount, dirsCount, out filesCount, out dirsCount);
                    //        totalSize += sizeLong;
                    //        double sizeDouble = (sizeLong / 1024f) / 1024f;

                    //        size = " - " + Math.Round(sizeDouble, 2).ToString(LanguageUtil.GetInfoCulture())
                    //            + " MB, " + filesCount + " " + LanguageUtil.GetCurrentLanguageString("Files", className) + ", " + dirsCount + " " + LanguageUtil.GetCurrentLanguageString("Directories", className);
                    //    }
                    //    catch (UnauthorizedAccessException)
                    //    {
                    //        size = " - " + String.Format(LanguageUtil.GetCurrentLanguageString("AccessDenied", className), directory.FullName);
                    //    }
                    //}

                    fileList += "[dir] " + directory.Name + "\\" + ConstantUtil.newLine; //"[dir] " + directory.Name + "\\" + size + ConstantUtil.newLine
                }

                fileList += ConstantUtil.newLine;

                //Child files
                FileInfo[] files = rootDir.GetFiles(filePattern, searchOption);
                Array.Sort(files, new Comparison <FileInfo>((f1, f2) => String.Compare(f1.Name, f2.Name)));
                foreach (FileInfo file in files)
                {
                    if (!hiddenToolStripButton.Checked && file.Attributes.ToString().Contains("Hidden") || IsFileBlackListed(file.Name))
                    {
                        continue;
                    }

                    String size = String.Empty;
                    if (withSizes)
                    {
                        totalSize += file.Length;
                        double sizeDouble = (file.Length / 1024f) / 1024f;
                        size = " - " + Math.Round(sizeDouble, 2).ToString(LanguageUtil.GetInfoCulture()) + " MB";
                    }

                    switch (searchOption)
                    {
                    case SearchOption.TopDirectoryOnly:
                        fileList = fileList + file.Name + size + ConstantUtil.newLine;
                        break;

                    default:
                        fileList = fileList + file.FullName.Substring(rootDir.FullName.Length) + size + ConstantUtil.newLine;
                        break;
                    }
                }

                if (withSizes)
                {
                    double totalSizeDouble = (totalSize / 1024f) / 1024f;
                    fileList = fileList + ConstantUtil.newLine + LanguageUtil.GetCurrentLanguageString("TotalSize", className) + " " + Math.Round(totalSizeDouble, 2).ToString(LanguageUtil.GetInfoCulture()) + " MB" + ConstantUtil.newLine;
                }

                //Row number check
                WindowManager.CheckLineNumbersForTextLenght(form, String.Format("{0}{1}", pageTextBox.Text, fileList));

                if (!TabManager.IsCurrentTabInUse(form))
                {
                    pageTextBox.SelectedText = fileList;
                    TextManager.RefreshUndoRedoExternal(form);
                }
                else
                {
                    form.TabIdentity         = TabManager.AddNewPage(form, form.TabIdentity);
                    pageTextBox              = ProgramUtil.GetPageTextBox(pagesTabControl.SelectedTabPage);
                    pageTextBox.SelectedText = fileList;
                    TextManager.RefreshUndoRedoExternal(form);
                }
            }
            catch (UnauthorizedAccessException exception)
            {
                WindowManager.ShowErrorBox(form, String.Format("{0}{1}{2}", LanguageUtil.GetCurrentLanguageString("ErrorLoadingDirFiles", className), Environment.NewLine, exception.Message), exception);
            }
            catch (Exception exception)
            {
                if (parentNode == null)
                {
                    WindowManager.ShowErrorBox(form, LanguageUtil.GetCurrentLanguageString("ErrorLoadingDirFiles", className), exception);
                    return;
                }

                if (parentNode.Tag != null && (parentNode.Tag.ToString() == "CDRom" || parentNode.Tag.ToString() == "Removable"))
                {
                    if (parentNode.Nodes.Count == 0)
                    {
                        parentNode.Nodes.Add(null, LanguageUtil.GetCurrentLanguageString("NoDisk", className), 7, 7);
                    }

                    WindowManager.ShowInfoBox(form, LanguageUtil.GetCurrentLanguageString("DeviceNotReady", className));
                }
                else
                {
                    WindowManager.ShowErrorBox(form, LanguageUtil.GetCurrentLanguageString("ErrorLoadingDirFiles", className), exception);
                }
            }
        }
示例#55
0
 public ucFindLabel(XtraTabControl _x1, XtraTabPage _p1)
 {
     InitializeComponent();
 }
 private void InitializeComponent()
 {
     this.tblData = new XtraTabControl();
     this.tblData.BeginInit();
     base.SuspendLayout();
     this.tblData.Location = new Point(8, 8);
     this.tblData.Name = "tblData";
     this.tblData.TabIndex = 0;
     this.tblData.Text = "xtraTabControl1";
     base.Controls.Add(this.tblData);
     base.Name = "WfAbstractDataForm";
     base.Size = new Size(0x178, 320);
     this.tblData.EndInit();
     base.ResumeLayout(false);
 }
        private void InitializeComponent()
        {
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem3 = new DevExpress.XtraBars.BarStaticItem();
            this.btnSbobetGetInfo = new DevExpress.XtraBars.BarButtonItem();
            this.lblSbobetCurrentCredit = new DevExpress.XtraBars.BarStaticItem();
            this.lblSbobetTotalMatch = new DevExpress.XtraBars.BarStaticItem();
            this.lblSbobetLastUpdate = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem7 = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem8 = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem9 = new DevExpress.XtraBars.BarStaticItem();
            this.lblIbetCurrentCredit = new DevExpress.XtraBars.BarStaticItem();
            this.lblIbetTotalMatch = new DevExpress.XtraBars.BarStaticItem();
            this.lblIbetLastUpdate = new DevExpress.XtraBars.BarStaticItem();
            this.btnIbetGetInfo = new DevExpress.XtraBars.BarButtonItem();
            this.lblStatus = new DevExpress.XtraBars.BarStaticItem();
            this.lblSameMatch = new DevExpress.XtraBars.BarStaticItem();
            this.lblLastUpdate = new DevExpress.XtraBars.BarStaticItem();
            this.btnStart = new DevExpress.XtraBars.BarButtonItem();
            this.btnStop = new DevExpress.XtraBars.BarButtonItem();
            this.btnClear = new DevExpress.XtraBars.BarButtonItem();
            this.lblIBETWinLost = new DevExpress.XtraBars.BarStaticItem();
            this.lblIBETCom = new DevExpress.XtraBars.BarStaticItem();
            this.lblIBETReject = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem4 = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem5 = new DevExpress.XtraBars.BarStaticItem();
            this.barStaticItem6 = new DevExpress.XtraBars.BarStaticItem();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.rpgIbet = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.rpgSbobet = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
            this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
            this.webIBET = new System.Windows.Forms.WebBrowser();
            this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
            this.cbeSignatureTemplate = new DevExpress.XtraEditors.ComboBoxEdit();
            this.label1 = new System.Windows.Forms.Label();
            this.btnIBETGO = new DevExpress.XtraEditors.SimpleButton();
            this.txtIBETAddress = new DevExpress.XtraEditors.TextEdit();
            this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
            this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
            this.webSBOBET = new System.Windows.Forms.WebBrowser();
            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
            this.chooseSBOServer = new DevExpress.XtraEditors.ComboBoxEdit();
            this.btnSBOBETGO = new DevExpress.XtraEditors.SimpleButton();
            this.txtSBOBETAddress = new DevExpress.XtraEditors.TextEdit();
            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
            this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
            this.grdSameMatch = new DevExpress.XtraGrid.GridControl();
            this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
            this.gridNonLiveMatch = new DevExpress.XtraGrid.GridControl();
            this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.tabBetList = new DevExpress.XtraTab.XtraTabPage();
            this.grdBetList = new DevExpress.XtraGrid.GridControl();
            this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.xtraTabControl2 = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
            this.txtTransactionTimeSpan = new DevExpress.XtraEditors.SpinEdit();
            this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
            this.txtMaxTimePerHalf = new DevExpress.XtraEditors.SpinEdit();
            this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
            this.chbAllowHalftime = new DevExpress.XtraEditors.CheckEdit();
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.chkProxy = new DevExpress.XtraEditors.CheckEdit();
            this.btnStatus = new DevExpress.XtraEditors.SimpleButton();
            this.btnSetUpdateInterval = new DevExpress.XtraEditors.SimpleButton();
            this.txtSBOBETUpdateInterval = new DevExpress.XtraEditors.SpinEdit();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            this.txtIBETUpdateInterval = new DevExpress.XtraEditors.SpinEdit();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
            this.chkEnable = new DevExpress.XtraEditors.CheckEdit();
            this.chkFollowType = new DevExpress.XtraEditors.CheckEdit();
            this.txtLowestOddValue = new DevExpress.XtraEditors.SpinEdit();
            this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
            this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit();
            this.checkEdit5 = new DevExpress.XtraEditors.CheckEdit();
            this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit();
            this.checkEdit12 = new DevExpress.XtraEditors.CheckEdit();
            this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
            this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
            this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
            this.chkFollowPercent = new DevExpress.XtraEditors.CheckEdit();
            this.txtIBETFixedStake = new DevExpress.XtraEditors.SpinEdit();
            this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
            this.txtAllowTradeMinValue = new DevExpress.XtraEditors.SpinEdit();
            this.txtFollowPercent = new DevExpress.XtraEditors.SpinEdit();
            this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
            this.txtListFollowAccounts = new DevExpress.XtraEditors.MemoEdit();
            this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
            this.grdTransaction = new DevExpress.XtraGrid.GridControl();
            this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
            this.xtraTabControl1.SuspendLayout();
            this.xtraTabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
            this.panelControl5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
            this.panelControl4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cbeSignatureTemplate.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtIBETAddress.Properties)).BeginInit();
            this.xtraTabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
            this.panelControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
            this.panelControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chooseSBOServer.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtSBOBETAddress.Properties)).BeginInit();
            this.xtraTabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdSameMatch)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            this.xtraTabPage6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridNonLiveMatch)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
            this.tabBetList.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdBetList)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).BeginInit();
            this.xtraTabControl2.SuspendLayout();
            this.xtraTabPage4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
            this.groupControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtTransactionTimeSpan.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtMaxTimePerHalf.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chbAllowHalftime.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chkProxy.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtSBOBETUpdateInterval.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtIBETUpdateInterval.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
            this.groupControl5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chkEnable.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkFollowType.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtLowestOddValue.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit12.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
            this.groupControl4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chkFollowPercent.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtIBETFixedStake.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtAllowTradeMinValue.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtFollowPercent.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
            this.groupControl6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtListFollowAccounts.Properties)).BeginInit();
            this.xtraTabPage5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdTransaction)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
            this.SuspendLayout();
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ApplicationButtonText = null;
            // 
            // 
            // 
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.ExpandCollapseItem.Name = "";
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.barStaticItem1,
            this.barStaticItem2,
            this.barStaticItem3,
            this.btnSbobetGetInfo,
            this.lblSbobetCurrentCredit,
            this.lblSbobetTotalMatch,
            this.lblSbobetLastUpdate,
            this.barStaticItem7,
            this.barStaticItem8,
            this.barStaticItem9,
            this.lblIbetCurrentCredit,
            this.lblIbetTotalMatch,
            this.lblIbetLastUpdate,
            this.btnIbetGetInfo,
            this.lblStatus,
            this.lblSameMatch,
            this.lblLastUpdate,
            this.btnStart,
            this.btnStop,
            this.btnClear,
            this.lblIBETWinLost,
            this.lblIBETCom,
            this.lblIBETReject,
            this.barStaticItem4,
            this.barStaticItem5,
            this.barStaticItem6});
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 37;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1});
            this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
            this.ribbonControl1.SelectedPage = this.ribbonPage1;
            this.ribbonControl1.ShowCategoryInCaption = false;
            this.ribbonControl1.ShowExpandCollapseButton = DevExpress.Utils.DefaultBoolean.False;
            this.ribbonControl1.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Hide;
            this.ribbonControl1.ShowToolbarCustomizeItem = false;
            this.ribbonControl1.Size = new System.Drawing.Size(1130, 125);
            this.ribbonControl1.Toolbar.ShowCustomizeItem = false;
            // 
            // barStaticItem1
            // 
            this.barStaticItem1.Caption = "Current Credit:";
            this.barStaticItem1.Id = 1;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem2
            // 
            this.barStaticItem2.Caption = "Total Match:";
            this.barStaticItem2.Id = 2;
            this.barStaticItem2.Name = "barStaticItem2";
            this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem3
            // 
            this.barStaticItem3.Caption = "Last Update:";
            this.barStaticItem3.Id = 3;
            this.barStaticItem3.Name = "barStaticItem3";
            this.barStaticItem3.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // btnSbobetGetInfo
            // 
            this.btnSbobetGetInfo.Caption = "Get Info";
            this.btnSbobetGetInfo.Id = 4;
            this.btnSbobetGetInfo.LargeGlyph = global::iBet.App.Properties.Resources.i8;
            this.btnSbobetGetInfo.Name = "btnSbobetGetInfo";
            this.btnSbobetGetInfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSbobetGetInfo_ItemClick);
            // 
            // lblSbobetCurrentCredit
            // 
            this.lblSbobetCurrentCredit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblSbobetCurrentCredit.Appearance.Options.UseFont = true;
            this.lblSbobetCurrentCredit.Caption = "-";
            this.lblSbobetCurrentCredit.Id = 5;
            this.lblSbobetCurrentCredit.Name = "lblSbobetCurrentCredit";
            this.lblSbobetCurrentCredit.TextAlignment = System.Drawing.StringAlignment.Far;
            this.lblSbobetCurrentCredit.Width = 135;
            // 
            // lblSbobetTotalMatch
            // 
            this.lblSbobetTotalMatch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblSbobetTotalMatch.Appearance.Options.UseFont = true;
            this.lblSbobetTotalMatch.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
            this.lblSbobetTotalMatch.Caption = "-";
            this.lblSbobetTotalMatch.Id = 6;
            this.lblSbobetTotalMatch.Name = "lblSbobetTotalMatch";
            this.lblSbobetTotalMatch.TextAlignment = System.Drawing.StringAlignment.Far;
            this.lblSbobetTotalMatch.Width = 135;
            // 
            // lblSbobetLastUpdate
            // 
            this.lblSbobetLastUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblSbobetLastUpdate.Appearance.Options.UseFont = true;
            this.lblSbobetLastUpdate.Caption = "-";
            this.lblSbobetLastUpdate.Id = 8;
            this.lblSbobetLastUpdate.Name = "lblSbobetLastUpdate";
            this.lblSbobetLastUpdate.TextAlignment = System.Drawing.StringAlignment.Far;
            this.lblSbobetLastUpdate.Width = 135;
            // 
            // barStaticItem7
            // 
            this.barStaticItem7.Caption = "Current Credit:";
            this.barStaticItem7.Id = 9;
            this.barStaticItem7.Name = "barStaticItem7";
            this.barStaticItem7.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem8
            // 
            this.barStaticItem8.Caption = "Total Already Running:";
            this.barStaticItem8.Id = 10;
            this.barStaticItem8.Name = "barStaticItem8";
            this.barStaticItem8.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem9
            // 
            this.barStaticItem9.Caption = "Last Update:";
            this.barStaticItem9.Id = 11;
            this.barStaticItem9.Name = "barStaticItem9";
            this.barStaticItem9.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // lblIbetCurrentCredit
            // 
            this.lblIbetCurrentCredit.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblIbetCurrentCredit.Appearance.Options.UseFont = true;
            this.lblIbetCurrentCredit.Caption = "-";
            this.lblIbetCurrentCredit.Id = 12;
            this.lblIbetCurrentCredit.Name = "lblIbetCurrentCredit";
            this.lblIbetCurrentCredit.TextAlignment = System.Drawing.StringAlignment.Far;
            this.lblIbetCurrentCredit.Width = 135;
            // 
            // lblIbetTotalMatch
            // 
            this.lblIbetTotalMatch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblIbetTotalMatch.Appearance.Options.UseFont = true;
            this.lblIbetTotalMatch.Caption = "-";
            this.lblIbetTotalMatch.Id = 13;
            this.lblIbetTotalMatch.Name = "lblIbetTotalMatch";
            this.lblIbetTotalMatch.TextAlignment = System.Drawing.StringAlignment.Far;
            this.lblIbetTotalMatch.Width = 135;
            // 
            // lblIbetLastUpdate
            // 
            this.lblIbetLastUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblIbetLastUpdate.Appearance.Options.UseFont = true;
            this.lblIbetLastUpdate.Caption = "-";
            this.lblIbetLastUpdate.Id = 14;
            this.lblIbetLastUpdate.Name = "lblIbetLastUpdate";
            this.lblIbetLastUpdate.TextAlignment = System.Drawing.StringAlignment.Far;
            this.lblIbetLastUpdate.Width = 135;
            // 
            // btnIbetGetInfo
            // 
            this.btnIbetGetInfo.Caption = "Get Info";
            this.btnIbetGetInfo.Id = 15;
            this.btnIbetGetInfo.LargeGlyph = global::iBet.App.Properties.Resources.i8;
            this.btnIbetGetInfo.Name = "btnIbetGetInfo";
            this.btnIbetGetInfo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
            // 
            // lblStatus
            // 
            this.lblStatus.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblStatus.Appearance.Options.UseFont = true;
            this.lblStatus.Caption = "STOPPED";
            this.lblStatus.Id = 16;
            this.lblStatus.Name = "lblStatus";
            this.lblStatus.TextAlignment = System.Drawing.StringAlignment.Center;
            this.lblStatus.Width = 135;
            // 
            // lblSameMatch
            // 
            this.lblSameMatch.Caption = "Total waiting list: -";
            this.lblSameMatch.Id = 17;
            this.lblSameMatch.Name = "lblSameMatch";
            this.lblSameMatch.TextAlignment = System.Drawing.StringAlignment.Center;
            this.lblSameMatch.Width = 135;
            // 
            // lblLastUpdate
            // 
            this.lblLastUpdate.Caption = "-";
            this.lblLastUpdate.Id = 18;
            this.lblLastUpdate.Name = "lblLastUpdate";
            this.lblLastUpdate.TextAlignment = System.Drawing.StringAlignment.Center;
            this.lblLastUpdate.Width = 135;
            // 
            // btnStart
            // 
            this.btnStart.Caption = "Start";
            this.btnStart.Enabled = false;
            this.btnStart.Id = 19;
            this.btnStart.LargeGlyph = global::iBet.App.Properties.Resources.i5;
            this.btnStart.Name = "btnStart";
            this.btnStart.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnStart_ItemClick);
            // 
            // btnStop
            // 
            this.btnStop.Caption = "Stop";
            this.btnStop.Enabled = false;
            this.btnStop.Id = 20;
            this.btnStop.LargeGlyph = global::iBet.App.Properties.Resources.i6;
            this.btnStop.Name = "btnStop";
            this.btnStop.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnStop_ItemClick);
            // 
            // btnClear
            // 
            this.btnClear.Caption = "Clear";
            this.btnClear.Enabled = false;
            this.btnClear.Id = 21;
            this.btnClear.LargeGlyph = global::iBet.App.Properties.Resources.i7;
            this.btnClear.Name = "btnClear";
            this.btnClear.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnClear_ItemClick);
            // 
            // lblIBETWinLost
            // 
            this.lblIBETWinLost.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.lblIBETWinLost.Appearance.Options.UseFont = true;
            this.lblIBETWinLost.Caption = "-";
            this.lblIBETWinLost.Id = 25;
            this.lblIBETWinLost.Name = "lblIBETWinLost";
            this.lblIBETWinLost.TextAlignment = System.Drawing.StringAlignment.Far;
            // 
            // lblIBETCom
            // 
            this.lblIBETCom.Caption = "-";
            this.lblIBETCom.Id = 26;
            this.lblIBETCom.Name = "lblIBETCom";
            this.lblIBETCom.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // lblIBETReject
            // 
            this.lblIBETReject.Caption = "-";
            this.lblIBETReject.Id = 27;
            this.lblIBETReject.Name = "lblIBETReject";
            this.lblIBETReject.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem4
            // 
            this.barStaticItem4.Caption = "Win:";
            this.barStaticItem4.Id = 31;
            this.barStaticItem4.Name = "barStaticItem4";
            this.barStaticItem4.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem5
            // 
            this.barStaticItem5.Caption = "Com:";
            this.barStaticItem5.Id = 32;
            this.barStaticItem5.Name = "barStaticItem5";
            this.barStaticItem5.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barStaticItem6
            // 
            this.barStaticItem6.Caption = "Reject:";
            this.barStaticItem6.Id = 33;
            this.barStaticItem6.Name = "barStaticItem6";
            this.barStaticItem6.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.rpgIbet,
            this.rpgSbobet,
            this.ribbonPageGroup3,
            this.ribbonPageGroup4});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "ribbonPage1";
            // 
            // rpgIbet
            // 
            this.rpgIbet.ItemLinks.Add(this.barStaticItem7);
            this.rpgIbet.ItemLinks.Add(this.barStaticItem8);
            this.rpgIbet.ItemLinks.Add(this.barStaticItem9);
            this.rpgIbet.ItemLinks.Add(this.lblIbetCurrentCredit);
            this.rpgIbet.ItemLinks.Add(this.lblIbetTotalMatch);
            this.rpgIbet.ItemLinks.Add(this.lblIbetLastUpdate);
            this.rpgIbet.ItemLinks.Add(this.btnIbetGetInfo);
            this.rpgIbet.ItemLinks.Add(this.barStaticItem4);
            this.rpgIbet.ItemLinks.Add(this.barStaticItem5);
            this.rpgIbet.ItemLinks.Add(this.barStaticItem6);
            this.rpgIbet.ItemLinks.Add(this.lblIBETWinLost);
            this.rpgIbet.ItemLinks.Add(this.lblIBETCom);
            this.rpgIbet.ItemLinks.Add(this.lblIBETReject);
            this.rpgIbet.Name = "rpgIbet";
            this.rpgIbet.ShowCaptionButton = false;
            this.rpgIbet.Text = "IBET";
            // 
            // rpgSbobet
            // 
            this.rpgSbobet.ItemLinks.Add(this.barStaticItem1);
            this.rpgSbobet.ItemLinks.Add(this.barStaticItem2);
            this.rpgSbobet.ItemLinks.Add(this.barStaticItem3);
            this.rpgSbobet.ItemLinks.Add(this.lblSbobetCurrentCredit);
            this.rpgSbobet.ItemLinks.Add(this.lblSbobetTotalMatch);
            this.rpgSbobet.ItemLinks.Add(this.lblSbobetLastUpdate);
            this.rpgSbobet.ItemLinks.Add(this.btnSbobetGetInfo);
            this.rpgSbobet.Name = "rpgSbobet";
            this.rpgSbobet.ShowCaptionButton = false;
            this.rpgSbobet.Text = "SUB IBET";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.ItemLinks.Add(this.lblStatus);
            this.ribbonPageGroup3.ItemLinks.Add(this.lblSameMatch);
            this.ribbonPageGroup3.ItemLinks.Add(this.lblLastUpdate);
            this.ribbonPageGroup3.ItemLinks.Add(this.btnStart);
            this.ribbonPageGroup3.ItemLinks.Add(this.btnStop);
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.ShowCaptionButton = false;
            this.ribbonPageGroup3.Text = "Status";
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.ItemLinks.Add(this.btnClear);
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.ShowCaptionButton = false;
            this.ribbonPageGroup4.Text = "Transaction";
            // 
            // splitContainerControl1
            // 
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
            this.splitContainerControl1.Horizontal = false;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 125);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.xtraTabControl1);
            this.splitContainerControl1.Panel1.Text = "Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControl2);
            this.splitContainerControl1.Panel2.Text = "Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(1130, 617);
            this.splitContainerControl1.SplitterPosition = 179;
            this.splitContainerControl1.TabIndex = 1;
            this.splitContainerControl1.Text = "splitContainerControl1";
            // 
            // xtraTabControl1
            // 
            this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControl1.Name = "xtraTabControl1";
            this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
            this.xtraTabControl1.Size = new System.Drawing.Size(1130, 433);
            this.xtraTabControl1.TabIndex = 0;
            this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage1,
            this.xtraTabPage2,
            this.xtraTabPage3,
            this.xtraTabPage6,
            this.tabBetList});
            // 
            // xtraTabPage1
            // 
            this.xtraTabPage1.Controls.Add(this.panelControl5);
            this.xtraTabPage1.Controls.Add(this.panelControl4);
            this.xtraTabPage1.Name = "xtraTabPage1";
            this.xtraTabPage1.Size = new System.Drawing.Size(1124, 407);
            this.xtraTabPage1.Text = "IBET";
            // 
            // panelControl5
            // 
            this.panelControl5.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panelControl5.Controls.Add(this.webIBET);
            this.panelControl5.Location = new System.Drawing.Point(3, 38);
            this.panelControl5.Name = "panelControl5";
            this.panelControl5.Size = new System.Drawing.Size(1118, 366);
            this.panelControl5.TabIndex = 3;
            // 
            // webIBET
            // 
            this.webIBET.Dock = System.Windows.Forms.DockStyle.Fill;
            this.webIBET.Location = new System.Drawing.Point(2, 2);
            this.webIBET.MinimumSize = new System.Drawing.Size(20, 20);
            this.webIBET.Name = "webIBET";
            this.webIBET.Size = new System.Drawing.Size(1114, 362);
            this.webIBET.TabIndex = 0;
            this.webIBET.Url = new System.Uri("http://www.653366.com", System.UriKind.Absolute);
            this.webIBET.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webIBET_DocumentCompleted);
            // 
            // panelControl4
            // 
            this.panelControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panelControl4.Controls.Add(this.cbeSignatureTemplate);
            this.panelControl4.Controls.Add(this.label1);
            this.panelControl4.Controls.Add(this.btnIBETGO);
            this.panelControl4.Controls.Add(this.txtIBETAddress);
            this.panelControl4.Location = new System.Drawing.Point(3, 3);
            this.panelControl4.Name = "panelControl4";
            this.panelControl4.Size = new System.Drawing.Size(1118, 29);
            this.panelControl4.TabIndex = 2;
            // 
            // cbeSignatureTemplate
            // 
            this.cbeSignatureTemplate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cbeSignatureTemplate.EditValue = "Choose Server";
            this.cbeSignatureTemplate.Location = new System.Drawing.Point(871, 5);
            this.cbeSignatureTemplate.Name = "cbeSignatureTemplate";
            this.cbeSignatureTemplate.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
            this.cbeSignatureTemplate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbeSignatureTemplate.Properties.DropDownRows = 10;
            this.cbeSignatureTemplate.Properties.Items.AddRange(new object[] {
            "http://www.653366.com",
            "http://www.ibet888.net"});
            this.cbeSignatureTemplate.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.cbeSignatureTemplate.Size = new System.Drawing.Size(162, 20);
            this.cbeSignatureTemplate.TabIndex = 10;
            this.cbeSignatureTemplate.SelectedIndexChanged += new System.EventHandler(this.cbeSignatureTemplate_SelectedIndexChanged);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(2, 8);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(50, 13);
            this.label1.TabIndex = 9;
            this.label1.Text = "Address:";
            // 
            // btnIBETGO
            // 
            this.btnIBETGO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnIBETGO.Location = new System.Drawing.Point(1039, 3);
            this.btnIBETGO.Name = "btnIBETGO";
            this.btnIBETGO.Size = new System.Drawing.Size(75, 23);
            this.btnIBETGO.TabIndex = 8;
            this.btnIBETGO.Text = "GO";
            this.btnIBETGO.Click += new System.EventHandler(this.btnIBETGO_Click);
            // 
            // txtIBETAddress
            // 
            this.txtIBETAddress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtIBETAddress.EditValue = "http://www.653366.com";
            this.txtIBETAddress.Location = new System.Drawing.Point(54, 5);
            this.txtIBETAddress.Name = "txtIBETAddress";
            this.txtIBETAddress.Size = new System.Drawing.Size(811, 20);
            this.txtIBETAddress.TabIndex = 7;
            // 
            // xtraTabPage2
            // 
            this.xtraTabPage2.Controls.Add(this.panelControl3);
            this.xtraTabPage2.Controls.Add(this.panelControl2);
            this.xtraTabPage2.Name = "xtraTabPage2";
            this.xtraTabPage2.Size = new System.Drawing.Size(1124, 407);
            this.xtraTabPage2.Text = "SUB";
            // 
            // panelControl3
            // 
            this.panelControl3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panelControl3.Controls.Add(this.webSBOBET);
            this.panelControl3.Location = new System.Drawing.Point(3, 38);
            this.panelControl3.Name = "panelControl3";
            this.panelControl3.Size = new System.Drawing.Size(1117, 410);
            this.panelControl3.TabIndex = 6;
            // 
            // webSBOBET
            // 
            this.webSBOBET.Dock = System.Windows.Forms.DockStyle.Fill;
            this.webSBOBET.Location = new System.Drawing.Point(2, 2);
            this.webSBOBET.MinimumSize = new System.Drawing.Size(20, 20);
            this.webSBOBET.Name = "webSBOBET";
            this.webSBOBET.Size = new System.Drawing.Size(1113, 406);
            this.webSBOBET.TabIndex = 0;
            this.webSBOBET.Url = new System.Uri("http://www.b88ag.com/", System.UriKind.Absolute);
            this.webSBOBET.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webSBOBET_DocumentCompleted);
            // 
            // panelControl2
            // 
            this.panelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panelControl2.Controls.Add(this.chooseSBOServer);
            this.panelControl2.Controls.Add(this.btnSBOBETGO);
            this.panelControl2.Controls.Add(this.txtSBOBETAddress);
            this.panelControl2.Controls.Add(this.labelControl1);
            this.panelControl2.Location = new System.Drawing.Point(3, 3);
            this.panelControl2.Name = "panelControl2";
            this.panelControl2.Size = new System.Drawing.Size(1118, 29);
            this.panelControl2.TabIndex = 5;
            // 
            // chooseSBOServer
            // 
            this.chooseSBOServer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.chooseSBOServer.EditValue = "Choose Server";
            this.chooseSBOServer.Location = new System.Drawing.Point(871, 5);
            this.chooseSBOServer.Name = "chooseSBOServer";
            this.chooseSBOServer.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
            this.chooseSBOServer.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.chooseSBOServer.Properties.DropDownRows = 10;
            this.chooseSBOServer.Properties.Items.AddRange(new object[] {
            "http://www.b88ag.com/"});
            this.chooseSBOServer.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.chooseSBOServer.Size = new System.Drawing.Size(162, 20);
            this.chooseSBOServer.TabIndex = 11;
            this.chooseSBOServer.SelectedIndexChanged += new System.EventHandler(this.chooseSBOServer_SelectedIndexChanged);
            // 
            // btnSBOBETGO
            // 
            this.btnSBOBETGO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnSBOBETGO.Location = new System.Drawing.Point(1039, 3);
            this.btnSBOBETGO.Name = "btnSBOBETGO";
            this.btnSBOBETGO.Size = new System.Drawing.Size(75, 23);
            this.btnSBOBETGO.TabIndex = 5;
            this.btnSBOBETGO.Text = "GO";
            this.btnSBOBETGO.Click += new System.EventHandler(this.btnSBOBETGO_Click);
            // 
            // txtSBOBETAddress
            // 
            this.txtSBOBETAddress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtSBOBETAddress.EditValue = "http://www.b88ag.com/";
            this.txtSBOBETAddress.Location = new System.Drawing.Point(54, 5);
            this.txtSBOBETAddress.Name = "txtSBOBETAddress";
            this.txtSBOBETAddress.Size = new System.Drawing.Size(808, 20);
            this.txtSBOBETAddress.TabIndex = 4;
            // 
            // labelControl1
            // 
            this.labelControl1.Location = new System.Drawing.Point(5, 8);
            this.labelControl1.Name = "labelControl1";
            this.labelControl1.Size = new System.Drawing.Size(43, 13);
            this.labelControl1.TabIndex = 3;
            this.labelControl1.Text = "Address:";
            // 
            // xtraTabPage3
            // 
            this.xtraTabPage3.Controls.Add(this.grdSameMatch);
            this.xtraTabPage3.Name = "xtraTabPage3";
            this.xtraTabPage3.Size = new System.Drawing.Size(1124, 407);
            this.xtraTabPage3.Text = "Live Match";
            // 
            // grdSameMatch
            // 
            this.grdSameMatch.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdSameMatch.Location = new System.Drawing.Point(0, 0);
            this.grdSameMatch.MainView = this.gridView1;
            this.grdSameMatch.Name = "grdSameMatch";
            this.grdSameMatch.Size = new System.Drawing.Size(1124, 407);
            this.grdSameMatch.TabIndex = 3;
            this.grdSameMatch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView1});
            // 
            // gridView1
            // 
            this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn15,
            this.gridColumn16,
            this.gridColumn21,
            this.gridColumn22,
            this.gridColumn14,
            this.gridColumn17,
            this.gridColumn18,
            this.gridColumn19});
            this.gridView1.GridControl = this.grdSameMatch;
            this.gridView1.Name = "gridView1";
            this.gridView1.OptionsBehavior.Editable = false;
            this.gridView1.OptionsCustomization.AllowGroup = false;
            this.gridView1.OptionsDetail.AllowZoomDetail = false;
            this.gridView1.OptionsDetail.EnableMasterViewMode = false;
            this.gridView1.OptionsDetail.ShowDetailTabs = false;
            this.gridView1.OptionsDetail.SmartDetailExpand = false;
            this.gridView1.OptionsView.ShowAutoFilterRow = true;
            this.gridView1.OptionsView.ShowGroupPanel = false;
            this.gridView1.OptionsView.ShowPreview = true;
            this.gridView1.PreviewFieldName = "LeagueName";
            this.gridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn18, DevExpress.Data.ColumnSortOrder.Ascending)});
            // 
            // gridColumn15
            // 
            this.gridColumn15.Caption = "Home Team";
            this.gridColumn15.FieldName = "HomeTeamName";
            this.gridColumn15.Name = "gridColumn15";
            this.gridColumn15.Visible = true;
            this.gridColumn15.VisibleIndex = 0;
            this.gridColumn15.Width = 367;
            // 
            // gridColumn16
            // 
            this.gridColumn16.Caption = "Away Team";
            this.gridColumn16.FieldName = "AwayTeamName";
            this.gridColumn16.Name = "gridColumn16";
            this.gridColumn16.Visible = true;
            this.gridColumn16.VisibleIndex = 3;
            this.gridColumn16.Width = 368;
            // 
            // gridColumn21
            // 
            this.gridColumn21.Caption = "HomeScore";
            this.gridColumn21.FieldName = "HomeScore";
            this.gridColumn21.Name = "gridColumn21";
            this.gridColumn21.Visible = true;
            this.gridColumn21.VisibleIndex = 1;
            // 
            // gridColumn22
            // 
            this.gridColumn22.Caption = "AwayScore";
            this.gridColumn22.FieldName = "AwayScore";
            this.gridColumn22.Name = "gridColumn22";
            this.gridColumn22.Visible = true;
            this.gridColumn22.VisibleIndex = 2;
            // 
            // gridColumn14
            // 
            this.gridColumn14.Caption = "Odd Count";
            this.gridColumn14.FieldName = "OddCount";
            this.gridColumn14.Name = "gridColumn14";
            this.gridColumn14.OptionsColumn.FixedWidth = true;
            this.gridColumn14.Visible = true;
            this.gridColumn14.VisibleIndex = 4;
            this.gridColumn14.Width = 70;
            // 
            // gridColumn17
            // 
            this.gridColumn17.Caption = "Half";
            this.gridColumn17.FieldName = "Half";
            this.gridColumn17.Name = "gridColumn17";
            this.gridColumn17.OptionsColumn.FixedWidth = true;
            this.gridColumn17.Visible = true;
            this.gridColumn17.VisibleIndex = 5;
            this.gridColumn17.Width = 60;
            // 
            // gridColumn18
            // 
            this.gridColumn18.Caption = "Minute";
            this.gridColumn18.FieldName = "Minute";
            this.gridColumn18.Name = "gridColumn18";
            this.gridColumn18.OptionsColumn.FixedWidth = true;
            this.gridColumn18.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value;
            this.gridColumn18.Visible = true;
            this.gridColumn18.VisibleIndex = 6;
            this.gridColumn18.Width = 60;
            // 
            // gridColumn19
            // 
            this.gridColumn19.Caption = "Half Time";
            this.gridColumn19.FieldName = "IsHalfTime";
            this.gridColumn19.Name = "gridColumn19";
            this.gridColumn19.OptionsColumn.FixedWidth = true;
            this.gridColumn19.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
            this.gridColumn19.Visible = true;
            this.gridColumn19.VisibleIndex = 7;
            this.gridColumn19.Width = 60;
            // 
            // xtraTabPage6
            // 
            this.xtraTabPage6.Controls.Add(this.gridNonLiveMatch);
            this.xtraTabPage6.Name = "xtraTabPage6";
            this.xtraTabPage6.Size = new System.Drawing.Size(1124, 407);
            this.xtraTabPage6.Text = "Non-Live Match";
            // 
            // gridNonLiveMatch
            // 
            this.gridNonLiveMatch.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridNonLiveMatch.Location = new System.Drawing.Point(0, 0);
            this.gridNonLiveMatch.MainView = this.gridView4;
            this.gridNonLiveMatch.Name = "gridNonLiveMatch";
            this.gridNonLiveMatch.Size = new System.Drawing.Size(1124, 407);
            this.gridNonLiveMatch.TabIndex = 4;
            this.gridNonLiveMatch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView4});
            // 
            // gridView4
            // 
            this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn20,
            this.gridColumn32,
            this.gridColumn35});
            this.gridView4.GridControl = this.gridNonLiveMatch;
            this.gridView4.Name = "gridView4";
            this.gridView4.OptionsBehavior.Editable = false;
            this.gridView4.OptionsCustomization.AllowGroup = false;
            this.gridView4.OptionsDetail.AllowZoomDetail = false;
            this.gridView4.OptionsDetail.EnableMasterViewMode = false;
            this.gridView4.OptionsDetail.ShowDetailTabs = false;
            this.gridView4.OptionsDetail.SmartDetailExpand = false;
            this.gridView4.OptionsView.ShowAutoFilterRow = true;
            this.gridView4.OptionsView.ShowGroupPanel = false;
            this.gridView4.OptionsView.ShowPreview = true;
            this.gridView4.PreviewFieldName = "LeagueName";
            // 
            // gridColumn20
            // 
            this.gridColumn20.Caption = "Home Team";
            this.gridColumn20.FieldName = "HomeTeamName";
            this.gridColumn20.Name = "gridColumn20";
            this.gridColumn20.Visible = true;
            this.gridColumn20.VisibleIndex = 0;
            this.gridColumn20.Width = 367;
            // 
            // gridColumn32
            // 
            this.gridColumn32.Caption = "Away Team";
            this.gridColumn32.FieldName = "AwayTeamName";
            this.gridColumn32.Name = "gridColumn32";
            this.gridColumn32.Visible = true;
            this.gridColumn32.VisibleIndex = 1;
            this.gridColumn32.Width = 368;
            // 
            // gridColumn35
            // 
            this.gridColumn35.Caption = "Odd Count";
            this.gridColumn35.FieldName = "OddCount";
            this.gridColumn35.Name = "gridColumn35";
            this.gridColumn35.OptionsColumn.FixedWidth = true;
            this.gridColumn35.Visible = true;
            this.gridColumn35.VisibleIndex = 2;
            this.gridColumn35.Width = 70;
            // 
            // tabBetList
            // 
            this.tabBetList.Controls.Add(this.grdBetList);
            this.tabBetList.Name = "tabBetList";
            this.tabBetList.Size = new System.Drawing.Size(1124, 407);
            this.tabBetList.Text = "SUB Bet List";
            // 
            // grdBetList
            // 
            this.grdBetList.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdBetList.Location = new System.Drawing.Point(0, 0);
            this.grdBetList.MainView = this.gridView3;
            this.grdBetList.Name = "grdBetList";
            this.grdBetList.Size = new System.Drawing.Size(1124, 407);
            this.grdBetList.TabIndex = 4;
            this.grdBetList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView3});
            // 
            // gridView3
            // 
            this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn9,
            this.gridColumn11,
            this.gridColumn12,
            this.gridColumn23,
            this.gridColumn24,
            this.gridColumn25,
            this.gridColumn27,
            this.gridColumn29,
            this.gridColumn28,
            this.gridColumn26,
            this.gridColumn30,
            this.gridColumn31});
            this.gridView3.GridControl = this.grdBetList;
            this.gridView3.Name = "gridView3";
            this.gridView3.OptionsBehavior.Editable = false;
            this.gridView3.OptionsCustomization.AllowGroup = false;
            this.gridView3.OptionsDetail.AllowZoomDetail = false;
            this.gridView3.OptionsDetail.EnableMasterViewMode = false;
            this.gridView3.OptionsDetail.ShowDetailTabs = false;
            this.gridView3.OptionsDetail.SmartDetailExpand = false;
            this.gridView3.OptionsView.ShowAutoFilterRow = true;
            this.gridView3.OptionsView.ShowGroupPanel = false;
            this.gridView3.OptionsView.ShowPreview = true;
            this.gridView3.PreviewFieldName = "League";
            this.gridView3.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn25, DevExpress.Data.ColumnSortOrder.Descending)});
            // 
            // gridColumn9
            // 
            this.gridColumn9.Caption = "Home Team";
            this.gridColumn9.FieldName = "HomeTeamName";
            this.gridColumn9.Name = "gridColumn9";
            this.gridColumn9.Visible = true;
            this.gridColumn9.VisibleIndex = 3;
            this.gridColumn9.Width = 198;
            // 
            // gridColumn11
            // 
            this.gridColumn11.Caption = "Away Team";
            this.gridColumn11.FieldName = "AwayTeamName";
            this.gridColumn11.Name = "gridColumn11";
            this.gridColumn11.Visible = true;
            this.gridColumn11.VisibleIndex = 5;
            this.gridColumn11.Width = 214;
            // 
            // gridColumn12
            // 
            this.gridColumn12.Caption = "Score";
            this.gridColumn12.FieldName = "Score";
            this.gridColumn12.Name = "gridColumn12";
            this.gridColumn12.Visible = true;
            this.gridColumn12.VisibleIndex = 4;
            this.gridColumn12.Width = 40;
            // 
            // gridColumn23
            // 
            this.gridColumn23.Caption = "Odd";
            this.gridColumn23.FieldName = "Odd";
            this.gridColumn23.Name = "gridColumn23";
            this.gridColumn23.OptionsColumn.FixedWidth = true;
            this.gridColumn23.Visible = true;
            this.gridColumn23.VisibleIndex = 8;
            this.gridColumn23.Width = 40;
            // 
            // gridColumn24
            // 
            this.gridColumn24.Caption = "Odd Value";
            this.gridColumn24.FieldName = "OddValue";
            this.gridColumn24.Name = "gridColumn24";
            this.gridColumn24.OptionsColumn.FixedWidth = true;
            this.gridColumn24.Visible = true;
            this.gridColumn24.VisibleIndex = 9;
            this.gridColumn24.Width = 60;
            // 
            // gridColumn25
            // 
            this.gridColumn25.Caption = "Time";
            this.gridColumn25.DisplayFormat.FormatString = "hh:mm:ss";
            this.gridColumn25.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn25.FieldName = "DateTime";
            this.gridColumn25.Name = "gridColumn25";
            this.gridColumn25.OptionsColumn.FixedWidth = true;
            this.gridColumn25.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value;
            this.gridColumn25.Visible = true;
            this.gridColumn25.VisibleIndex = 11;
            this.gridColumn25.Width = 80;
            // 
            // gridColumn27
            // 
            this.gridColumn27.Caption = "Ref ID";
            this.gridColumn27.FieldName = "RefID";
            this.gridColumn27.Name = "gridColumn27";
            this.gridColumn27.Visible = true;
            this.gridColumn27.VisibleIndex = 1;
            this.gridColumn27.Width = 68;
            // 
            // gridColumn29
            // 
            this.gridColumn29.Caption = "Choose";
            this.gridColumn29.FieldName = "Choice";
            this.gridColumn29.Name = "gridColumn29";
            this.gridColumn29.Visible = true;
            this.gridColumn29.VisibleIndex = 6;
            this.gridColumn29.Width = 100;
            // 
            // gridColumn28
            // 
            this.gridColumn28.Caption = "Odd Type";
            this.gridColumn28.FieldName = "Type";
            this.gridColumn28.Name = "gridColumn28";
            this.gridColumn28.Visible = true;
            this.gridColumn28.VisibleIndex = 7;
            this.gridColumn28.Width = 103;
            // 
            // gridColumn26
            // 
            this.gridColumn26.Caption = "Stake";
            this.gridColumn26.FieldName = "Stake";
            this.gridColumn26.Name = "gridColumn26";
            this.gridColumn26.Visible = true;
            this.gridColumn26.VisibleIndex = 10;
            this.gridColumn26.Width = 42;
            // 
            // gridColumn30
            // 
            this.gridColumn30.Caption = "Account";
            this.gridColumn30.FieldName = "Account";
            this.gridColumn30.Name = "gridColumn30";
            this.gridColumn30.Visible = true;
            this.gridColumn30.VisibleIndex = 2;
            this.gridColumn30.Width = 46;
            // 
            // gridColumn31
            // 
            this.gridColumn31.Caption = "ID";
            this.gridColumn31.FieldName = "ID";
            this.gridColumn31.Name = "gridColumn31";
            this.gridColumn31.Visible = true;
            this.gridColumn31.VisibleIndex = 0;
            this.gridColumn31.Width = 30;
            // 
            // xtraTabControl2
            // 
            this.xtraTabControl2.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.xtraTabControl2.Appearance.Options.UseBackColor = true;
            this.xtraTabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControl2.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControl2.Name = "xtraTabControl2";
            this.xtraTabControl2.SelectedTabPage = this.xtraTabPage4;
            this.xtraTabControl2.Size = new System.Drawing.Size(1130, 179);
            this.xtraTabControl2.TabIndex = 1;
            this.xtraTabControl2.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage4,
            this.xtraTabPage5});
            // 
            // xtraTabPage4
            // 
            this.xtraTabPage4.Controls.Add(this.groupControl2);
            this.xtraTabPage4.Controls.Add(this.groupControl1);
            this.xtraTabPage4.Controls.Add(this.groupControl5);
            this.xtraTabPage4.Controls.Add(this.groupControl4);
            this.xtraTabPage4.Controls.Add(this.groupControl6);
            this.xtraTabPage4.Name = "xtraTabPage4";
            this.xtraTabPage4.Size = new System.Drawing.Size(1124, 153);
            this.xtraTabPage4.Text = "Settings";
            // 
            // groupControl2
            // 
            this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Left)));
            this.groupControl2.Controls.Add(this.txtTransactionTimeSpan);
            this.groupControl2.Controls.Add(this.labelControl10);
            this.groupControl2.Controls.Add(this.txtMaxTimePerHalf);
            this.groupControl2.Controls.Add(this.labelControl7);
            this.groupControl2.Controls.Add(this.chbAllowHalftime);
            this.groupControl2.Location = new System.Drawing.Point(209, 3);
            this.groupControl2.Name = "groupControl2";
            this.groupControl2.Size = new System.Drawing.Size(200, 147);
            this.groupControl2.TabIndex = 14;
            this.groupControl2.Text = "Time - Type Settings";
            // 
            // txtTransactionTimeSpan
            // 
            this.txtTransactionTimeSpan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtTransactionTimeSpan.EditValue = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.txtTransactionTimeSpan.Location = new System.Drawing.Point(123, 80);
            this.txtTransactionTimeSpan.Name = "txtTransactionTimeSpan";
            this.txtTransactionTimeSpan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.txtTransactionTimeSpan.Properties.IsFloatValue = false;
            this.txtTransactionTimeSpan.Properties.Mask.EditMask = "N00";
            this.txtTransactionTimeSpan.Size = new System.Drawing.Size(72, 20);
            this.txtTransactionTimeSpan.TabIndex = 9;
            // 
            // labelControl10
            // 
            this.labelControl10.Location = new System.Drawing.Point(5, 81);
            this.labelControl10.Name = "labelControl10";
            this.labelControl10.Size = new System.Drawing.Size(112, 13);
            this.labelControl10.TabIndex = 8;
            this.labelControl10.Text = "Transaction Time Span:";
            // 
            // txtMaxTimePerHalf
            // 
            this.txtMaxTimePerHalf.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtMaxTimePerHalf.EditValue = new decimal(new int[] {
            45,
            0,
            0,
            0});
            this.txtMaxTimePerHalf.Enabled = false;
            this.txtMaxTimePerHalf.Location = new System.Drawing.Point(123, 50);
            this.txtMaxTimePerHalf.Name = "txtMaxTimePerHalf";
            this.txtMaxTimePerHalf.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.txtMaxTimePerHalf.Properties.IsFloatValue = false;
            this.txtMaxTimePerHalf.Properties.Mask.EditMask = "N00";
            this.txtMaxTimePerHalf.Size = new System.Drawing.Size(72, 20);
            this.txtMaxTimePerHalf.TabIndex = 7;
            // 
            // labelControl7
            // 
            this.labelControl7.Location = new System.Drawing.Point(5, 53);
            this.labelControl7.Name = "labelControl7";
            this.labelControl7.Size = new System.Drawing.Size(90, 13);
            this.labelControl7.TabIndex = 6;
            this.labelControl7.Text = "Max Time Per Half:";
            // 
            // chbAllowHalftime
            // 
            this.chbAllowHalftime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.chbAllowHalftime.EditValue = true;
            this.chbAllowHalftime.Enabled = false;
            this.chbAllowHalftime.Location = new System.Drawing.Point(5, 26);
            this.chbAllowHalftime.Name = "chbAllowHalftime";
            this.chbAllowHalftime.Properties.Caption = "Allow Halftime";
            this.chbAllowHalftime.Size = new System.Drawing.Size(190, 19);
            this.chbAllowHalftime.TabIndex = 5;
            // 
            // groupControl1
            // 
            this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Left)));
            this.groupControl1.Controls.Add(this.chkProxy);
            this.groupControl1.Controls.Add(this.btnStatus);
            this.groupControl1.Controls.Add(this.btnSetUpdateInterval);
            this.groupControl1.Controls.Add(this.txtSBOBETUpdateInterval);
            this.groupControl1.Controls.Add(this.labelControl3);
            this.groupControl1.Controls.Add(this.txtIBETUpdateInterval);
            this.groupControl1.Controls.Add(this.labelControl4);
            this.groupControl1.Location = new System.Drawing.Point(415, 3);
            this.groupControl1.Name = "groupControl1";
            this.groupControl1.Size = new System.Drawing.Size(200, 147);
            this.groupControl1.TabIndex = 13;
            this.groupControl1.Text = "Data Settings";
            // 
            // chkProxy
            // 
            this.chkProxy.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.chkProxy.EditValue = true;
            this.chkProxy.Location = new System.Drawing.Point(5, 108);
            this.chkProxy.Name = "chkProxy";
            this.chkProxy.Properties.Caption = "Use Proxy";
            this.chkProxy.Size = new System.Drawing.Size(190, 19);
            this.chkProxy.TabIndex = 33;
            // 
            // btnStatus
            // 
            this.btnStatus.Location = new System.Drawing.Point(6, 77);
            this.btnStatus.Name = "btnStatus";
            this.btnStatus.Size = new System.Drawing.Size(89, 23);
            this.btnStatus.TabIndex = 31;
            this.btnStatus.Text = "Show status";
            this.btnStatus.Click += new System.EventHandler(this.btnStatus_Click_1);
            // 
            // btnSetUpdateInterval
            // 
            this.btnSetUpdateInterval.Location = new System.Drawing.Point(106, 77);
            this.btnSetUpdateInterval.Name = "btnSetUpdateInterval";
            this.btnSetUpdateInterval.Size = new System.Drawing.Size(89, 23);
            this.btnSetUpdateInterval.TabIndex = 6;
            this.btnSetUpdateInterval.Text = "Set Interval";
            this.btnSetUpdateInterval.Click += new System.EventHandler(this.btnSetUpdateInterval_Click);
            // 
            // txtSBOBETUpdateInterval
            // 
            this.txtSBOBETUpdateInterval.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtSBOBETUpdateInterval.EditValue = new decimal(new int[] {
            3,
            0,
            0,
            0});
            this.txtSBOBETUpdateInterval.Location = new System.Drawing.Point(132, 51);
            this.txtSBOBETUpdateInterval.Name = "txtSBOBETUpdateInterval";
            this.txtSBOBETUpdateInterval.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.txtSBOBETUpdateInterval.Properties.IsFloatValue = false;
            this.txtSBOBETUpdateInterval.Properties.Mask.EditMask = "N00";
            this.txtSBOBETUpdateInterval.Properties.MaxValue = new decimal(new int[] {
            12,
            0,
            0,
            0});
            this.txtSBOBETUpdateInterval.Properties.MinValue = new decimal(new int[] {
            2,
            0,
            0,
            0});
            this.txtSBOBETUpdateInterval.Size = new System.Drawing.Size(63, 20);
            this.txtSBOBETUpdateInterval.TabIndex = 5;
            // 
            // labelControl3
            // 
            this.labelControl3.Location = new System.Drawing.Point(5, 54);
            this.labelControl3.Name = "labelControl3";
            this.labelControl3.Size = new System.Drawing.Size(102, 13);
            this.labelControl3.TabIndex = 4;
            this.labelControl3.Text = "SUB Update Interval:";
            // 
            // txtIBETUpdateInterval
            // 
            this.txtIBETUpdateInterval.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtIBETUpdateInterval.EditValue = new decimal(new int[] {
            8,
            0,
            0,
            0});
            this.txtIBETUpdateInterval.Location = new System.Drawing.Point(132, 25);
            this.txtIBETUpdateInterval.Name = "txtIBETUpdateInterval";
            this.txtIBETUpdateInterval.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.txtIBETUpdateInterval.Properties.IsFloatValue = false;
            this.txtIBETUpdateInterval.Properties.Mask.EditMask = "N00";
            this.txtIBETUpdateInterval.Properties.MaxValue = new decimal(new int[] {
            15,
            0,
            0,
            0});
            this.txtIBETUpdateInterval.Properties.MinValue = new decimal(new int[] {
            2,
            0,
            0,
            0});
            this.txtIBETUpdateInterval.Size = new System.Drawing.Size(63, 20);
            this.txtIBETUpdateInterval.TabIndex = 1;
            // 
            // labelControl4
            // 
            this.labelControl4.Location = new System.Drawing.Point(5, 28);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(105, 13);
            this.labelControl4.TabIndex = 0;
            this.labelControl4.Text = "IBET Update Interval:";
            // 
            // groupControl5
            // 
            this.groupControl5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Left)));
            this.groupControl5.Controls.Add(this.chkEnable);
            this.groupControl5.Controls.Add(this.chkFollowType);
            this.groupControl5.Controls.Add(this.txtLowestOddValue);
            this.groupControl5.Controls.Add(this.labelControl9);
            this.groupControl5.Controls.Add(this.checkEdit6);
            this.groupControl5.Controls.Add(this.checkEdit5);
            this.groupControl5.Controls.Add(this.checkEdit7);
            this.groupControl5.Controls.Add(this.checkEdit12);
            this.groupControl5.Controls.Add(this.checkEdit4);
            this.groupControl5.Controls.Add(this.checkEdit3);
            this.groupControl5.Location = new System.Drawing.Point(3, 3);
            this.groupControl5.Name = "groupControl5";
            this.groupControl5.Size = new System.Drawing.Size(200, 147);
            this.groupControl5.TabIndex = 13;
            this.groupControl5.Text = "Trading Settings";
            // 
            // chkEnable
            // 
            this.chkEnable.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.chkEnable.EditValue = true;
            this.chkEnable.Location = new System.Drawing.Point(5, 123);
            this.chkEnable.Name = "chkEnable";
            this.chkEnable.Properties.Caption = "Enable";
            this.chkEnable.Size = new System.Drawing.Size(90, 19);
            this.chkEnable.TabIndex = 25;
            // 
            // chkFollowType
            // 
            this.chkFollowType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.chkFollowType.EditValue = true;
            this.chkFollowType.Location = new System.Drawing.Point(5, 79);
            this.chkFollowType.Name = "chkFollowType";
            this.chkFollowType.Properties.Caption = "Follow / Unfollow";
            this.chkFollowType.Size = new System.Drawing.Size(190, 19);
            this.chkFollowType.TabIndex = 24;
            // 
            // txtLowestOddValue
            // 
            this.txtLowestOddValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtLowestOddValue.EditValue = new decimal(new int[] {
            5,
            0,
            0,
            65536});
            this.txtLowestOddValue.Location = new System.Drawing.Point(110, 103);
            this.txtLowestOddValue.Name = "txtLowestOddValue";
            this.txtLowestOddValue.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.txtLowestOddValue.Properties.Increment = new decimal(new int[] {
            1,
            0,
            0,
            65536});
            this.txtLowestOddValue.Properties.MaxValue = new decimal(new int[] {
            99,
            0,
            0,
            131072});
            this.txtLowestOddValue.Properties.MinValue = new decimal(new int[] {
            4,
            0,
            0,
            65536});
            this.txtLowestOddValue.Size = new System.Drawing.Size(85, 20);
            this.txtLowestOddValue.TabIndex = 12;
            // 
            // labelControl9
            // 
            this.labelControl9.Enabled = false;
            this.labelControl9.Location = new System.Drawing.Point(8, 105);
            this.labelControl9.Name = "labelControl9";
            this.labelControl9.Size = new System.Drawing.Size(90, 13);
            this.labelControl9.TabIndex = 11;
            this.labelControl9.Text = "Lowest Odd Value:";
            // 
            // checkEdit6
            // 
            this.checkEdit6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.checkEdit6.EditValue = true;
            this.checkEdit6.Enabled = false;
            this.checkEdit6.Location = new System.Drawing.Point(5, 352);
            this.checkEdit6.Name = "checkEdit6";
            this.checkEdit6.Properties.Caption = "Non-Live";
            this.checkEdit6.Size = new System.Drawing.Size(190, 19);
            this.checkEdit6.TabIndex = 8;
            // 
            // checkEdit5
            // 
            this.checkEdit5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.checkEdit5.EditValue = true;
            this.checkEdit5.Enabled = false;
            this.checkEdit5.Location = new System.Drawing.Point(5, 327);
            this.checkEdit5.Name = "checkEdit5";
            this.checkEdit5.Properties.Caption = "Live";
            this.checkEdit5.Size = new System.Drawing.Size(190, 19);
            this.checkEdit5.TabIndex = 7;
            // 
            // checkEdit7
            // 
            this.checkEdit7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.checkEdit7.EditValue = true;
            this.checkEdit7.Enabled = false;
            this.checkEdit7.Location = new System.Drawing.Point(5, 52);
            this.checkEdit7.Name = "checkEdit7";
            this.checkEdit7.Properties.Caption = "Over/Under from min 30";
            this.checkEdit7.Size = new System.Drawing.Size(190, 19);
            this.checkEdit7.TabIndex = 9;
            // 
            // checkEdit12
            // 
            this.checkEdit12.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.checkEdit12.Location = new System.Drawing.Point(5, 302);
            this.checkEdit12.Name = "checkEdit12";
            this.checkEdit12.Properties.Caption = "IBET Under mode";
            this.checkEdit12.Size = new System.Drawing.Size(190, 19);
            this.checkEdit12.TabIndex = 23;
            // 
            // checkEdit4
            // 
            this.checkEdit4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.checkEdit4.EditValue = true;
            this.checkEdit4.Enabled = false;
            this.checkEdit4.Location = new System.Drawing.Point(115, 26);
            this.checkEdit4.Name = "checkEdit4";
            this.checkEdit4.Properties.Caption = "Over/Under";
            this.checkEdit4.Size = new System.Drawing.Size(80, 19);
            this.checkEdit4.TabIndex = 6;
            // 
            // checkEdit3
            // 
            this.checkEdit3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.checkEdit3.EditValue = true;
            this.checkEdit3.Enabled = false;
            this.checkEdit3.Location = new System.Drawing.Point(5, 26);
            this.checkEdit3.Name = "checkEdit3";
            this.checkEdit3.Properties.Caption = "Handicap";
            this.checkEdit3.Size = new System.Drawing.Size(90, 19);
            this.checkEdit3.TabIndex = 5;
            // 
            // groupControl4
            // 
            this.groupControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Left)));
            this.groupControl4.Controls.Add(this.chkFollowPercent);
            this.groupControl4.Controls.Add(this.txtIBETFixedStake);
            this.groupControl4.Controls.Add(this.labelControl11);
            this.groupControl4.Controls.Add(this.labelControl6);
            this.groupControl4.Controls.Add(this.txtAllowTradeMinValue);
            this.groupControl4.Controls.Add(this.txtFollowPercent);
            this.groupControl4.Location = new System.Drawing.Point(621, 3);
            this.groupControl4.Name = "groupControl4";
            this.groupControl4.Size = new System.Drawing.Size(200, 147);
            this.groupControl4.TabIndex = 12;
            this.groupControl4.Text = "Stake Settings";
            // 
            // chkFollowPercent
            // 
            this.chkFollowPercent.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.chkFollowPercent.EditValue = true;
            this.chkFollowPercent.Location = new System.Drawing.Point(3, 52);
            this.chkFollowPercent.Name = "chkFollowPercent";
            this.chkFollowPercent.Properties.Caption = "Follow Percent (%)";
            this.chkFollowPercent.Size = new System.Drawing.Size(123, 19);
            this.chkFollowPercent.TabIndex = 34;
            // 
            // txtIBETFixedStake
            // 
            this.txtIBETFixedStake.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtIBETFixedStake.EditValue = new decimal(new int[] {
            5,
            0,
            0,
            0});
            this.txtIBETFixedStake.Location = new System.Drawing.Point(132, 25);
            this.txtIBETFixedStake.Name = "txtIBETFixedStake";
            this.txtIBETFixedStake.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.txtIBETFixedStake.Properties.IsFloatValue = false;
            this.txtIBETFixedStake.Properties.Mask.EditMask = "N00";
            this.txtIBETFixedStake.Size = new System.Drawing.Size(63, 20);
            this.txtIBETFixedStake.TabIndex = 1;
            // 
            // labelControl11
            // 
            this.labelControl11.Location = new System.Drawing.Point(7, 83);
            this.labelControl11.Name = "labelControl11";
            this.labelControl11.Size = new System.Drawing.Size(117, 13);
            this.labelControl11.TabIndex = 33;
            this.labelControl11.Text = "Minimum Stake Following";
            // 
            // labelControl6
            // 
            this.labelControl6.Location = new System.Drawing.Point(5, 28);
            this.labelControl6.Name = "labelControl6";
            this.labelControl6.Size = new System.Drawing.Size(85, 13);
            this.labelControl6.TabIndex = 0;
            this.labelControl6.Text = "IBET Fixed Stake:";
            // 
            // txtAllowTradeMinValue
            // 
            this.txtAllowTradeMinValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtAllowTradeMinValue.EditValue = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.txtAllowTradeMinValue.Location = new System.Drawing.Point(132, 80);
            this.txtAllowTradeMinValue.Name = "txtAllowTradeMinValue";
            this.txtAllowTradeMinValue.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.txtAllowTradeMinValue.Properties.MaxValue = new decimal(new int[] {
            5000,
            0,
            0,
            0});
            this.txtAllowTradeMinValue.Properties.MinValue = new decimal(new int[] {
            5,
            0,
            0,
            0});
            this.txtAllowTradeMinValue.Size = new System.Drawing.Size(63, 20);
            this.txtAllowTradeMinValue.TabIndex = 32;
            // 
            // txtFollowPercent
            // 
            this.txtFollowPercent.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtFollowPercent.EditValue = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.txtFollowPercent.Location = new System.Drawing.Point(132, 51);
            this.txtFollowPercent.Name = "txtFollowPercent";
            this.txtFollowPercent.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.txtFollowPercent.Properties.MaxValue = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.txtFollowPercent.Properties.MinValue = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.txtFollowPercent.Size = new System.Drawing.Size(63, 20);
            this.txtFollowPercent.TabIndex = 10;
            // 
            // groupControl6
            // 
            this.groupControl6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Left)));
            this.groupControl6.Controls.Add(this.txtListFollowAccounts);
            this.groupControl6.Location = new System.Drawing.Point(827, 3);
            this.groupControl6.Name = "groupControl6";
            this.groupControl6.Size = new System.Drawing.Size(293, 147);
            this.groupControl6.TabIndex = 19;
            this.groupControl6.Text = "Following Accounts";
            // 
            // txtListFollowAccounts
            // 
            this.txtListFollowAccounts.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtListFollowAccounts.EditValue = "FOLLOW HERE";
            this.txtListFollowAccounts.Location = new System.Drawing.Point(5, 25);
            this.txtListFollowAccounts.Name = "txtListFollowAccounts";
            this.txtListFollowAccounts.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 14F);
            this.txtListFollowAccounts.Properties.Appearance.Options.UseFont = true;
            this.txtListFollowAccounts.Size = new System.Drawing.Size(283, 117);
            this.txtListFollowAccounts.TabIndex = 20;
            // 
            // xtraTabPage5
            // 
            this.xtraTabPage5.Controls.Add(this.grdTransaction);
            this.xtraTabPage5.Name = "xtraTabPage5";
            this.xtraTabPage5.Size = new System.Drawing.Size(1124, 153);
            this.xtraTabPage5.Text = "Live Transaction";
            // 
            // grdTransaction
            // 
            this.grdTransaction.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdTransaction.Location = new System.Drawing.Point(0, 0);
            this.grdTransaction.MainView = this.gridView2;
            this.grdTransaction.Name = "grdTransaction";
            this.grdTransaction.Size = new System.Drawing.Size(1124, 153);
            this.grdTransaction.TabIndex = 3;
            this.grdTransaction.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView2});
            // 
            // gridView2
            // 
            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn1,
            this.gridColumn2,
            this.gridColumn3,
            this.gridColumn6,
            this.gridColumn4,
            this.gridColumn5,
            this.gridColumn7,
            this.gridColumn8,
            this.gridColumn10,
            this.gridColumn13,
            this.gridColumn39});
            this.gridView2.GridControl = this.grdTransaction;
            this.gridView2.Name = "gridView2";
            this.gridView2.OptionsBehavior.Editable = false;
            this.gridView2.OptionsCustomization.AllowGroup = false;
            this.gridView2.OptionsView.AutoCalcPreviewLineCount = true;
            this.gridView2.OptionsView.ShowAutoFilterRow = true;
            this.gridView2.OptionsView.ShowFooter = true;
            this.gridView2.OptionsView.ShowGroupPanel = false;
            this.gridView2.OptionsView.ShowPreview = true;
            this.gridView2.PreviewFieldName = "Note";
            this.gridView2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn13, DevExpress.Data.ColumnSortOrder.Descending)});
            // 
            // gridColumn1
            // 
            this.gridColumn1.Caption = "ID";
            this.gridColumn1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.gridColumn1.FieldName = "ID";
            this.gridColumn1.Name = "gridColumn1";
            this.gridColumn1.OptionsColumn.FixedWidth = true;
            this.gridColumn1.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
            this.gridColumn1.Visible = true;
            this.gridColumn1.VisibleIndex = 0;
            this.gridColumn1.Width = 50;
            // 
            // gridColumn2
            // 
            this.gridColumn2.Caption = "Home Team";
            this.gridColumn2.FieldName = "HomeTeamName";
            this.gridColumn2.Name = "gridColumn2";
            this.gridColumn2.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn2.Visible = true;
            this.gridColumn2.VisibleIndex = 2;
            this.gridColumn2.Width = 187;
            // 
            // gridColumn3
            // 
            this.gridColumn3.Caption = "Away Team";
            this.gridColumn3.FieldName = "AwayTeamName";
            this.gridColumn3.Name = "gridColumn3";
            this.gridColumn3.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn3.Visible = true;
            this.gridColumn3.VisibleIndex = 3;
            this.gridColumn3.Width = 187;
            // 
            // gridColumn6
            // 
            this.gridColumn6.Caption = "Type";
            this.gridColumn6.FieldName = "OddType";
            this.gridColumn6.Name = "gridColumn6";
            this.gridColumn6.OptionsColumn.FixedWidth = true;
            this.gridColumn6.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn6.Visible = true;
            this.gridColumn6.VisibleIndex = 4;
            this.gridColumn6.Width = 180;
            // 
            // gridColumn4
            // 
            this.gridColumn4.Caption = "Odd";
            this.gridColumn4.FieldName = "OddKindValue";
            this.gridColumn4.Name = "gridColumn4";
            this.gridColumn4.OptionsColumn.FixedWidth = true;
            this.gridColumn4.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn4.Visible = true;
            this.gridColumn4.VisibleIndex = 5;
            // 
            // gridColumn5
            // 
            this.gridColumn5.Caption = "Value";
            this.gridColumn5.FieldName = "OddValue";
            this.gridColumn5.Name = "gridColumn5";
            this.gridColumn5.OptionsColumn.FixedWidth = true;
            this.gridColumn5.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn5.Visible = true;
            this.gridColumn5.VisibleIndex = 6;
            this.gridColumn5.Width = 80;
            // 
            // gridColumn7
            // 
            this.gridColumn7.Caption = "Stake";
            this.gridColumn7.FieldName = "Stake";
            this.gridColumn7.Name = "gridColumn7";
            this.gridColumn7.OptionsColumn.FixedWidth = true;
            this.gridColumn7.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn7.Visible = true;
            this.gridColumn7.VisibleIndex = 7;
            this.gridColumn7.Width = 100;
            // 
            // gridColumn8
            // 
            this.gridColumn8.Caption = "I Allow";
            this.gridColumn8.FieldName = "IBETAllow";
            this.gridColumn8.Name = "gridColumn8";
            this.gridColumn8.OptionsColumn.FixedWidth = true;
            this.gridColumn8.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
            this.gridColumn8.Visible = true;
            this.gridColumn8.VisibleIndex = 8;
            this.gridColumn8.Width = 50;
            // 
            // gridColumn10
            // 
            this.gridColumn10.Caption = "I Trade";
            this.gridColumn10.FieldName = "IBETTrade";
            this.gridColumn10.Name = "gridColumn10";
            this.gridColumn10.OptionsColumn.FixedWidth = true;
            this.gridColumn10.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
            this.gridColumn10.Visible = true;
            this.gridColumn10.VisibleIndex = 9;
            this.gridColumn10.Width = 50;
            // 
            // gridColumn13
            // 
            this.gridColumn13.Caption = "DateTime";
            this.gridColumn13.DisplayFormat.FormatString = "hh:mm:ss";
            this.gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn13.FieldName = "DateTime";
            this.gridColumn13.Name = "gridColumn13";
            this.gridColumn13.OptionsColumn.FixedWidth = true;
            this.gridColumn13.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value;
            this.gridColumn13.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count)});
            this.gridColumn13.UnboundType = DevExpress.Data.UnboundColumnType.DateTime;
            this.gridColumn13.Visible = true;
            this.gridColumn13.VisibleIndex = 10;
            this.gridColumn13.Width = 80;
            // 
            // gridColumn39
            // 
            this.gridColumn39.Caption = "Follow Ref";
            this.gridColumn39.FieldName = "FollowRef";
            this.gridColumn39.Name = "gridColumn39";
            this.gridColumn39.Visible = true;
            this.gridColumn39.VisibleIndex = 1;
            // 
            // labelControl5
            // 
            this.labelControl5.Location = new System.Drawing.Point(5, 9);
            this.labelControl5.Name = "labelControl5";
            this.labelControl5.Size = new System.Drawing.Size(0, 13);
            this.labelControl5.TabIndex = 6;
            this.labelControl5.Text = "Address:";
            // 
            // FollowSub
            // 
            this.ClientSize = new System.Drawing.Size(1130, 742);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.ribbonControl1);
            this.Icon = global::iBet.App.Properties.Resources._2;
            this.Name = "FollowSub";
            this.Ribbon = this.ribbonControl1;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "IBET follow SUB";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TerminalFormIBETSBO_FormClosing);
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
            this.xtraTabControl1.ResumeLayout(false);
            this.xtraTabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
            this.panelControl5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
            this.panelControl4.ResumeLayout(false);
            this.panelControl4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cbeSignatureTemplate.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtIBETAddress.Properties)).EndInit();
            this.xtraTabPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
            this.panelControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
            this.panelControl2.ResumeLayout(false);
            this.panelControl2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chooseSBOServer.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtSBOBETAddress.Properties)).EndInit();
            this.xtraTabPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdSameMatch)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
            this.xtraTabPage6.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridNonLiveMatch)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
            this.tabBetList.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdBetList)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).EndInit();
            this.xtraTabControl2.ResumeLayout(false);
            this.xtraTabPage4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
            this.groupControl2.ResumeLayout(false);
            this.groupControl2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtTransactionTimeSpan.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtMaxTimePerHalf.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chbAllowHalftime.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
            this.groupControl1.ResumeLayout(false);
            this.groupControl1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chkProxy.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtSBOBETUpdateInterval.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtIBETUpdateInterval.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
            this.groupControl5.ResumeLayout(false);
            this.groupControl5.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chkEnable.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkFollowType.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtLowestOddValue.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit12.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
            this.groupControl4.ResumeLayout(false);
            this.groupControl4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chkFollowPercent.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtIBETFixedStake.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtAllowTradeMinValue.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtFollowPercent.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
            this.groupControl6.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.txtListFollowAccounts.Properties)).EndInit();
            this.xtraTabPage5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdTransaction)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
            this.ResumeLayout(false);

        }