public IActionResult LoadData <T1>(string Url, bool?type, int?LocationId)
        {
            SortGrid sortEmployee = new SortGrid();
            var      start        = Request.Form["start"].FirstOrDefault();
            var      length       = Request.Form["length"].FirstOrDefault();

            sortEmployee.SortColumn          = Request.Form["columns[" + Request.Form["order[0][column]"].FirstOrDefault() + "][name]"].FirstOrDefault();
            sortEmployee.SortColumnDirection = Request.Form["order[0][dir]"].FirstOrDefault();
            var search = Request.Form["search[value]"].FirstOrDefault();

            sortEmployee.Skip = start != null?Convert.ToInt32(start) : 0;

            sortEmployee.PageSize = length != null?Convert.ToInt32(length) : 0;

            sortEmployee.Search     = string.IsNullOrEmpty(search)?null:search;
            sortEmployee.IsActive   = type;
            sortEmployee.LocationId = LocationId;
            HttpClient          client       = _service.GetService();
            string              stringData   = JsonConvert.SerializeObject(sortEmployee);
            var                 contentData  = new StringContent(stringData, Encoding.UTF8, "application/json");
            HttpResponseMessage response     = client.PostAsync(Url, contentData).Result;
            ArrayList           arrayData    = response.Content.ReadAsAsync <ArrayList>().Result;
            int                 recordsTotal = JsonConvert.DeserializeObject <int>(arrayData[0].ToString());
            IList <T1>          data         = JsonConvert.DeserializeObject <IList <T1> >(arrayData[1].ToString());

            return(Json(new { recordsFiltered = recordsTotal, recordsTotal, data = data }));
        }
示例#2
0
        public IActionResult GetLeaveRequests([FromBody] SortGrid sortGrid)
        {
            ArrayList data = new ArrayList();
            IEnumerable <LeaveRequest> leaveData = null;

            if (sortGrid.LocationId == 0)
            {
                leaveData = _repository.LeaveRequest.FindAll().Where(x => x.Status == "Pending").Include(x => x.Person).Include(x => x.Person.Location).Where(x => x.TenantId == TenantId && x.Person.Location.IsActive == true).ToList();
            }
            else
            {
                leaveData = _repository.LeaveRequest.FindAll().Where(x => x.Status == "Pending").Include(x => x.Person).Include(x => x.Person.Location).Where(x => x.TenantId == TenantId && x.Person.Location.IsActive == true && x.Person.LocationId == sortGrid.LocationId).ToList();
            }


            if (string.IsNullOrEmpty(sortGrid.Search))
            {
                data = _repository.LeaveRequest.GetDataByGridCondition(null, sortGrid, leaveData.AsQueryable());
            }
            else
            {
                string search = sortGrid.Search.ToLower();
                data = _repository.LeaveRequest.GetDataByGridCondition(x => x.EmployeeName.ToLower().Contains(search) || x.LeaveType.ToLower().Contains(search) || x.Reason.ToLower().Contains(search) || x.Status.ToLower().Contains(search), sortGrid, leaveData.AsQueryable());
            }
            return(Ok(data));
        }
示例#3
0
        public IActionResult GetHolidays([FromBody] SortGrid sortGrid)
        {
            ArrayList            data     = new ArrayList();
            IQueryable <Holiday> holidays = null;

            if (sortGrid.LocationId == 0)
            {
                holidays = _repository.Holidays.FindAll().Include(x => x.Location).Where(x => x.Location.IsActive == true && x.IsActive == true);
            }
            else
            {
                holidays = _repository.Holidays.FindAll().Include(x => x.Location).Where(x => x.Location.IsActive == true && x.LocationId == sortGrid.LocationId && x.IsActive == true);
            }

            if (string.IsNullOrEmpty(sortGrid.Search))
            {
                data = _repository.Holidays.GetDataByGridCondition(null, sortGrid, holidays);
            }
            else
            {
                string search = sortGrid.Search.ToLower();
                data = _repository.Holidays.GetDataByGridCondition(x => x.Location.LocationName.ToLower().Contains(search) || x.Vacation.ToLower().Contains(search), sortGrid, holidays);
            }
            return(Ok(data));
        }
示例#4
0
        private void OpenSortGrid(PopoutListButton sender)
        {
            _isSortPreferencesOpen   = true;
            sender.PopoutModeEnabled = true;
            SortGrid.SetValue(VisibilityProperty, Visibility.Visible);
            var sb = FindResource("OpeningSortGridStoryboard") as Storyboard;

            if (sb != null)
            {
                sb.Begin();
            }
        }
示例#5
0
        private void CloseSortGrid(PopoutListButton sender)
        {
            _isSortPreferencesOpen   = false;
            sender.PopoutModeEnabled = false;
            SortGrid.SetValue(VisibilityProperty, Visibility.Collapsed);
            var sb = FindResource("ClosingSortGridStoryboard") as Storyboard;

            if (sb != null)
            {
                sb.Begin();
            }
        }
示例#6
0
        public ActionResult GetLeaveRequestsUnderMe([FromRoute] int PersonId, [FromBody] SortGrid sortGrid)
        {
            ArrayList data = new ArrayList();
            IQueryable <LeaveRequest> leaveData = _repository.LeaveRequest.GetLeaveRequestUnderMe(Convert.ToInt32(PersonId), TenantId);

            if (string.IsNullOrEmpty(sortGrid.Search))
            {
                data = _repository.LeaveRequest.GetDataByGridCondition(null, sortGrid, leaveData);
            }
            else
            {
                data = _repository.LeaveRequest.GetDataByGridCondition(x => x.EmployeeName == sortGrid.Search, sortGrid, leaveData);
            }
            return(Ok(data));
        }
示例#7
0
        public IActionResult GetPastLeaves([FromRoute] int id, [FromBody] SortGrid sortGrid)
        {
            ArrayList data = new ArrayList();
            IQueryable <PastLeaves> leaveData = _repository.LeaveRequest.GetPastLeaves(id, TenantId, sortGrid.LocationId);

            if (string.IsNullOrEmpty(sortGrid.Search))
            {
                data = _repository.PastLeaves.GetDataByGridCondition(null, sortGrid, leaveData);
            }
            else
            {
                string search = sortGrid.Search.ToLower();
                data = _repository.PastLeaves.GetDataByGridCondition(x => x.Person.Location.LocationName.Contains(search) || x.EmployeeName.ToLower().Contains(search) || x.Reason.ToLower().Contains(search), sortGrid, leaveData);
            }
            return(Ok(data));
        }
示例#8
0
        public IActionResult GetData([FromBody] SortGrid sortGrid)
        {
            ArrayList locationsList;
            IQueryable <Locations> list = null;

            list = _repository.Locations.FindAllByCondition(x => x.TenantId == TenantId && x.IsActive == sortGrid.IsActive);
            if (sortGrid.Search == null)
            {
                locationsList = _repository.Locations.GetDataByGridCondition(null, sortGrid, list);
            }
            else
            {
                locationsList = _repository.Locations.GetDataByGridCondition(x => x.LocationName.Contains(sortGrid.Search), sortGrid, list);
            }
            return(Ok(locationsList));
        }
示例#9
0
 private void InitializeComponent()
 {
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ColumnItem columnItem5 = new ColumnItem();
     ColumnItem columnItem6 = new ColumnItem();
     ColumnItem columnItem7 = new ColumnItem();
     ColumnItem columnItem8 = new ColumnItem();
     this.toolStrip1 = new ToolStrip();
     this.tsbtnReload = new ToolStripButton();
     this.toolStripSeparator2 = new ToolStripSeparator();
     this.tsbtnSellAll = new ToolStripButton();
     this.toolStripSeparator1 = new ToolStripSeparator();
     this.tsbtnSell = new ToolStripButton();
     this.tsbtnClose = new ToolStripButton();
     this.intza = new SortGrid();
     this.toolStrip1.SuspendLayout();
     base.SuspendLayout();
     this.toolStrip1.GripStyle = ToolStripGripStyle.Hidden;
     this.toolStrip1.Items.AddRange(new ToolStripItem[]
     {
         this.tsbtnReload,
         this.toolStripSeparator2,
         this.tsbtnSellAll,
         this.toolStripSeparator1,
         this.tsbtnSell,
         this.tsbtnClose
     });
     this.toolStrip1.Location = new Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new Size(644, 25);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     this.tsbtnReload.ForeColor = Color.Black;
     this.tsbtnReload.Image = Resources.refresh;
     this.tsbtnReload.ImageTransparentColor = Color.Magenta;
     this.tsbtnReload.Name = "tsbtnReload";
     this.tsbtnReload.Padding = new Padding(10, 0, 5, 0);
     this.tsbtnReload.Size = new Size(78, 22);
     this.tsbtnReload.Text = "Reload";
     this.tsbtnReload.Click += new EventHandler(this.tsbtnReload_Click);
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new Size(6, 25);
     this.tsbtnSellAll.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnSellAll.ForeColor = Color.Black;
     this.tsbtnSellAll.ImageTransparentColor = Color.Magenta;
     this.tsbtnSellAll.Name = "tsbtnSellAll";
     this.tsbtnSellAll.Padding = new Padding(5, 0, 5, 0);
     this.tsbtnSellAll.Size = new Size(54, 22);
     this.tsbtnSellAll.Text = "Sell all";
     this.tsbtnSellAll.Click += new EventHandler(this.tsbtnSellAll_Click);
     this.toolStripSeparator1.ForeColor = Color.Black;
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new Size(6, 25);
     this.tsbtnSell.ForeColor = Color.Black;
     this.tsbtnSell.ImageTransparentColor = Color.Magenta;
     this.tsbtnSell.Name = "tsbtnSell";
     this.tsbtnSell.Padding = new Padding(0, 0, 5, 0);
     this.tsbtnSell.Size = new Size(34, 22);
     this.tsbtnSell.Text = "Sell";
     this.tsbtnSell.Click += new EventHandler(this.tsbtnSell_Click);
     this.tsbtnClose.Alignment = ToolStripItemAlignment.Right;
     this.tsbtnClose.ForeColor = Color.Black;
     this.tsbtnClose.Image = Resources.fileclose;
     this.tsbtnClose.ImageTransparentColor = Color.Magenta;
     this.tsbtnClose.Name = "tsbtnClose";
     this.tsbtnClose.Size = new Size(56, 22);
     this.tsbtnClose.Text = "Close";
     this.tsbtnClose.Click += new EventHandler(this.tsbtnClose_Click);
     this.intza.AllowDrop = true;
     this.intza.BackColor = Color.LightGray;
     this.intza.CanBlink = false;
     this.intza.CanDrag = false;
     this.intza.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Near;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "stock";
     columnItem.Text = "Symbol";
     columnItem.ValueFormat = FormatType.Text;
     columnItem.Visible = true;
     columnItem.Width = 13;
     columnItem2.Alignment = StringAlignment.Center;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "sType";
     columnItem2.Text = "Type";
     columnItem2.ValueFormat = FormatType.Text;
     columnItem2.Visible = true;
     columnItem2.Width = 8;
     columnItem3.Alignment = StringAlignment.Center;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "trusteeId";
     columnItem3.Text = "TTF";
     columnItem3.ValueFormat = FormatType.Text;
     columnItem3.Visible = true;
     columnItem3.Width = 8;
     columnItem4.Alignment = StringAlignment.Far;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "onhand";
     columnItem4.Text = "OnHand";
     columnItem4.ValueFormat = FormatType.Text;
     columnItem4.Visible = true;
     columnItem4.Width = 15;
     columnItem5.Alignment = StringAlignment.Far;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.LightGray;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "sellable";
     columnItem5.Text = "Sellable";
     columnItem5.ValueFormat = FormatType.Text;
     columnItem5.Visible = true;
     columnItem5.Width = 15;
     columnItem6.Alignment = StringAlignment.Far;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.ColumnAlignment = StringAlignment.Center;
     columnItem6.FontColor = Color.LightGray;
     columnItem6.MyStyle = FontStyle.Regular;
     columnItem6.Name = "avgPrice";
     columnItem6.Text = "Average";
     columnItem6.ValueFormat = FormatType.Text;
     columnItem6.Visible = true;
     columnItem6.Width = 12;
     columnItem7.Alignment = StringAlignment.Far;
     columnItem7.BackColor = Color.FromArgb(64, 64, 64);
     columnItem7.ColumnAlignment = StringAlignment.Center;
     columnItem7.FontColor = Color.LightGray;
     columnItem7.MyStyle = FontStyle.Regular;
     columnItem7.Name = "last";
     columnItem7.Text = "Last";
     columnItem7.ValueFormat = FormatType.Text;
     columnItem7.Visible = true;
     columnItem7.Width = 12;
     columnItem8.Alignment = StringAlignment.Far;
     columnItem8.BackColor = Color.FromArgb(64, 64, 64);
     columnItem8.ColumnAlignment = StringAlignment.Center;
     columnItem8.FontColor = Color.LightGray;
     columnItem8.MyStyle = FontStyle.Regular;
     columnItem8.Name = "ul";
     columnItem8.Text = "UnReal P/L";
     columnItem8.ValueFormat = FormatType.Text;
     columnItem8.Visible = true;
     columnItem8.Width = 17;
     this.intza.Columns.Add(columnItem);
     this.intza.Columns.Add(columnItem2);
     this.intza.Columns.Add(columnItem3);
     this.intza.Columns.Add(columnItem4);
     this.intza.Columns.Add(columnItem5);
     this.intza.Columns.Add(columnItem6);
     this.intza.Columns.Add(columnItem7);
     this.intza.Columns.Add(columnItem8);
     this.intza.CurrentScroll = 0;
     this.intza.Dock = DockStyle.Fill;
     this.intza.FocusItemIndex = -1;
     this.intza.ForeColor = Color.Black;
     this.intza.GridColor = Color.DarkGray;
     this.intza.HeaderPctHeight = 100f;
     this.intza.IsAutoRepaint = true;
     this.intza.IsDrawFullRow = false;
     this.intza.IsDrawGrid = true;
     this.intza.IsDrawHeader = true;
     this.intza.IsScrollable = true;
     this.intza.Location = new Point(0, 25);
     this.intza.MainColumn = "";
     this.intza.Name = "intza";
     this.intza.Rows = 0;
     this.intza.RowSelectColor = Color.DarkGray;
     this.intza.RowSelectType = 3;
     this.intza.RowsVisible = 0;
     this.intza.Size = new Size(644, 223);
     this.intza.SortColumnName = "";
     this.intza.SortType = SortType.Desc;
     this.intza.TabIndex = 3;
     base.AutoScaleDimensions = new SizeF(7f, 15f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(644, 248);
     base.ControlBox = false;
     base.Controls.Add(this.intza);
     base.Controls.Add(this.toolStrip1);
     this.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     base.MaximizeBox = false;
     base.Name = "frmCleanPort";
     base.StartPosition = FormStartPosition.CenterParent;
     this.Text = "Portfolio Clearing Process";
     base.Shown += new EventHandler(this.frmCleanPort_Shown);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
示例#10
0
 private void InitializeComponent()
 {
     ItemGrid itemGrid = new ItemGrid();
     ItemGrid itemGrid2 = new ItemGrid();
     ItemGrid itemGrid3 = new ItemGrid();
     ItemGrid itemGrid4 = new ItemGrid();
     ItemGrid itemGrid5 = new ItemGrid();
     ItemGrid itemGrid6 = new ItemGrid();
     ItemGrid itemGrid7 = new ItemGrid();
     ItemGrid itemGrid8 = new ItemGrid();
     ItemGrid itemGrid9 = new ItemGrid();
     ItemGrid itemGrid10 = new ItemGrid();
     ItemGrid itemGrid11 = new ItemGrid();
     ItemGrid itemGrid12 = new ItemGrid();
     ItemGrid itemGrid13 = new ItemGrid();
     ItemGrid itemGrid14 = new ItemGrid();
     ItemGrid itemGrid15 = new ItemGrid();
     ItemGrid itemGrid16 = new ItemGrid();
     ItemGrid itemGrid17 = new ItemGrid();
     ItemGrid itemGrid18 = new ItemGrid();
     ItemGrid itemGrid19 = new ItemGrid();
     ItemGrid itemGrid20 = new ItemGrid();
     ItemGrid itemGrid21 = new ItemGrid();
     ItemGrid itemGrid22 = new ItemGrid();
     ItemGrid itemGrid23 = new ItemGrid();
     ItemGrid itemGrid24 = new ItemGrid();
     ItemGrid itemGrid25 = new ItemGrid();
     ItemGrid itemGrid26 = new ItemGrid();
     ItemGrid itemGrid27 = new ItemGrid();
     ItemGrid itemGrid28 = new ItemGrid();
     ItemGrid itemGrid29 = new ItemGrid();
     ItemGrid itemGrid30 = new ItemGrid();
     ItemGrid itemGrid31 = new ItemGrid();
     ItemGrid itemGrid32 = new ItemGrid();
     ItemGrid itemGrid33 = new ItemGrid();
     ItemGrid itemGrid34 = new ItemGrid();
     ItemGrid itemGrid35 = new ItemGrid();
     ItemGrid itemGrid36 = new ItemGrid();
     ItemGrid itemGrid37 = new ItemGrid();
     ItemGrid itemGrid38 = new ItemGrid();
     ItemGrid itemGrid39 = new ItemGrid();
     ItemGrid itemGrid40 = new ItemGrid();
     ItemGrid itemGrid41 = new ItemGrid();
     ItemGrid itemGrid42 = new ItemGrid();
     ItemGrid itemGrid43 = new ItemGrid();
     ItemGrid itemGrid44 = new ItemGrid();
     ItemGrid itemGrid45 = new ItemGrid();
     ItemGrid itemGrid46 = new ItemGrid();
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     this.intzaInfo1 = new IntzaCustomGrid();
     this.intzaInfo2 = new IntzaCustomGrid();
     this.intzaInfo3 = new IntzaCustomGrid();
     this.lbError = new Label();
     this.intzaDeal = new SortGrid();
     base.SuspendLayout();
     this.intzaInfo1.AllowDrop = true;
     this.intzaInfo1.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaInfo1.CanDrag = false;
     this.intzaInfo1.IsAutoRepaint = true;
     this.intzaInfo1.IsDroped = false;
     itemGrid.AdjustFontSize = 0f;
     itemGrid.Alignment = StringAlignment.Near;
     itemGrid.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid.Changed = false;
     itemGrid.FieldType = ItemType.Label2;
     itemGrid.FontColor = Color.White;
     itemGrid.FontStyle = FontStyle.Regular;
     itemGrid.Height = 1f;
     itemGrid.IsBlink = 0;
     itemGrid.Name = "lbOrderNumber";
     itemGrid.Text = "Order No.";
     itemGrid.ValueFormat = FormatType.Text;
     itemGrid.Visible = true;
     itemGrid.Width = 52;
     itemGrid.X = 0;
     itemGrid.Y = 0f;
     itemGrid2.AdjustFontSize = 0f;
     itemGrid2.Alignment = StringAlignment.Far;
     itemGrid2.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid2.Changed = false;
     itemGrid2.FieldType = ItemType.Text;
     itemGrid2.FontColor = Color.Cyan;
     itemGrid2.FontStyle = FontStyle.Regular;
     itemGrid2.Height = 1f;
     itemGrid2.IsBlink = 0;
     itemGrid2.Name = "tbOrderNumber";
     itemGrid2.Text = "10000001";
     itemGrid2.ValueFormat = FormatType.Text;
     itemGrid2.Visible = true;
     itemGrid2.Width = 48;
     itemGrid2.X = 52;
     itemGrid2.Y = 0f;
     itemGrid3.AdjustFontSize = 0f;
     itemGrid3.Alignment = StringAlignment.Near;
     itemGrid3.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid3.Changed = false;
     itemGrid3.FieldType = ItemType.Label2;
     itemGrid3.FontColor = Color.White;
     itemGrid3.FontStyle = FontStyle.Regular;
     itemGrid3.Height = 1f;
     itemGrid3.IsBlink = 0;
     itemGrid3.Name = "lbSide";
     itemGrid3.Text = "Side";
     itemGrid3.ValueFormat = FormatType.Text;
     itemGrid3.Visible = true;
     itemGrid3.Width = 52;
     itemGrid3.X = 0;
     itemGrid3.Y = 1f;
     itemGrid4.AdjustFontSize = 0f;
     itemGrid4.Alignment = StringAlignment.Far;
     itemGrid4.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid4.Changed = false;
     itemGrid4.FieldType = ItemType.Text;
     itemGrid4.FontColor = Color.White;
     itemGrid4.FontStyle = FontStyle.Regular;
     itemGrid4.Height = 1f;
     itemGrid4.IsBlink = 0;
     itemGrid4.Name = "tbSide";
     itemGrid4.Text = "";
     itemGrid4.ValueFormat = FormatType.Text;
     itemGrid4.Visible = true;
     itemGrid4.Width = 48;
     itemGrid4.X = 52;
     itemGrid4.Y = 1f;
     itemGrid5.AdjustFontSize = 0f;
     itemGrid5.Alignment = StringAlignment.Near;
     itemGrid5.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid5.Changed = false;
     itemGrid5.FieldType = ItemType.Label2;
     itemGrid5.FontColor = Color.White;
     itemGrid5.FontStyle = FontStyle.Regular;
     itemGrid5.Height = 1f;
     itemGrid5.IsBlink = 0;
     itemGrid5.Name = "lbStock";
     itemGrid5.Text = "Symbol";
     itemGrid5.ValueFormat = FormatType.Text;
     itemGrid5.Visible = true;
     itemGrid5.Width = 52;
     itemGrid5.X = 0;
     itemGrid5.Y = 2f;
     itemGrid6.AdjustFontSize = 0f;
     itemGrid6.Alignment = StringAlignment.Far;
     itemGrid6.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid6.Changed = false;
     itemGrid6.FieldType = ItemType.Text;
     itemGrid6.FontColor = Color.Yellow;
     itemGrid6.FontStyle = FontStyle.Regular;
     itemGrid6.Height = 1f;
     itemGrid6.IsBlink = 0;
     itemGrid6.Name = "tbStock";
     itemGrid6.Text = "";
     itemGrid6.ValueFormat = FormatType.Text;
     itemGrid6.Visible = true;
     itemGrid6.Width = 48;
     itemGrid6.X = 52;
     itemGrid6.Y = 2f;
     itemGrid7.AdjustFontSize = 0f;
     itemGrid7.Alignment = StringAlignment.Near;
     itemGrid7.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid7.Changed = false;
     itemGrid7.FieldType = ItemType.Label2;
     itemGrid7.FontColor = Color.White;
     itemGrid7.FontStyle = FontStyle.Regular;
     itemGrid7.Height = 1f;
     itemGrid7.IsBlink = 0;
     itemGrid7.Name = "lbVolume";
     itemGrid7.Text = "Volume";
     itemGrid7.ValueFormat = FormatType.Text;
     itemGrid7.Visible = true;
     itemGrid7.Width = 52;
     itemGrid7.X = 0;
     itemGrid7.Y = 3f;
     itemGrid8.AdjustFontSize = 0f;
     itemGrid8.Alignment = StringAlignment.Far;
     itemGrid8.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid8.Changed = false;
     itemGrid8.FieldType = ItemType.Text;
     itemGrid8.FontColor = Color.Yellow;
     itemGrid8.FontStyle = FontStyle.Regular;
     itemGrid8.Height = 1f;
     itemGrid8.IsBlink = 0;
     itemGrid8.Name = "tbVolume";
     itemGrid8.Text = "";
     itemGrid8.ValueFormat = FormatType.Volume;
     itemGrid8.Visible = true;
     itemGrid8.Width = 48;
     itemGrid8.X = 52;
     itemGrid8.Y = 3f;
     itemGrid9.AdjustFontSize = 0f;
     itemGrid9.Alignment = StringAlignment.Near;
     itemGrid9.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid9.Changed = false;
     itemGrid9.FieldType = ItemType.Label2;
     itemGrid9.FontColor = Color.White;
     itemGrid9.FontStyle = FontStyle.Regular;
     itemGrid9.Height = 1f;
     itemGrid9.IsBlink = 0;
     itemGrid9.Name = "lbPrice";
     itemGrid9.Text = "Price";
     itemGrid9.ValueFormat = FormatType.Text;
     itemGrid9.Visible = true;
     itemGrid9.Width = 52;
     itemGrid9.X = 0;
     itemGrid9.Y = 4f;
     itemGrid10.AdjustFontSize = 0f;
     itemGrid10.Alignment = StringAlignment.Far;
     itemGrid10.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid10.Changed = false;
     itemGrid10.FieldType = ItemType.Text;
     itemGrid10.FontColor = Color.Yellow;
     itemGrid10.FontStyle = FontStyle.Regular;
     itemGrid10.Height = 1f;
     itemGrid10.IsBlink = 0;
     itemGrid10.Name = "tbPrice";
     itemGrid10.Text = "";
     itemGrid10.ValueFormat = FormatType.Text;
     itemGrid10.Visible = true;
     itemGrid10.Width = 48;
     itemGrid10.X = 52;
     itemGrid10.Y = 4f;
     itemGrid11.AdjustFontSize = 0f;
     itemGrid11.Alignment = StringAlignment.Near;
     itemGrid11.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid11.Changed = false;
     itemGrid11.FieldType = ItemType.Label2;
     itemGrid11.FontColor = Color.White;
     itemGrid11.FontStyle = FontStyle.Regular;
     itemGrid11.Height = 1f;
     itemGrid11.IsBlink = 0;
     itemGrid11.Name = "lbMatched";
     itemGrid11.Text = "Matched";
     itemGrid11.ValueFormat = FormatType.Text;
     itemGrid11.Visible = true;
     itemGrid11.Width = 52;
     itemGrid11.X = 0;
     itemGrid11.Y = 5f;
     itemGrid12.AdjustFontSize = 0f;
     itemGrid12.Alignment = StringAlignment.Far;
     itemGrid12.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid12.Changed = false;
     itemGrid12.FieldType = ItemType.Text;
     itemGrid12.FontColor = Color.Cyan;
     itemGrid12.FontStyle = FontStyle.Regular;
     itemGrid12.Height = 1f;
     itemGrid12.IsBlink = 0;
     itemGrid12.Name = "tbMatched";
     itemGrid12.Text = "";
     itemGrid12.ValueFormat = FormatType.Volume;
     itemGrid12.Visible = true;
     itemGrid12.Width = 48;
     itemGrid12.X = 52;
     itemGrid12.Y = 5f;
     itemGrid13.AdjustFontSize = 0f;
     itemGrid13.Alignment = StringAlignment.Near;
     itemGrid13.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid13.Changed = false;
     itemGrid13.FieldType = ItemType.Label2;
     itemGrid13.FontColor = Color.White;
     itemGrid13.FontStyle = FontStyle.Regular;
     itemGrid13.Height = 1f;
     itemGrid13.IsBlink = 0;
     itemGrid13.Name = "lbPublished";
     itemGrid13.Text = "Published";
     itemGrid13.ValueFormat = FormatType.Text;
     itemGrid13.Visible = true;
     itemGrid13.Width = 52;
     itemGrid13.X = 0;
     itemGrid13.Y = 6f;
     itemGrid14.AdjustFontSize = 0f;
     itemGrid14.Alignment = StringAlignment.Far;
     itemGrid14.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid14.Changed = false;
     itemGrid14.FieldType = ItemType.Text;
     itemGrid14.FontColor = Color.Cyan;
     itemGrid14.FontStyle = FontStyle.Regular;
     itemGrid14.Height = 1f;
     itemGrid14.IsBlink = 0;
     itemGrid14.Name = "tbPublished";
     itemGrid14.Text = "";
     itemGrid14.ValueFormat = FormatType.Volume;
     itemGrid14.Visible = true;
     itemGrid14.Width = 48;
     itemGrid14.X = 52;
     itemGrid14.Y = 6f;
     itemGrid15.AdjustFontSize = 0f;
     itemGrid15.Alignment = StringAlignment.Near;
     itemGrid15.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid15.Changed = false;
     itemGrid15.FieldType = ItemType.Label2;
     itemGrid15.FontColor = Color.White;
     itemGrid15.FontStyle = FontStyle.Regular;
     itemGrid15.Height = 1f;
     itemGrid15.IsBlink = 0;
     itemGrid15.Name = "lbCondition";
     itemGrid15.Text = "Condition";
     itemGrid15.ValueFormat = FormatType.Text;
     itemGrid15.Visible = true;
     itemGrid15.Width = 52;
     itemGrid15.X = 0;
     itemGrid15.Y = 7f;
     itemGrid16.AdjustFontSize = 0f;
     itemGrid16.Alignment = StringAlignment.Far;
     itemGrid16.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid16.Changed = false;
     itemGrid16.FieldType = ItemType.Text;
     itemGrid16.FontColor = Color.Yellow;
     itemGrid16.FontStyle = FontStyle.Regular;
     itemGrid16.Height = 1f;
     itemGrid16.IsBlink = 0;
     itemGrid16.Name = "tbCondition";
     itemGrid16.Text = "";
     itemGrid16.ValueFormat = FormatType.Text;
     itemGrid16.Visible = true;
     itemGrid16.Width = 48;
     itemGrid16.X = 52;
     itemGrid16.Y = 7f;
     this.intzaInfo1.Items.Add(itemGrid);
     this.intzaInfo1.Items.Add(itemGrid2);
     this.intzaInfo1.Items.Add(itemGrid3);
     this.intzaInfo1.Items.Add(itemGrid4);
     this.intzaInfo1.Items.Add(itemGrid5);
     this.intzaInfo1.Items.Add(itemGrid6);
     this.intzaInfo1.Items.Add(itemGrid7);
     this.intzaInfo1.Items.Add(itemGrid8);
     this.intzaInfo1.Items.Add(itemGrid9);
     this.intzaInfo1.Items.Add(itemGrid10);
     this.intzaInfo1.Items.Add(itemGrid11);
     this.intzaInfo1.Items.Add(itemGrid12);
     this.intzaInfo1.Items.Add(itemGrid13);
     this.intzaInfo1.Items.Add(itemGrid14);
     this.intzaInfo1.Items.Add(itemGrid15);
     this.intzaInfo1.Items.Add(itemGrid16);
     this.intzaInfo1.LineColor = Color.Red;
     this.intzaInfo1.Location = new Point(2, 2);
     this.intzaInfo1.Name = "intzaInfo1";
     this.intzaInfo1.Size = new Size(151, 151);
     this.intzaInfo1.TabIndex = 150;
     this.intzaInfo2.AllowDrop = true;
     this.intzaInfo2.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaInfo2.CanDrag = false;
     this.intzaInfo2.IsAutoRepaint = true;
     this.intzaInfo2.IsDroped = false;
     itemGrid17.AdjustFontSize = 0f;
     itemGrid17.Alignment = StringAlignment.Near;
     itemGrid17.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid17.Changed = false;
     itemGrid17.FieldType = ItemType.Label2;
     itemGrid17.FontColor = Color.White;
     itemGrid17.FontStyle = FontStyle.Regular;
     itemGrid17.Height = 1f;
     itemGrid17.IsBlink = 0;
     itemGrid17.Name = "lbAccount";
     itemGrid17.Text = "Account";
     itemGrid17.ValueFormat = FormatType.Text;
     itemGrid17.Visible = true;
     itemGrid17.Width = 58;
     itemGrid17.X = 0;
     itemGrid17.Y = 0f;
     itemGrid18.AdjustFontSize = -1f;
     itemGrid18.Alignment = StringAlignment.Far;
     itemGrid18.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid18.Changed = false;
     itemGrid18.FieldType = ItemType.Text;
     itemGrid18.FontColor = Color.Cyan;
     itemGrid18.FontStyle = FontStyle.Regular;
     itemGrid18.Height = 1f;
     itemGrid18.IsBlink = 0;
     itemGrid18.Name = "tbAccount";
     itemGrid18.Text = "";
     itemGrid18.ValueFormat = FormatType.Text;
     itemGrid18.Visible = true;
     itemGrid18.Width = 42;
     itemGrid18.X = 58;
     itemGrid18.Y = 0f;
     itemGrid19.AdjustFontSize = 0f;
     itemGrid19.Alignment = StringAlignment.Near;
     itemGrid19.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid19.Changed = false;
     itemGrid19.FieldType = ItemType.Label2;
     itemGrid19.FontColor = Color.White;
     itemGrid19.FontStyle = FontStyle.Regular;
     itemGrid19.Height = 1f;
     itemGrid19.IsBlink = 0;
     itemGrid19.Name = "lbPC";
     itemGrid19.Text = "PC";
     itemGrid19.ValueFormat = FormatType.Text;
     itemGrid19.Visible = true;
     itemGrid19.Width = 58;
     itemGrid19.X = 0;
     itemGrid19.Y = 1f;
     itemGrid20.AdjustFontSize = 0f;
     itemGrid20.Alignment = StringAlignment.Far;
     itemGrid20.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid20.Changed = false;
     itemGrid20.FieldType = ItemType.Text;
     itemGrid20.FontColor = Color.Yellow;
     itemGrid20.FontStyle = FontStyle.Regular;
     itemGrid20.Height = 1f;
     itemGrid20.IsBlink = 0;
     itemGrid20.Name = "tbPC";
     itemGrid20.Text = "";
     itemGrid20.ValueFormat = FormatType.Text;
     itemGrid20.Visible = true;
     itemGrid20.Width = 42;
     itemGrid20.X = 58;
     itemGrid20.Y = 1f;
     itemGrid21.AdjustFontSize = 0f;
     itemGrid21.Alignment = StringAlignment.Near;
     itemGrid21.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid21.Changed = false;
     itemGrid21.FieldType = ItemType.Label2;
     itemGrid21.FontColor = Color.White;
     itemGrid21.FontStyle = FontStyle.Regular;
     itemGrid21.Height = 1f;
     itemGrid21.IsBlink = 0;
     itemGrid21.Name = "lbStatus";
     itemGrid21.Text = "Status";
     itemGrid21.ValueFormat = FormatType.Text;
     itemGrid21.Visible = true;
     itemGrid21.Width = 58;
     itemGrid21.X = 0;
     itemGrid21.Y = 2f;
     itemGrid22.AdjustFontSize = 0f;
     itemGrid22.Alignment = StringAlignment.Far;
     itemGrid22.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid22.Changed = false;
     itemGrid22.FieldType = ItemType.Text;
     itemGrid22.FontColor = Color.Cyan;
     itemGrid22.FontStyle = FontStyle.Regular;
     itemGrid22.Height = 1f;
     itemGrid22.IsBlink = 0;
     itemGrid22.Name = "tbStatus";
     itemGrid22.Text = "";
     itemGrid22.ValueFormat = FormatType.Text;
     itemGrid22.Visible = true;
     itemGrid22.Width = 42;
     itemGrid22.X = 58;
     itemGrid22.Y = 2f;
     itemGrid23.AdjustFontSize = 0f;
     itemGrid23.Alignment = StringAlignment.Near;
     itemGrid23.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid23.Changed = false;
     itemGrid23.FieldType = ItemType.Label2;
     itemGrid23.FontColor = Color.White;
     itemGrid23.FontStyle = FontStyle.Regular;
     itemGrid23.Height = 1f;
     itemGrid23.IsBlink = 0;
     itemGrid23.Name = "lbEntryTime";
     itemGrid23.Text = "Entry Time";
     itemGrid23.ValueFormat = FormatType.Text;
     itemGrid23.Visible = true;
     itemGrid23.Width = 58;
     itemGrid23.X = 0;
     itemGrid23.Y = 3f;
     itemGrid24.AdjustFontSize = 0f;
     itemGrid24.Alignment = StringAlignment.Far;
     itemGrid24.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid24.Changed = false;
     itemGrid24.FieldType = ItemType.Text;
     itemGrid24.FontColor = Color.Yellow;
     itemGrid24.FontStyle = FontStyle.Regular;
     itemGrid24.Height = 1f;
     itemGrid24.IsBlink = 0;
     itemGrid24.Name = "tbEntryTime";
     itemGrid24.Text = "";
     itemGrid24.ValueFormat = FormatType.Text;
     itemGrid24.Visible = true;
     itemGrid24.Width = 42;
     itemGrid24.X = 58;
     itemGrid24.Y = 3f;
     itemGrid25.AdjustFontSize = 0f;
     itemGrid25.Alignment = StringAlignment.Near;
     itemGrid25.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid25.Changed = false;
     itemGrid25.FieldType = ItemType.Label2;
     itemGrid25.FontColor = Color.White;
     itemGrid25.FontStyle = FontStyle.Regular;
     itemGrid25.Height = 1f;
     itemGrid25.IsBlink = 0;
     itemGrid25.Name = "lbQuote";
     itemGrid25.Text = "Quote";
     itemGrid25.ValueFormat = FormatType.Text;
     itemGrid25.Visible = true;
     itemGrid25.Width = 58;
     itemGrid25.X = 0;
     itemGrid25.Y = 4f;
     itemGrid26.AdjustFontSize = 0f;
     itemGrid26.Alignment = StringAlignment.Far;
     itemGrid26.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid26.Changed = false;
     itemGrid26.FieldType = ItemType.Text;
     itemGrid26.FontColor = Color.Yellow;
     itemGrid26.FontStyle = FontStyle.Regular;
     itemGrid26.Height = 1f;
     itemGrid26.IsBlink = 0;
     itemGrid26.Name = "tbQuote";
     itemGrid26.Text = "";
     itemGrid26.ValueFormat = FormatType.Text;
     itemGrid26.Visible = true;
     itemGrid26.Width = 42;
     itemGrid26.X = 58;
     itemGrid26.Y = 4f;
     itemGrid27.AdjustFontSize = 0f;
     itemGrid27.Alignment = StringAlignment.Near;
     itemGrid27.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid27.Changed = false;
     itemGrid27.FieldType = ItemType.Label2;
     itemGrid27.FontColor = Color.White;
     itemGrid27.FontStyle = FontStyle.Regular;
     itemGrid27.Height = 1f;
     itemGrid27.IsBlink = 0;
     itemGrid27.Name = "lbQuoteTime";
     itemGrid27.Text = "Quote Time";
     itemGrid27.ValueFormat = FormatType.Text;
     itemGrid27.Visible = true;
     itemGrid27.Width = 58;
     itemGrid27.X = 0;
     itemGrid27.Y = 5f;
     itemGrid28.AdjustFontSize = 0f;
     itemGrid28.Alignment = StringAlignment.Far;
     itemGrid28.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid28.Changed = false;
     itemGrid28.FieldType = ItemType.Text;
     itemGrid28.FontColor = Color.Yellow;
     itemGrid28.FontStyle = FontStyle.Regular;
     itemGrid28.Height = 1f;
     itemGrid28.IsBlink = 0;
     itemGrid28.Name = "tbQuoteTime";
     itemGrid28.Text = "";
     itemGrid28.ValueFormat = FormatType.Text;
     itemGrid28.Visible = true;
     itemGrid28.Width = 42;
     itemGrid28.X = 58;
     itemGrid28.Y = 5f;
     itemGrid29.AdjustFontSize = 0f;
     itemGrid29.Alignment = StringAlignment.Near;
     itemGrid29.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid29.Changed = false;
     itemGrid29.FieldType = ItemType.Label2;
     itemGrid29.FontColor = Color.White;
     itemGrid29.FontStyle = FontStyle.Regular;
     itemGrid29.Height = 1f;
     itemGrid29.IsBlink = 0;
     itemGrid29.Name = "lbOrigPrice";
     itemGrid29.Text = "Original Price";
     itemGrid29.ValueFormat = FormatType.Text;
     itemGrid29.Visible = true;
     itemGrid29.Width = 58;
     itemGrid29.X = 0;
     itemGrid29.Y = 6f;
     itemGrid30.AdjustFontSize = 0f;
     itemGrid30.Alignment = StringAlignment.Far;
     itemGrid30.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid30.Changed = false;
     itemGrid30.FieldType = ItemType.Text;
     itemGrid30.FontColor = Color.Yellow;
     itemGrid30.FontStyle = FontStyle.Regular;
     itemGrid30.Height = 1f;
     itemGrid30.IsBlink = 0;
     itemGrid30.Name = "tbOrigPrice";
     itemGrid30.Text = "";
     itemGrid30.ValueFormat = FormatType.Text;
     itemGrid30.Visible = true;
     itemGrid30.Width = 42;
     itemGrid30.X = 58;
     itemGrid30.Y = 6f;
     itemGrid31.AdjustFontSize = 0f;
     itemGrid31.Alignment = StringAlignment.Near;
     itemGrid31.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid31.Changed = false;
     itemGrid31.FieldType = ItemType.Label2;
     itemGrid31.FontColor = Color.White;
     itemGrid31.FontStyle = FontStyle.Regular;
     itemGrid31.Height = 1f;
     itemGrid31.IsBlink = 0;
     itemGrid31.Name = "lbEntryId";
     itemGrid31.Text = "Entry Id";
     itemGrid31.ValueFormat = FormatType.Text;
     itemGrid31.Visible = true;
     itemGrid31.Width = 58;
     itemGrid31.X = 0;
     itemGrid31.Y = 7f;
     itemGrid32.AdjustFontSize = 0f;
     itemGrid32.Alignment = StringAlignment.Far;
     itemGrid32.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid32.Changed = false;
     itemGrid32.FieldType = ItemType.Text;
     itemGrid32.FontColor = Color.Yellow;
     itemGrid32.FontStyle = FontStyle.Regular;
     itemGrid32.Height = 1f;
     itemGrid32.IsBlink = 0;
     itemGrid32.Name = "tbEntryId";
     itemGrid32.Text = "";
     itemGrid32.ValueFormat = FormatType.Text;
     itemGrid32.Visible = true;
     itemGrid32.Width = 42;
     itemGrid32.X = 58;
     itemGrid32.Y = 7f;
     this.intzaInfo2.Items.Add(itemGrid17);
     this.intzaInfo2.Items.Add(itemGrid18);
     this.intzaInfo2.Items.Add(itemGrid19);
     this.intzaInfo2.Items.Add(itemGrid20);
     this.intzaInfo2.Items.Add(itemGrid21);
     this.intzaInfo2.Items.Add(itemGrid22);
     this.intzaInfo2.Items.Add(itemGrid23);
     this.intzaInfo2.Items.Add(itemGrid24);
     this.intzaInfo2.Items.Add(itemGrid25);
     this.intzaInfo2.Items.Add(itemGrid26);
     this.intzaInfo2.Items.Add(itemGrid27);
     this.intzaInfo2.Items.Add(itemGrid28);
     this.intzaInfo2.Items.Add(itemGrid29);
     this.intzaInfo2.Items.Add(itemGrid30);
     this.intzaInfo2.Items.Add(itemGrid31);
     this.intzaInfo2.Items.Add(itemGrid32);
     this.intzaInfo2.LineColor = Color.Red;
     this.intzaInfo2.Location = new Point(155, 2);
     this.intzaInfo2.Name = "intzaInfo2";
     this.intzaInfo2.Size = new Size(149, 151);
     this.intzaInfo2.TabIndex = 151;
     this.intzaInfo3.AllowDrop = true;
     this.intzaInfo3.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaInfo3.CanDrag = false;
     this.intzaInfo3.IsAutoRepaint = true;
     this.intzaInfo3.IsDroped = false;
     itemGrid33.AdjustFontSize = 0f;
     itemGrid33.Alignment = StringAlignment.Near;
     itemGrid33.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid33.Changed = false;
     itemGrid33.FieldType = ItemType.Label2;
     itemGrid33.FontColor = Color.White;
     itemGrid33.FontStyle = FontStyle.Regular;
     itemGrid33.Height = 1f;
     itemGrid33.IsBlink = 0;
     itemGrid33.Name = "lbApprover";
     itemGrid33.Text = "Approver";
     itemGrid33.ValueFormat = FormatType.Text;
     itemGrid33.Visible = true;
     itemGrid33.Width = 50;
     itemGrid33.X = 0;
     itemGrid33.Y = 0f;
     itemGrid34.AdjustFontSize = 0f;
     itemGrid34.Alignment = StringAlignment.Far;
     itemGrid34.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid34.Changed = false;
     itemGrid34.FieldType = ItemType.Text;
     itemGrid34.FontColor = Color.Yellow;
     itemGrid34.FontStyle = FontStyle.Regular;
     itemGrid34.Height = 1f;
     itemGrid34.IsBlink = 0;
     itemGrid34.Name = "tbApprover";
     itemGrid34.Text = "";
     itemGrid34.ValueFormat = FormatType.Text;
     itemGrid34.Visible = true;
     itemGrid34.Width = 50;
     itemGrid34.X = 50;
     itemGrid34.Y = 0f;
     itemGrid35.AdjustFontSize = 0f;
     itemGrid35.Alignment = StringAlignment.Near;
     itemGrid35.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid35.Changed = false;
     itemGrid35.FieldType = ItemType.Label2;
     itemGrid35.FontColor = Color.White;
     itemGrid35.FontStyle = FontStyle.Regular;
     itemGrid35.Height = 1f;
     itemGrid35.IsBlink = 0;
     itemGrid35.Name = "lbCanceller";
     itemGrid35.Text = "Canceller";
     itemGrid35.ValueFormat = FormatType.Text;
     itemGrid35.Visible = true;
     itemGrid35.Width = 50;
     itemGrid35.X = 0;
     itemGrid35.Y = 1f;
     itemGrid36.AdjustFontSize = 0f;
     itemGrid36.Alignment = StringAlignment.Far;
     itemGrid36.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid36.Changed = false;
     itemGrid36.FieldType = ItemType.Text;
     itemGrid36.FontColor = Color.Yellow;
     itemGrid36.FontStyle = FontStyle.Regular;
     itemGrid36.Height = 1f;
     itemGrid36.IsBlink = 0;
     itemGrid36.Name = "tbCanceller";
     itemGrid36.Text = "";
     itemGrid36.ValueFormat = FormatType.Text;
     itemGrid36.Visible = true;
     itemGrid36.Width = 50;
     itemGrid36.X = 50;
     itemGrid36.Y = 1f;
     itemGrid37.AdjustFontSize = 0f;
     itemGrid37.Alignment = StringAlignment.Near;
     itemGrid37.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid37.Changed = false;
     itemGrid37.FieldType = ItemType.Label2;
     itemGrid37.FontColor = Color.White;
     itemGrid37.FontStyle = FontStyle.Regular;
     itemGrid37.Height = 1f;
     itemGrid37.IsBlink = 0;
     itemGrid37.Name = "lbCancelTime";
     itemGrid37.Text = "Cancel Time";
     itemGrid37.ValueFormat = FormatType.Text;
     itemGrid37.Visible = true;
     itemGrid37.Width = 50;
     itemGrid37.X = 0;
     itemGrid37.Y = 2f;
     itemGrid38.AdjustFontSize = 0f;
     itemGrid38.Alignment = StringAlignment.Far;
     itemGrid38.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid38.Changed = false;
     itemGrid38.FieldType = ItemType.Text;
     itemGrid38.FontColor = Color.Yellow;
     itemGrid38.FontStyle = FontStyle.Regular;
     itemGrid38.Height = 1f;
     itemGrid38.IsBlink = 0;
     itemGrid38.Name = "tbCancelTime";
     itemGrid38.Text = "";
     itemGrid38.ValueFormat = FormatType.Text;
     itemGrid38.Visible = true;
     itemGrid38.Width = 50;
     itemGrid38.X = 50;
     itemGrid38.Y = 2f;
     itemGrid39.AdjustFontSize = 0f;
     itemGrid39.Alignment = StringAlignment.Near;
     itemGrid39.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid39.Changed = false;
     itemGrid39.FieldType = ItemType.Label2;
     itemGrid39.FontColor = Color.White;
     itemGrid39.FontStyle = FontStyle.Regular;
     itemGrid39.Height = 1f;
     itemGrid39.IsBlink = 0;
     itemGrid39.Name = "lbSource";
     itemGrid39.Text = "Type";
     itemGrid39.ValueFormat = FormatType.Text;
     itemGrid39.Visible = true;
     itemGrid39.Width = 50;
     itemGrid39.X = 0;
     itemGrid39.Y = 3f;
     itemGrid40.AdjustFontSize = 0f;
     itemGrid40.Alignment = StringAlignment.Far;
     itemGrid40.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid40.Changed = false;
     itemGrid40.FieldType = ItemType.Text;
     itemGrid40.FontColor = Color.Yellow;
     itemGrid40.FontStyle = FontStyle.Regular;
     itemGrid40.Height = 1f;
     itemGrid40.IsBlink = 0;
     itemGrid40.Name = "tbSource";
     itemGrid40.Text = "";
     itemGrid40.ValueFormat = FormatType.Text;
     itemGrid40.Visible = true;
     itemGrid40.Width = 50;
     itemGrid40.X = 50;
     itemGrid40.Y = 3f;
     itemGrid41.AdjustFontSize = 0f;
     itemGrid41.Alignment = StringAlignment.Near;
     itemGrid41.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid41.Changed = false;
     itemGrid41.FieldType = ItemType.Label2;
     itemGrid41.FontColor = Color.White;
     itemGrid41.FontStyle = FontStyle.Regular;
     itemGrid41.Height = 1f;
     itemGrid41.IsBlink = 0;
     itemGrid41.Name = "lbTerminal";
     itemGrid41.Text = "Terminal";
     itemGrid41.ValueFormat = FormatType.Text;
     itemGrid41.Visible = true;
     itemGrid41.Width = 50;
     itemGrid41.X = 0;
     itemGrid41.Y = 4f;
     itemGrid42.AdjustFontSize = 0f;
     itemGrid42.Alignment = StringAlignment.Far;
     itemGrid42.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid42.Changed = false;
     itemGrid42.FieldType = ItemType.Text;
     itemGrid42.FontColor = Color.Cyan;
     itemGrid42.FontStyle = FontStyle.Regular;
     itemGrid42.Height = 1f;
     itemGrid42.IsBlink = 0;
     itemGrid42.Name = "tbTerminal";
     itemGrid42.Text = "";
     itemGrid42.ValueFormat = FormatType.Text;
     itemGrid42.Visible = true;
     itemGrid42.Width = 50;
     itemGrid42.X = 50;
     itemGrid42.Y = 4f;
     itemGrid43.AdjustFontSize = 0f;
     itemGrid43.Alignment = StringAlignment.Near;
     itemGrid43.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid43.Changed = false;
     itemGrid43.FieldType = ItemType.Label2;
     itemGrid43.FontColor = Color.White;
     itemGrid43.FontStyle = FontStyle.Regular;
     itemGrid43.Height = 1f;
     itemGrid43.IsBlink = 0;
     itemGrid43.Name = "lbService";
     itemGrid43.Text = "Service";
     itemGrid43.ValueFormat = FormatType.Text;
     itemGrid43.Visible = true;
     itemGrid43.Width = 50;
     itemGrid43.X = 0;
     itemGrid43.Y = 5f;
     itemGrid44.AdjustFontSize = 0f;
     itemGrid44.Alignment = StringAlignment.Far;
     itemGrid44.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid44.Changed = false;
     itemGrid44.FieldType = ItemType.Text;
     itemGrid44.FontColor = Color.Yellow;
     itemGrid44.FontStyle = FontStyle.Regular;
     itemGrid44.Height = 1f;
     itemGrid44.IsBlink = 0;
     itemGrid44.Name = "tbService";
     itemGrid44.Text = "";
     itemGrid44.ValueFormat = FormatType.Text;
     itemGrid44.Visible = true;
     itemGrid44.Width = 50;
     itemGrid44.X = 50;
     itemGrid44.Y = 5f;
     itemGrid45.AdjustFontSize = 0f;
     itemGrid45.Alignment = StringAlignment.Near;
     itemGrid45.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid45.Changed = false;
     itemGrid45.FieldType = ItemType.Label2;
     itemGrid45.FontColor = Color.White;
     itemGrid45.FontStyle = FontStyle.Regular;
     itemGrid45.Height = 1f;
     itemGrid45.IsBlink = 0;
     itemGrid45.Name = "lbTradingChannel";
     itemGrid45.Text = "TradingChannel";
     itemGrid45.ValueFormat = FormatType.Text;
     itemGrid45.Visible = true;
     itemGrid45.Width = 70;
     itemGrid45.X = 0;
     itemGrid45.Y = 6f;
     itemGrid46.AdjustFontSize = 0f;
     itemGrid46.Alignment = StringAlignment.Far;
     itemGrid46.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid46.Changed = false;
     itemGrid46.FieldType = ItemType.Text;
     itemGrid46.FontColor = Color.Yellow;
     itemGrid46.FontStyle = FontStyle.Regular;
     itemGrid46.Height = 1f;
     itemGrid46.IsBlink = 0;
     itemGrid46.Name = "tbTradingChannel";
     itemGrid46.Text = "";
     itemGrid46.ValueFormat = FormatType.Text;
     itemGrid46.Visible = true;
     itemGrid46.Width = 30;
     itemGrid46.X = 70;
     itemGrid46.Y = 6f;
     this.intzaInfo3.Items.Add(itemGrid33);
     this.intzaInfo3.Items.Add(itemGrid34);
     this.intzaInfo3.Items.Add(itemGrid35);
     this.intzaInfo3.Items.Add(itemGrid36);
     this.intzaInfo3.Items.Add(itemGrid37);
     this.intzaInfo3.Items.Add(itemGrid38);
     this.intzaInfo3.Items.Add(itemGrid39);
     this.intzaInfo3.Items.Add(itemGrid40);
     this.intzaInfo3.Items.Add(itemGrid41);
     this.intzaInfo3.Items.Add(itemGrid42);
     this.intzaInfo3.Items.Add(itemGrid43);
     this.intzaInfo3.Items.Add(itemGrid44);
     this.intzaInfo3.Items.Add(itemGrid45);
     this.intzaInfo3.Items.Add(itemGrid46);
     this.intzaInfo3.LineColor = Color.Red;
     this.intzaInfo3.Location = new Point(306, 2);
     this.intzaInfo3.Name = "intzaInfo3";
     this.intzaInfo3.Size = new Size(161, 151);
     this.intzaInfo3.TabIndex = 152;
     this.lbError.BackColor = Color.FromArgb(30, 30, 30);
     this.lbError.ForeColor = Color.Yellow;
     this.lbError.Location = new Point(528, 106);
     this.lbError.Name = "lbError";
     this.lbError.Size = new Size(88, 31);
     this.lbError.TabIndex = 154;
     this.intzaDeal.AllowDrop = true;
     this.intzaDeal.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaDeal.CanBlink = true;
     this.intzaDeal.CanDrag = false;
     this.intzaDeal.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Center;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "confirm";
     columnItem.Text = "Confirm";
     columnItem.ValueFormat = FormatType.Text;
     columnItem.Visible = true;
     columnItem.Width = 25;
     columnItem2.Alignment = StringAlignment.Far;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "volume";
     columnItem2.Text = "Volume";
     columnItem2.ValueFormat = FormatType.Volume;
     columnItem2.Visible = true;
     columnItem2.Width = 30;
     columnItem3.Alignment = StringAlignment.Far;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "price";
     columnItem3.Text = "Price";
     columnItem3.ValueFormat = FormatType.Price;
     columnItem3.Visible = true;
     columnItem3.Width = 21;
     columnItem4.Alignment = StringAlignment.Far;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "time";
     columnItem4.Text = "Time";
     columnItem4.ValueFormat = FormatType.Text;
     columnItem4.Visible = true;
     columnItem4.Width = 24;
     this.intzaDeal.Columns.Add(columnItem);
     this.intzaDeal.Columns.Add(columnItem2);
     this.intzaDeal.Columns.Add(columnItem3);
     this.intzaDeal.Columns.Add(columnItem4);
     this.intzaDeal.CurrentScroll = 0;
     this.intzaDeal.FocusItemIndex = -1;
     this.intzaDeal.ForeColor = Color.Black;
     this.intzaDeal.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaDeal.HeaderPctHeight = 80f;
     this.intzaDeal.IsAutoRepaint = true;
     this.intzaDeal.IsDrawFullRow = false;
     this.intzaDeal.IsDrawGrid = true;
     this.intzaDeal.IsDrawHeader = true;
     this.intzaDeal.IsScrollable = true;
     this.intzaDeal.Location = new Point(469, 2);
     this.intzaDeal.MainColumn = "";
     this.intzaDeal.Name = "intzaDeal";
     this.intzaDeal.Rows = 0;
     this.intzaDeal.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaDeal.RowSelectType = 0;
     this.intzaDeal.RowsVisible = 0;
     this.intzaDeal.Size = new Size(233, 151);
     this.intzaDeal.SortColumnName = "";
     this.intzaDeal.SortType = SortType.Desc;
     this.intzaDeal.TabIndex = 155;
     base.AutoScaleDimensions = new SizeF(7f, 15f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = Color.FromArgb(20, 20, 20);
     base.ClientSize = new Size(706, 155);
     base.Controls.Add(this.intzaDeal);
     base.Controls.Add(this.lbError);
     base.Controls.Add(this.intzaInfo3);
     base.Controls.Add(this.intzaInfo2);
     base.Controls.Add(this.intzaInfo1);
     this.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     base.FormBorderStyle = FormBorderStyle.FixedToolWindow;
     base.KeyPreview = true;
     base.MaximizeBox = false;
     base.Name = "frmViewOrderInfo";
     base.StartPosition = FormStartPosition.Manual;
     this.Text = "Deal Data";
     base.Load += new EventHandler(this.frmViewOrderInfo_Load);
     base.Shown += new EventHandler(this.frmViewOrderInfo_Shown);
     base.Enter += new EventHandler(this.frmViewOrderInfo_Enter);
     base.Leave += new EventHandler(this.frmViewOrderInfo_Leave);
     base.KeyDown += new KeyEventHandler(this.frmViewOrderInfo_KeyDown);
     base.ResumeLayout(false);
 }
示例#11
0
        public ArrayList GetDataByGridCondition(Expression <Func <T, bool> > expression, SortGrid sortGrid, IQueryable <T> data)
        {
            int       totalcount = 0;
            ArrayList arrayList  = new ArrayList();

            if (string.IsNullOrEmpty(sortGrid.SortColumn) || string.IsNullOrEmpty(sortGrid.SortColumnDirection))
            {
            }
            else
            {
                data = data.OrderBy(sortGrid.SortColumn + " " + sortGrid.SortColumnDirection);
            }
            if (expression != null)
            {
                data       = data.Where(expression);
                totalcount = data.Count();
            }
            else
            {
                totalcount = data.Count();
                if (sortGrid.PageSize == -1)
                {
                    sortGrid.PageSize = totalcount;
                }
            }

            data = data.Skip(sortGrid.Skip).Take(sortGrid.PageSize);
            var totaldata = data.ToList();

            arrayList.Add(totalcount);
            arrayList.Add(totaldata);

            return(arrayList);
        }
示例#12
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ColumnItem columnItem5 = new ColumnItem();
     ColumnItem columnItem6 = new ColumnItem();
     ColumnItem columnItem7 = new ColumnItem();
     ColumnItem columnItem8 = new ColumnItem();
     ColumnItem columnItem9 = new ColumnItem();
     ColumnItem columnItem10 = new ColumnItem();
     ColumnItem columnItem11 = new ColumnItem();
     ColumnItem columnItem12 = new ColumnItem();
     ColumnItem columnItem13 = new ColumnItem();
     ColumnItem columnItem14 = new ColumnItem();
     this.panelMain = new Panel();
     this.ucBids8 = new ucBids();
     this.ucBids7 = new ucBids();
     this.ucBids6 = new ucBids();
     this.ucBids5 = new ucBids();
     this.ucBids4 = new ucBids();
     this.ucBids3 = new ucBids();
     this.ucBids2 = new ucBids();
     this.ucBids1 = new ucBids();
     this.tStripMenu = new ToolStrip();
     this.toolStripLabel10 = new ToolStripLabel();
     this.tscbSelection = new ToolStripComboBox();
     this.tsbtnAdd = new ToolStripButton();
     this.tsbtnDel = new ToolStripButton();
     this.scrollbar1 = new Scrollbar();
     this.speedTableGrid1 = new SortGrid();
     this.speedTableGrid2 = new SortGrid();
     this.speedTableGrid3 = new SortGrid();
     this.speedTableGrid4 = new SortGrid();
     this.contextLink = new ContextMenuStrip(this.components);
     this.tsmCallHistoricalChart = new ToolStripMenuItem();
     this.tsmCallNews = new ToolStripMenuItem();
     this.toolStripMenuItem1 = new ToolStripSeparator();
     this.tsmCallMarketWatch = new ToolStripMenuItem();
     this.tsmCallStockInPlay = new ToolStripMenuItem();
     this.tsmCallSaleByPrice = new ToolStripMenuItem();
     this.tsmCallSaleByTime = new ToolStripMenuItem();
     this.tsmCallOddlot = new ToolStripMenuItem();
     this.panelMain.SuspendLayout();
     this.tStripMenu.SuspendLayout();
     this.contextLink.SuspendLayout();
     base.SuspendLayout();
     this.panelMain.BackColor = Color.FromArgb(20, 20, 20);
     this.panelMain.Controls.Add(this.ucBids8);
     this.panelMain.Controls.Add(this.ucBids7);
     this.panelMain.Controls.Add(this.ucBids6);
     this.panelMain.Controls.Add(this.ucBids5);
     this.panelMain.Controls.Add(this.ucBids4);
     this.panelMain.Controls.Add(this.ucBids3);
     this.panelMain.Controls.Add(this.ucBids2);
     this.panelMain.Controls.Add(this.ucBids1);
     this.panelMain.Location = new Point(0, 67);
     this.panelMain.Name = "panelMain";
     this.panelMain.Size = new Size(818, 418);
     this.panelMain.TabIndex = 70;
     this.ucBids8.BackColor = Color.FromArgb(20, 20, 20);
     this.ucBids8.CurrStockNo = 0;
     this.ucBids8.IsLoadingData = false;
     this.ucBids8.Location = new Point(374, 260);
     this.ucBids8.Name = "ucBids8";
     this.ucBids8.Size = new Size(444, 154);
     this.ucBids8.TabIndex = 85;
     this.ucBids8.OnNewStock += new ucBids.OnNewStockEventHandler(this.ucBids1_OnNewStock);
     this.ucBids8.OnLink += new ucBids.OnLinkEventHandler(this.ucBids_OnLink);
     this.ucBids8.Leave += new EventHandler(this.ucBids_Leave);
     this.ucBids8.Enter += new EventHandler(this.ucBids_Enter);
     this.ucBids7.BackColor = Color.FromArgb(20, 20, 20);
     this.ucBids7.CurrStockNo = 0;
     this.ucBids7.IsLoadingData = false;
     this.ucBids7.Location = new Point(371, 182);
     this.ucBids7.Name = "ucBids7";
     this.ucBids7.Size = new Size(444, 154);
     this.ucBids7.TabIndex = 84;
     this.ucBids7.OnNewStock += new ucBids.OnNewStockEventHandler(this.ucBids1_OnNewStock);
     this.ucBids7.OnLink += new ucBids.OnLinkEventHandler(this.ucBids_OnLink);
     this.ucBids7.Leave += new EventHandler(this.ucBids_Leave);
     this.ucBids7.Enter += new EventHandler(this.ucBids_Enter);
     this.ucBids6.BackColor = Color.FromArgb(20, 20, 20);
     this.ucBids6.CurrStockNo = 0;
     this.ucBids6.IsLoadingData = false;
     this.ucBids6.Location = new Point(374, 84);
     this.ucBids6.Name = "ucBids6";
     this.ucBids6.Size = new Size(444, 154);
     this.ucBids6.TabIndex = 83;
     this.ucBids6.OnNewStock += new ucBids.OnNewStockEventHandler(this.ucBids1_OnNewStock);
     this.ucBids6.OnLink += new ucBids.OnLinkEventHandler(this.ucBids_OnLink);
     this.ucBids6.Leave += new EventHandler(this.ucBids_Leave);
     this.ucBids6.Enter += new EventHandler(this.ucBids_Enter);
     this.ucBids5.BackColor = Color.FromArgb(20, 20, 20);
     this.ucBids5.CurrStockNo = 0;
     this.ucBids5.IsLoadingData = false;
     this.ucBids5.Location = new Point(377, 3);
     this.ucBids5.Name = "ucBids5";
     this.ucBids5.Size = new Size(444, 154);
     this.ucBids5.TabIndex = 82;
     this.ucBids5.OnNewStock += new ucBids.OnNewStockEventHandler(this.ucBids1_OnNewStock);
     this.ucBids5.OnLink += new ucBids.OnLinkEventHandler(this.ucBids_OnLink);
     this.ucBids5.Leave += new EventHandler(this.ucBids_Leave);
     this.ucBids5.Enter += new EventHandler(this.ucBids_Enter);
     this.ucBids4.BackColor = Color.FromArgb(20, 20, 20);
     this.ucBids4.CurrStockNo = 0;
     this.ucBids4.IsLoadingData = false;
     this.ucBids4.Location = new Point(3, 260);
     this.ucBids4.Name = "ucBids4";
     this.ucBids4.Size = new Size(444, 154);
     this.ucBids4.TabIndex = 81;
     this.ucBids4.OnNewStock += new ucBids.OnNewStockEventHandler(this.ucBids1_OnNewStock);
     this.ucBids4.OnLink += new ucBids.OnLinkEventHandler(this.ucBids_OnLink);
     this.ucBids4.Leave += new EventHandler(this.ucBids_Leave);
     this.ucBids4.Enter += new EventHandler(this.ucBids_Enter);
     this.ucBids3.BackColor = Color.FromArgb(20, 20, 20);
     this.ucBids3.CurrStockNo = 0;
     this.ucBids3.IsLoadingData = false;
     this.ucBids3.Location = new Point(-4, 200);
     this.ucBids3.Name = "ucBids3";
     this.ucBids3.Size = new Size(444, 154);
     this.ucBids3.TabIndex = 80;
     this.ucBids3.OnNewStock += new ucBids.OnNewStockEventHandler(this.ucBids1_OnNewStock);
     this.ucBids3.OnLink += new ucBids.OnLinkEventHandler(this.ucBids_OnLink);
     this.ucBids3.Leave += new EventHandler(this.ucBids_Leave);
     this.ucBids3.Enter += new EventHandler(this.ucBids_Enter);
     this.ucBids2.BackColor = Color.FromArgb(20, 20, 20);
     this.ucBids2.CurrStockNo = 0;
     this.ucBids2.IsLoadingData = false;
     this.ucBids2.Location = new Point(0, 112);
     this.ucBids2.Name = "ucBids2";
     this.ucBids2.Size = new Size(444, 154);
     this.ucBids2.TabIndex = 79;
     this.ucBids2.OnNewStock += new ucBids.OnNewStockEventHandler(this.ucBids1_OnNewStock);
     this.ucBids2.OnLink += new ucBids.OnLinkEventHandler(this.ucBids_OnLink);
     this.ucBids2.Leave += new EventHandler(this.ucBids_Leave);
     this.ucBids2.Enter += new EventHandler(this.ucBids_Enter);
     this.ucBids1.BackColor = Color.FromArgb(20, 20, 20);
     this.ucBids1.CurrStockNo = 0;
     this.ucBids1.IsLoadingData = false;
     this.ucBids1.Location = new Point(0, 3);
     this.ucBids1.Name = "ucBids1";
     this.ucBids1.Size = new Size(444, 154);
     this.ucBids1.TabIndex = 78;
     this.ucBids1.OnNewStock += new ucBids.OnNewStockEventHandler(this.ucBids1_OnNewStock);
     this.ucBids1.OnLink += new ucBids.OnLinkEventHandler(this.ucBids_OnLink);
     this.ucBids1.Leave += new EventHandler(this.ucBids_Leave);
     this.ucBids1.Enter += new EventHandler(this.ucBids_Enter);
     this.tStripMenu.AllowMerge = false;
     this.tStripMenu.BackColor = Color.FromArgb(30, 30, 30);
     this.tStripMenu.GripMargin = new Padding(0);
     this.tStripMenu.GripStyle = ToolStripGripStyle.Hidden;
     this.tStripMenu.Items.AddRange(new ToolStripItem[]
     {
         this.toolStripLabel10,
         this.tscbSelection,
         this.tsbtnAdd,
         this.tsbtnDel
     });
     this.tStripMenu.Location = new Point(0, 0);
     this.tStripMenu.Name = "tStripMenu";
     this.tStripMenu.Padding = new Padding(1, 1, 1, 2);
     this.tStripMenu.RenderMode = ToolStripRenderMode.System;
     this.tStripMenu.Size = new Size(1121, 26);
     this.tStripMenu.TabIndex = 77;
     this.toolStripLabel10.ForeColor = Color.LightGray;
     this.toolStripLabel10.Margin = new Padding(2, 1, 2, 2);
     this.toolStripLabel10.Name = "toolStripLabel10";
     this.toolStripLabel10.Size = new Size(61, 20);
     this.toolStripLabel10.Text = "Selection :";
     this.tscbSelection.BackColor = Color.FromArgb(30, 30, 30);
     this.tscbSelection.DropDownStyle = ComboBoxStyle.DropDownList;
     this.tscbSelection.ForeColor = Color.LightGray;
     this.tscbSelection.Items.AddRange(new object[]
     {
         "Favorites-1",
         "Favorites-2",
         "Favorites-3",
         "Favorites-4",
         "Favorites-5"
     });
     this.tscbSelection.Name = "tscbSelection";
     this.tscbSelection.Size = new Size(120, 23);
     this.tscbSelection.SelectedIndexChanged += new EventHandler(this.tscbSelection_SelectedIndexChanged);
     this.tsbtnAdd.ForeColor = Color.LightGray;
     this.tsbtnAdd.Image = Resources.Plus;
     this.tsbtnAdd.ImageTransparentColor = Color.Magenta;
     this.tsbtnAdd.Margin = new Padding(10, 1, 0, 2);
     this.tsbtnAdd.Name = "tsbtnAdd";
     this.tsbtnAdd.Size = new Size(49, 20);
     this.tsbtnAdd.Text = "Add";
     this.tsbtnAdd.Click += new EventHandler(this.tsbtnAdd_Click);
     this.tsbtnDel.ForeColor = Color.LightGray;
     this.tsbtnDel.Image = Resources.Minus;
     this.tsbtnDel.ImageTransparentColor = Color.Magenta;
     this.tsbtnDel.Name = "tsbtnDel";
     this.tsbtnDel.Size = new Size(60, 20);
     this.tsbtnDel.Text = "Delete";
     this.tsbtnDel.Click += new EventHandler(this.tsbtnDel_Click);
     this.scrollbar1.BackColor = Color.FromArgb(20, 20, 20);
     this.scrollbar1.ChannelColor = Color.FromArgb(80, 80, 80);
     this.scrollbar1.Cursor = Cursors.Hand;
     this.scrollbar1.HeaderHeight = 0f;
     this.scrollbar1.LargeChange = 10;
     this.scrollbar1.Location = new Point(896, 29);
     this.scrollbar1.Maximum = 100;
     this.scrollbar1.MinimumSize = new Size(10, 47);
     this.scrollbar1.Name = "scrollbar1";
     this.scrollbar1.Size = new Size(10, 375);
     this.scrollbar1.TabIndex = 71;
     this.scrollbar1.Value = 0;
     this.scrollbar1.ValueChanged += new EventHandler(this.scrollbar1_ValueChanged);
     this.speedTableGrid1.AllowDrop = true;
     this.speedTableGrid1.BackColor = Color.Black;
     this.speedTableGrid1.CanBlink = true;
     this.speedTableGrid1.CanDrag = false;
     this.speedTableGrid1.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Far;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "bidvolume";
     columnItem.Text = "Volume";
     columnItem.ValueFormat = FormatType.Volume;
     columnItem.Visible = true;
     columnItem.Width = 30;
     columnItem2.Alignment = StringAlignment.Near;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "bid";
     columnItem2.Text = "Bid";
     columnItem2.ValueFormat = FormatType.Text;
     columnItem2.Visible = true;
     columnItem2.Width = 20;
     columnItem3.Alignment = StringAlignment.Near;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "offer";
     columnItem3.Text = "Offer";
     columnItem3.ValueFormat = FormatType.Text;
     columnItem3.Visible = true;
     columnItem3.Width = 20;
     columnItem4.Alignment = StringAlignment.Far;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "offervolume";
     columnItem4.Text = "Volume";
     columnItem4.ValueFormat = FormatType.Volume;
     columnItem4.Visible = true;
     columnItem4.Width = 30;
     this.speedTableGrid1.Columns.Add(columnItem);
     this.speedTableGrid1.Columns.Add(columnItem2);
     this.speedTableGrid1.Columns.Add(columnItem3);
     this.speedTableGrid1.Columns.Add(columnItem4);
     this.speedTableGrid1.CurrentScroll = 0;
     this.speedTableGrid1.FocusItemIndex = -1;
     this.speedTableGrid1.ForeColor = Color.Black;
     this.speedTableGrid1.GridColor = Color.FromArgb(45, 45, 45);
     this.speedTableGrid1.HeaderPctHeight = 80f;
     this.speedTableGrid1.IsAutoRepaint = false;
     this.speedTableGrid1.IsDrawFullRow = false;
     this.speedTableGrid1.IsDrawGrid = true;
     this.speedTableGrid1.IsDrawHeader = true;
     this.speedTableGrid1.IsScrollable = false;
     this.speedTableGrid1.Location = new Point(0, 23);
     this.speedTableGrid1.MainColumn = "";
     this.speedTableGrid1.Margin = new Padding(1);
     this.speedTableGrid1.Name = "speedTableGrid1";
     this.speedTableGrid1.Rows = 5;
     this.speedTableGrid1.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.speedTableGrid1.RowSelectType = 0;
     this.speedTableGrid1.RowsVisible = 5;
     this.speedTableGrid1.Size = new Size(220, 45);
     this.speedTableGrid1.SortColumnName = "";
     this.speedTableGrid1.SortType = SortType.Desc;
     this.speedTableGrid1.TabIndex = 66;
     this.speedTableGrid2.AllowDrop = true;
     this.speedTableGrid2.BackColor = Color.Black;
     this.speedTableGrid2.CanBlink = true;
     this.speedTableGrid2.CanDrag = false;
     this.speedTableGrid2.CanGetMouseMove = false;
     columnItem5.Alignment = StringAlignment.Far;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.LightGray;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "volume";
     columnItem5.Text = "Volume";
     columnItem5.ValueFormat = FormatType.Volume;
     columnItem5.Visible = true;
     columnItem5.Width = 40;
     columnItem6.Alignment = StringAlignment.Far;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.ColumnAlignment = StringAlignment.Center;
     columnItem6.FontColor = Color.LightGray;
     columnItem6.MyStyle = FontStyle.Regular;
     columnItem6.Name = "price";
     columnItem6.Text = "Price";
     columnItem6.ValueFormat = FormatType.Text;
     columnItem6.Visible = true;
     columnItem6.Width = 27;
     columnItem7.Alignment = StringAlignment.Far;
     columnItem7.BackColor = Color.FromArgb(64, 64, 64);
     columnItem7.ColumnAlignment = StringAlignment.Center;
     columnItem7.FontColor = Color.LightGray;
     columnItem7.MyStyle = FontStyle.Regular;
     columnItem7.Name = "time";
     columnItem7.Text = "Time";
     columnItem7.ValueFormat = FormatType.Text;
     columnItem7.Visible = true;
     columnItem7.Width = 33;
     this.speedTableGrid2.Columns.Add(columnItem5);
     this.speedTableGrid2.Columns.Add(columnItem6);
     this.speedTableGrid2.Columns.Add(columnItem7);
     this.speedTableGrid2.CurrentScroll = 0;
     this.speedTableGrid2.FocusItemIndex = -1;
     this.speedTableGrid2.ForeColor = Color.Black;
     this.speedTableGrid2.GridColor = Color.FromArgb(45, 45, 45);
     this.speedTableGrid2.HeaderPctHeight = 80f;
     this.speedTableGrid2.IsAutoRepaint = false;
     this.speedTableGrid2.IsDrawFullRow = true;
     this.speedTableGrid2.IsDrawGrid = false;
     this.speedTableGrid2.IsDrawHeader = true;
     this.speedTableGrid2.IsScrollable = false;
     this.speedTableGrid2.Location = new Point(232, 21);
     this.speedTableGrid2.MainColumn = "";
     this.speedTableGrid2.Margin = new Padding(1);
     this.speedTableGrid2.Name = "speedTableGrid2";
     this.speedTableGrid2.Rows = 5;
     this.speedTableGrid2.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.speedTableGrid2.RowSelectType = 0;
     this.speedTableGrid2.RowsVisible = 5;
     this.speedTableGrid2.Size = new Size(156, 38);
     this.speedTableGrid2.SortColumnName = "";
     this.speedTableGrid2.SortType = SortType.Desc;
     this.speedTableGrid2.TabIndex = 65;
     this.speedTableGrid3.AllowDrop = true;
     this.speedTableGrid3.BackColor = Color.Black;
     this.speedTableGrid3.CanBlink = true;
     this.speedTableGrid3.CanDrag = false;
     this.speedTableGrid3.CanGetMouseMove = false;
     columnItem8.Alignment = StringAlignment.Far;
     columnItem8.BackColor = Color.FromArgb(64, 64, 64);
     columnItem8.ColumnAlignment = StringAlignment.Center;
     columnItem8.FontColor = Color.LightGray;
     columnItem8.MyStyle = FontStyle.Regular;
     columnItem8.Name = "bidvolume";
     columnItem8.Text = "Volume";
     columnItem8.ValueFormat = FormatType.Volume;
     columnItem8.Visible = true;
     columnItem8.Width = 30;
     columnItem9.Alignment = StringAlignment.Near;
     columnItem9.BackColor = Color.FromArgb(64, 64, 64);
     columnItem9.ColumnAlignment = StringAlignment.Center;
     columnItem9.FontColor = Color.LightGray;
     columnItem9.MyStyle = FontStyle.Regular;
     columnItem9.Name = "bid";
     columnItem9.Text = "Bid";
     columnItem9.ValueFormat = FormatType.Text;
     columnItem9.Visible = true;
     columnItem9.Width = 20;
     columnItem10.Alignment = StringAlignment.Near;
     columnItem10.BackColor = Color.FromArgb(64, 64, 64);
     columnItem10.ColumnAlignment = StringAlignment.Center;
     columnItem10.FontColor = Color.LightGray;
     columnItem10.MyStyle = FontStyle.Regular;
     columnItem10.Name = "offer";
     columnItem10.Text = "Offer";
     columnItem10.ValueFormat = FormatType.Text;
     columnItem10.Visible = true;
     columnItem10.Width = 20;
     columnItem11.Alignment = StringAlignment.Far;
     columnItem11.BackColor = Color.FromArgb(64, 64, 64);
     columnItem11.ColumnAlignment = StringAlignment.Center;
     columnItem11.FontColor = Color.LightGray;
     columnItem11.MyStyle = FontStyle.Regular;
     columnItem11.Name = "offervolume";
     columnItem11.Text = "Volume";
     columnItem11.ValueFormat = FormatType.Volume;
     columnItem11.Visible = true;
     columnItem11.Width = 30;
     this.speedTableGrid3.Columns.Add(columnItem8);
     this.speedTableGrid3.Columns.Add(columnItem9);
     this.speedTableGrid3.Columns.Add(columnItem10);
     this.speedTableGrid3.Columns.Add(columnItem11);
     this.speedTableGrid3.CurrentScroll = 0;
     this.speedTableGrid3.FocusItemIndex = -1;
     this.speedTableGrid3.ForeColor = Color.Black;
     this.speedTableGrid3.GridColor = Color.FromArgb(45, 45, 45);
     this.speedTableGrid3.HeaderPctHeight = 80f;
     this.speedTableGrid3.IsAutoRepaint = false;
     this.speedTableGrid3.IsDrawFullRow = false;
     this.speedTableGrid3.IsDrawGrid = true;
     this.speedTableGrid3.IsDrawHeader = true;
     this.speedTableGrid3.IsScrollable = false;
     this.speedTableGrid3.Location = new Point(0, 23);
     this.speedTableGrid3.MainColumn = "";
     this.speedTableGrid3.Margin = new Padding(1);
     this.speedTableGrid3.Name = "speedTableGrid3";
     this.speedTableGrid3.Rows = 5;
     this.speedTableGrid3.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.speedTableGrid3.RowSelectType = 0;
     this.speedTableGrid3.RowsVisible = 5;
     this.speedTableGrid3.Size = new Size(220, 45);
     this.speedTableGrid3.SortColumnName = "";
     this.speedTableGrid3.SortType = SortType.Desc;
     this.speedTableGrid3.TabIndex = 66;
     this.speedTableGrid4.AllowDrop = true;
     this.speedTableGrid4.BackColor = Color.Black;
     this.speedTableGrid4.CanBlink = true;
     this.speedTableGrid4.CanDrag = false;
     this.speedTableGrid4.CanGetMouseMove = false;
     columnItem12.Alignment = StringAlignment.Far;
     columnItem12.BackColor = Color.FromArgb(64, 64, 64);
     columnItem12.ColumnAlignment = StringAlignment.Center;
     columnItem12.FontColor = Color.LightGray;
     columnItem12.MyStyle = FontStyle.Regular;
     columnItem12.Name = "volume";
     columnItem12.Text = "Volume";
     columnItem12.ValueFormat = FormatType.Volume;
     columnItem12.Visible = true;
     columnItem12.Width = 40;
     columnItem13.Alignment = StringAlignment.Far;
     columnItem13.BackColor = Color.FromArgb(64, 64, 64);
     columnItem13.ColumnAlignment = StringAlignment.Center;
     columnItem13.FontColor = Color.LightGray;
     columnItem13.MyStyle = FontStyle.Regular;
     columnItem13.Name = "price";
     columnItem13.Text = "Price";
     columnItem13.ValueFormat = FormatType.Text;
     columnItem13.Visible = true;
     columnItem13.Width = 27;
     columnItem14.Alignment = StringAlignment.Far;
     columnItem14.BackColor = Color.FromArgb(64, 64, 64);
     columnItem14.ColumnAlignment = StringAlignment.Center;
     columnItem14.FontColor = Color.LightGray;
     columnItem14.MyStyle = FontStyle.Regular;
     columnItem14.Name = "time";
     columnItem14.Text = "Time";
     columnItem14.ValueFormat = FormatType.Text;
     columnItem14.Visible = true;
     columnItem14.Width = 33;
     this.speedTableGrid4.Columns.Add(columnItem12);
     this.speedTableGrid4.Columns.Add(columnItem13);
     this.speedTableGrid4.Columns.Add(columnItem14);
     this.speedTableGrid4.CurrentScroll = 0;
     this.speedTableGrid4.FocusItemIndex = -1;
     this.speedTableGrid4.ForeColor = Color.Black;
     this.speedTableGrid4.GridColor = Color.FromArgb(45, 45, 45);
     this.speedTableGrid4.HeaderPctHeight = 80f;
     this.speedTableGrid4.IsAutoRepaint = false;
     this.speedTableGrid4.IsDrawFullRow = true;
     this.speedTableGrid4.IsDrawGrid = false;
     this.speedTableGrid4.IsDrawHeader = true;
     this.speedTableGrid4.IsScrollable = false;
     this.speedTableGrid4.Location = new Point(232, 21);
     this.speedTableGrid4.MainColumn = "";
     this.speedTableGrid4.Margin = new Padding(1);
     this.speedTableGrid4.Name = "speedTableGrid4";
     this.speedTableGrid4.Rows = 5;
     this.speedTableGrid4.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.speedTableGrid4.RowSelectType = 0;
     this.speedTableGrid4.RowsVisible = 5;
     this.speedTableGrid4.Size = new Size(156, 38);
     this.speedTableGrid4.SortColumnName = "";
     this.speedTableGrid4.SortType = SortType.Desc;
     this.speedTableGrid4.TabIndex = 65;
     this.contextLink.Items.AddRange(new ToolStripItem[]
     {
         this.tsmCallHistoricalChart,
         this.tsmCallNews,
         this.toolStripMenuItem1,
         this.tsmCallMarketWatch,
         this.tsmCallStockInPlay,
         this.tsmCallSaleByPrice,
         this.tsmCallSaleByTime,
         this.tsmCallOddlot
     });
     this.contextLink.Name = "contextMenuStrip1";
     this.contextLink.Size = new Size(212, 164);
     this.tsmCallHistoricalChart.Name = "tsmCallHistoricalChart";
     this.tsmCallHistoricalChart.Size = new Size(211, 22);
     this.tsmCallHistoricalChart.Text = "Historical Chart";
     this.tsmCallHistoricalChart.Click += new EventHandler(this.tsmCallHistoricalChart_Click);
     this.tsmCallNews.Name = "tsmCallNews";
     this.tsmCallNews.Size = new Size(211, 22);
     this.tsmCallNews.Text = "News - ข่าวตลาดหลักทรัพย์ฯ";
     this.tsmCallNews.Click += new EventHandler(this.tsmCallNews_Click);
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new Size(208, 6);
     this.tsmCallMarketWatch.Name = "tsmCallMarketWatch";
     this.tsmCallMarketWatch.Size = new Size(211, 22);
     this.tsmCallMarketWatch.Text = "Market Watch";
     this.tsmCallMarketWatch.Click += new EventHandler(this.tsmCallMarketWatch_Click);
     this.tsmCallStockInPlay.Name = "tsmCallStockInPlay";
     this.tsmCallStockInPlay.Size = new Size(211, 22);
     this.tsmCallStockInPlay.Text = "Stock in Play";
     this.tsmCallStockInPlay.Click += new EventHandler(this.tsmCallStockSummary_Click);
     this.tsmCallSaleByPrice.Name = "tsmCallSaleByPrice";
     this.tsmCallSaleByPrice.Size = new Size(211, 22);
     this.tsmCallSaleByPrice.Text = "Sale by Price";
     this.tsmCallSaleByPrice.Click += new EventHandler(this.tsmCallSaleByPrice_Click);
     this.tsmCallSaleByTime.Name = "tsmCallSaleByTime";
     this.tsmCallSaleByTime.Size = new Size(211, 22);
     this.tsmCallSaleByTime.Text = "Sale by Time";
     this.tsmCallSaleByTime.Click += new EventHandler(this.tsmCallSaleByTime_Click);
     this.tsmCallOddlot.Name = "tsmCallOddlot";
     this.tsmCallOddlot.Size = new Size(211, 22);
     this.tsmCallOddlot.Text = "View Oddlot";
     this.tsmCallOddlot.Click += new EventHandler(this.tsmCallOddlot_Click);
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = Color.FromArgb(50, 50, 50);
     base.ClientSize = new Size(1121, 497);
     base.Controls.Add(this.tStripMenu);
     base.Controls.Add(this.scrollbar1);
     base.Controls.Add(this.panelMain);
     base.FormBorderStyle = FormBorderStyle.FixedToolWindow;
     base.KeyPreview = true;
     base.Name = "frmTopBBOs";
     this.Text = "Top BBO";
     base.IDoShownDelay += new ClientBaseForm.OnShownDelayEventHandler(this.frmTopBBOs_IDoShownDelay);
     base.IDoLoadData += new ClientBaseForm.OnIDoLoadDataEventHandler(this.frmTopBBOs_IDoLoadData);
     base.IDoFontChanged += new ClientBaseForm.OnFontChangedEventHandler(this.frmTopBBOs_IDoFontChanged);
     base.IDoCustomSizeChanged += new ClientBaseForm.CustomSizeChangedEventHandler(this.frmTopBBOs_IDoCustomSizeChanged);
     base.IDoMainFormKeyUp += new ClientBaseForm.OnFormKeyUpEventHandler(this.frmTopBBOs_IDoMainFormKeyUp);
     base.IDoReActivated += new ClientBaseForm.OnReActiveEventHandler(this.frmTopBBOs_IDoReActivated);
     base.KeyDown += new KeyEventHandler(this.frmTopBBOs_KeyDown);
     base.Controls.SetChildIndex(this.panelMain, 0);
     base.Controls.SetChildIndex(this.scrollbar1, 0);
     base.Controls.SetChildIndex(this.tStripMenu, 0);
     this.panelMain.ResumeLayout(false);
     this.tStripMenu.ResumeLayout(false);
     this.tStripMenu.PerformLayout();
     this.contextLink.ResumeLayout(false);
     base.ResumeLayout(false);
     base.PerformLayout();
 }
示例#13
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ColumnItem columnItem5 = new ColumnItem();
     ColumnItem columnItem6 = new ColumnItem();
     this.chkAlertSound = new CheckBox();
     this.chkOpenAlert = new CheckBox();
     this.chkAutoAlert = new CheckBox();
     this.btnClose = new Button();
     this.lbLoading = new Label();
     this.toolTip1 = new ToolTip(this.components);
     this.panelPricAlertPC = new Panel();
     this.btnRemovePc = new Button();
     this.btnRemoveAllPc = new Button();
     this.btnReloadPc = new Button();
     this.tbStockPc = new TextBox();
     this.btnUpdatePc = new Button();
     this.lbStock = new Label();
     this.lbValue = new Label();
     this.lbOper = new Label();
     this.lbField = new Label();
     this.cbFieldPc = new ComboBox();
     this.tbValuePc = new TextBox();
     this.cbOperatorPc = new ComboBox();
     this.intzaPC = new SortGrid();
     this.panelPricAlertPC.SuspendLayout();
     base.SuspendLayout();
     this.chkAlertSound.AutoSize = true;
     this.chkAlertSound.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.chkAlertSound.ImageAlign = ContentAlignment.MiddleRight;
     this.chkAlertSound.Location = new Point(98, 7);
     this.chkAlertSound.Margin = new Padding(3, 2, 3, 2);
     this.chkAlertSound.Name = "chkAlertSound";
     this.chkAlertSound.Size = new Size(94, 20);
     this.chkAlertSound.TabIndex = 2;
     this.chkAlertSound.Text = "Sound Alert";
     this.chkAlertSound.UseVisualStyleBackColor = true;
     this.chkOpenAlert.AutoSize = true;
     this.chkOpenAlert.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.chkOpenAlert.ImageAlign = ContentAlignment.MiddleRight;
     this.chkOpenAlert.Location = new Point(12, 7);
     this.chkOpenAlert.Margin = new Padding(3, 2, 3, 2);
     this.chkOpenAlert.Name = "chkOpenAlert";
     this.chkOpenAlert.Size = new Size(65, 20);
     this.chkOpenAlert.TabIndex = 0;
     this.chkOpenAlert.Text = "Enable";
     this.chkOpenAlert.UseVisualStyleBackColor = true;
     this.chkAutoAlert.AutoSize = true;
     this.chkAutoAlert.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.chkAutoAlert.ImageAlign = ContentAlignment.MiddleRight;
     this.chkAutoAlert.Location = new Point(220, 7);
     this.chkAutoAlert.Margin = new Padding(3, 2, 3, 2);
     this.chkAutoAlert.Name = "chkAutoAlert";
     this.chkAutoAlert.Size = new Size(92, 20);
     this.chkAutoAlert.TabIndex = 1;
     this.chkAutoAlert.Text = "Auto Popup";
     this.chkAutoAlert.UseVisualStyleBackColor = true;
     this.btnClose.Anchor = (AnchorStyles.Bottom | AnchorStyles.Right);
     this.btnClose.AutoSize = true;
     this.btnClose.FlatAppearance.BorderColor = Color.Gray;
     this.btnClose.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnClose.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnClose.FlatStyle = FlatStyle.Flat;
     this.btnClose.Location = new Point(532, 391);
     this.btnClose.Margin = new Padding(3, 2, 3, 2);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new Size(79, 33);
     this.btnClose.TabIndex = 92;
     this.btnClose.Text = "Close";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new EventHandler(this.btnClose_Click);
     this.lbLoading.AutoSize = true;
     this.lbLoading.BackColor = Color.FromArgb(64, 64, 64);
     this.lbLoading.BorderStyle = BorderStyle.FixedSingle;
     this.lbLoading.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbLoading.ForeColor = Color.Yellow;
     this.lbLoading.Location = new Point(250, 394);
     this.lbLoading.Name = "lbLoading";
     this.lbLoading.Padding = new Padding(5, 4, 5, 4);
     this.lbLoading.Size = new Size(73, 25);
     this.lbLoading.TabIndex = 98;
     this.lbLoading.Text = "Loading...";
     this.lbLoading.TextAlign = ContentAlignment.MiddleCenter;
     this.lbLoading.Visible = false;
     this.panelPricAlertPC.AutoSize = true;
     this.panelPricAlertPC.BackColor = SystemColors.ControlLight;
     this.panelPricAlertPC.Controls.Add(this.btnRemovePc);
     this.panelPricAlertPC.Controls.Add(this.btnRemoveAllPc);
     this.panelPricAlertPC.Controls.Add(this.btnReloadPc);
     this.panelPricAlertPC.Location = new Point(12, 36);
     this.panelPricAlertPC.Name = "panelPricAlertPC";
     this.panelPricAlertPC.Size = new Size(600, 40);
     this.panelPricAlertPC.TabIndex = 111;
     this.btnRemovePc.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.btnRemovePc.AutoSize = true;
     this.btnRemovePc.FlatAppearance.BorderColor = Color.Gray;
     this.btnRemovePc.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnRemovePc.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnRemovePc.FlatStyle = FlatStyle.Flat;
     this.btnRemovePc.ImageAlign = ContentAlignment.MiddleLeft;
     this.btnRemovePc.Location = new Point(402, 5);
     this.btnRemovePc.Margin = new Padding(3, 2, 3, 2);
     this.btnRemovePc.Name = "btnRemovePc";
     this.btnRemovePc.Size = new Size(82, 33);
     this.btnRemovePc.TabIndex = 110;
     this.btnRemovePc.Text = "Remove";
     this.btnRemovePc.UseVisualStyleBackColor = true;
     this.btnRemovePc.Click += new EventHandler(this.btnPCremove_Click);
     this.btnRemoveAllPc.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.btnRemoveAllPc.AutoSize = true;
     this.btnRemoveAllPc.FlatAppearance.BorderColor = Color.Gray;
     this.btnRemoveAllPc.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnRemoveAllPc.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnRemoveAllPc.FlatStyle = FlatStyle.Flat;
     this.btnRemoveAllPc.ImageAlign = ContentAlignment.MiddleLeft;
     this.btnRemoveAllPc.Location = new Point(490, 5);
     this.btnRemoveAllPc.Margin = new Padding(3, 2, 3, 2);
     this.btnRemoveAllPc.Name = "btnRemoveAllPc";
     this.btnRemoveAllPc.Size = new Size(106, 33);
     this.btnRemoveAllPc.TabIndex = 97;
     this.btnRemoveAllPc.Text = "Remove All";
     this.btnRemoveAllPc.UseVisualStyleBackColor = true;
     this.btnRemoveAllPc.Click += new EventHandler(this.btnPCremoveAll_Click);
     this.btnReloadPc.AutoSize = true;
     this.btnReloadPc.FlatAppearance.BorderColor = Color.Gray;
     this.btnReloadPc.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnReloadPc.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnReloadPc.FlatStyle = FlatStyle.Flat;
     this.btnReloadPc.ImageAlign = ContentAlignment.MiddleLeft;
     this.btnReloadPc.Location = new Point(9, 5);
     this.btnReloadPc.Margin = new Padding(3, 2, 3, 2);
     this.btnReloadPc.Name = "btnReloadPc";
     this.btnReloadPc.Size = new Size(73, 33);
     this.btnReloadPc.TabIndex = 95;
     this.btnReloadPc.Text = "Reload";
     this.btnReloadPc.UseVisualStyleBackColor = true;
     this.btnReloadPc.Click += new EventHandler(this.btnReloadPc_Click);
     this.tbStockPc.AllowDrop = true;
     this.tbStockPc.BorderStyle = BorderStyle.FixedSingle;
     this.tbStockPc.CharacterCasing = CharacterCasing.Upper;
     this.tbStockPc.Location = new Point(14, 365);
     this.tbStockPc.Margin = new Padding(3, 2, 3, 2);
     this.tbStockPc.MaxLength = 9;
     this.tbStockPc.Name = "tbStockPc";
     this.tbStockPc.Size = new Size(106, 23);
     this.tbStockPc.TabIndex = 109;
     this.tbStockPc.KeyDown += new KeyEventHandler(this.tbPCstock_KeyDown);
     this.tbStockPc.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbStockPc.Enter += new EventHandler(this.controlOrder_Enter);
     this.btnUpdatePc.AutoSize = true;
     this.btnUpdatePc.FlatAppearance.BorderColor = Color.Gray;
     this.btnUpdatePc.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnUpdatePc.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnUpdatePc.FlatStyle = FlatStyle.Flat;
     this.btnUpdatePc.ImageAlign = ContentAlignment.MiddleLeft;
     this.btnUpdatePc.Location = new Point(420, 362);
     this.btnUpdatePc.Margin = new Padding(3, 2, 3, 2);
     this.btnUpdatePc.Name = "btnUpdatePc";
     this.btnUpdatePc.Size = new Size(75, 33);
     this.btnUpdatePc.TabIndex = 107;
     this.btnUpdatePc.Text = "Update";
     this.btnUpdatePc.UseVisualStyleBackColor = true;
     this.btnUpdatePc.Click += new EventHandler(this.btnPCupdate_Click);
     this.lbStock.AutoSize = true;
     this.lbStock.Location = new Point(46, 338);
     this.lbStock.Name = "lbStock";
     this.lbStock.Size = new Size(50, 16);
     this.lbStock.TabIndex = 103;
     this.lbStock.Text = "Symbol";
     this.lbValue.AutoSize = true;
     this.lbValue.Location = new Point(326, 338);
     this.lbValue.Name = "lbValue";
     this.lbValue.Size = new Size(40, 16);
     this.lbValue.TabIndex = 106;
     this.lbValue.Text = "Value";
     this.lbOper.AutoSize = true;
     this.lbOper.Location = new Point(231, 338);
     this.lbOper.Name = "lbOper";
     this.lbOper.Size = new Size(59, 16);
     this.lbOper.TabIndex = 105;
     this.lbOper.Text = "Operator";
     this.lbField.AutoSize = true;
     this.lbField.Location = new Point(152, 338);
     this.lbField.Name = "lbField";
     this.lbField.Size = new Size(35, 16);
     this.lbField.TabIndex = 104;
     this.lbField.Text = "Field";
     this.cbFieldPc.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cbFieldPc.FlatStyle = FlatStyle.Flat;
     this.cbFieldPc.FormattingEnabled = true;
     this.cbFieldPc.Items.AddRange(new object[]
     {
         "LastPrice",
         "%Change"
     });
     this.cbFieldPc.Location = new Point(124, 365);
     this.cbFieldPc.Margin = new Padding(3, 2, 3, 2);
     this.cbFieldPc.Name = "cbFieldPc";
     this.cbFieldPc.Size = new Size(99, 24);
     this.cbFieldPc.TabIndex = 100;
     this.cbFieldPc.SelectedIndexChanged += new EventHandler(this.cbFieldPc_SelectedIndexChanged);
     this.cbFieldPc.Leave += new EventHandler(this.controlOrder_Leave);
     this.cbFieldPc.Enter += new EventHandler(this.controlOrder_Enter);
     this.cbFieldPc.KeyDown += new KeyEventHandler(this.cbPCfield_KeyDown);
     this.tbValuePc.AllowDrop = true;
     this.tbValuePc.BorderStyle = BorderStyle.FixedSingle;
     this.tbValuePc.Location = new Point(299, 365);
     this.tbValuePc.Margin = new Padding(3, 2, 3, 2);
     this.tbValuePc.MaxLength = 9;
     this.tbValuePc.Name = "tbValuePc";
     this.tbValuePc.Size = new Size(106, 23);
     this.tbValuePc.TabIndex = 102;
     this.tbValuePc.KeyDown += new KeyEventHandler(this.tbPCvalue_KeyDown);
     this.tbValuePc.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbValuePc.Enter += new EventHandler(this.controlOrder_Enter);
     this.cbOperatorPc.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cbOperatorPc.FlatStyle = FlatStyle.Flat;
     this.cbOperatorPc.FormattingEnabled = true;
     this.cbOperatorPc.Items.AddRange(new object[]
     {
         ">=",
         "<="
     });
     this.cbOperatorPc.Location = new Point(232, 365);
     this.cbOperatorPc.Margin = new Padding(3, 2, 3, 2);
     this.cbOperatorPc.Name = "cbOperatorPc";
     this.cbOperatorPc.Size = new Size(60, 24);
     this.cbOperatorPc.TabIndex = 101;
     this.cbOperatorPc.Leave += new EventHandler(this.controlOrder_Leave);
     this.cbOperatorPc.Enter += new EventHandler(this.controlOrder_Enter);
     this.cbOperatorPc.KeyDown += new KeyEventHandler(this.cbPCoperator_KeyDown);
     this.intzaPC.AllowDrop = true;
     this.intzaPC.BackColor = Color.FromArgb(20, 20, 20);
     this.intzaPC.CanBlink = false;
     this.intzaPC.CanDrag = false;
     this.intzaPC.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Near;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "stock";
     columnItem.Text = "Symbol";
     columnItem.ValueFormat = FormatType.Text;
     columnItem.Visible = true;
     columnItem.Width = 20;
     columnItem2.Alignment = StringAlignment.Center;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "field";
     columnItem2.Text = "Field";
     columnItem2.ValueFormat = FormatType.Text;
     columnItem2.Visible = true;
     columnItem2.Width = 15;
     columnItem3.Alignment = StringAlignment.Center;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "operator";
     columnItem3.Text = "Operator";
     columnItem3.ValueFormat = FormatType.Text;
     columnItem3.Visible = true;
     columnItem3.Width = 15;
     columnItem4.Alignment = StringAlignment.Center;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "value";
     columnItem4.Text = "Value";
     columnItem4.ValueFormat = FormatType.Text;
     columnItem4.Visible = true;
     columnItem4.Width = 15;
     columnItem5.Alignment = StringAlignment.Center;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.FromArgb(255, 128, 0);
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "alert_time";
     columnItem5.Text = "Alert Time";
     columnItem5.ValueFormat = FormatType.Text;
     columnItem5.Visible = true;
     columnItem5.Width = 18;
     columnItem6.Alignment = StringAlignment.Center;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.ColumnAlignment = StringAlignment.Center;
     columnItem6.FontColor = Color.FromArgb(255, 128, 0);
     columnItem6.MyStyle = FontStyle.Regular;
     columnItem6.Name = "value_at_alert";
     columnItem6.Text = "Alert Price";
     columnItem6.ValueFormat = FormatType.Text;
     columnItem6.Visible = true;
     columnItem6.Width = 17;
     this.intzaPC.Columns.Add(columnItem);
     this.intzaPC.Columns.Add(columnItem2);
     this.intzaPC.Columns.Add(columnItem3);
     this.intzaPC.Columns.Add(columnItem4);
     this.intzaPC.Columns.Add(columnItem5);
     this.intzaPC.Columns.Add(columnItem6);
     this.intzaPC.CurrentScroll = 0;
     this.intzaPC.FocusItemIndex = -1;
     this.intzaPC.ForeColor = Color.Black;
     this.intzaPC.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaPC.HeaderPctHeight = 100f;
     this.intzaPC.IsAutoRepaint = true;
     this.intzaPC.IsDrawFullRow = false;
     this.intzaPC.IsDrawGrid = true;
     this.intzaPC.IsDrawHeader = true;
     this.intzaPC.IsScrollable = true;
     this.intzaPC.Location = new Point(12, 77);
     this.intzaPC.MainColumn = "";
     this.intzaPC.Margin = new Padding(3, 2, 3, 2);
     this.intzaPC.Name = "intzaPC";
     this.intzaPC.Rows = 0;
     this.intzaPC.RowSelectColor = Color.CadetBlue;
     this.intzaPC.RowSelectType = 3;
     this.intzaPC.RowsVisible = 0;
     this.intzaPC.Size = new Size(600, 254);
     this.intzaPC.SortColumnName = "";
     this.intzaPC.SortType = SortType.Desc;
     this.intzaPC.TabIndex = 92;
     this.intzaPC.TableFocusIndexChanged += new SortGrid.TableFocusIndexChangedEventHandler(this.intzaPC_TableFocusIndexChanged);
     this.AllowDrop = true;
     base.AutoScaleDimensions = new SizeF(7f, 16f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(623, 430);
     base.ControlBox = false;
     base.Controls.Add(this.tbStockPc);
     base.Controls.Add(this.panelPricAlertPC);
     base.Controls.Add(this.btnUpdatePc);
     base.Controls.Add(this.lbStock);
     base.Controls.Add(this.lbValue);
     base.Controls.Add(this.lbLoading);
     base.Controls.Add(this.lbOper);
     base.Controls.Add(this.btnClose);
     base.Controls.Add(this.lbField);
     base.Controls.Add(this.chkOpenAlert);
     base.Controls.Add(this.cbFieldPc);
     base.Controls.Add(this.chkAutoAlert);
     base.Controls.Add(this.tbValuePc);
     base.Controls.Add(this.chkAlertSound);
     base.Controls.Add(this.cbOperatorPc);
     base.Controls.Add(this.intzaPC);
     this.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     base.Margin = new Padding(3, 2, 3, 2);
     base.MaximizeBox = false;
     base.MinimizeBox = false;
     base.Name = "frmPcPriceAlert";
     base.StartPosition = FormStartPosition.CenterParent;
     this.Text = "Price Alert on PC";
     base.Load += new EventHandler(this.frmAlertOption_Load);
     base.Shown += new EventHandler(this.frmAlertSetting_Shown);
     this.panelPricAlertPC.ResumeLayout(false);
     this.panelPricAlertPC.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
示例#14
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(ucViewOrder));
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ColumnItem columnItem5 = new ColumnItem();
     ColumnItem columnItem6 = new ColumnItem();
     ColumnItem columnItem7 = new ColumnItem();
     ColumnItem columnItem8 = new ColumnItem();
     ColumnItem columnItem9 = new ColumnItem();
     ColumnItem columnItem10 = new ColumnItem();
     ColumnItem columnItem11 = new ColumnItem();
     ColumnItem columnItem12 = new ColumnItem();
     ColumnItem columnItem13 = new ColumnItem();
     ColumnItem columnItem14 = new ColumnItem();
     ColumnItem columnItem15 = new ColumnItem();
     ColumnItem columnItem16 = new ColumnItem();
     ColumnItem columnItem17 = new ColumnItem();
     ColumnItem columnItem18 = new ColumnItem();
     ColumnItem columnItem19 = new ColumnItem();
     ColumnItem columnItem20 = new ColumnItem();
     ColumnItem columnItem21 = new ColumnItem();
     ColumnItem columnItem22 = new ColumnItem();
     ColumnItem columnItem23 = new ColumnItem();
     ColumnItem columnItem24 = new ColumnItem();
     ColumnItem columnItem25 = new ColumnItem();
     ColumnItem columnItem26 = new ColumnItem();
     ColumnItem columnItem27 = new ColumnItem();
     ColumnItem columnItem28 = new ColumnItem();
     ColumnItem columnItem29 = new ColumnItem();
     ColumnItem columnItem30 = new ColumnItem();
     ColumnItem columnItem31 = new ColumnItem();
     ColumnItem columnItem32 = new ColumnItem();
     this.colConfirm = new ColumnHeader();
     this.colVolume = new ColumnHeader();
     this.colPrice = new ColumnHeader();
     this.colTime = new ColumnHeader();
     this.tStripMenu = new ToolStrip();
     this.tslbStatus = new ToolStripLabel();
     this.tscbStatus = new ToolStripComboBox();
     this.tslbStock = new ToolStripLabel();
     this.tstbStock = new ToolStripTextBox();
     this.tslbPrice = new ToolStripLabel();
     this.tstbPrice = new ToolStripTextBox();
     this.tslbSide = new ToolStripLabel();
     this.tscbSide = new ToolStripComboBox();
     this.tsbtnClearCondition = new ToolStripButton();
     this.tsbtnCancelOrder = new ToolStripButton();
     this.tsbtnSearch = new ToolStripButton();
     this.tsbtnEditOrder = new ToolStripButton();
     this.tsbtnReloadReorder = new ToolStripButton();
     this.lbLoading = new Label();
     this.contextMenuStrip1 = new ContextMenuStrip(this.components);
     this.tsmRefresh = new ToolStripMenuItem();
     this.intzaOrderListTFEX = new SortGrid();
     this.intzaOrderList = new SortGrid();
     this.tStripMenu.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     base.SuspendLayout();
     this.colConfirm.Text = "Confirm#";
     this.colConfirm.Width = 67;
     this.colVolume.Text = "Volume";
     this.colVolume.Width = 78;
     this.colPrice.Text = "Price";
     this.colPrice.Width = 56;
     this.colTime.Text = "Time";
     this.colTime.Width = 64;
     this.tStripMenu.AllowMerge = false;
     this.tStripMenu.BackColor = Color.FromArgb(30, 30, 30);
     this.tStripMenu.CanOverflow = false;
     this.tStripMenu.GripMargin = new Padding(0);
     this.tStripMenu.GripStyle = ToolStripGripStyle.Hidden;
     this.tStripMenu.Items.AddRange(new ToolStripItem[]
     {
         this.tslbStatus,
         this.tscbStatus,
         this.tslbStock,
         this.tstbStock,
         this.tslbPrice,
         this.tstbPrice,
         this.tslbSide,
         this.tscbSide,
         this.tsbtnClearCondition,
         this.tsbtnCancelOrder,
         this.tsbtnSearch,
         this.tsbtnEditOrder,
         this.tsbtnReloadReorder
     });
     this.tStripMenu.LayoutStyle = ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.tStripMenu.Location = new Point(0, 0);
     this.tStripMenu.Name = "tStripMenu";
     this.tStripMenu.Padding = new Padding(1, 2, 1, 1);
     this.tStripMenu.RenderMode = ToolStripRenderMode.System;
     this.tStripMenu.Size = new Size(833, 28);
     this.tStripMenu.TabIndex = 57;
     this.tslbStatus.BackColor = Color.Transparent;
     this.tslbStatus.ForeColor = Color.Gainsboro;
     this.tslbStatus.Margin = new Padding(1);
     this.tslbStatus.Name = "tslbStatus";
     this.tslbStatus.Size = new Size(39, 23);
     this.tslbStatus.Text = "Status";
     this.tscbStatus.AutoCompleteCustomSource.AddRange(new string[]
     {
         "ALL",
         "O",
         "PO",
         "M",
         "C",
         "PX",
         "R",
         "X"
     });
     this.tscbStatus.AutoCompleteMode = AutoCompleteMode.Append;
     this.tscbStatus.AutoCompleteSource = AutoCompleteSource.CustomSource;
     this.tscbStatus.BackColor = Color.FromArgb(45, 45, 45);
     this.tscbStatus.ForeColor = Color.LightGray;
     this.tscbStatus.Items.AddRange(new object[]
     {
         "ALL",
         "O",
         "PO",
         "M",
         "C",
         "PX",
         "R",
         "X"
     });
     this.tscbStatus.Margin = new Padding(1, 0, 1, 2);
     this.tscbStatus.MaxLength = 3;
     this.tscbStatus.Name = "tscbStatus";
     this.tscbStatus.Size = new Size(75, 23);
     this.tscbStatus.KeyUp += new KeyEventHandler(this.tscbStatus_KeyUp);
     this.tscbStatus.KeyDown += new KeyEventHandler(this.tscbStatus_KeyDown);
     this.tscbStatus.Leave += new EventHandler(this.controlOrder_Leave);
     this.tscbStatus.Enter += new EventHandler(this.controlOrder_Enter);
     this.tscbStatus.TextChanged += new EventHandler(this.tscbStatus_TextChanged);
     this.tslbStock.BackColor = Color.Transparent;
     this.tslbStock.ForeColor = Color.Gainsboro;
     this.tslbStock.Margin = new Padding(1);
     this.tslbStock.Name = "tslbStock";
     this.tslbStock.Size = new Size(47, 23);
     this.tslbStock.Text = "Symbol";
     this.tstbStock.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
     this.tstbStock.AutoCompleteSource = AutoCompleteSource.CustomSource;
     this.tstbStock.BackColor = Color.FromArgb(45, 45, 45);
     this.tstbStock.BorderStyle = BorderStyle.FixedSingle;
     this.tstbStock.CharacterCasing = CharacterCasing.Upper;
     this.tstbStock.Font = new Font("Microsoft Sans Serif", 9f);
     this.tstbStock.ForeColor = Color.LightGray;
     this.tstbStock.Margin = new Padding(1, 0, 1, 2);
     this.tstbStock.MaxLength = 12;
     this.tstbStock.Name = "tstbStock";
     this.tstbStock.Size = new Size(80, 23);
     this.tstbStock.Leave += new EventHandler(this.controlOrder_Leave);
     this.tstbStock.KeyDown += new KeyEventHandler(this.tstbStock_KeyDown);
     this.tstbStock.Enter += new EventHandler(this.controlOrder_Enter);
     this.tstbStock.KeyUp += new KeyEventHandler(this.tstbStock_KeyUp);
     this.tslbPrice.BackColor = Color.Transparent;
     this.tslbPrice.ForeColor = Color.Gainsboro;
     this.tslbPrice.Margin = new Padding(1);
     this.tslbPrice.Name = "tslbPrice";
     this.tslbPrice.Size = new Size(33, 23);
     this.tslbPrice.Text = "Price";
     this.tstbPrice.BackColor = Color.FromArgb(45, 45, 45);
     this.tstbPrice.BorderStyle = BorderStyle.FixedSingle;
     this.tstbPrice.ForeColor = Color.LightGray;
     this.tstbPrice.Margin = new Padding(1, 0, 1, 2);
     this.tstbPrice.MaxLength = 8;
     this.tstbPrice.Name = "tstbPrice";
     this.tstbPrice.Size = new Size(65, 23);
     this.tstbPrice.Leave += new EventHandler(this.controlOrder_Leave);
     this.tstbPrice.Enter += new EventHandler(this.controlOrder_Enter);
     this.tstbPrice.KeyUp += new KeyEventHandler(this.tstbPrice_KeyUp);
     this.tslbSide.BackColor = Color.Transparent;
     this.tslbSide.ForeColor = Color.Gainsboro;
     this.tslbSide.Margin = new Padding(1);
     this.tslbSide.Name = "tslbSide";
     this.tslbSide.Size = new Size(29, 23);
     this.tslbSide.Text = "Side";
     this.tscbSide.AutoCompleteCustomSource.AddRange(new string[]
     {
         "ALL",
         "B",
         "S",
         "H",
         "C"
     });
     this.tscbSide.AutoCompleteMode = AutoCompleteMode.Append;
     this.tscbSide.AutoCompleteSource = AutoCompleteSource.CustomSource;
     this.tscbSide.BackColor = Color.FromArgb(45, 45, 45);
     this.tscbSide.ForeColor = Color.LightGray;
     this.tscbSide.Items.AddRange(new object[]
     {
         "ALL",
         "B",
         "S",
         "H",
         "C"
     });
     this.tscbSide.Margin = new Padding(1, 0, 1, 2);
     this.tscbSide.MaxLength = 3;
     this.tscbSide.Name = "tscbSide";
     this.tscbSide.Size = new Size(75, 23);
     this.tscbSide.KeyUp += new KeyEventHandler(this.tscbSide_KeyUp);
     this.tscbSide.KeyDown += new KeyEventHandler(this.tscbStatus_KeyDown);
     this.tscbSide.Leave += new EventHandler(this.controlOrder_Leave);
     this.tscbSide.Enter += new EventHandler(this.controlOrder_Enter);
     this.tscbSide.TextChanged += new EventHandler(this.tscbSide_TextChanged);
     this.tsbtnClearCondition.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnClearCondition.ForeColor = Color.Gainsboro;
     this.tsbtnClearCondition.ImageTransparentColor = Color.Magenta;
     this.tsbtnClearCondition.Margin = new Padding(5, 1, 0, 2);
     this.tsbtnClearCondition.Name = "tsbtnClearCondition";
     this.tsbtnClearCondition.Size = new Size(38, 22);
     this.tsbtnClearCondition.Text = "Clear";
     this.tsbtnClearCondition.ToolTipText = "Clear Condition";
     this.tsbtnClearCondition.Click += new EventHandler(this.tsbtnClearCondition_Click);
     this.tsbtnCancelOrder.Alignment = ToolStripItemAlignment.Right;
     this.tsbtnCancelOrder.ForeColor = Color.Tomato;
     this.tsbtnCancelOrder.Image = (Image)componentResourceManager.GetObject("tsbtnCancelOrder.Image");
     this.tsbtnCancelOrder.ImageTransparentColor = Color.Magenta;
     this.tsbtnCancelOrder.Name = "tsbtnCancelOrder";
     this.tsbtnCancelOrder.Size = new Size(63, 22);
     this.tsbtnCancelOrder.Text = "Cancel";
     this.tsbtnCancelOrder.ToolTipText = "Cancel Order";
     this.tsbtnCancelOrder.Click += new EventHandler(this.tsbtnCancelOrder_Click);
     this.tsbtnSearch.Font = new Font("Microsoft Sans Serif", 9f);
     this.tsbtnSearch.ForeColor = Color.Gainsboro;
     this.tsbtnSearch.Image = Resources.refresh;
     this.tsbtnSearch.ImageTransparentColor = Color.Magenta;
     this.tsbtnSearch.Margin = new Padding(5, 1, 0, 2);
     this.tsbtnSearch.Name = "tsbtnSearch";
     this.tsbtnSearch.Size = new Size(66, 22);
     this.tsbtnSearch.Text = "Search";
     this.tsbtnSearch.Click += new EventHandler(this.tsbtnSearch_Click);
     this.tsbtnEditOrder.Alignment = ToolStripItemAlignment.Right;
     this.tsbtnEditOrder.ForeColor = Color.Yellow;
     this.tsbtnEditOrder.Image = (Image)componentResourceManager.GetObject("tsbtnEditOrder.Image");
     this.tsbtnEditOrder.ImageTransparentColor = Color.Magenta;
     this.tsbtnEditOrder.Margin = new Padding(0, 1, 5, 2);
     this.tsbtnEditOrder.Name = "tsbtnEditOrder";
     this.tsbtnEditOrder.Size = new Size(47, 22);
     this.tsbtnEditOrder.Text = "Edit";
     this.tsbtnEditOrder.ToolTipText = "Edit Order";
     this.tsbtnEditOrder.Click += new EventHandler(this.tsbtnEditOrder_Click);
     this.tsbtnReloadReorder.Alignment = ToolStripItemAlignment.Right;
     this.tsbtnReloadReorder.ForeColor = Color.LightGray;
     this.tsbtnReloadReorder.Image = Resources.refresh;
     this.tsbtnReloadReorder.ImageTransparentColor = Color.Magenta;
     this.tsbtnReloadReorder.Name = "tsbtnReloadReorder";
     this.tsbtnReloadReorder.Size = new Size(66, 22);
     this.tsbtnReloadReorder.Text = "Refresh";
     this.lbLoading.AutoSize = true;
     this.lbLoading.BackColor = Color.FromArgb(64, 64, 64);
     this.lbLoading.BorderStyle = BorderStyle.FixedSingle;
     this.lbLoading.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbLoading.ForeColor = Color.Yellow;
     this.lbLoading.Location = new Point(378, 138);
     this.lbLoading.Name = "lbLoading";
     this.lbLoading.Padding = new Padding(5, 3, 5, 3);
     this.lbLoading.Size = new Size(76, 23);
     this.lbLoading.TabIndex = 61;
     this.lbLoading.Text = "Loading ...";
     this.lbLoading.Visible = false;
     this.contextMenuStrip1.Items.AddRange(new ToolStripItem[]
     {
         this.tsmRefresh
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new Size(111, 26);
     this.tsmRefresh.Image = Resources.refresh;
     this.tsmRefresh.Name = "tsmRefresh";
     this.tsmRefresh.Size = new Size(110, 22);
     this.tsmRefresh.Text = "Reload";
     this.tsmRefresh.Click += new EventHandler(this.tsmRefresh_Click);
     this.intzaOrderListTFEX.AllowDrop = true;
     this.intzaOrderListTFEX.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaOrderListTFEX.CanBlink = false;
     this.intzaOrderListTFEX.CanDrag = false;
     this.intzaOrderListTFEX.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Center;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "checkbox";
     columnItem.Text = "";
     columnItem.ValueFormat = FormatType.Bitmap;
     columnItem.Visible = true;
     columnItem.Width = 3;
     columnItem2.Alignment = StringAlignment.Near;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "order_number";
     columnItem2.Text = "Order No.";
     columnItem2.ValueFormat = FormatType.Text;
     columnItem2.Visible = true;
     columnItem2.Width = 10;
     columnItem3.Alignment = StringAlignment.Center;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "position";
     columnItem3.Text = "Pos";
     columnItem3.ValueFormat = FormatType.Text;
     columnItem3.Visible = true;
     columnItem3.Width = 6;
     columnItem4.Alignment = StringAlignment.Center;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "side";
     columnItem4.Text = "L/S";
     columnItem4.ValueFormat = FormatType.Text;
     columnItem4.Visible = true;
     columnItem4.Width = 5;
     columnItem5.Alignment = StringAlignment.Near;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.LightGray;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "stock";
     columnItem5.Text = "Symbol";
     columnItem5.ValueFormat = FormatType.Text;
     columnItem5.Visible = true;
     columnItem5.Width = 10;
     columnItem6.Alignment = StringAlignment.Far;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.ColumnAlignment = StringAlignment.Center;
     columnItem6.FontColor = Color.LightGray;
     columnItem6.MyStyle = FontStyle.Regular;
     columnItem6.Name = "volume";
     columnItem6.Text = "Volume";
     columnItem6.ValueFormat = FormatType.Volume;
     columnItem6.Visible = true;
     columnItem6.Width = 7;
     columnItem7.Alignment = StringAlignment.Far;
     columnItem7.BackColor = Color.FromArgb(64, 64, 64);
     columnItem7.ColumnAlignment = StringAlignment.Center;
     columnItem7.FontColor = Color.LightGray;
     columnItem7.MyStyle = FontStyle.Regular;
     columnItem7.Name = "price";
     columnItem7.Text = "Price";
     columnItem7.ValueFormat = FormatType.Text;
     columnItem7.Visible = true;
     columnItem7.Width = 12;
     columnItem8.Alignment = StringAlignment.Far;
     columnItem8.BackColor = Color.FromArgb(64, 64, 64);
     columnItem8.ColumnAlignment = StringAlignment.Center;
     columnItem8.FontColor = Color.LightGray;
     columnItem8.MyStyle = FontStyle.Regular;
     columnItem8.Name = "matched";
     columnItem8.Text = "Matched";
     columnItem8.ValueFormat = FormatType.Volume;
     columnItem8.Visible = true;
     columnItem8.Width = 10;
     columnItem9.Alignment = StringAlignment.Far;
     columnItem9.BackColor = Color.FromArgb(64, 64, 64);
     columnItem9.ColumnAlignment = StringAlignment.Center;
     columnItem9.FontColor = Color.LightGray;
     columnItem9.MyStyle = FontStyle.Regular;
     columnItem9.Name = "published";
     columnItem9.Text = "Publish";
     columnItem9.ValueFormat = FormatType.Volume;
     columnItem9.Visible = true;
     columnItem9.Width = 9;
     columnItem10.Alignment = StringAlignment.Near;
     columnItem10.BackColor = Color.FromArgb(64, 64, 64);
     columnItem10.ColumnAlignment = StringAlignment.Center;
     columnItem10.FontColor = Color.LightGray;
     columnItem10.MyStyle = FontStyle.Regular;
     columnItem10.Name = "valid";
     columnItem10.Text = "Valid";
     columnItem10.ValueFormat = FormatType.Text;
     columnItem10.Visible = false;
     columnItem10.Width = 5;
     columnItem11.Alignment = StringAlignment.Center;
     columnItem11.BackColor = Color.FromArgb(64, 64, 64);
     columnItem11.ColumnAlignment = StringAlignment.Center;
     columnItem11.FontColor = Color.LightGray;
     columnItem11.MyStyle = FontStyle.Regular;
     columnItem11.Name = "status";
     columnItem11.Text = "Status";
     columnItem11.ValueFormat = FormatType.Text;
     columnItem11.Visible = true;
     columnItem11.Width = 13;
     columnItem12.Alignment = StringAlignment.Center;
     columnItem12.BackColor = Color.FromArgb(64, 64, 64);
     columnItem12.ColumnAlignment = StringAlignment.Center;
     columnItem12.FontColor = Color.LightGray;
     columnItem12.MyStyle = FontStyle.Regular;
     columnItem12.Name = "time";
     columnItem12.Text = "Time";
     columnItem12.ValueFormat = FormatType.Text;
     columnItem12.Visible = true;
     columnItem12.Width = 9;
     columnItem13.Alignment = StringAlignment.Center;
     columnItem13.BackColor = Color.FromArgb(64, 64, 64);
     columnItem13.ColumnAlignment = StringAlignment.Center;
     columnItem13.FontColor = Color.LightGray;
     columnItem13.MyStyle = FontStyle.Regular;
     columnItem13.Name = "quote";
     columnItem13.Text = "Quote";
     columnItem13.ValueFormat = FormatType.Text;
     columnItem13.Visible = true;
     columnItem13.Width = 6;
     columnItem14.Alignment = StringAlignment.Near;
     columnItem14.BackColor = Color.FromArgb(64, 64, 64);
     columnItem14.ColumnAlignment = StringAlignment.Center;
     columnItem14.FontColor = Color.LightGray;
     columnItem14.MyStyle = FontStyle.Regular;
     columnItem14.Name = "send_date";
     columnItem14.Text = "None";
     columnItem14.ValueFormat = FormatType.Text;
     columnItem14.Visible = false;
     columnItem14.Width = 10;
     columnItem15.Alignment = StringAlignment.Near;
     columnItem15.BackColor = Color.FromArgb(64, 64, 64);
     columnItem15.ColumnAlignment = StringAlignment.Center;
     columnItem15.FontColor = Color.LightGray;
     columnItem15.MyStyle = FontStyle.Regular;
     columnItem15.Name = "key";
     columnItem15.Text = "None";
     columnItem15.ValueFormat = FormatType.Text;
     columnItem15.Visible = false;
     columnItem15.Width = 10;
     columnItem16.Alignment = StringAlignment.Near;
     columnItem16.BackColor = Color.FromArgb(64, 64, 64);
     columnItem16.ColumnAlignment = StringAlignment.Center;
     columnItem16.FontColor = Color.LightGray;
     columnItem16.MyStyle = FontStyle.Regular;
     columnItem16.Name = "ordType";
     columnItem16.Text = "ordType";
     columnItem16.ValueFormat = FormatType.Bitmap;
     columnItem16.Visible = false;
     columnItem16.Width = 10;
     this.intzaOrderListTFEX.Columns.Add(columnItem);
     this.intzaOrderListTFEX.Columns.Add(columnItem2);
     this.intzaOrderListTFEX.Columns.Add(columnItem3);
     this.intzaOrderListTFEX.Columns.Add(columnItem4);
     this.intzaOrderListTFEX.Columns.Add(columnItem5);
     this.intzaOrderListTFEX.Columns.Add(columnItem6);
     this.intzaOrderListTFEX.Columns.Add(columnItem7);
     this.intzaOrderListTFEX.Columns.Add(columnItem8);
     this.intzaOrderListTFEX.Columns.Add(columnItem9);
     this.intzaOrderListTFEX.Columns.Add(columnItem10);
     this.intzaOrderListTFEX.Columns.Add(columnItem11);
     this.intzaOrderListTFEX.Columns.Add(columnItem12);
     this.intzaOrderListTFEX.Columns.Add(columnItem13);
     this.intzaOrderListTFEX.Columns.Add(columnItem14);
     this.intzaOrderListTFEX.Columns.Add(columnItem15);
     this.intzaOrderListTFEX.Columns.Add(columnItem16);
     this.intzaOrderListTFEX.CurrentScroll = 0;
     this.intzaOrderListTFEX.FocusItemIndex = -1;
     this.intzaOrderListTFEX.ForeColor = Color.Black;
     this.intzaOrderListTFEX.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaOrderListTFEX.HeaderPctHeight = 80f;
     this.intzaOrderListTFEX.IsAutoRepaint = true;
     this.intzaOrderListTFEX.IsDrawFullRow = false;
     this.intzaOrderListTFEX.IsDrawGrid = true;
     this.intzaOrderListTFEX.IsDrawHeader = true;
     this.intzaOrderListTFEX.IsScrollable = true;
     this.intzaOrderListTFEX.Location = new Point(0, 124);
     this.intzaOrderListTFEX.MainColumn = "";
     this.intzaOrderListTFEX.Name = "intzaOrderListTFEX";
     this.intzaOrderListTFEX.Rows = 0;
     this.intzaOrderListTFEX.RowSelectColor = Color.FromArgb(0, 0, 128);
     this.intzaOrderListTFEX.RowSelectType = 3;
     this.intzaOrderListTFEX.RowsVisible = 0;
     this.intzaOrderListTFEX.Size = new Size(818, 47);
     this.intzaOrderListTFEX.SortColumnName = "";
     this.intzaOrderListTFEX.SortType = SortType.Desc;
     this.intzaOrderListTFEX.TabIndex = 67;
     this.intzaOrderListTFEX.Visible = false;
     this.intzaOrderListTFEX.MouseClick += new MouseEventHandler(this.intzaOrderListTFEX_MouseClick);
     this.intzaOrderListTFEX.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaOrderListTFEX_TableMouseClick);
     this.intzaOrderListTFEX.TableMouseDoubleClick += new SortGrid.TableMouseDoubleClickEventHandler(this.intzaOrderListTFEX_TableMouseDoubleClick);
     this.intzaOrderList.AllowDrop = true;
     this.intzaOrderList.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaOrderList.CanBlink = false;
     this.intzaOrderList.CanDrag = false;
     this.intzaOrderList.CanGetMouseMove = false;
     columnItem17.Alignment = StringAlignment.Center;
     columnItem17.BackColor = Color.FromArgb(64, 64, 64);
     columnItem17.ColumnAlignment = StringAlignment.Center;
     columnItem17.FontColor = Color.LightGray;
     columnItem17.MyStyle = FontStyle.Regular;
     columnItem17.Name = "checkbox";
     columnItem17.Text = "";
     columnItem17.ValueFormat = FormatType.Bitmap;
     columnItem17.Visible = true;
     columnItem17.Width = 3;
     columnItem18.Alignment = StringAlignment.Near;
     columnItem18.BackColor = Color.FromArgb(64, 64, 64);
     columnItem18.ColumnAlignment = StringAlignment.Center;
     columnItem18.FontColor = Color.LightGray;
     columnItem18.MyStyle = FontStyle.Regular;
     columnItem18.Name = "order_number";
     columnItem18.Text = "Order No.";
     columnItem18.ValueFormat = FormatType.Text;
     columnItem18.Visible = true;
     columnItem18.Width = 11;
     columnItem19.Alignment = StringAlignment.Center;
     columnItem19.BackColor = Color.FromArgb(64, 64, 64);
     columnItem19.ColumnAlignment = StringAlignment.Center;
     columnItem19.FontColor = Color.LightGray;
     columnItem19.MyStyle = FontStyle.Regular;
     columnItem19.Name = "side";
     columnItem19.Text = "B/S";
     columnItem19.ValueFormat = FormatType.Text;
     columnItem19.Visible = true;
     columnItem19.Width = 4;
     columnItem20.Alignment = StringAlignment.Near;
     columnItem20.BackColor = Color.FromArgb(64, 64, 64);
     columnItem20.ColumnAlignment = StringAlignment.Center;
     columnItem20.FontColor = Color.LightGray;
     columnItem20.MyStyle = FontStyle.Regular;
     columnItem20.Name = "stock";
     columnItem20.Text = "Symbol";
     columnItem20.ValueFormat = FormatType.Text;
     columnItem20.Visible = true;
     columnItem20.Width = 10;
     columnItem21.Alignment = StringAlignment.Center;
     columnItem21.BackColor = Color.FromArgb(64, 64, 64);
     columnItem21.ColumnAlignment = StringAlignment.Center;
     columnItem21.FontColor = Color.LightGray;
     columnItem21.MyStyle = FontStyle.Regular;
     columnItem21.Name = "ttf";
     columnItem21.Text = "TTF";
     columnItem21.ValueFormat = FormatType.Text;
     columnItem21.Visible = true;
     columnItem21.Width = 4;
     columnItem22.Alignment = StringAlignment.Far;
     columnItem22.BackColor = Color.FromArgb(64, 64, 64);
     columnItem22.ColumnAlignment = StringAlignment.Center;
     columnItem22.FontColor = Color.LightGray;
     columnItem22.MyStyle = FontStyle.Regular;
     columnItem22.Name = "volume";
     columnItem22.Text = "Volume";
     columnItem22.ValueFormat = FormatType.Volume;
     columnItem22.Visible = true;
     columnItem22.Width = 10;
     columnItem23.Alignment = StringAlignment.Far;
     columnItem23.BackColor = Color.FromArgb(64, 64, 64);
     columnItem23.ColumnAlignment = StringAlignment.Center;
     columnItem23.FontColor = Color.LightGray;
     columnItem23.MyStyle = FontStyle.Regular;
     columnItem23.Name = "price";
     columnItem23.Text = "Price";
     columnItem23.ValueFormat = FormatType.Text;
     columnItem23.Visible = true;
     columnItem23.Width = 7;
     columnItem24.Alignment = StringAlignment.Far;
     columnItem24.BackColor = Color.FromArgb(64, 64, 64);
     columnItem24.ColumnAlignment = StringAlignment.Center;
     columnItem24.FontColor = Color.LightGray;
     columnItem24.MyStyle = FontStyle.Regular;
     columnItem24.Name = "matched";
     columnItem24.Text = "Matched";
     columnItem24.ValueFormat = FormatType.Volume;
     columnItem24.Visible = true;
     columnItem24.Width = 10;
     columnItem25.Alignment = StringAlignment.Far;
     columnItem25.BackColor = Color.FromArgb(64, 64, 64);
     columnItem25.ColumnAlignment = StringAlignment.Center;
     columnItem25.FontColor = Color.LightGray;
     columnItem25.MyStyle = FontStyle.Regular;
     columnItem25.Name = "published";
     columnItem25.Text = "Publish";
     columnItem25.ValueFormat = FormatType.Volume;
     columnItem25.Visible = true;
     columnItem25.Width = 10;
     columnItem26.Alignment = StringAlignment.Center;
     columnItem26.BackColor = Color.FromArgb(64, 64, 64);
     columnItem26.ColumnAlignment = StringAlignment.Center;
     columnItem26.FontColor = Color.LightGray;
     columnItem26.MyStyle = FontStyle.Regular;
     columnItem26.Name = "status";
     columnItem26.Text = "Status";
     columnItem26.ValueFormat = FormatType.Text;
     columnItem26.Visible = true;
     columnItem26.Width = 14;
     columnItem27.Alignment = StringAlignment.Center;
     columnItem27.BackColor = Color.FromArgb(64, 64, 64);
     columnItem27.ColumnAlignment = StringAlignment.Center;
     columnItem27.FontColor = Color.LightGray;
     columnItem27.MyStyle = FontStyle.Regular;
     columnItem27.Name = "time";
     columnItem27.Text = "Time";
     columnItem27.ValueFormat = FormatType.Text;
     columnItem27.Visible = true;
     columnItem27.Width = 9;
     columnItem28.Alignment = StringAlignment.Center;
     columnItem28.BackColor = Color.FromArgb(64, 64, 64);
     columnItem28.ColumnAlignment = StringAlignment.Center;
     columnItem28.FontColor = Color.LightGray;
     columnItem28.MyStyle = FontStyle.Regular;
     columnItem28.Name = "quote";
     columnItem28.Text = "Quote";
     columnItem28.ValueFormat = FormatType.Text;
     columnItem28.Visible = true;
     columnItem28.Width = 5;
     columnItem29.Alignment = StringAlignment.Near;
     columnItem29.BackColor = Color.FromArgb(64, 64, 64);
     columnItem29.ColumnAlignment = StringAlignment.Center;
     columnItem29.FontColor = Color.LightGray;
     columnItem29.MyStyle = FontStyle.Regular;
     columnItem29.Name = "send_date";
     columnItem29.Text = "None";
     columnItem29.ValueFormat = FormatType.Text;
     columnItem29.Visible = false;
     columnItem29.Width = 7;
     columnItem30.Alignment = StringAlignment.Near;
     columnItem30.BackColor = Color.FromArgb(64, 64, 64);
     columnItem30.ColumnAlignment = StringAlignment.Center;
     columnItem30.FontColor = Color.LightGray;
     columnItem30.MyStyle = FontStyle.Regular;
     columnItem30.Name = "key";
     columnItem30.Text = "None";
     columnItem30.ValueFormat = FormatType.Text;
     columnItem30.Visible = false;
     columnItem30.Width = 10;
     columnItem31.Alignment = StringAlignment.Near;
     columnItem31.BackColor = Color.FromArgb(64, 64, 64);
     columnItem31.ColumnAlignment = StringAlignment.Center;
     columnItem31.FontColor = Color.LightGray;
     columnItem31.MyStyle = FontStyle.Regular;
     columnItem31.Name = "info";
     columnItem31.Text = "";
     columnItem31.ValueFormat = FormatType.Bitmap;
     columnItem31.Visible = true;
     columnItem31.Width = 3;
     columnItem32.Alignment = StringAlignment.Near;
     columnItem32.BackColor = Color.FromArgb(64, 64, 64);
     columnItem32.ColumnAlignment = StringAlignment.Center;
     columnItem32.FontColor = Color.LightGray;
     columnItem32.MyStyle = FontStyle.Regular;
     columnItem32.Name = "offline";
     columnItem32.Text = "Offline";
     columnItem32.ValueFormat = FormatType.Text;
     columnItem32.Visible = false;
     columnItem32.Width = 10;
     this.intzaOrderList.Columns.Add(columnItem17);
     this.intzaOrderList.Columns.Add(columnItem18);
     this.intzaOrderList.Columns.Add(columnItem19);
     this.intzaOrderList.Columns.Add(columnItem20);
     this.intzaOrderList.Columns.Add(columnItem21);
     this.intzaOrderList.Columns.Add(columnItem22);
     this.intzaOrderList.Columns.Add(columnItem23);
     this.intzaOrderList.Columns.Add(columnItem24);
     this.intzaOrderList.Columns.Add(columnItem25);
     this.intzaOrderList.Columns.Add(columnItem26);
     this.intzaOrderList.Columns.Add(columnItem27);
     this.intzaOrderList.Columns.Add(columnItem28);
     this.intzaOrderList.Columns.Add(columnItem29);
     this.intzaOrderList.Columns.Add(columnItem30);
     this.intzaOrderList.Columns.Add(columnItem31);
     this.intzaOrderList.Columns.Add(columnItem32);
     this.intzaOrderList.CurrentScroll = 0;
     this.intzaOrderList.FocusItemIndex = -1;
     this.intzaOrderList.ForeColor = Color.Black;
     this.intzaOrderList.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaOrderList.HeaderPctHeight = 80f;
     this.intzaOrderList.IsAutoRepaint = true;
     this.intzaOrderList.IsDrawFullRow = false;
     this.intzaOrderList.IsDrawGrid = true;
     this.intzaOrderList.IsDrawHeader = true;
     this.intzaOrderList.IsScrollable = true;
     this.intzaOrderList.Location = new Point(3, 30);
     this.intzaOrderList.MainColumn = "";
     this.intzaOrderList.Name = "intzaOrderList";
     this.intzaOrderList.Rows = 0;
     this.intzaOrderList.RowSelectColor = Color.FromArgb(0, 0, 128);
     this.intzaOrderList.RowSelectType = 3;
     this.intzaOrderList.RowsVisible = 0;
     this.intzaOrderList.Size = new Size(815, 55);
     this.intzaOrderList.SortColumnName = "";
     this.intzaOrderList.SortType = SortType.Desc;
     this.intzaOrderList.TabIndex = 64;
     this.intzaOrderList.MouseClick += new MouseEventHandler(this.intzaOrderList_MouseClick);
     this.intzaOrderList.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaOrderList_TableMouseClick);
     this.intzaOrderList.TableMouseDoubleClick += new SortGrid.TableMouseDoubleClickEventHandler(this.intzaOrderList_TableMouseDoubleClick);
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = Color.FromArgb(20, 20, 20);
     base.Controls.Add(this.lbLoading);
     base.Controls.Add(this.intzaOrderListTFEX);
     base.Controls.Add(this.intzaOrderList);
     base.Controls.Add(this.tStripMenu);
     base.Margin = new Padding(0);
     base.Name = "ucViewOrder";
     base.Size = new Size(833, 303);
     base.Load += new EventHandler(this.ucViewOrder_Load);
     base.VisibleChanged += new EventHandler(this.ucViewOrder_VisibleChanged);
     base.KeyDown += new KeyEventHandler(this.ucViewOrder_KeyDown);
     this.tStripMenu.ResumeLayout(false);
     this.tStripMenu.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     base.ResumeLayout(false);
     base.PerformLayout();
 }
示例#15
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(ucTickerSlide));
     STIControl.SortTableGrid.ColumnItem columnItem = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem2 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem3 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem4 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem5 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem6 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem7 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem8 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem9 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem10 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem11 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem12 = new STIControl.SortTableGrid.ColumnItem();
     this.panelTop = new Panel();
     this.lbFilterType = new Label();
     this.btnFilterSetting = new Button();
     this.toolTip1 = new ToolTip(this.components);
     this.intzaTickerTFEX = new SortGrid();
     this.intzaTicker = new SortGrid();
     this.panelTop.SuspendLayout();
     base.SuspendLayout();
     this.panelTop.BackColor = Color.FromArgb(30, 30, 30);
     this.panelTop.Controls.Add(this.lbFilterType);
     this.panelTop.Controls.Add(this.btnFilterSetting);
     this.panelTop.Dock = DockStyle.Top;
     this.panelTop.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.panelTop.Location = new Point(0, 0);
     this.panelTop.Name = "panelTop";
     this.panelTop.Size = new Size(268, 28);
     this.panelTop.TabIndex = 2;
     this.lbFilterType.AutoSize = true;
     this.lbFilterType.ForeColor = Color.Silver;
     this.lbFilterType.Location = new Point(35, 5);
     this.lbFilterType.Name = "lbFilterType";
     this.lbFilterType.Size = new Size(73, 15);
     this.lbFilterType.TabIndex = 8;
     this.lbFilterType.Text = "Filter : None";
     this.btnFilterSetting.FlatAppearance.BorderColor = Color.DimGray;
     this.btnFilterSetting.FlatAppearance.BorderSize = 0;
     this.btnFilterSetting.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnFilterSetting.FlatAppearance.MouseOverBackColor = Color.FromArgb(0, 192, 192);
     this.btnFilterSetting.FlatStyle = FlatStyle.Flat;
     this.btnFilterSetting.Image = (Image)componentResourceManager.GetObject("btnFilterSetting.Image");
     this.btnFilterSetting.Location = new Point(3, 2);
     this.btnFilterSetting.Name = "btnFilterSetting";
     this.btnFilterSetting.Size = new Size(26, 23);
     this.btnFilterSetting.TabIndex = 7;
     this.toolTip1.SetToolTip(this.btnFilterSetting, "Options");
     this.btnFilterSetting.UseVisualStyleBackColor = true;
     this.btnFilterSetting.Click += new EventHandler(this.btnFilterSetting_Click);
     this.toolTip1.IsBalloon = true;
     this.toolTip1.ToolTipTitle = "Info guide";
     this.intzaTickerTFEX.AllowDrop = true;
     this.intzaTickerTFEX.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaTickerTFEX.CanBlink = false;
     this.intzaTickerTFEX.CanDrag = true;
     this.intzaTickerTFEX.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Near;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "stock";
     columnItem.Text = "Symbol";
     columnItem.ValueFormat = FormatType.Symbol;
     columnItem.Visible = true;
     columnItem.Width = 28;
     columnItem2.Alignment = StringAlignment.Center;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "side";
     columnItem2.Text = "B/S";
     columnItem2.ValueFormat = FormatType.Text;
     columnItem2.Visible = true;
     columnItem2.Width = 12;
     columnItem3.Alignment = StringAlignment.Far;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "volume";
     columnItem3.Text = "Vol";
     columnItem3.ValueFormat = FormatType.Volume;
     columnItem3.Visible = true;
     columnItem3.Width = 18;
     columnItem4.Alignment = StringAlignment.Far;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "price";
     columnItem4.Text = "Price";
     columnItem4.ValueFormat = FormatType.Text;
     columnItem4.Visible = true;
     columnItem4.Width = 23;
     columnItem5.Alignment = StringAlignment.Far;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.LightGray;
     columnItem5.MyStyle = FontStyle.Underline;
     columnItem5.Name = "change";
     columnItem5.Text = "Chg";
     columnItem5.ValueFormat = FormatType.ChangePrice;
     columnItem5.Visible = true;
     columnItem5.Width = 19;
     columnItem6.Alignment = StringAlignment.Far;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.ColumnAlignment = StringAlignment.Center;
     columnItem6.FontColor = Color.LightGray;
     columnItem6.MyStyle = FontStyle.Underline;
     columnItem6.Name = "pchg";
     columnItem6.Text = "%Chg";
     columnItem6.ValueFormat = FormatType.ChangePrice;
     columnItem6.Visible = false;
     columnItem6.Width = 19;
     this.intzaTickerTFEX.Columns.Add(columnItem);
     this.intzaTickerTFEX.Columns.Add(columnItem2);
     this.intzaTickerTFEX.Columns.Add(columnItem3);
     this.intzaTickerTFEX.Columns.Add(columnItem4);
     this.intzaTickerTFEX.Columns.Add(columnItem5);
     this.intzaTickerTFEX.Columns.Add(columnItem6);
     this.intzaTickerTFEX.CurrentScroll = 0;
     this.intzaTickerTFEX.FocusItemIndex = -1;
     this.intzaTickerTFEX.ForeColor = Color.Black;
     this.intzaTickerTFEX.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaTickerTFEX.HeaderPctHeight = 80f;
     this.intzaTickerTFEX.IsAutoRepaint = true;
     this.intzaTickerTFEX.IsDrawFullRow = true;
     this.intzaTickerTFEX.IsDrawGrid = false;
     this.intzaTickerTFEX.IsDrawHeader = true;
     this.intzaTickerTFEX.IsScrollable = false;
     this.intzaTickerTFEX.Location = new Point(-3, 323);
     this.intzaTickerTFEX.MainColumn = "";
     this.intzaTickerTFEX.Name = "intzaTickerTFEX";
     this.intzaTickerTFEX.Rows = 0;
     this.intzaTickerTFEX.RowSelectColor = Color.FromArgb(80, 80, 80);
     this.intzaTickerTFEX.RowSelectType = 1;
     this.intzaTickerTFEX.RowsVisible = 0;
     this.intzaTickerTFEX.Size = new Size(268, 107);
     this.intzaTickerTFEX.SortColumnName = "";
     this.intzaTickerTFEX.SortType = SortType.Desc;
     this.intzaTickerTFEX.TabIndex = 3;
     this.intzaTickerTFEX.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaTickerTFEX_TableMouseClick);
     this.intzaTicker.AllowDrop = true;
     this.intzaTicker.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaTicker.CanBlink = false;
     this.intzaTicker.CanDrag = true;
     this.intzaTicker.CanGetMouseMove = false;
     columnItem7.Alignment = StringAlignment.Near;
     columnItem7.BackColor = Color.FromArgb(64, 64, 64);
     columnItem7.ColumnAlignment = StringAlignment.Center;
     columnItem7.FontColor = Color.LightGray;
     columnItem7.MyStyle = FontStyle.Regular;
     columnItem7.Name = "stock";
     columnItem7.Text = "Symbol";
     columnItem7.ValueFormat = FormatType.Symbol;
     columnItem7.Visible = true;
     columnItem7.Width = 28;
     columnItem8.Alignment = StringAlignment.Center;
     columnItem8.BackColor = Color.FromArgb(64, 64, 64);
     columnItem8.ColumnAlignment = StringAlignment.Center;
     columnItem8.FontColor = Color.LightGray;
     columnItem8.MyStyle = FontStyle.Regular;
     columnItem8.Name = "side";
     columnItem8.Text = "B/S";
     columnItem8.ValueFormat = FormatType.Text;
     columnItem8.Visible = true;
     columnItem8.Width = 12;
     columnItem9.Alignment = StringAlignment.Far;
     columnItem9.BackColor = Color.FromArgb(64, 64, 64);
     columnItem9.ColumnAlignment = StringAlignment.Center;
     columnItem9.FontColor = Color.LightGray;
     columnItem9.MyStyle = FontStyle.Regular;
     columnItem9.Name = "volume";
     columnItem9.Text = "Volume";
     columnItem9.ValueFormat = FormatType.Volume;
     columnItem9.Visible = true;
     columnItem9.Width = 26;
     columnItem10.Alignment = StringAlignment.Far;
     columnItem10.BackColor = Color.FromArgb(64, 64, 64);
     columnItem10.ColumnAlignment = StringAlignment.Center;
     columnItem10.FontColor = Color.LightGray;
     columnItem10.MyStyle = FontStyle.Regular;
     columnItem10.Name = "price";
     columnItem10.Text = "Price";
     columnItem10.ValueFormat = FormatType.Price;
     columnItem10.Visible = true;
     columnItem10.Width = 17;
     columnItem11.Alignment = StringAlignment.Far;
     columnItem11.BackColor = Color.FromArgb(64, 64, 64);
     columnItem11.ColumnAlignment = StringAlignment.Center;
     columnItem11.FontColor = Color.LightGray;
     columnItem11.MyStyle = FontStyle.Underline;
     columnItem11.Name = "change";
     columnItem11.Text = "Chg";
     columnItem11.ValueFormat = FormatType.ChangePrice;
     columnItem11.Visible = true;
     columnItem11.Width = 17;
     columnItem12.Alignment = StringAlignment.Far;
     columnItem12.BackColor = Color.FromArgb(64, 64, 64);
     columnItem12.ColumnAlignment = StringAlignment.Center;
     columnItem12.FontColor = Color.LightGray;
     columnItem12.MyStyle = FontStyle.Underline;
     columnItem12.Name = "pchg";
     columnItem12.Text = "%Chg";
     columnItem12.ValueFormat = FormatType.ChangePrice;
     columnItem12.Visible = false;
     columnItem12.Width = 17;
     this.intzaTicker.Columns.Add(columnItem7);
     this.intzaTicker.Columns.Add(columnItem8);
     this.intzaTicker.Columns.Add(columnItem9);
     this.intzaTicker.Columns.Add(columnItem10);
     this.intzaTicker.Columns.Add(columnItem11);
     this.intzaTicker.Columns.Add(columnItem12);
     this.intzaTicker.CurrentScroll = 0;
     this.intzaTicker.FocusItemIndex = -1;
     this.intzaTicker.ForeColor = Color.Black;
     this.intzaTicker.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaTicker.HeaderPctHeight = 80f;
     this.intzaTicker.IsAutoRepaint = true;
     this.intzaTicker.IsDrawFullRow = true;
     this.intzaTicker.IsDrawGrid = false;
     this.intzaTicker.IsDrawHeader = true;
     this.intzaTicker.IsScrollable = false;
     this.intzaTicker.Location = new Point(0, 26);
     this.intzaTicker.MainColumn = "";
     this.intzaTicker.Name = "intzaTicker";
     this.intzaTicker.Rows = 0;
     this.intzaTicker.RowSelectColor = Color.FromArgb(80, 80, 80);
     this.intzaTicker.RowSelectType = 1;
     this.intzaTicker.RowsVisible = 0;
     this.intzaTicker.Size = new Size(268, 291);
     this.intzaTicker.SortColumnName = "";
     this.intzaTicker.SortType = SortType.Desc;
     this.intzaTicker.TabIndex = 1;
     this.intzaTicker.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaTicker_TableMouseClick);
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = Color.FromArgb(20, 20, 20);
     base.Controls.Add(this.intzaTickerTFEX);
     base.Controls.Add(this.panelTop);
     base.Controls.Add(this.intzaTicker);
     base.Name = "ucTickerSlide";
     base.Size = new Size(268, 430);
     this.panelTop.ResumeLayout(false);
     this.panelTop.PerformLayout();
     base.ResumeLayout(false);
 }
示例#16
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ColumnItem columnItem5 = new ColumnItem();
     ColumnItem columnItem6 = new ColumnItem();
     ColumnItem columnItem7 = new ColumnItem();
     ColumnItem columnItem8 = new ColumnItem();
     ColumnItem columnItem9 = new ColumnItem();
     ColumnItem columnItem10 = new ColumnItem();
     ColumnItem columnItem11 = new ColumnItem();
     ColumnItem columnItem12 = new ColumnItem();
     ColumnItem columnItem13 = new ColumnItem();
     ColumnItem columnItem14 = new ColumnItem();
     ColumnItem columnItem15 = new ColumnItem();
     ColumnItem columnItem16 = new ColumnItem();
     ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmMobileAlert));
     this.btnClose = new Button();
     this.tabNoti = new TabControl();
     this.tabPriceAlert = new TabPage();
     this.btnRemoveAllM = new Button();
     this.btnClearMemo = new Button();
     this.btnDeleteM = new Button();
     this.lbCountText = new Label();
     this.btnReloadM = new Button();
     this.tbStockM = new TextBox();
     this.tbMemo = new TextBox();
     this.lbPAmemo = new Label();
     this.btnSaveM = new Button();
     this.intzaM = new SortGrid();
     this.lbPAstock = new Label();
     this.lbPAvalue = new Label();
     this.lbPAoper = new Label();
     this.lbPAfield = new Label();
     this.cbFieldM = new ComboBox();
     this.tbValueM = new TextBox();
     this.cbOperatorM = new ComboBox();
     this.tabPortAlert = new TabPage();
     this.label2 = new Label();
     this.label1 = new Label();
     this.intzaPortAlert = new SortGrid();
     this.lbFAaccount = new Label();
     this.btnReloadPort = new Button();
     this.btnPortDisable = new Button();
     this.lbFAChgPricePct = new Label();
     this.lbFACostPct = new Label();
     this.tbPortPchg = new TextBox();
     this.tbPortStock = new TextBox();
     this.cbAccount = new ComboBox();
     this.tbPortType = new TextBox();
     this.tbPortTTF = new TextBox();
     this.lbFAtype = new Label();
     this.lbFAttf = new Label();
     this.btbPortUpdate = new Button();
     this.lbFAstock = new Label();
     this.tbPortPCost = new TextBox();
     this.btnPriceDecPct = new Button();
     this.btnPriceIncPct = new Button();
     this.btnCostDecPct = new Button();
     this.btnCostIncPct = new Button();
     this.tabLog = new TabPage();
     this.btnRefreshLog = new Button();
     this.intzaLog = new SortGrid();
     this.tabNotSetting = new TabPage();
     this.clbNotiActive = new CheckedListBox();
     this.textBox1 = new TextBox();
     this.tbLastDevice = new Label();
     this.lbLastDevice = new Label();
     this.btnSaveSetting = new Button();
     this.lbLoading = new Label();
     this.toolTip1 = new ToolTip(this.components);
     this.tabNoti.SuspendLayout();
     this.tabPriceAlert.SuspendLayout();
     this.tabPortAlert.SuspendLayout();
     this.tabLog.SuspendLayout();
     this.tabNotSetting.SuspendLayout();
     base.SuspendLayout();
     this.btnClose.AutoSize = true;
     this.btnClose.FlatAppearance.BorderColor = Color.Gray;
     this.btnClose.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnClose.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnClose.FlatStyle = FlatStyle.Flat;
     this.btnClose.Location = new Point(566, 383);
     this.btnClose.Margin = new Padding(3, 2, 3, 2);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new Size(80, 33);
     this.btnClose.TabIndex = 92;
     this.btnClose.Text = "Close";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new EventHandler(this.btnClose_Click);
     this.tabNoti.Appearance = TabAppearance.Buttons;
     this.tabNoti.Controls.Add(this.tabPriceAlert);
     this.tabNoti.Controls.Add(this.tabPortAlert);
     this.tabNoti.Controls.Add(this.tabLog);
     this.tabNoti.Controls.Add(this.tabNotSetting);
     this.tabNoti.Location = new Point(3, 3);
     this.tabNoti.Name = "tabNoti";
     this.tabNoti.SelectedIndex = 0;
     this.tabNoti.Size = new Size(650, 379);
     this.tabNoti.SizeMode = TabSizeMode.Fixed;
     this.tabNoti.TabIndex = 97;
     this.tabNoti.SelectedIndexChanged += new EventHandler(this.tabNoti_SelectedIndexChanged);
     this.tabPriceAlert.BackColor = Color.Silver;
     this.tabPriceAlert.Controls.Add(this.btnRemoveAllM);
     this.tabPriceAlert.Controls.Add(this.btnClearMemo);
     this.tabPriceAlert.Controls.Add(this.btnDeleteM);
     this.tabPriceAlert.Controls.Add(this.lbCountText);
     this.tabPriceAlert.Controls.Add(this.btnReloadM);
     this.tabPriceAlert.Controls.Add(this.tbStockM);
     this.tabPriceAlert.Controls.Add(this.tbMemo);
     this.tabPriceAlert.Controls.Add(this.lbPAmemo);
     this.tabPriceAlert.Controls.Add(this.btnSaveM);
     this.tabPriceAlert.Controls.Add(this.intzaM);
     this.tabPriceAlert.Controls.Add(this.lbPAstock);
     this.tabPriceAlert.Controls.Add(this.lbPAvalue);
     this.tabPriceAlert.Controls.Add(this.lbPAoper);
     this.tabPriceAlert.Controls.Add(this.lbPAfield);
     this.tabPriceAlert.Controls.Add(this.cbFieldM);
     this.tabPriceAlert.Controls.Add(this.tbValueM);
     this.tabPriceAlert.Controls.Add(this.cbOperatorM);
     this.tabPriceAlert.Location = new Point(4, 28);
     this.tabPriceAlert.Name = "tabPriceAlert";
     this.tabPriceAlert.Padding = new Padding(3);
     this.tabPriceAlert.Size = new Size(642, 347);
     this.tabPriceAlert.TabIndex = 1;
     this.tabPriceAlert.Text = "Price Alert";
     this.tabPriceAlert.UseVisualStyleBackColor = true;
     this.btnRemoveAllM.AutoSize = true;
     this.btnRemoveAllM.FlatAppearance.BorderColor = Color.Gray;
     this.btnRemoveAllM.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnRemoveAllM.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnRemoveAllM.FlatStyle = FlatStyle.Flat;
     this.btnRemoveAllM.ImageAlign = ContentAlignment.MiddleLeft;
     this.btnRemoveAllM.Location = new Point(531, 8);
     this.btnRemoveAllM.Margin = new Padding(3, 2, 3, 2);
     this.btnRemoveAllM.Name = "btnRemoveAllM";
     this.btnRemoveAllM.Size = new Size(106, 33);
     this.btnRemoveAllM.TabIndex = 97;
     this.btnRemoveAllM.Text = "Remove All";
     this.btnRemoveAllM.UseVisualStyleBackColor = true;
     this.btnRemoveAllM.Click += new EventHandler(this.btnRemoveAllM_Click);
     this.btnClearMemo.AutoSize = true;
     this.btnClearMemo.FlatAppearance.BorderColor = Color.Gray;
     this.btnClearMemo.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnClearMemo.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnClearMemo.FlatStyle = FlatStyle.Flat;
     this.btnClearMemo.Font = new Font("Tahoma", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.btnClearMemo.ImageAlign = ContentAlignment.MiddleLeft;
     this.btnClearMemo.Location = new Point(497, 281);
     this.btnClearMemo.Margin = new Padding(3, 2, 3, 2);
     this.btnClearMemo.Name = "btnClearMemo";
     this.btnClearMemo.Size = new Size(99, 30);
     this.btnClearMemo.TabIndex = 101;
     this.btnClearMemo.Text = "Clear Memo";
     this.btnClearMemo.UseVisualStyleBackColor = true;
     this.btnClearMemo.Click += new EventHandler(this.btnClearMemo_Click);
     this.btnDeleteM.AutoSize = true;
     this.btnDeleteM.FlatAppearance.BorderColor = Color.Gray;
     this.btnDeleteM.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnDeleteM.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnDeleteM.FlatStyle = FlatStyle.Flat;
     this.btnDeleteM.ImageAlign = ContentAlignment.MiddleLeft;
     this.btnDeleteM.Location = new Point(446, 8);
     this.btnDeleteM.Margin = new Padding(3, 2, 3, 2);
     this.btnDeleteM.Name = "btnDeleteM";
     this.btnDeleteM.Size = new Size(82, 33);
     this.btnDeleteM.TabIndex = 93;
     this.btnDeleteM.Text = "Remove";
     this.btnDeleteM.UseVisualStyleBackColor = true;
     this.btnDeleteM.Click += new EventHandler(this.btnRemoveM_Click);
     this.lbCountText.AutoSize = true;
     this.lbCountText.Location = new Point(494, 313);
     this.lbCountText.Name = "lbCountText";
     this.lbCountText.Size = new Size(22, 16);
     this.lbCountText.TabIndex = 100;
     this.lbCountText.Text = "80";
     this.btnReloadM.AutoSize = true;
     this.btnReloadM.FlatAppearance.BorderColor = Color.Gray;
     this.btnReloadM.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnReloadM.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnReloadM.FlatStyle = FlatStyle.Flat;
     this.btnReloadM.ImageAlign = ContentAlignment.MiddleLeft;
     this.btnReloadM.Location = new Point(11, 8);
     this.btnReloadM.Margin = new Padding(3, 2, 3, 2);
     this.btnReloadM.Name = "btnReloadM";
     this.btnReloadM.Size = new Size(73, 33);
     this.btnReloadM.TabIndex = 95;
     this.btnReloadM.Text = "Reload";
     this.btnReloadM.UseVisualStyleBackColor = true;
     this.btnReloadM.Click += new EventHandler(this.btnReloadM_Click);
     this.tbStockM.AllowDrop = true;
     this.tbStockM.BorderStyle = BorderStyle.FixedSingle;
     this.tbStockM.CharacterCasing = CharacterCasing.Upper;
     this.tbStockM.Location = new Point(23, 244);
     this.tbStockM.Margin = new Padding(3, 2, 3, 2);
     this.tbStockM.MaxLength = 9;
     this.tbStockM.Name = "tbStockM";
     this.tbStockM.Size = new Size(106, 23);
     this.tbStockM.TabIndex = 99;
     this.tbStockM.KeyDown += new KeyEventHandler(this.tbStockM_KeyDown);
     this.tbStockM.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbStockM.Enter += new EventHandler(this.controlOrder_Enter);
     this.tbMemo.AllowDrop = true;
     this.tbMemo.BorderStyle = BorderStyle.FixedSingle;
     this.tbMemo.Location = new Point(135, 272);
     this.tbMemo.Margin = new Padding(3, 2, 3, 2);
     this.tbMemo.MaxLength = 80;
     this.tbMemo.Multiline = true;
     this.tbMemo.Name = "tbMemo";
     this.tbMemo.Size = new Size(344, 57);
     this.tbMemo.TabIndex = 98;
     this.tbMemo.TextChanged += new EventHandler(this.tbMemo_TextChanged);
     this.tbMemo.KeyDown += new KeyEventHandler(this.tbMemo_KeyDown);
     this.tbMemo.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbMemo.Enter += new EventHandler(this.controlOrder_Enter);
     this.lbPAmemo.AutoSize = true;
     this.lbPAmemo.Location = new Point(73, 274);
     this.lbPAmemo.Name = "lbPAmemo";
     this.lbPAmemo.Size = new Size(56, 16);
     this.lbPAmemo.TabIndex = 97;
     this.lbPAmemo.Text = "Memo : ";
     this.btnSaveM.AutoSize = true;
     this.btnSaveM.FlatAppearance.BorderColor = Color.Gray;
     this.btnSaveM.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnSaveM.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnSaveM.FlatStyle = FlatStyle.Flat;
     this.btnSaveM.ImageAlign = ContentAlignment.MiddleLeft;
     this.btnSaveM.Location = new Point(497, 244);
     this.btnSaveM.Margin = new Padding(3, 2, 3, 2);
     this.btnSaveM.Name = "btnSaveM";
     this.btnSaveM.Size = new Size(99, 33);
     this.btnSaveM.TabIndex = 92;
     this.btnSaveM.Text = "Update";
     this.btnSaveM.UseVisualStyleBackColor = true;
     this.btnSaveM.Click += new EventHandler(this.btnSaveM_Click);
     this.intzaM.AllowDrop = true;
     this.intzaM.BackColor = Color.FromArgb(20, 20, 20);
     this.intzaM.CanBlink = false;
     this.intzaM.CanDrag = false;
     this.intzaM.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Near;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "stock";
     columnItem.Text = "Symbol";
     columnItem.ValueFormat = FormatType.Text;
     columnItem.Visible = true;
     columnItem.Width = 18;
     columnItem2.Alignment = StringAlignment.Center;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "field";
     columnItem2.Text = "Field";
     columnItem2.ValueFormat = FormatType.Text;
     columnItem2.Visible = true;
     columnItem2.Width = 13;
     columnItem3.Alignment = StringAlignment.Center;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "operator";
     columnItem3.Text = "Operator";
     columnItem3.ValueFormat = FormatType.Text;
     columnItem3.Visible = true;
     columnItem3.Width = 13;
     columnItem4.Alignment = StringAlignment.Center;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "value";
     columnItem4.Text = "Value";
     columnItem4.ValueFormat = FormatType.Text;
     columnItem4.Visible = true;
     columnItem4.Width = 13;
     columnItem5.Alignment = StringAlignment.Near;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.LightGray;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "memo";
     columnItem5.Text = "Memo";
     columnItem5.ValueFormat = FormatType.Text;
     columnItem5.Visible = true;
     columnItem5.Width = 28;
     columnItem6.Alignment = StringAlignment.Center;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.ColumnAlignment = StringAlignment.Center;
     columnItem6.FontColor = Color.FromArgb(255, 128, 0);
     columnItem6.MyStyle = FontStyle.Regular;
     columnItem6.Name = "alert_time";
     columnItem6.Text = "Alert Time";
     columnItem6.ValueFormat = FormatType.Text;
     columnItem6.Visible = true;
     columnItem6.Width = 15;
     columnItem7.Alignment = StringAlignment.Center;
     columnItem7.BackColor = Color.FromArgb(64, 64, 64);
     columnItem7.ColumnAlignment = StringAlignment.Center;
     columnItem7.FontColor = Color.FromArgb(255, 128, 0);
     columnItem7.MyStyle = FontStyle.Regular;
     columnItem7.Name = "value_at_alert";
     columnItem7.Text = "Alert Price";
     columnItem7.ValueFormat = FormatType.Text;
     columnItem7.Visible = false;
     columnItem7.Width = 0;
     this.intzaM.Columns.Add(columnItem);
     this.intzaM.Columns.Add(columnItem2);
     this.intzaM.Columns.Add(columnItem3);
     this.intzaM.Columns.Add(columnItem4);
     this.intzaM.Columns.Add(columnItem5);
     this.intzaM.Columns.Add(columnItem6);
     this.intzaM.Columns.Add(columnItem7);
     this.intzaM.CurrentScroll = 0;
     this.intzaM.FocusItemIndex = -1;
     this.intzaM.ForeColor = Color.Black;
     this.intzaM.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaM.HeaderPctHeight = 100f;
     this.intzaM.IsAutoRepaint = true;
     this.intzaM.IsDrawFullRow = false;
     this.intzaM.IsDrawGrid = true;
     this.intzaM.IsDrawHeader = true;
     this.intzaM.IsScrollable = true;
     this.intzaM.Location = new Point(3, 45);
     this.intzaM.MainColumn = "";
     this.intzaM.Margin = new Padding(3, 2, 3, 2);
     this.intzaM.Name = "intzaM";
     this.intzaM.Rows = 0;
     this.intzaM.RowSelectColor = Color.CadetBlue;
     this.intzaM.RowSelectType = 3;
     this.intzaM.RowsVisible = 0;
     this.intzaM.Size = new Size(635, 170);
     this.intzaM.SortColumnName = "";
     this.intzaM.SortType = SortType.Desc;
     this.intzaM.TabIndex = 91;
     this.intzaM.TableFocusIndexChanged += new SortGrid.TableFocusIndexChangedEventHandler(this.intzaM_TableFocusIndexChanged);
     this.lbPAstock.AutoSize = true;
     this.lbPAstock.Location = new Point(53, 220);
     this.lbPAstock.Name = "lbPAstock";
     this.lbPAstock.Size = new Size(50, 16);
     this.lbPAstock.TabIndex = 42;
     this.lbPAstock.Text = "Symbol";
     this.lbPAvalue.AutoSize = true;
     this.lbPAvalue.Location = new Point(404, 220);
     this.lbPAvalue.Name = "lbPAvalue";
     this.lbPAvalue.Size = new Size(40, 16);
     this.lbPAvalue.TabIndex = 45;
     this.lbPAvalue.Text = "Value";
     this.lbPAoper.AutoSize = true;
     this.lbPAoper.Location = new Point(265, 220);
     this.lbPAoper.Name = "lbPAoper";
     this.lbPAoper.Size = new Size(59, 16);
     this.lbPAoper.TabIndex = 44;
     this.lbPAoper.Text = "Operator";
     this.lbPAfield.AutoSize = true;
     this.lbPAfield.Location = new Point(162, 220);
     this.lbPAfield.Name = "lbPAfield";
     this.lbPAfield.Size = new Size(35, 16);
     this.lbPAfield.TabIndex = 43;
     this.lbPAfield.Text = "Field";
     this.cbFieldM.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cbFieldM.FlatStyle = FlatStyle.Flat;
     this.cbFieldM.FormattingEnabled = true;
     this.cbFieldM.Items.AddRange(new object[]
     {
         "LastPrice",
         "%Change"
     });
     this.cbFieldM.Location = new Point(135, 244);
     this.cbFieldM.Margin = new Padding(3, 2, 3, 2);
     this.cbFieldM.Name = "cbFieldM";
     this.cbFieldM.Size = new Size(106, 24);
     this.cbFieldM.TabIndex = 39;
     this.cbFieldM.SelectedIndexChanged += new EventHandler(this.cbFieldM_SelectedIndexChanged);
     this.cbFieldM.Leave += new EventHandler(this.controlOrder_Leave);
     this.cbFieldM.Enter += new EventHandler(this.controlOrder_Enter);
     this.cbFieldM.KeyDown += new KeyEventHandler(this.cbFieldM_KeyDown);
     this.tbValueM.AllowDrop = true;
     this.tbValueM.BorderStyle = BorderStyle.FixedSingle;
     this.tbValueM.Location = new Point(373, 244);
     this.tbValueM.Margin = new Padding(3, 2, 3, 2);
     this.tbValueM.MaxLength = 9;
     this.tbValueM.Name = "tbValueM";
     this.tbValueM.Size = new Size(106, 23);
     this.tbValueM.TabIndex = 41;
     this.tbValueM.KeyDown += new KeyEventHandler(this.tbValueM_KeyDown);
     this.tbValueM.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbValueM.Enter += new EventHandler(this.controlOrder_Enter);
     this.cbOperatorM.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cbOperatorM.FlatStyle = FlatStyle.Flat;
     this.cbOperatorM.FormattingEnabled = true;
     this.cbOperatorM.Items.AddRange(new object[]
     {
         ">=",
         "<="
     });
     this.cbOperatorM.Location = new Point(247, 244);
     this.cbOperatorM.Margin = new Padding(3, 2, 3, 2);
     this.cbOperatorM.Name = "cbOperatorM";
     this.cbOperatorM.Size = new Size(106, 24);
     this.cbOperatorM.TabIndex = 40;
     this.cbOperatorM.Leave += new EventHandler(this.controlOrder_Leave);
     this.cbOperatorM.Enter += new EventHandler(this.controlOrder_Enter);
     this.cbOperatorM.KeyDown += new KeyEventHandler(this.cbOperatorM_KeyDown);
     this.tabPortAlert.BackColor = Color.Silver;
     this.tabPortAlert.Controls.Add(this.label2);
     this.tabPortAlert.Controls.Add(this.label1);
     this.tabPortAlert.Controls.Add(this.intzaPortAlert);
     this.tabPortAlert.Controls.Add(this.lbFAaccount);
     this.tabPortAlert.Controls.Add(this.btnReloadPort);
     this.tabPortAlert.Controls.Add(this.btnPortDisable);
     this.tabPortAlert.Controls.Add(this.lbFAChgPricePct);
     this.tabPortAlert.Controls.Add(this.lbFACostPct);
     this.tabPortAlert.Controls.Add(this.tbPortPchg);
     this.tabPortAlert.Controls.Add(this.tbPortStock);
     this.tabPortAlert.Controls.Add(this.cbAccount);
     this.tabPortAlert.Controls.Add(this.tbPortType);
     this.tabPortAlert.Controls.Add(this.tbPortTTF);
     this.tabPortAlert.Controls.Add(this.lbFAtype);
     this.tabPortAlert.Controls.Add(this.lbFAttf);
     this.tabPortAlert.Controls.Add(this.btbPortUpdate);
     this.tabPortAlert.Controls.Add(this.lbFAstock);
     this.tabPortAlert.Controls.Add(this.tbPortPCost);
     this.tabPortAlert.Controls.Add(this.btnPriceDecPct);
     this.tabPortAlert.Controls.Add(this.btnPriceIncPct);
     this.tabPortAlert.Controls.Add(this.btnCostDecPct);
     this.tabPortAlert.Controls.Add(this.btnCostIncPct);
     this.tabPortAlert.Location = new Point(4, 28);
     this.tabPortAlert.Name = "tabPortAlert";
     this.tabPortAlert.Padding = new Padding(3);
     this.tabPortAlert.Size = new Size(642, 347);
     this.tabPortAlert.TabIndex = 2;
     this.tabPortAlert.Text = "Portfolio Alert";
     this.tabPortAlert.UseVisualStyleBackColor = true;
     this.label2.AutoSize = true;
     this.label2.Font = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.label2.ForeColor = Color.Gray;
     this.label2.Location = new Point(295, 20);
     this.label2.Name = "label2";
     this.label2.Size = new Size(151, 13);
     this.label2.TabIndex = 135;
     this.label2.Text = "* Support equity account only";
     this.label1.AutoSize = true;
     this.label1.Font = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.label1.ForeColor = Color.Gray;
     this.label1.Location = new Point(203, 328);
     this.label1.Name = "label1";
     this.label1.Size = new Size(134, 13);
     this.label1.TabIndex = 134;
     this.label1.Text = "* Not include commissions.";
     this.intzaPortAlert.AllowDrop = true;
     this.intzaPortAlert.BackColor = Color.FromArgb(20, 20, 20);
     this.intzaPortAlert.CanBlink = false;
     this.intzaPortAlert.CanDrag = false;
     this.intzaPortAlert.CanGetMouseMove = false;
     columnItem8.Alignment = StringAlignment.Near;
     columnItem8.BackColor = Color.FromArgb(64, 64, 64);
     columnItem8.ColumnAlignment = StringAlignment.Center;
     columnItem8.FontColor = Color.LightGray;
     columnItem8.MyStyle = FontStyle.Regular;
     columnItem8.Name = "stock";
     columnItem8.Text = "Symbol";
     columnItem8.ValueFormat = FormatType.Text;
     columnItem8.Visible = true;
     columnItem8.Width = 19;
     columnItem9.Alignment = StringAlignment.Center;
     columnItem9.BackColor = Color.FromArgb(64, 64, 64);
     columnItem9.ColumnAlignment = StringAlignment.Center;
     columnItem9.FontColor = Color.LightGray;
     columnItem9.MyStyle = FontStyle.Regular;
     columnItem9.Name = "sType";
     columnItem9.Text = "Type";
     columnItem9.ValueFormat = FormatType.Text;
     columnItem9.Visible = true;
     columnItem9.Width = 8;
     columnItem10.Alignment = StringAlignment.Center;
     columnItem10.BackColor = Color.FromArgb(64, 64, 64);
     columnItem10.ColumnAlignment = StringAlignment.Center;
     columnItem10.FontColor = Color.LightGray;
     columnItem10.MyStyle = FontStyle.Regular;
     columnItem10.Name = "trusteeId";
     columnItem10.Text = "TTF";
     columnItem10.ValueFormat = FormatType.Text;
     columnItem10.Visible = true;
     columnItem10.Width = 8;
     columnItem11.Alignment = StringAlignment.Far;
     columnItem11.BackColor = Color.FromArgb(64, 64, 64);
     columnItem11.ColumnAlignment = StringAlignment.Center;
     columnItem11.FontColor = Color.LightGray;
     columnItem11.MyStyle = FontStyle.Regular;
     columnItem11.Name = "onhand";
     columnItem11.Text = "OnHand";
     columnItem11.ValueFormat = FormatType.Text;
     columnItem11.Visible = true;
     columnItem11.Width = 20;
     columnItem12.Alignment = StringAlignment.Center;
     columnItem12.BackColor = Color.FromArgb(64, 64, 64);
     columnItem12.ColumnAlignment = StringAlignment.Center;
     columnItem12.FontColor = Color.LightGray;
     columnItem12.MyStyle = FontStyle.Regular;
     columnItem12.Name = "cost";
     columnItem12.Text = "Cost (%)";
     columnItem12.ValueFormat = FormatType.Text;
     columnItem12.Visible = true;
     columnItem12.Width = 15;
     columnItem13.Alignment = StringAlignment.Center;
     columnItem13.BackColor = Color.FromArgb(64, 64, 64);
     columnItem13.ColumnAlignment = StringAlignment.Center;
     columnItem13.FontColor = Color.LightGray;
     columnItem13.MyStyle = FontStyle.Regular;
     columnItem13.Name = "pchg";
     columnItem13.Text = "Chg (%)";
     columnItem13.ValueFormat = FormatType.Text;
     columnItem13.Visible = true;
     columnItem13.Width = 15;
     columnItem14.Alignment = StringAlignment.Center;
     columnItem14.BackColor = Color.FromArgb(64, 64, 64);
     columnItem14.ColumnAlignment = StringAlignment.Center;
     columnItem14.FontColor = Color.FromArgb(255, 128, 0);
     columnItem14.MyStyle = FontStyle.Regular;
     columnItem14.Name = "alarm_time";
     columnItem14.Text = "Alert Time";
     columnItem14.ValueFormat = FormatType.Text;
     columnItem14.Visible = true;
     columnItem14.Width = 15;
     this.intzaPortAlert.Columns.Add(columnItem8);
     this.intzaPortAlert.Columns.Add(columnItem9);
     this.intzaPortAlert.Columns.Add(columnItem10);
     this.intzaPortAlert.Columns.Add(columnItem11);
     this.intzaPortAlert.Columns.Add(columnItem12);
     this.intzaPortAlert.Columns.Add(columnItem13);
     this.intzaPortAlert.Columns.Add(columnItem14);
     this.intzaPortAlert.CurrentScroll = 0;
     this.intzaPortAlert.FocusItemIndex = -1;
     this.intzaPortAlert.ForeColor = Color.Black;
     this.intzaPortAlert.GridColor = Color.FromArgb(30, 30, 30);
     this.intzaPortAlert.HeaderPctHeight = 100f;
     this.intzaPortAlert.IsAutoRepaint = true;
     this.intzaPortAlert.IsDrawFullRow = false;
     this.intzaPortAlert.IsDrawGrid = true;
     this.intzaPortAlert.IsDrawHeader = true;
     this.intzaPortAlert.IsScrollable = true;
     this.intzaPortAlert.Location = new Point(3, 44);
     this.intzaPortAlert.MainColumn = "";
     this.intzaPortAlert.Name = "intzaPortAlert";
     this.intzaPortAlert.Rows = 0;
     this.intzaPortAlert.RowSelectColor = Color.Gray;
     this.intzaPortAlert.RowSelectType = 3;
     this.intzaPortAlert.RowsVisible = 0;
     this.intzaPortAlert.Size = new Size(635, 224);
     this.intzaPortAlert.SortColumnName = "";
     this.intzaPortAlert.SortType = SortType.Desc;
     this.intzaPortAlert.TabIndex = 16;
     this.intzaPortAlert.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaPortAlert_TableMouseClick);
     this.lbFAaccount.AutoSize = true;
     this.lbFAaccount.Location = new Point(15, 17);
     this.lbFAaccount.Name = "lbFAaccount";
     this.lbFAaccount.Size = new Size(62, 16);
     this.lbFAaccount.TabIndex = 130;
     this.lbFAaccount.Text = "Account :";
     this.btnReloadPort.AutoSize = true;
     this.btnReloadPort.FlatAppearance.BorderColor = Color.Gray;
     this.btnReloadPort.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnReloadPort.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnReloadPort.FlatStyle = FlatStyle.Flat;
     this.btnReloadPort.ImageAlign = ContentAlignment.MiddleLeft;
     this.btnReloadPort.Location = new Point(223, 11);
     this.btnReloadPort.Margin = new Padding(3, 2, 3, 2);
     this.btnReloadPort.Name = "btnReloadPort";
     this.btnReloadPort.Size = new Size(64, 28);
     this.btnReloadPort.TabIndex = 124;
     this.btnReloadPort.Text = "Reload";
     this.btnReloadPort.UseVisualStyleBackColor = true;
     this.btnReloadPort.Click += new EventHandler(this.btnReloadPort_Click);
     this.btnPortDisable.FlatAppearance.BorderColor = Color.Gray;
     this.btnPortDisable.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnPortDisable.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnPortDisable.FlatStyle = FlatStyle.Flat;
     this.btnPortDisable.ImageAlign = ContentAlignment.MiddleLeft;
     this.btnPortDisable.Location = new Point(527, 303);
     this.btnPortDisable.Margin = new Padding(3, 2, 3, 2);
     this.btnPortDisable.Name = "btnPortDisable";
     this.btnPortDisable.Size = new Size(63, 26);
     this.btnPortDisable.TabIndex = 121;
     this.btnPortDisable.Text = "Clear";
     this.btnPortDisable.UseVisualStyleBackColor = true;
     this.btnPortDisable.Click += new EventHandler(this.btnPortDisable_Click);
     this.lbFAChgPricePct.AutoSize = true;
     this.lbFAChgPricePct.BackColor = SystemColors.ControlDarkDark;
     this.lbFAChgPricePct.ForeColor = Color.White;
     this.lbFAChgPricePct.Location = new Point(328, 280);
     this.lbFAChgPricePct.Name = "lbFAChgPricePct";
     this.lbFAChgPricePct.Padding = new Padding(1);
     this.lbFAChgPricePct.Size = new Size(79, 18);
     this.lbFAChgPricePct.TabIndex = 119;
     this.lbFAChgPricePct.Text = "Change (%)";
     this.lbFACostPct.AutoSize = true;
     this.lbFACostPct.BackColor = SystemColors.ControlDarkDark;
     this.lbFACostPct.ForeColor = Color.White;
     this.lbFACostPct.Location = new Point(217, 280);
     this.lbFACostPct.Name = "lbFACostPct";
     this.lbFACostPct.Padding = new Padding(1);
     this.lbFACostPct.Size = new Size(61, 18);
     this.lbFACostPct.TabIndex = 118;
     this.lbFACostPct.Text = "Cost (%)";
     this.tbPortPchg.AllowDrop = true;
     this.tbPortPchg.BorderStyle = BorderStyle.FixedSingle;
     this.tbPortPchg.Location = new Point(343, 303);
     this.tbPortPchg.Margin = new Padding(3, 2, 3, 2);
     this.tbPortPchg.MaxLength = 9;
     this.tbPortPchg.Name = "tbPortPchg";
     this.tbPortPchg.Size = new Size(48, 23);
     this.tbPortPchg.TabIndex = 112;
     this.tbPortPchg.TextAlign = HorizontalAlignment.Center;
     this.toolTip1.SetToolTip(this.tbPortPchg, "ราคาเปลี่ยนแปลงเทียบกับราคาปิดวันก่อนหน้า");
     this.tbPortPchg.TextChanged += new EventHandler(this.tbPortPchg_TextChanged);
     this.tbPortPchg.KeyDown += new KeyEventHandler(this.tbPortPchg_KeyDown);
     this.tbPortPchg.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbPortPchg.Enter += new EventHandler(this.controlOrder_Enter);
     this.tbPortStock.AllowDrop = true;
     this.tbPortStock.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
     this.tbPortStock.AutoCompleteSource = AutoCompleteSource.CustomSource;
     this.tbPortStock.BackColor = Color.Silver;
     this.tbPortStock.BorderStyle = BorderStyle.FixedSingle;
     this.tbPortStock.CharacterCasing = CharacterCasing.Upper;
     this.tbPortStock.Location = new Point(9, 303);
     this.tbPortStock.Margin = new Padding(3, 2, 3, 2);
     this.tbPortStock.MaxLength = 10;
     this.tbPortStock.Name = "tbPortStock";
     this.tbPortStock.ReadOnly = true;
     this.tbPortStock.Size = new Size(93, 23);
     this.tbPortStock.TabIndex = 97;
     this.tbPortStock.TextAlign = HorizontalAlignment.Center;
     this.cbAccount.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cbAccount.FlatStyle = FlatStyle.Popup;
     this.cbAccount.FormattingEnabled = true;
     this.cbAccount.Location = new Point(85, 12);
     this.cbAccount.Name = "cbAccount";
     this.cbAccount.Size = new Size(126, 24);
     this.cbAccount.TabIndex = 18;
     this.cbAccount.SelectedIndexChanged += new EventHandler(this.cbAccount_SelectedIndexChanged);
     this.tbPortType.AllowDrop = true;
     this.tbPortType.BackColor = Color.Silver;
     this.tbPortType.BorderStyle = BorderStyle.FixedSingle;
     this.tbPortType.Location = new Point(104, 303);
     this.tbPortType.Margin = new Padding(3, 2, 3, 2);
     this.tbPortType.MaxLength = 9;
     this.tbPortType.Name = "tbPortType";
     this.tbPortType.ReadOnly = true;
     this.tbPortType.Size = new Size(40, 23);
     this.tbPortType.TabIndex = 100;
     this.tbPortType.TextAlign = HorizontalAlignment.Center;
     this.tbPortTTF.AllowDrop = true;
     this.tbPortTTF.BackColor = Color.Silver;
     this.tbPortTTF.BorderStyle = BorderStyle.FixedSingle;
     this.tbPortTTF.Location = new Point(146, 303);
     this.tbPortTTF.Margin = new Padding(3, 2, 3, 2);
     this.tbPortTTF.MaxLength = 9;
     this.tbPortTTF.Name = "tbPortTTF";
     this.tbPortTTF.ReadOnly = true;
     this.tbPortTTF.Size = new Size(35, 23);
     this.tbPortTTF.TabIndex = 106;
     this.tbPortTTF.TextAlign = HorizontalAlignment.Center;
     this.lbFAtype.AutoSize = true;
     this.lbFAtype.Location = new Point(107, 280);
     this.lbFAtype.Name = "lbFAtype";
     this.lbFAtype.Size = new Size(36, 16);
     this.lbFAtype.TabIndex = 104;
     this.lbFAtype.Text = "Type";
     this.lbFAttf.AutoSize = true;
     this.lbFAttf.Location = new Point(148, 280);
     this.lbFAttf.Name = "lbFAttf";
     this.lbFAttf.Size = new Size(31, 16);
     this.lbFAttf.TabIndex = 107;
     this.lbFAttf.Text = "TTF";
     this.btbPortUpdate.FlatAppearance.BorderColor = Color.Gray;
     this.btbPortUpdate.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btbPortUpdate.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btbPortUpdate.FlatStyle = FlatStyle.Flat;
     this.btbPortUpdate.ImageAlign = ContentAlignment.MiddleLeft;
     this.btbPortUpdate.Location = new Point(456, 303);
     this.btbPortUpdate.Margin = new Padding(3, 2, 3, 2);
     this.btbPortUpdate.Name = "btbPortUpdate";
     this.btbPortUpdate.Size = new Size(65, 26);
     this.btbPortUpdate.TabIndex = 105;
     this.btbPortUpdate.Text = "Update";
     this.btbPortUpdate.UseVisualStyleBackColor = true;
     this.btbPortUpdate.Click += new EventHandler(this.btbPortUpdate_Click);
     this.lbFAstock.AutoSize = true;
     this.lbFAstock.Location = new Point(34, 280);
     this.lbFAstock.Name = "lbFAstock";
     this.lbFAstock.Size = new Size(50, 16);
     this.lbFAstock.TabIndex = 101;
     this.lbFAstock.Text = "Symbol";
     this.tbPortPCost.AllowDrop = true;
     this.tbPortPCost.BorderStyle = BorderStyle.FixedSingle;
     this.tbPortPCost.Location = new Point(224, 303);
     this.tbPortPCost.Margin = new Padding(3, 2, 3, 2);
     this.tbPortPCost.MaxLength = 9;
     this.tbPortPCost.Name = "tbPortPCost";
     this.tbPortPCost.Size = new Size(48, 23);
     this.tbPortPCost.TabIndex = 108;
     this.tbPortPCost.TextAlign = HorizontalAlignment.Center;
     this.toolTip1.SetToolTip(this.tbPortPCost, "ต้นทุนเฉลี่ยสะสมเปลี่ยนแปลง (+,-)");
     this.tbPortPCost.TextChanged += new EventHandler(this.tbPortPCost_TextChanged);
     this.tbPortPCost.KeyDown += new KeyEventHandler(this.tbPortPCost_KeyDown);
     this.tbPortPCost.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbPortPCost.Enter += new EventHandler(this.controlOrder_Enter);
     this.btnPriceDecPct.FlatAppearance.BorderSize = 0;
     this.btnPriceDecPct.FlatAppearance.MouseDownBackColor = Color.Cyan;
     this.btnPriceDecPct.FlatAppearance.MouseOverBackColor = Color.FromArgb(255, 128, 0);
     this.btnPriceDecPct.FlatStyle = FlatStyle.Flat;
     this.btnPriceDecPct.Image = Resources.Minus;
     this.btnPriceDecPct.Location = new Point(315, 302);
     this.btnPriceDecPct.Name = "btnPriceDecPct";
     this.btnPriceDecPct.Size = new Size(25, 23);
     this.btnPriceDecPct.TabIndex = 128;
     this.btnPriceDecPct.UseVisualStyleBackColor = true;
     this.btnPriceDecPct.Click += new EventHandler(this.btnPriceDecPct_Click);
     this.btnPriceIncPct.FlatAppearance.BorderSize = 0;
     this.btnPriceIncPct.FlatAppearance.MouseDownBackColor = Color.Cyan;
     this.btnPriceIncPct.FlatAppearance.MouseOverBackColor = Color.FromArgb(255, 128, 0);
     this.btnPriceIncPct.FlatStyle = FlatStyle.Flat;
     this.btnPriceIncPct.Image = Resources.Plus;
     this.btnPriceIncPct.Location = new Point(392, 302);
     this.btnPriceIncPct.Name = "btnPriceIncPct";
     this.btnPriceIncPct.Size = new Size(25, 23);
     this.btnPriceIncPct.TabIndex = 127;
     this.btnPriceIncPct.UseVisualStyleBackColor = true;
     this.btnPriceIncPct.Click += new EventHandler(this.btnPriceIncPct_Click);
     this.btnCostDecPct.FlatAppearance.BorderSize = 0;
     this.btnCostDecPct.FlatAppearance.MouseDownBackColor = Color.Cyan;
     this.btnCostDecPct.FlatAppearance.MouseOverBackColor = Color.FromArgb(255, 128, 0);
     this.btnCostDecPct.FlatStyle = FlatStyle.Flat;
     this.btnCostDecPct.Image = Resources.Minus;
     this.btnCostDecPct.Location = new Point(197, 303);
     this.btnCostDecPct.Name = "btnCostDecPct";
     this.btnCostDecPct.Size = new Size(25, 23);
     this.btnCostDecPct.TabIndex = 126;
     this.btnCostDecPct.UseVisualStyleBackColor = true;
     this.btnCostDecPct.Click += new EventHandler(this.btnCostDecPct_Click);
     this.btnCostIncPct.FlatAppearance.BorderSize = 0;
     this.btnCostIncPct.FlatAppearance.MouseDownBackColor = Color.Cyan;
     this.btnCostIncPct.FlatAppearance.MouseOverBackColor = Color.FromArgb(255, 128, 0);
     this.btnCostIncPct.FlatStyle = FlatStyle.Flat;
     this.btnCostIncPct.Image = Resources.Plus;
     this.btnCostIncPct.Location = new Point(275, 303);
     this.btnCostIncPct.Name = "btnCostIncPct";
     this.btnCostIncPct.Size = new Size(25, 23);
     this.btnCostIncPct.TabIndex = 125;
     this.btnCostIncPct.UseVisualStyleBackColor = true;
     this.btnCostIncPct.Click += new EventHandler(this.btnCostIncPct_Click);
     this.tabLog.BackColor = Color.Silver;
     this.tabLog.Controls.Add(this.btnRefreshLog);
     this.tabLog.Controls.Add(this.intzaLog);
     this.tabLog.Location = new Point(4, 28);
     this.tabLog.Name = "tabLog";
     this.tabLog.Padding = new Padding(3);
     this.tabLog.Size = new Size(642, 347);
     this.tabLog.TabIndex = 5;
     this.tabLog.Text = "Sent Log";
     this.btnRefreshLog.AutoSize = true;
     this.btnRefreshLog.FlatAppearance.BorderColor = Color.Gray;
     this.btnRefreshLog.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnRefreshLog.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnRefreshLog.FlatStyle = FlatStyle.Flat;
     this.btnRefreshLog.ImageAlign = ContentAlignment.MiddleLeft;
     this.btnRefreshLog.Location = new Point(573, 3);
     this.btnRefreshLog.Margin = new Padding(3, 2, 3, 2);
     this.btnRefreshLog.Name = "btnRefreshLog";
     this.btnRefreshLog.Size = new Size(64, 28);
     this.btnRefreshLog.TabIndex = 125;
     this.btnRefreshLog.Text = "Reload";
     this.btnRefreshLog.UseVisualStyleBackColor = true;
     this.btnRefreshLog.Click += new EventHandler(this.btnRefreshLog_Click);
     this.intzaLog.AllowDrop = true;
     this.intzaLog.BackColor = Color.FromArgb(20, 20, 20);
     this.intzaLog.CanBlink = false;
     this.intzaLog.CanDrag = false;
     this.intzaLog.CanGetMouseMove = false;
     columnItem15.Alignment = StringAlignment.Center;
     columnItem15.BackColor = Color.FromArgb(64, 64, 64);
     columnItem15.ColumnAlignment = StringAlignment.Center;
     columnItem15.FontColor = Color.LightGray;
     columnItem15.MyStyle = FontStyle.Regular;
     columnItem15.Name = "time";
     columnItem15.Text = "Time";
     columnItem15.ValueFormat = FormatType.Text;
     columnItem15.Visible = true;
     columnItem15.Width = 12;
     columnItem16.Alignment = StringAlignment.Near;
     columnItem16.BackColor = Color.FromArgb(64, 64, 64);
     columnItem16.ColumnAlignment = StringAlignment.Center;
     columnItem16.FontColor = Color.LightGray;
     columnItem16.MyStyle = FontStyle.Regular;
     columnItem16.Name = "message";
     columnItem16.Text = "Message";
     columnItem16.ValueFormat = FormatType.Text;
     columnItem16.Visible = true;
     columnItem16.Width = 88;
     this.intzaLog.Columns.Add(columnItem15);
     this.intzaLog.Columns.Add(columnItem16);
     this.intzaLog.CurrentScroll = 0;
     this.intzaLog.FocusItemIndex = -1;
     this.intzaLog.ForeColor = Color.Black;
     this.intzaLog.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaLog.HeaderPctHeight = 100f;
     this.intzaLog.IsAutoRepaint = true;
     this.intzaLog.IsDrawFullRow = false;
     this.intzaLog.IsDrawGrid = true;
     this.intzaLog.IsDrawHeader = true;
     this.intzaLog.IsScrollable = true;
     this.intzaLog.Location = new Point(3, 34);
     this.intzaLog.MainColumn = "";
     this.intzaLog.Margin = new Padding(3, 2, 3, 2);
     this.intzaLog.Name = "intzaLog";
     this.intzaLog.Rows = 0;
     this.intzaLog.RowSelectColor = Color.CadetBlue;
     this.intzaLog.RowSelectType = 3;
     this.intzaLog.RowsVisible = 0;
     this.intzaLog.Size = new Size(635, 308);
     this.intzaLog.SortColumnName = "";
     this.intzaLog.SortType = SortType.Desc;
     this.intzaLog.TabIndex = 92;
     this.intzaLog.TableMouseDoubleClick += new SortGrid.TableMouseDoubleClickEventHandler(this.intzaLog_TableMouseDoubleClick);
     this.tabNotSetting.BackColor = Color.Silver;
     this.tabNotSetting.Controls.Add(this.clbNotiActive);
     this.tabNotSetting.Controls.Add(this.textBox1);
     this.tabNotSetting.Controls.Add(this.tbLastDevice);
     this.tabNotSetting.Controls.Add(this.lbLastDevice);
     this.tabNotSetting.Controls.Add(this.btnSaveSetting);
     this.tabNotSetting.Location = new Point(4, 28);
     this.tabNotSetting.Name = "tabNotSetting";
     this.tabNotSetting.Padding = new Padding(3);
     this.tabNotSetting.Size = new Size(642, 347);
     this.tabNotSetting.TabIndex = 4;
     this.tabNotSetting.Text = "Setting";
     this.tabNotSetting.UseVisualStyleBackColor = true;
     this.clbNotiActive.FormattingEnabled = true;
     this.clbNotiActive.Items.AddRange(new object[]
     {
         "รับ โฆษณา",
         "รับ สรุปสภาวะตลาดฯ (SET Index, Most-Active และอื่นๆ )",
         "รับ ข้อความเมื่อรายการซื้อขายจับคู่หมดแล้ว และสรุปพอร์ต ณ สิ้นวัน"
     });
     this.clbNotiActive.Location = new Point(24, 33);
     this.clbNotiActive.Name = "clbNotiActive";
     this.clbNotiActive.Size = new Size(479, 130);
     this.clbNotiActive.TabIndex = 136;
     this.textBox1.Location = new Point(24, 175);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.ReadOnly = true;
     this.textBox1.Size = new Size(549, 111);
     this.textBox1.TabIndex = 135;
     this.textBox1.Text = componentResourceManager.GetString("textBox1.Text");
     this.tbLastDevice.AutoSize = true;
     this.tbLastDevice.Font = new Font("Tahoma", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 222);
     this.tbLastDevice.Location = new Point(118, 11);
     this.tbLastDevice.Name = "tbLastDevice";
     this.tbLastDevice.Size = new Size(14, 16);
     this.tbLastDevice.TabIndex = 134;
     this.tbLastDevice.Text = "-";
     this.lbLastDevice.AutoSize = true;
     this.lbLastDevice.Location = new Point(27, 11);
     this.lbLastDevice.Name = "lbLastDevice";
     this.lbLastDevice.Size = new Size(81, 16);
     this.lbLastDevice.TabIndex = 133;
     this.lbLastDevice.Text = "Last Device :";
     this.btnSaveSetting.AutoSize = true;
     this.btnSaveSetting.FlatAppearance.BorderColor = Color.Gray;
     this.btnSaveSetting.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnSaveSetting.FlatAppearance.MouseOverBackColor = Color.MediumAquamarine;
     this.btnSaveSetting.FlatStyle = FlatStyle.Flat;
     this.btnSaveSetting.ImageAlign = ContentAlignment.MiddleLeft;
     this.btnSaveSetting.Location = new Point(509, 128);
     this.btnSaveSetting.Margin = new Padding(3, 2, 3, 2);
     this.btnSaveSetting.Name = "btnSaveSetting";
     this.btnSaveSetting.Size = new Size(64, 33);
     this.btnSaveSetting.TabIndex = 132;
     this.btnSaveSetting.Text = "Save";
     this.btnSaveSetting.UseVisualStyleBackColor = true;
     this.btnSaveSetting.Click += new EventHandler(this.btnSaveSetting_Click);
     this.lbLoading.AutoSize = true;
     this.lbLoading.BackColor = Color.FromArgb(64, 64, 64);
     this.lbLoading.BorderStyle = BorderStyle.FixedSingle;
     this.lbLoading.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbLoading.ForeColor = Color.Yellow;
     this.lbLoading.Location = new Point(272, 388);
     this.lbLoading.Name = "lbLoading";
     this.lbLoading.Padding = new Padding(5, 4, 5, 4);
     this.lbLoading.Size = new Size(73, 25);
     this.lbLoading.TabIndex = 98;
     this.lbLoading.Text = "Loading...";
     this.lbLoading.TextAlign = ContentAlignment.MiddleCenter;
     this.lbLoading.Visible = false;
     this.AllowDrop = true;
     base.AutoScaleDimensions = new SizeF(7f, 16f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(654, 420);
     base.ControlBox = false;
     base.Controls.Add(this.tabNoti);
     base.Controls.Add(this.lbLoading);
     base.Controls.Add(this.btnClose);
     this.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     base.Margin = new Padding(3, 2, 3, 2);
     base.MaximizeBox = false;
     base.MinimizeBox = false;
     base.Name = "frmMobileAlert";
     base.StartPosition = FormStartPosition.CenterParent;
     this.Text = "Mobile Notification";
     base.Load += new EventHandler(this.frmAlertOption_Load);
     base.Shown += new EventHandler(this.frmAlertSetting_Shown);
     this.tabNoti.ResumeLayout(false);
     this.tabPriceAlert.ResumeLayout(false);
     this.tabPriceAlert.PerformLayout();
     this.tabPortAlert.ResumeLayout(false);
     this.tabPortAlert.PerformLayout();
     this.tabLog.ResumeLayout(false);
     this.tabLog.PerformLayout();
     this.tabNotSetting.ResumeLayout(false);
     this.tabNotSetting.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
示例#17
0
 private void InitializeComponent()
 {
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ColumnItem columnItem5 = new ColumnItem();
     this.lbQuantity = new Label();
     this.lbStock = new Label();
     this.tbPrice = new TextBox();
     this.tbStock = new TextBox();
     this.tbVolume = new TextBox();
     this.lbPrice = new Label();
     this.btnRemoveRow = new Button();
     this.btnAdd = new Button();
     this.label1 = new Label();
     this.lbLoading = new Label();
     this.panel2 = new Panel();
     this.label3 = new Label();
     this.label2 = new Label();
     this.cbSide = new ComboBox();
     this.lbMessage = new Label();
     this.gbPolicy = new GroupBox();
     this.btnRiskMax = new Button();
     this.btnRiskMedium = new Button();
     this.btnRiskMin = new Button();
     this.tbSectorLimitValue = new TextBox();
     this.chbSectorLimit = new CheckBox();
     this.tbAvg5Volume = new TextBox();
     this.chbAvg5Volume = new CheckBox();
     this.tbStocksInSector = new TextBox();
     this.lbRiskLevel = new Label();
     this.tbChgLimitValue = new TextBox();
     this.chbChgLimit = new CheckBox();
     this.tbValueLimitValue = new TextBox();
     this.chbValueLimit = new CheckBox();
     this.chbStocksInSector = new CheckBox();
     this.gbStockThreshold = new GroupBox();
     this.intza = new SortGrid();
     this.btnUpdate = new Button();
     this.btnCancel = new Button();
     this.chbOpen = new CheckBox();
     this.panel2.SuspendLayout();
     this.gbPolicy.SuspendLayout();
     this.gbStockThreshold.SuspendLayout();
     base.SuspendLayout();
     this.lbQuantity.AutoSize = true;
     this.lbQuantity.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbQuantity.Location = new Point(171, 68);
     this.lbQuantity.Name = "lbQuantity";
     this.lbQuantity.Size = new Size(51, 16);
     this.lbQuantity.TabIndex = 34;
     this.lbQuantity.Text = "Volume";
     this.lbStock.AutoSize = true;
     this.lbStock.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbStock.Location = new Point(19, 11);
     this.lbStock.Name = "lbStock";
     this.lbStock.Size = new Size(39, 16);
     this.lbStock.TabIndex = 31;
     this.lbStock.Text = "Stock";
     this.tbPrice.BackColor = Color.White;
     this.tbPrice.BorderStyle = BorderStyle.FixedSingle;
     this.tbPrice.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.tbPrice.Location = new Point(71, 119);
     this.tbPrice.Margin = new Padding(3, 4, 3, 4);
     this.tbPrice.MaxLength = 9;
     this.tbPrice.Name = "tbPrice";
     this.tbPrice.Size = new Size(81, 23);
     this.tbPrice.TabIndex = 2;
     this.tbPrice.KeyDown += new KeyEventHandler(this.tsPrice_KeyDown);
     this.tbPrice.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbPrice.KeyPress += new KeyPressEventHandler(this.tsPrice_KeyPress);
     this.tbPrice.Enter += new EventHandler(this.controlOrder_Enter);
     this.tbStock.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
     this.tbStock.AutoCompleteSource = AutoCompleteSource.CustomSource;
     this.tbStock.BackColor = Color.White;
     this.tbStock.BorderStyle = BorderStyle.FixedSingle;
     this.tbStock.CharacterCasing = CharacterCasing.Upper;
     this.tbStock.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.tbStock.Location = new Point(71, 8);
     this.tbStock.Margin = new Padding(3, 4, 3, 4);
     this.tbStock.MaxLength = 8;
     this.tbStock.Name = "tbStock";
     this.tbStock.Size = new Size(95, 23);
     this.tbStock.TabIndex = 0;
     this.tbStock.KeyDown += new KeyEventHandler(this.tsStock_KeyDown);
     this.tbStock.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbStock.Enter += new EventHandler(this.controlOrder_Enter);
     this.tbVolume.BackColor = Color.White;
     this.tbVolume.BorderStyle = BorderStyle.FixedSingle;
     this.tbVolume.CharacterCasing = CharacterCasing.Upper;
     this.tbVolume.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.tbVolume.Location = new Point(237, 65);
     this.tbVolume.Margin = new Padding(3, 4, 3, 4);
     this.tbVolume.MaxLength = 9;
     this.tbVolume.Name = "tbVolume";
     this.tbVolume.Size = new Size(95, 23);
     this.tbVolume.TabIndex = 1;
     this.tbVolume.TextChanged += new EventHandler(this.tsQuantity_TextChanged);
     this.tbVolume.KeyDown += new KeyEventHandler(this.tsQuantity_KeyDown);
     this.tbVolume.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbVolume.KeyPress += new KeyPressEventHandler(this.tsQuantity_KeyPress);
     this.tbVolume.Enter += new EventHandler(this.controlOrder_Enter);
     this.lbPrice.AutoSize = true;
     this.lbPrice.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbPrice.Location = new Point(24, 122);
     this.lbPrice.Name = "lbPrice";
     this.lbPrice.Size = new Size(36, 16);
     this.lbPrice.TabIndex = 37;
     this.lbPrice.Text = "Price";
     this.btnRemoveRow.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.btnRemoveRow.AutoSize = true;
     this.btnRemoveRow.FlatAppearance.BorderColor = Color.Gray;
     this.btnRemoveRow.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnRemoveRow.FlatAppearance.MouseOverBackColor = Color.Teal;
     this.btnRemoveRow.FlatStyle = FlatStyle.Flat;
     this.btnRemoveRow.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.btnRemoveRow.Location = new Point(301, 6);
     this.btnRemoveRow.Margin = new Padding(3, 4, 3, 4);
     this.btnRemoveRow.Name = "btnRemoveRow";
     this.btnRemoveRow.Size = new Size(76, 30);
     this.btnRemoveRow.TabIndex = 4;
     this.btnRemoveRow.Text = "Remove";
     this.btnRemoveRow.UseVisualStyleBackColor = true;
     this.btnRemoveRow.Click += new EventHandler(this.btnRemoveRow_Click);
     this.btnAdd.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.btnAdd.AutoSize = true;
     this.btnAdd.FlatAppearance.BorderColor = Color.Gray;
     this.btnAdd.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnAdd.FlatAppearance.MouseOverBackColor = Color.Teal;
     this.btnAdd.FlatStyle = FlatStyle.Flat;
     this.btnAdd.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.btnAdd.Location = new Point(221, 6);
     this.btnAdd.Margin = new Padding(3, 4, 3, 4);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new Size(75, 30);
     this.btnAdd.TabIndex = 3;
     this.btnAdd.Text = "Save";
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new EventHandler(this.btnAdd_Click);
     this.label1.AutoSize = true;
     this.label1.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.label1.Location = new Point(28, 69);
     this.label1.Name = "label1";
     this.label1.Size = new Size(33, 16);
     this.label1.TabIndex = 39;
     this.label1.Text = "Side";
     this.lbLoading.AutoSize = true;
     this.lbLoading.BackColor = Color.FromArgb(64, 64, 64);
     this.lbLoading.BorderStyle = BorderStyle.FixedSingle;
     this.lbLoading.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbLoading.ForeColor = Color.Yellow;
     this.lbLoading.Location = new Point(148, 209);
     this.lbLoading.Name = "lbLoading";
     this.lbLoading.Padding = new Padding(5, 4, 5, 4);
     this.lbLoading.Size = new Size(73, 25);
     this.lbLoading.TabIndex = 84;
     this.lbLoading.Text = "Loading...";
     this.lbLoading.TextAlign = ContentAlignment.MiddleCenter;
     this.lbLoading.Visible = false;
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.label2);
     this.panel2.Controls.Add(this.cbSide);
     this.panel2.Controls.Add(this.lbMessage);
     this.panel2.Controls.Add(this.btnAdd);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.lbPrice);
     this.panel2.Controls.Add(this.btnRemoveRow);
     this.panel2.Controls.Add(this.tbVolume);
     this.panel2.Controls.Add(this.tbStock);
     this.panel2.Controls.Add(this.lbQuantity);
     this.panel2.Controls.Add(this.tbPrice);
     this.panel2.Controls.Add(this.lbStock);
     this.panel2.Dock = DockStyle.Bottom;
     this.panel2.Location = new Point(3, 159);
     this.panel2.Margin = new Padding(3, 4, 3, 4);
     this.panel2.Name = "panel2";
     this.panel2.Size = new Size(394, 150);
     this.panel2.TabIndex = 88;
     this.label3.AutoSize = true;
     this.label3.Location = new Point(3, 96);
     this.label3.Name = "label3";
     this.label3.Size = new Size(300, 16);
     this.label3.TabIndex = 42;
     this.label3.Text = "* เตือนเมื่อซื้อ 'เกิน' ราคา , ขาย 'ต่ำ' กว่าราคาที่กำหนด";
     this.label2.AutoSize = true;
     this.label2.Location = new Point(3, 40);
     this.label2.Name = "label2";
     this.label2.Size = new Size(242, 16);
     this.label2.TabIndex = 41;
     this.label2.Text = "* เตือนเมื่อซื้อ/ขาย เกินกว่าปริมาณที่กำหนด";
     this.cbSide.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cbSide.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.cbSide.FormattingEnabled = true;
     this.cbSide.Items.AddRange(new object[]
     {
         "",
         "BUY",
         "SELL"
     });
     this.cbSide.Location = new Point(71, 65);
     this.cbSide.Margin = new Padding(3, 4, 3, 4);
     this.cbSide.Name = "cbSide";
     this.cbSide.Size = new Size(95, 24);
     this.cbSide.TabIndex = 40;
     this.cbSide.SelectedIndexChanged += new EventHandler(this.cbSide_SelectedIndexChanged);
     this.cbSide.Leave += new EventHandler(this.controlOrder_Leave);
     this.cbSide.Enter += new EventHandler(this.controlOrder_Enter);
     this.cbSide.KeyDown += new KeyEventHandler(this.cbSide_KeyDown);
     this.lbMessage.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbMessage.ForeColor = Color.Red;
     this.lbMessage.Location = new Point(158, 121);
     this.lbMessage.Name = "lbMessage";
     this.lbMessage.Padding = new Padding(2, 1, 0, 1);
     this.lbMessage.Size = new Size(183, 22);
     this.lbMessage.TabIndex = 38;
     this.lbMessage.Text = "Warning or Error Message.";
     this.lbMessage.TextAlign = ContentAlignment.MiddleRight;
     this.gbPolicy.BackColor = Color.BlanchedAlmond;
     this.gbPolicy.Controls.Add(this.btnRiskMax);
     this.gbPolicy.Controls.Add(this.btnRiskMedium);
     this.gbPolicy.Controls.Add(this.btnRiskMin);
     this.gbPolicy.Controls.Add(this.tbSectorLimitValue);
     this.gbPolicy.Controls.Add(this.chbSectorLimit);
     this.gbPolicy.Controls.Add(this.tbAvg5Volume);
     this.gbPolicy.Controls.Add(this.chbAvg5Volume);
     this.gbPolicy.Controls.Add(this.tbStocksInSector);
     this.gbPolicy.Controls.Add(this.lbRiskLevel);
     this.gbPolicy.Controls.Add(this.tbChgLimitValue);
     this.gbPolicy.Controls.Add(this.chbChgLimit);
     this.gbPolicy.Controls.Add(this.tbValueLimitValue);
     this.gbPolicy.Controls.Add(this.chbValueLimit);
     this.gbPolicy.Controls.Add(this.chbStocksInSector);
     this.gbPolicy.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.gbPolicy.Location = new Point(3, 36);
     this.gbPolicy.Margin = new Padding(3, 4, 3, 4);
     this.gbPolicy.Name = "gbPolicy";
     this.gbPolicy.Padding = new Padding(3, 4, 3, 4);
     this.gbPolicy.Size = new Size(445, 313);
     this.gbPolicy.TabIndex = 89;
     this.gbPolicy.TabStop = false;
     this.gbPolicy.Text = "นโยบายควบคุมทั่วไป (General control policy.)";
     this.btnRiskMax.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.btnRiskMax.AutoSize = true;
     this.btnRiskMax.FlatAppearance.BorderColor = Color.Gray;
     this.btnRiskMax.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnRiskMax.FlatAppearance.MouseOverBackColor = Color.PaleTurquoise;
     this.btnRiskMax.FlatStyle = FlatStyle.Flat;
     this.btnRiskMax.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.btnRiskMax.Location = new Point(354, 271);
     this.btnRiskMax.Name = "btnRiskMax";
     this.btnRiskMax.Size = new Size(59, 30);
     this.btnRiskMax.TabIndex = 94;
     this.btnRiskMax.Text = "สูง";
     this.btnRiskMax.UseVisualStyleBackColor = true;
     this.btnRiskMax.Click += new EventHandler(this.btnRiskMax_Click);
     this.btnRiskMedium.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.btnRiskMedium.AutoSize = true;
     this.btnRiskMedium.FlatAppearance.BorderColor = Color.Gray;
     this.btnRiskMedium.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnRiskMedium.FlatAppearance.MouseOverBackColor = Color.PaleTurquoise;
     this.btnRiskMedium.FlatStyle = FlatStyle.Flat;
     this.btnRiskMedium.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.btnRiskMedium.Location = new Point(281, 271);
     this.btnRiskMedium.Name = "btnRiskMedium";
     this.btnRiskMedium.Size = new Size(71, 30);
     this.btnRiskMedium.TabIndex = 93;
     this.btnRiskMedium.Text = "ปานกลาง";
     this.btnRiskMedium.UseVisualStyleBackColor = true;
     this.btnRiskMedium.Click += new EventHandler(this.btnRiskMedium_Click);
     this.btnRiskMin.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.btnRiskMin.AutoSize = true;
     this.btnRiskMin.FlatAppearance.BorderColor = Color.Gray;
     this.btnRiskMin.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnRiskMin.FlatAppearance.MouseOverBackColor = Color.PaleTurquoise;
     this.btnRiskMin.FlatStyle = FlatStyle.Flat;
     this.btnRiskMin.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.btnRiskMin.Location = new Point(220, 271);
     this.btnRiskMin.Name = "btnRiskMin";
     this.btnRiskMin.Size = new Size(59, 30);
     this.btnRiskMin.TabIndex = 92;
     this.btnRiskMin.Text = "ต่ำ";
     this.btnRiskMin.UseVisualStyleBackColor = true;
     this.btnRiskMin.Click += new EventHandler(this.btnRiskMin_Click);
     this.tbSectorLimitValue.BackColor = Color.White;
     this.tbSectorLimitValue.BorderStyle = BorderStyle.FixedSingle;
     this.tbSectorLimitValue.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.tbSectorLimitValue.Location = new Point(181, 181);
     this.tbSectorLimitValue.Margin = new Padding(3, 4, 3, 4);
     this.tbSectorLimitValue.MaxLength = 2;
     this.tbSectorLimitValue.Name = "tbSectorLimitValue";
     this.tbSectorLimitValue.Size = new Size(33, 21);
     this.tbSectorLimitValue.TabIndex = 3;
     this.tbSectorLimitValue.TextAlign = HorizontalAlignment.Center;
     this.tbSectorLimitValue.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbSectorLimitValue.Enter += new EventHandler(this.controlOrder_Enter);
     this.chbSectorLimit.AutoSize = true;
     this.chbSectorLimit.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.chbSectorLimit.Location = new Point(3, 183);
     this.chbSectorLimit.Margin = new Padding(3, 4, 3, 4);
     this.chbSectorLimit.Name = "chbSectorLimit";
     this.chbSectorLimit.Size = new Size(261, 20);
     this.chbSectorLimit.TabIndex = 14;
     this.chbSectorLimit.Text = "กำหนดต้องซื้อหุ้นให้มากกว่า            Sector";
     this.chbSectorLimit.UseVisualStyleBackColor = true;
     this.tbAvg5Volume.BackColor = Color.White;
     this.tbAvg5Volume.BorderStyle = BorderStyle.FixedSingle;
     this.tbAvg5Volume.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.tbAvg5Volume.Location = new Point(181, 123);
     this.tbAvg5Volume.Margin = new Padding(3, 4, 3, 4);
     this.tbAvg5Volume.MaxLength = 2;
     this.tbAvg5Volume.Name = "tbAvg5Volume";
     this.tbAvg5Volume.Size = new Size(33, 21);
     this.tbAvg5Volume.TabIndex = 13;
     this.tbAvg5Volume.TextAlign = HorizontalAlignment.Center;
     this.tbAvg5Volume.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbAvg5Volume.Enter += new EventHandler(this.controlOrder_Enter);
     this.chbAvg5Volume.AutoSize = true;
     this.chbAvg5Volume.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.chbAvg5Volume.Location = new Point(3, 128);
     this.chbAvg5Volume.Margin = new Padding(3, 4, 3, 4);
     this.chbAvg5Volume.Name = "chbAvg5Volume";
     this.chbAvg5Volume.Size = new Size(253, 36);
     this.chbAvg5Volume.TabIndex = 12;
     this.chbAvg5Volume.Text = "จำนวนหุ้นที่ลงทุนไม่ควรเกิน               % \r\nเทียบกับปริมาณซื้อขายเฉลี่ย 5 วันก่อนหน้า";
     this.chbAvg5Volume.UseVisualStyleBackColor = true;
     this.tbStocksInSector.BackColor = Color.White;
     this.tbStocksInSector.BorderStyle = BorderStyle.FixedSingle;
     this.tbStocksInSector.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.tbStocksInSector.Location = new Point(268, 219);
     this.tbStocksInSector.Margin = new Padding(3, 4, 3, 4);
     this.tbStocksInSector.MaxLength = 2;
     this.tbStocksInSector.Name = "tbStocksInSector";
     this.tbStocksInSector.Size = new Size(33, 21);
     this.tbStocksInSector.TabIndex = 11;
     this.tbStocksInSector.TextAlign = HorizontalAlignment.Center;
     this.tbStocksInSector.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbStocksInSector.Enter += new EventHandler(this.controlOrder_Enter);
     this.lbRiskLevel.AutoSize = true;
     this.lbRiskLevel.Font = new Font("Tahoma", 9.75f, FontStyle.Underline, GraphicsUnit.Point, 222);
     this.lbRiskLevel.ForeColor = Color.FromArgb(192, 0, 0);
     this.lbRiskLevel.Location = new Point(10, 273);
     this.lbRiskLevel.Name = "lbRiskLevel";
     this.lbRiskLevel.Size = new Size(160, 16);
     this.lbRiskLevel.TabIndex = 6;
     this.lbRiskLevel.Text = "ค่าแนะนำ *ระดับความเสี่ยง*";
     this.tbChgLimitValue.BackColor = Color.White;
     this.tbChgLimitValue.BorderStyle = BorderStyle.FixedSingle;
     this.tbChgLimitValue.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.tbChgLimitValue.Location = new Point(289, 86);
     this.tbChgLimitValue.Margin = new Padding(3, 4, 3, 4);
     this.tbChgLimitValue.MaxLength = 2;
     this.tbChgLimitValue.Name = "tbChgLimitValue";
     this.tbChgLimitValue.Size = new Size(32, 21);
     this.tbChgLimitValue.TabIndex = 5;
     this.tbChgLimitValue.TextAlign = HorizontalAlignment.Center;
     this.tbChgLimitValue.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbChgLimitValue.Enter += new EventHandler(this.controlOrder_Enter);
     this.chbChgLimit.AutoSize = true;
     this.chbChgLimit.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.chbChgLimit.Location = new Point(3, 88);
     this.chbChgLimit.Margin = new Padding(3, 4, 3, 4);
     this.chbChgLimit.Name = "chbChgLimit";
     this.chbChgLimit.Size = new Size(346, 20);
     this.chbChgLimit.TabIndex = 4;
     this.chbChgLimit.Text = "กำหนดห้ามซื้อหุ้นที่ราคาบวก(Change Price) เกิน            %";
     this.chbChgLimit.UseVisualStyleBackColor = true;
     this.tbValueLimitValue.BackColor = Color.White;
     this.tbValueLimitValue.BorderStyle = BorderStyle.FixedSingle;
     this.tbValueLimitValue.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.tbValueLimitValue.Location = new Point(243, 38);
     this.tbValueLimitValue.Margin = new Padding(3, 4, 3, 4);
     this.tbValueLimitValue.MaxLength = 2;
     this.tbValueLimitValue.Name = "tbValueLimitValue";
     this.tbValueLimitValue.Size = new Size(33, 21);
     this.tbValueLimitValue.TabIndex = 1;
     this.tbValueLimitValue.TextAlign = HorizontalAlignment.Center;
     this.tbValueLimitValue.Leave += new EventHandler(this.controlOrder_Leave);
     this.tbValueLimitValue.Enter += new EventHandler(this.controlOrder_Enter);
     this.chbValueLimit.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.chbValueLimit.Location = new Point(3, 40);
     this.chbValueLimit.Margin = new Padding(3, 4, 3, 4);
     this.chbValueLimit.Name = "chbValueLimit";
     this.chbValueLimit.Size = new Size(409, 30);
     this.chbValueLimit.TabIndex = 0;
     this.chbValueLimit.Text = "กำหนดเงินลงทุนไม่ให้ซื้อหุ้นแต่ละตัวเกิน              % \r\nของวงเงินเริ่มต้น";
     this.chbValueLimit.UseVisualStyleBackColor = true;
     this.chbStocksInSector.AutoSize = true;
     this.chbStocksInSector.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.chbStocksInSector.Location = new Point(3, 222);
     this.chbStocksInSector.Margin = new Padding(3, 4, 3, 4);
     this.chbStocksInSector.Name = "chbStocksInSector";
     this.chbStocksInSector.Size = new Size(329, 20);
     this.chbStocksInSector.TabIndex = 15;
     this.chbStocksInSector.Text = "กำหนดต้องซื้อหุ้นใน Sector เดียวกันมากกว่า             ตัว";
     this.chbStocksInSector.UseVisualStyleBackColor = true;
     this.gbStockThreshold.BackColor = Color.PowderBlue;
     this.gbStockThreshold.Controls.Add(this.intza);
     this.gbStockThreshold.Controls.Add(this.panel2);
     this.gbStockThreshold.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.gbStockThreshold.Location = new Point(451, 36);
     this.gbStockThreshold.Margin = new Padding(3, 4, 3, 4);
     this.gbStockThreshold.Name = "gbStockThreshold";
     this.gbStockThreshold.Padding = new Padding(3, 4, 3, 4);
     this.gbStockThreshold.Size = new Size(400, 313);
     this.gbStockThreshold.TabIndex = 90;
     this.gbStockThreshold.TabStop = false;
     this.gbStockThreshold.Text = "นโยบายควบคุมรายหุ้น (Stock control policy.)";
     this.intza.AllowDrop = true;
     this.intza.BackColor = Color.FromArgb(20, 20, 20);
     this.intza.CanBlink = true;
     this.intza.CanDrag = false;
     this.intza.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Center;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "no";
     columnItem.Text = "#";
     columnItem.ValueFormat = FormatType.RecordNumber;
     columnItem.Visible = true;
     columnItem.Width = 10;
     columnItem2.Alignment = StringAlignment.Center;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "side";
     columnItem2.Text = "Side";
     columnItem2.ValueFormat = FormatType.Text;
     columnItem2.Visible = true;
     columnItem2.Width = 14;
     columnItem3.Alignment = StringAlignment.Near;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "stock";
     columnItem3.Text = "Stock";
     columnItem3.ValueFormat = FormatType.Text;
     columnItem3.Visible = true;
     columnItem3.Width = 22;
     columnItem4.Alignment = StringAlignment.Far;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "volume";
     columnItem4.Text = "Volume";
     columnItem4.ValueFormat = FormatType.Volume;
     columnItem4.Visible = true;
     columnItem4.Width = 30;
     columnItem5.Alignment = StringAlignment.Far;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.LightGray;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "price";
     columnItem5.Text = "Price";
     columnItem5.ValueFormat = FormatType.Price;
     columnItem5.Visible = true;
     columnItem5.Width = 24;
     this.intza.Columns.Add(columnItem);
     this.intza.Columns.Add(columnItem2);
     this.intza.Columns.Add(columnItem3);
     this.intza.Columns.Add(columnItem4);
     this.intza.Columns.Add(columnItem5);
     this.intza.CurrentScroll = 0;
     this.intza.Cursor = Cursors.Hand;
     this.intza.Dock = DockStyle.Fill;
     this.intza.FocusItemIndex = -1;
     this.intza.ForeColor = Color.Black;
     this.intza.GridColor = Color.FromArgb(45, 45, 45);
     this.intza.HeaderPctHeight = 80f;
     this.intza.IsAutoRepaint = true;
     this.intza.IsDrawFullRow = false;
     this.intza.IsDrawGrid = true;
     this.intza.IsDrawHeader = true;
     this.intza.IsScrollable = true;
     this.intza.Location = new Point(3, 20);
     this.intza.MainColumn = "";
     this.intza.Margin = new Padding(3, 4, 3, 4);
     this.intza.Name = "intza";
     this.intza.Rows = 0;
     this.intza.RowSelectColor = Color.FromArgb(0, 0, 128);
     this.intza.RowSelectType = 3;
     this.intza.RowsVisible = 0;
     this.intza.Size = new Size(394, 139);
     this.intza.SortColumnName = "";
     this.intza.SortType = SortType.Desc;
     this.intza.TabIndex = 87;
     this.intza.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaTableGrid1_TableMouseClick);
     this.btnUpdate.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.btnUpdate.AutoSize = true;
     this.btnUpdate.FlatAppearance.BorderColor = Color.Gray;
     this.btnUpdate.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnUpdate.FlatAppearance.MouseOverBackColor = Color.Teal;
     this.btnUpdate.FlatStyle = FlatStyle.Flat;
     this.btnUpdate.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.btnUpdate.Location = new Point(691, 356);
     this.btnUpdate.Margin = new Padding(3, 4, 3, 4);
     this.btnUpdate.Name = "btnUpdate";
     this.btnUpdate.Size = new Size(75, 30);
     this.btnUpdate.TabIndex = 91;
     this.btnUpdate.Text = "Confirm";
     this.btnUpdate.UseVisualStyleBackColor = true;
     this.btnUpdate.Click += new EventHandler(this.btnUpdate_Click);
     this.btnCancel.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.btnCancel.AutoSize = true;
     this.btnCancel.FlatAppearance.BorderColor = Color.Gray;
     this.btnCancel.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnCancel.FlatAppearance.MouseOverBackColor = Color.Teal;
     this.btnCancel.FlatStyle = FlatStyle.Flat;
     this.btnCancel.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.btnCancel.Location = new Point(772, 355);
     this.btnCancel.Margin = new Padding(3, 4, 3, 4);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new Size(75, 30);
     this.btnCancel.TabIndex = 92;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click += new EventHandler(this.btnCancel_Click);
     this.chbOpen.AutoSize = true;
     this.chbOpen.BackColor = SystemColors.ControlLight;
     this.chbOpen.Location = new Point(11, 6);
     this.chbOpen.Name = "chbOpen";
     this.chbOpen.Padding = new Padding(3, 1, 1, 1);
     this.chbOpen.Size = new Size(157, 22);
     this.chbOpen.TabIndex = 93;
     this.chbOpen.Text = "เปิดการใช้งาน (Enable)";
     this.chbOpen.UseVisualStyleBackColor = false;
     base.AutoScaleDimensions = new SizeF(7f, 16f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(854, 391);
     base.ControlBox = false;
     base.Controls.Add(this.chbOpen);
     base.Controls.Add(this.btnCancel);
     base.Controls.Add(this.btnUpdate);
     base.Controls.Add(this.gbStockThreshold);
     base.Controls.Add(this.gbPolicy);
     base.Controls.Add(this.lbLoading);
     this.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 222);
     base.Margin = new Padding(3, 5, 3, 5);
     base.MaximizeBox = false;
     base.Name = "frmRiskControl";
     base.StartPosition = FormStartPosition.CenterParent;
     this.Text = "Risk Control Tools. / เครื่องมือควบคุมความเสี่ยง";
     base.Shown += new EventHandler(this.frmStockThreshold_Shown);
     base.FormClosing += new FormClosingEventHandler(this.frmStockThreshold_FormClosing);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.gbPolicy.ResumeLayout(false);
     this.gbPolicy.PerformLayout();
     this.gbStockThreshold.ResumeLayout(false);
     base.ResumeLayout(false);
     base.PerformLayout();
 }
 private void InitializeComponent()
 {
     ItemGrid itemGrid = new ItemGrid();
     ItemGrid itemGrid2 = new ItemGrid();
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ItemGrid itemGrid3 = new ItemGrid();
     ItemGrid itemGrid4 = new ItemGrid();
     ItemGrid itemGrid5 = new ItemGrid();
     ItemGrid itemGrid6 = new ItemGrid();
     ItemGrid itemGrid7 = new ItemGrid();
     ItemGrid itemGrid8 = new ItemGrid();
     ItemGrid itemGrid9 = new ItemGrid();
     ItemGrid itemGrid10 = new ItemGrid();
     ItemGrid itemGrid11 = new ItemGrid();
     ItemGrid itemGrid12 = new ItemGrid();
     ItemGrid itemGrid13 = new ItemGrid();
     ItemGrid itemGrid14 = new ItemGrid();
     ItemGrid itemGrid15 = new ItemGrid();
     ItemGrid itemGrid16 = new ItemGrid();
     ItemGrid itemGrid17 = new ItemGrid();
     ItemGrid itemGrid18 = new ItemGrid();
     ItemGrid itemGrid19 = new ItemGrid();
     ItemGrid itemGrid20 = new ItemGrid();
     ItemGrid itemGrid21 = new ItemGrid();
     ItemGrid itemGrid22 = new ItemGrid();
     ItemGrid itemGrid23 = new ItemGrid();
     ItemGrid itemGrid24 = new ItemGrid();
     ItemGrid itemGrid25 = new ItemGrid();
     ItemGrid itemGrid26 = new ItemGrid();
     ItemGrid itemGrid27 = new ItemGrid();
     ItemGrid itemGrid28 = new ItemGrid();
     ItemGrid itemGrid29 = new ItemGrid();
     ItemGrid itemGrid30 = new ItemGrid();
     ItemGrid itemGrid31 = new ItemGrid();
     ItemGrid itemGrid32 = new ItemGrid();
     ItemGrid itemGrid33 = new ItemGrid();
     ItemGrid itemGrid34 = new ItemGrid();
     ItemGrid itemGrid35 = new ItemGrid();
     ItemGrid itemGrid36 = new ItemGrid();
     ItemGrid itemGrid37 = new ItemGrid();
     ItemGrid itemGrid38 = new ItemGrid();
     ItemGrid itemGrid39 = new ItemGrid();
     ItemGrid itemGrid40 = new ItemGrid();
     ItemGrid itemGrid41 = new ItemGrid();
     ItemGrid itemGrid42 = new ItemGrid();
     ItemGrid itemGrid43 = new ItemGrid();
     ItemGrid itemGrid44 = new ItemGrid();
     ItemGrid itemGrid45 = new ItemGrid();
     ItemGrid itemGrid46 = new ItemGrid();
     ItemGrid itemGrid47 = new ItemGrid();
     ItemGrid itemGrid48 = new ItemGrid();
     ItemGrid itemGrid49 = new ItemGrid();
     ItemGrid itemGrid50 = new ItemGrid();
     ItemGrid itemGrid51 = new ItemGrid();
     ItemGrid itemGrid52 = new ItemGrid();
     this.intzaInfo4 = new IntzaCustomGrid();
     this.intzaDeal = new SortGrid();
     this.intzaInfo3 = new IntzaCustomGrid();
     this.intzaInfo2 = new IntzaCustomGrid();
     this.intzaInfo1 = new IntzaCustomGrid();
     this.intzaInfo5 = new IntzaCustomGrid();
     base.SuspendLayout();
     this.intzaInfo4.AllowDrop = true;
     this.intzaInfo4.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaInfo4.CanDrag = false;
     this.intzaInfo4.IsAutoRepaint = true;
     this.intzaInfo4.IsDroped = false;
     itemGrid.AdjustFontSize = 0f;
     itemGrid.Alignment = StringAlignment.Near;
     itemGrid.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid.Changed = false;
     itemGrid.FieldType = ItemType.Label;
     itemGrid.FontColor = Color.White;
     itemGrid.FontStyle = FontStyle.Regular;
     itemGrid.Height = 1f;
     itemGrid.IsBlink = 0;
     itemGrid.Name = "lbRejectDesc";
     itemGrid.Text = "Reject Desc";
     itemGrid.ValueFormat = FormatType.Text;
     itemGrid.Visible = true;
     itemGrid.Width = 30;
     itemGrid.X = 0;
     itemGrid.Y = 0f;
     itemGrid2.AdjustFontSize = 0f;
     itemGrid2.Alignment = StringAlignment.Near;
     itemGrid2.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid2.Changed = false;
     itemGrid2.FieldType = ItemType.Text;
     itemGrid2.FontColor = Color.Yellow;
     itemGrid2.FontStyle = FontStyle.Regular;
     itemGrid2.Height = 1f;
     itemGrid2.IsBlink = 0;
     itemGrid2.Name = "tbRejectDesc";
     itemGrid2.Text = "";
     itemGrid2.ValueFormat = FormatType.Text;
     itemGrid2.Visible = true;
     itemGrid2.Width = 100;
     itemGrid2.X = 15;
     itemGrid2.Y = 0f;
     this.intzaInfo4.Items.Add(itemGrid);
     this.intzaInfo4.Items.Add(itemGrid2);
     this.intzaInfo4.LineColor = Color.Red;
     this.intzaInfo4.Location = new Point(2, 147);
     this.intzaInfo4.Name = "intzaInfo4";
     this.intzaInfo4.Size = new Size(506, 19);
     this.intzaInfo4.TabIndex = 160;
     this.intzaDeal.AllowDrop = true;
     this.intzaDeal.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaDeal.CanBlink = false;
     this.intzaDeal.CanDrag = false;
     this.intzaDeal.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Center;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "confirm";
     columnItem.Text = "Confirm";
     columnItem.ValueFormat = FormatType.Text;
     columnItem.Visible = true;
     columnItem.Width = 25;
     columnItem2.Alignment = StringAlignment.Far;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "volume";
     columnItem2.Text = "Vol";
     columnItem2.ValueFormat = FormatType.Volume;
     columnItem2.Visible = true;
     columnItem2.Width = 25;
     columnItem3.Alignment = StringAlignment.Far;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "price";
     columnItem3.Text = "Price";
     columnItem3.ValueFormat = FormatType.Price;
     columnItem3.Visible = true;
     columnItem3.Width = 25;
     columnItem4.Alignment = StringAlignment.Far;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "time";
     columnItem4.Text = "Time";
     columnItem4.ValueFormat = FormatType.Text;
     columnItem4.Visible = true;
     columnItem4.Width = 25;
     this.intzaDeal.Columns.Add(columnItem);
     this.intzaDeal.Columns.Add(columnItem2);
     this.intzaDeal.Columns.Add(columnItem3);
     this.intzaDeal.Columns.Add(columnItem4);
     this.intzaDeal.CurrentScroll = 0;
     this.intzaDeal.FocusItemIndex = -1;
     this.intzaDeal.ForeColor = Color.Black;
     this.intzaDeal.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaDeal.HeaderPctHeight = 100f;
     this.intzaDeal.IsAutoRepaint = true;
     this.intzaDeal.IsDrawFullRow = true;
     this.intzaDeal.IsDrawGrid = true;
     this.intzaDeal.IsDrawHeader = true;
     this.intzaDeal.IsScrollable = true;
     this.intzaDeal.Location = new Point(509, 3);
     this.intzaDeal.MainColumn = "";
     this.intzaDeal.Name = "intzaDeal";
     this.intzaDeal.Rows = 0;
     this.intzaDeal.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaDeal.RowSelectType = 0;
     this.intzaDeal.RowsVisible = 0;
     this.intzaDeal.Size = new Size(236, 183);
     this.intzaDeal.SortColumnName = "";
     this.intzaDeal.SortType = SortType.Desc;
     this.intzaDeal.TabIndex = 159;
     this.intzaInfo3.AllowDrop = true;
     this.intzaInfo3.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaInfo3.CanDrag = false;
     this.intzaInfo3.IsAutoRepaint = true;
     this.intzaInfo3.IsDroped = false;
     itemGrid3.AdjustFontSize = 0f;
     itemGrid3.Alignment = StringAlignment.Near;
     itemGrid3.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid3.Changed = false;
     itemGrid3.FieldType = ItemType.Label;
     itemGrid3.FontColor = Color.White;
     itemGrid3.FontStyle = FontStyle.Regular;
     itemGrid3.Height = 1f;
     itemGrid3.IsBlink = 0;
     itemGrid3.Name = "lbType";
     itemGrid3.Text = "Type";
     itemGrid3.ValueFormat = FormatType.Text;
     itemGrid3.Visible = true;
     itemGrid3.Width = 50;
     itemGrid3.X = 0;
     itemGrid3.Y = 0f;
     itemGrid4.AdjustFontSize = 0f;
     itemGrid4.Alignment = StringAlignment.Far;
     itemGrid4.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid4.Changed = false;
     itemGrid4.FieldType = ItemType.Text;
     itemGrid4.FontColor = Color.Yellow;
     itemGrid4.FontStyle = FontStyle.Regular;
     itemGrid4.Height = 1f;
     itemGrid4.IsBlink = 0;
     itemGrid4.Name = "tbType";
     itemGrid4.Text = "";
     itemGrid4.ValueFormat = FormatType.Text;
     itemGrid4.Visible = true;
     itemGrid4.Width = 50;
     itemGrid4.X = 50;
     itemGrid4.Y = 0f;
     itemGrid5.AdjustFontSize = 0f;
     itemGrid5.Alignment = StringAlignment.Near;
     itemGrid5.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid5.Changed = false;
     itemGrid5.FieldType = ItemType.Label;
     itemGrid5.FontColor = Color.White;
     itemGrid5.FontStyle = FontStyle.Regular;
     itemGrid5.Height = 1f;
     itemGrid5.IsBlink = 0;
     itemGrid5.Name = "lbStatusM";
     itemGrid5.Text = "Status Desc";
     itemGrid5.ValueFormat = FormatType.Text;
     itemGrid5.Visible = true;
     itemGrid5.Width = 39;
     itemGrid5.X = 0;
     itemGrid5.Y = 1f;
     itemGrid6.AdjustFontSize = 0f;
     itemGrid6.Alignment = StringAlignment.Far;
     itemGrid6.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid6.Changed = false;
     itemGrid6.FieldType = ItemType.Text;
     itemGrid6.FontColor = Color.Yellow;
     itemGrid6.FontStyle = FontStyle.Regular;
     itemGrid6.Height = 1f;
     itemGrid6.IsBlink = 0;
     itemGrid6.Name = "tbStatusM";
     itemGrid6.Text = "";
     itemGrid6.ValueFormat = FormatType.Text;
     itemGrid6.Visible = true;
     itemGrid6.Width = 60;
     itemGrid6.X = 39;
     itemGrid6.Y = 1f;
     itemGrid7.AdjustFontSize = 0f;
     itemGrid7.Alignment = StringAlignment.Near;
     itemGrid7.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid7.Changed = false;
     itemGrid7.FieldType = ItemType.Label;
     itemGrid7.FontColor = Color.White;
     itemGrid7.FontStyle = FontStyle.Regular;
     itemGrid7.Height = 1f;
     itemGrid7.IsBlink = 0;
     itemGrid7.Name = "lbCanceller";
     itemGrid7.Text = "Canceller";
     itemGrid7.ValueFormat = FormatType.Text;
     itemGrid7.Visible = true;
     itemGrid7.Width = 50;
     itemGrid7.X = 0;
     itemGrid7.Y = 2f;
     itemGrid8.AdjustFontSize = 0f;
     itemGrid8.Alignment = StringAlignment.Far;
     itemGrid8.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid8.Changed = false;
     itemGrid8.FieldType = ItemType.Text;
     itemGrid8.FontColor = Color.Yellow;
     itemGrid8.FontStyle = FontStyle.Regular;
     itemGrid8.Height = 1f;
     itemGrid8.IsBlink = 0;
     itemGrid8.Name = "tbCanceller";
     itemGrid8.Text = "";
     itemGrid8.ValueFormat = FormatType.Text;
     itemGrid8.Visible = true;
     itemGrid8.Width = 50;
     itemGrid8.X = 50;
     itemGrid8.Y = 2f;
     itemGrid9.AdjustFontSize = 0f;
     itemGrid9.Alignment = StringAlignment.Near;
     itemGrid9.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid9.Changed = false;
     itemGrid9.FieldType = ItemType.Label;
     itemGrid9.FontColor = Color.White;
     itemGrid9.FontStyle = FontStyle.Regular;
     itemGrid9.Height = 1f;
     itemGrid9.IsBlink = 0;
     itemGrid9.Name = "lbCancelTime";
     itemGrid9.Text = "Cancel Time";
     itemGrid9.ValueFormat = FormatType.Text;
     itemGrid9.Visible = true;
     itemGrid9.Width = 50;
     itemGrid9.X = 0;
     itemGrid9.Y = 3f;
     itemGrid10.AdjustFontSize = 0f;
     itemGrid10.Alignment = StringAlignment.Far;
     itemGrid10.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid10.Changed = false;
     itemGrid10.FieldType = ItemType.Text;
     itemGrid10.FontColor = Color.Yellow;
     itemGrid10.FontStyle = FontStyle.Regular;
     itemGrid10.Height = 1f;
     itemGrid10.IsBlink = 0;
     itemGrid10.Name = "tbCancelTime";
     itemGrid10.Text = "";
     itemGrid10.ValueFormat = FormatType.Text;
     itemGrid10.Visible = true;
     itemGrid10.Width = 50;
     itemGrid10.X = 50;
     itemGrid10.Y = 3f;
     itemGrid11.AdjustFontSize = 0f;
     itemGrid11.Alignment = StringAlignment.Near;
     itemGrid11.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid11.Changed = false;
     itemGrid11.FieldType = ItemType.Label;
     itemGrid11.FontColor = Color.White;
     itemGrid11.FontStyle = FontStyle.Regular;
     itemGrid11.Height = 1f;
     itemGrid11.IsBlink = 0;
     itemGrid11.Name = "lbStopSeries";
     itemGrid11.Text = "Stop Series";
     itemGrid11.ValueFormat = FormatType.Text;
     itemGrid11.Visible = true;
     itemGrid11.Width = 50;
     itemGrid11.X = 0;
     itemGrid11.Y = 4f;
     itemGrid12.AdjustFontSize = 0f;
     itemGrid12.Alignment = StringAlignment.Far;
     itemGrid12.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid12.Changed = false;
     itemGrid12.FieldType = ItemType.Text;
     itemGrid12.FontColor = Color.Cyan;
     itemGrid12.FontStyle = FontStyle.Regular;
     itemGrid12.Height = 1f;
     itemGrid12.IsBlink = 0;
     itemGrid12.Name = "tbStopSeries";
     itemGrid12.Text = "";
     itemGrid12.ValueFormat = FormatType.Text;
     itemGrid12.Visible = true;
     itemGrid12.Width = 50;
     itemGrid12.X = 50;
     itemGrid12.Y = 4f;
     itemGrid13.AdjustFontSize = 0f;
     itemGrid13.Alignment = StringAlignment.Near;
     itemGrid13.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid13.Changed = false;
     itemGrid13.FieldType = ItemType.Label;
     itemGrid13.FontColor = Color.White;
     itemGrid13.FontStyle = FontStyle.Regular;
     itemGrid13.Height = 1f;
     itemGrid13.IsBlink = 0;
     itemGrid13.Name = "lbStopPrice";
     itemGrid13.Text = "Stop Price";
     itemGrid13.ValueFormat = FormatType.Text;
     itemGrid13.Visible = true;
     itemGrid13.Width = 50;
     itemGrid13.X = 0;
     itemGrid13.Y = 5f;
     itemGrid14.AdjustFontSize = 0f;
     itemGrid14.Alignment = StringAlignment.Far;
     itemGrid14.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid14.Changed = false;
     itemGrid14.FieldType = ItemType.Text;
     itemGrid14.FontColor = Color.Yellow;
     itemGrid14.FontStyle = FontStyle.Regular;
     itemGrid14.Height = 1f;
     itemGrid14.IsBlink = 0;
     itemGrid14.Name = "tbStopPrice";
     itemGrid14.Text = "";
     itemGrid14.ValueFormat = FormatType.Text;
     itemGrid14.Visible = true;
     itemGrid14.Width = 50;
     itemGrid14.X = 50;
     itemGrid14.Y = 5f;
     itemGrid15.AdjustFontSize = 0f;
     itemGrid15.Alignment = StringAlignment.Near;
     itemGrid15.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid15.Changed = false;
     itemGrid15.FieldType = ItemType.Label;
     itemGrid15.FontColor = Color.White;
     itemGrid15.FontStyle = FontStyle.Regular;
     itemGrid15.Height = 1f;
     itemGrid15.IsBlink = 0;
     itemGrid15.Name = "lbStopCond";
     itemGrid15.Text = "Stop Cond";
     itemGrid15.ValueFormat = FormatType.Text;
     itemGrid15.Visible = true;
     itemGrid15.Width = 50;
     itemGrid15.X = 0;
     itemGrid15.Y = 6f;
     itemGrid16.AdjustFontSize = 0f;
     itemGrid16.Alignment = StringAlignment.Far;
     itemGrid16.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid16.Changed = false;
     itemGrid16.FieldType = ItemType.Text;
     itemGrid16.FontColor = Color.Yellow;
     itemGrid16.FontStyle = FontStyle.Regular;
     itemGrid16.Height = 1f;
     itemGrid16.IsBlink = 0;
     itemGrid16.Name = "tbStopCond";
     itemGrid16.Text = "";
     itemGrid16.ValueFormat = FormatType.Text;
     itemGrid16.Visible = true;
     itemGrid16.Width = 50;
     itemGrid16.X = 50;
     itemGrid16.Y = 6f;
     itemGrid17.AdjustFontSize = 0f;
     itemGrid17.Alignment = StringAlignment.Near;
     itemGrid17.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid17.Changed = false;
     itemGrid17.FieldType = ItemType.Label;
     itemGrid17.FontColor = Color.White;
     itemGrid17.FontStyle = FontStyle.Regular;
     itemGrid17.Height = 1f;
     itemGrid17.IsBlink = 0;
     itemGrid17.Name = "lbRejectCode";
     itemGrid17.Text = "Reject Code";
     itemGrid17.ValueFormat = FormatType.Text;
     itemGrid17.Visible = true;
     itemGrid17.Width = 50;
     itemGrid17.X = 0;
     itemGrid17.Y = 7f;
     itemGrid18.AdjustFontSize = 0f;
     itemGrid18.Alignment = StringAlignment.Far;
     itemGrid18.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid18.Changed = false;
     itemGrid18.FieldType = ItemType.Text;
     itemGrid18.FontColor = Color.Yellow;
     itemGrid18.FontStyle = FontStyle.Regular;
     itemGrid18.Height = 1f;
     itemGrid18.IsBlink = 0;
     itemGrid18.Name = "tbRejectCode";
     itemGrid18.Text = "";
     itemGrid18.ValueFormat = FormatType.Text;
     itemGrid18.Visible = true;
     itemGrid18.Width = 50;
     itemGrid18.X = 50;
     itemGrid18.Y = 7f;
     this.intzaInfo3.Items.Add(itemGrid3);
     this.intzaInfo3.Items.Add(itemGrid4);
     this.intzaInfo3.Items.Add(itemGrid5);
     this.intzaInfo3.Items.Add(itemGrid6);
     this.intzaInfo3.Items.Add(itemGrid7);
     this.intzaInfo3.Items.Add(itemGrid8);
     this.intzaInfo3.Items.Add(itemGrid9);
     this.intzaInfo3.Items.Add(itemGrid10);
     this.intzaInfo3.Items.Add(itemGrid11);
     this.intzaInfo3.Items.Add(itemGrid12);
     this.intzaInfo3.Items.Add(itemGrid13);
     this.intzaInfo3.Items.Add(itemGrid14);
     this.intzaInfo3.Items.Add(itemGrid15);
     this.intzaInfo3.Items.Add(itemGrid16);
     this.intzaInfo3.Items.Add(itemGrid17);
     this.intzaInfo3.Items.Add(itemGrid18);
     this.intzaInfo3.LineColor = Color.Red;
     this.intzaInfo3.Location = new Point(324, 3);
     this.intzaInfo3.Margin = new Padding(0);
     this.intzaInfo3.Name = "intzaInfo3";
     this.intzaInfo3.Size = new Size(184, 143);
     this.intzaInfo3.TabIndex = 158;
     this.intzaInfo2.AllowDrop = true;
     this.intzaInfo2.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaInfo2.CanDrag = false;
     this.intzaInfo2.IsAutoRepaint = true;
     this.intzaInfo2.IsDroped = false;
     itemGrid19.AdjustFontSize = 0f;
     itemGrid19.Alignment = StringAlignment.Near;
     itemGrid19.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid19.Changed = false;
     itemGrid19.FieldType = ItemType.Label;
     itemGrid19.FontColor = Color.White;
     itemGrid19.FontStyle = FontStyle.Regular;
     itemGrid19.Height = 1f;
     itemGrid19.IsBlink = 0;
     itemGrid19.Name = "lbValidate";
     itemGrid19.Text = "Validate";
     itemGrid19.ValueFormat = FormatType.Volume;
     itemGrid19.Visible = true;
     itemGrid19.Width = 58;
     itemGrid19.X = 0;
     itemGrid19.Y = 0f;
     itemGrid20.AdjustFontSize = 0f;
     itemGrid20.Alignment = StringAlignment.Far;
     itemGrid20.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid20.Changed = false;
     itemGrid20.FieldType = ItemType.Text;
     itemGrid20.FontColor = Color.Yellow;
     itemGrid20.FontStyle = FontStyle.Regular;
     itemGrid20.Height = 1f;
     itemGrid20.IsBlink = 0;
     itemGrid20.Name = "tbValidate";
     itemGrid20.Text = "";
     itemGrid20.ValueFormat = FormatType.Text;
     itemGrid20.Visible = true;
     itemGrid20.Width = 42;
     itemGrid20.X = 58;
     itemGrid20.Y = 0f;
     itemGrid21.AdjustFontSize = 0f;
     itemGrid21.Alignment = StringAlignment.Near;
     itemGrid21.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid21.Changed = false;
     itemGrid21.FieldType = ItemType.Label;
     itemGrid21.FontColor = Color.White;
     itemGrid21.FontStyle = FontStyle.Regular;
     itemGrid21.Height = 1f;
     itemGrid21.IsBlink = 0;
     itemGrid21.Name = "lbAccount";
     itemGrid21.Text = "Account";
     itemGrid21.ValueFormat = FormatType.Text;
     itemGrid21.Visible = true;
     itemGrid21.Width = 40;
     itemGrid21.X = 0;
     itemGrid21.Y = 1f;
     itemGrid22.AdjustFontSize = 0f;
     itemGrid22.Alignment = StringAlignment.Far;
     itemGrid22.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid22.Changed = false;
     itemGrid22.FieldType = ItemType.Text;
     itemGrid22.FontColor = Color.Cyan;
     itemGrid22.FontStyle = FontStyle.Regular;
     itemGrid22.Height = 1f;
     itemGrid22.IsBlink = 0;
     itemGrid22.Name = "tbAccount";
     itemGrid22.Text = "";
     itemGrid22.ValueFormat = FormatType.Text;
     itemGrid22.Visible = true;
     itemGrid22.Width = 55;
     itemGrid22.X = 45;
     itemGrid22.Y = 1f;
     itemGrid23.AdjustFontSize = 0f;
     itemGrid23.Alignment = StringAlignment.Near;
     itemGrid23.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid23.Changed = false;
     itemGrid23.FieldType = ItemType.Label;
     itemGrid23.FontColor = Color.White;
     itemGrid23.FontStyle = FontStyle.Regular;
     itemGrid23.Height = 1f;
     itemGrid23.IsBlink = 0;
     itemGrid23.Name = "lbStatus";
     itemGrid23.Text = "Status";
     itemGrid23.ValueFormat = FormatType.Text;
     itemGrid23.Visible = true;
     itemGrid23.Width = 58;
     itemGrid23.X = 0;
     itemGrid23.Y = 2f;
     itemGrid24.AdjustFontSize = 0f;
     itemGrid24.Alignment = StringAlignment.Far;
     itemGrid24.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid24.Changed = false;
     itemGrid24.FieldType = ItemType.Text;
     itemGrid24.FontColor = Color.Cyan;
     itemGrid24.FontStyle = FontStyle.Regular;
     itemGrid24.Height = 1f;
     itemGrid24.IsBlink = 0;
     itemGrid24.Name = "tbStatus";
     itemGrid24.Text = "";
     itemGrid24.ValueFormat = FormatType.Text;
     itemGrid24.Visible = true;
     itemGrid24.Width = 42;
     itemGrid24.X = 58;
     itemGrid24.Y = 2f;
     itemGrid25.AdjustFontSize = 0f;
     itemGrid25.Alignment = StringAlignment.Near;
     itemGrid25.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid25.Changed = false;
     itemGrid25.FieldType = ItemType.Label;
     itemGrid25.FontColor = Color.White;
     itemGrid25.FontStyle = FontStyle.Regular;
     itemGrid25.Height = 1f;
     itemGrid25.IsBlink = 0;
     itemGrid25.Name = "lbEntryTime";
     itemGrid25.Text = "Entry Time";
     itemGrid25.ValueFormat = FormatType.Text;
     itemGrid25.Visible = true;
     itemGrid25.Width = 58;
     itemGrid25.X = 0;
     itemGrid25.Y = 3f;
     itemGrid26.AdjustFontSize = 0f;
     itemGrid26.Alignment = StringAlignment.Far;
     itemGrid26.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid26.Changed = false;
     itemGrid26.FieldType = ItemType.Text;
     itemGrid26.FontColor = Color.Yellow;
     itemGrid26.FontStyle = FontStyle.Regular;
     itemGrid26.Height = 1f;
     itemGrid26.IsBlink = 0;
     itemGrid26.Name = "tbEntryTime";
     itemGrid26.Text = "";
     itemGrid26.ValueFormat = FormatType.Text;
     itemGrid26.Visible = true;
     itemGrid26.Width = 42;
     itemGrid26.X = 58;
     itemGrid26.Y = 3f;
     itemGrid27.AdjustFontSize = 0f;
     itemGrid27.Alignment = StringAlignment.Near;
     itemGrid27.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid27.Changed = false;
     itemGrid27.FieldType = ItemType.Label;
     itemGrid27.FontColor = Color.White;
     itemGrid27.FontStyle = FontStyle.Regular;
     itemGrid27.Height = 1f;
     itemGrid27.IsBlink = 0;
     itemGrid27.Name = "lbQuote";
     itemGrid27.Text = "Quote";
     itemGrid27.ValueFormat = FormatType.Text;
     itemGrid27.Visible = true;
     itemGrid27.Width = 58;
     itemGrid27.X = 0;
     itemGrid27.Y = 4f;
     itemGrid28.AdjustFontSize = 0f;
     itemGrid28.Alignment = StringAlignment.Far;
     itemGrid28.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid28.Changed = false;
     itemGrid28.FieldType = ItemType.Text;
     itemGrid28.FontColor = Color.Yellow;
     itemGrid28.FontStyle = FontStyle.Regular;
     itemGrid28.Height = 1f;
     itemGrid28.IsBlink = 0;
     itemGrid28.Name = "tbQuote";
     itemGrid28.Text = "";
     itemGrid28.ValueFormat = FormatType.Text;
     itemGrid28.Visible = true;
     itemGrid28.Width = 42;
     itemGrid28.X = 58;
     itemGrid28.Y = 4f;
     itemGrid29.AdjustFontSize = 0f;
     itemGrid29.Alignment = StringAlignment.Near;
     itemGrid29.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid29.Changed = false;
     itemGrid29.FieldType = ItemType.Label;
     itemGrid29.FontColor = Color.White;
     itemGrid29.FontStyle = FontStyle.Regular;
     itemGrid29.Height = 1f;
     itemGrid29.IsBlink = 0;
     itemGrid29.Name = "lbQuoteTime";
     itemGrid29.Text = "Quote Time";
     itemGrid29.ValueFormat = FormatType.Text;
     itemGrid29.Visible = true;
     itemGrid29.Width = 58;
     itemGrid29.X = 0;
     itemGrid29.Y = 5f;
     itemGrid30.AdjustFontSize = 0f;
     itemGrid30.Alignment = StringAlignment.Far;
     itemGrid30.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid30.Changed = false;
     itemGrid30.FieldType = ItemType.Text;
     itemGrid30.FontColor = Color.Yellow;
     itemGrid30.FontStyle = FontStyle.Regular;
     itemGrid30.Height = 1f;
     itemGrid30.IsBlink = 0;
     itemGrid30.Name = "tbQuoteTime";
     itemGrid30.Text = "";
     itemGrid30.ValueFormat = FormatType.Text;
     itemGrid30.Visible = true;
     itemGrid30.Width = 42;
     itemGrid30.X = 58;
     itemGrid30.Y = 5f;
     itemGrid31.AdjustFontSize = 0f;
     itemGrid31.Alignment = StringAlignment.Near;
     itemGrid31.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid31.Changed = false;
     itemGrid31.FieldType = ItemType.Label;
     itemGrid31.FontColor = Color.White;
     itemGrid31.FontStyle = FontStyle.Regular;
     itemGrid31.Height = 1f;
     itemGrid31.IsBlink = 0;
     itemGrid31.Name = "lbOrigPrice";
     itemGrid31.Text = "Original Price";
     itemGrid31.ValueFormat = FormatType.Text;
     itemGrid31.Visible = true;
     itemGrid31.Width = 58;
     itemGrid31.X = 0;
     itemGrid31.Y = 6f;
     itemGrid32.AdjustFontSize = 0f;
     itemGrid32.Alignment = StringAlignment.Far;
     itemGrid32.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid32.Changed = false;
     itemGrid32.FieldType = ItemType.Text;
     itemGrid32.FontColor = Color.Red;
     itemGrid32.FontStyle = FontStyle.Regular;
     itemGrid32.Height = 1f;
     itemGrid32.IsBlink = 0;
     itemGrid32.Name = "tbOrigPrice";
     itemGrid32.Text = "";
     itemGrid32.ValueFormat = FormatType.Text;
     itemGrid32.Visible = true;
     itemGrid32.Width = 42;
     itemGrid32.X = 58;
     itemGrid32.Y = 6f;
     itemGrid33.AdjustFontSize = 0f;
     itemGrid33.Alignment = StringAlignment.Near;
     itemGrid33.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid33.Changed = false;
     itemGrid33.FieldType = ItemType.Label;
     itemGrid33.FontColor = Color.White;
     itemGrid33.FontStyle = FontStyle.Regular;
     itemGrid33.Height = 1f;
     itemGrid33.IsBlink = 0;
     itemGrid33.Name = "lbEntryId";
     itemGrid33.Text = "Entry Id";
     itemGrid33.ValueFormat = FormatType.Text;
     itemGrid33.Visible = true;
     itemGrid33.Width = 58;
     itemGrid33.X = 0;
     itemGrid33.Y = 7f;
     itemGrid34.AdjustFontSize = 0f;
     itemGrid34.Alignment = StringAlignment.Far;
     itemGrid34.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid34.Changed = false;
     itemGrid34.FieldType = ItemType.Text;
     itemGrid34.FontColor = Color.Yellow;
     itemGrid34.FontStyle = FontStyle.Regular;
     itemGrid34.Height = 1f;
     itemGrid34.IsBlink = 0;
     itemGrid34.Name = "tbEntryId";
     itemGrid34.Text = "";
     itemGrid34.ValueFormat = FormatType.Text;
     itemGrid34.Visible = true;
     itemGrid34.Width = 42;
     itemGrid34.X = 58;
     itemGrid34.Y = 7f;
     this.intzaInfo2.Items.Add(itemGrid19);
     this.intzaInfo2.Items.Add(itemGrid20);
     this.intzaInfo2.Items.Add(itemGrid21);
     this.intzaInfo2.Items.Add(itemGrid22);
     this.intzaInfo2.Items.Add(itemGrid23);
     this.intzaInfo2.Items.Add(itemGrid24);
     this.intzaInfo2.Items.Add(itemGrid25);
     this.intzaInfo2.Items.Add(itemGrid26);
     this.intzaInfo2.Items.Add(itemGrid27);
     this.intzaInfo2.Items.Add(itemGrid28);
     this.intzaInfo2.Items.Add(itemGrid29);
     this.intzaInfo2.Items.Add(itemGrid30);
     this.intzaInfo2.Items.Add(itemGrid31);
     this.intzaInfo2.Items.Add(itemGrid32);
     this.intzaInfo2.Items.Add(itemGrid33);
     this.intzaInfo2.Items.Add(itemGrid34);
     this.intzaInfo2.LineColor = Color.Red;
     this.intzaInfo2.Location = new Point(163, 3);
     this.intzaInfo2.Name = "intzaInfo2";
     this.intzaInfo2.Size = new Size(159, 143);
     this.intzaInfo2.TabIndex = 157;
     this.intzaInfo1.AllowDrop = true;
     this.intzaInfo1.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaInfo1.CanDrag = false;
     this.intzaInfo1.IsAutoRepaint = true;
     this.intzaInfo1.IsDroped = false;
     itemGrid35.AdjustFontSize = 0f;
     itemGrid35.Alignment = StringAlignment.Near;
     itemGrid35.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid35.Changed = false;
     itemGrid35.FieldType = ItemType.Label;
     itemGrid35.FontColor = Color.White;
     itemGrid35.FontStyle = FontStyle.Regular;
     itemGrid35.Height = 1f;
     itemGrid35.IsBlink = 0;
     itemGrid35.Name = "lbOrderNumber";
     itemGrid35.Text = "Order No.";
     itemGrid35.ValueFormat = FormatType.Text;
     itemGrid35.Visible = true;
     itemGrid35.Width = 55;
     itemGrid35.X = 0;
     itemGrid35.Y = 0f;
     itemGrid36.AdjustFontSize = 0f;
     itemGrid36.Alignment = StringAlignment.Far;
     itemGrid36.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid36.Changed = false;
     itemGrid36.FieldType = ItemType.Text;
     itemGrid36.FontColor = Color.Cyan;
     itemGrid36.FontStyle = FontStyle.Regular;
     itemGrid36.Height = 1f;
     itemGrid36.IsBlink = 0;
     itemGrid36.Name = "tbOrderNumber";
     itemGrid36.Text = "";
     itemGrid36.ValueFormat = FormatType.Text;
     itemGrid36.Visible = true;
     itemGrid36.Width = 45;
     itemGrid36.X = 55;
     itemGrid36.Y = 0f;
     itemGrid37.AdjustFontSize = 0f;
     itemGrid37.Alignment = StringAlignment.Near;
     itemGrid37.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid37.Changed = false;
     itemGrid37.FieldType = ItemType.Label;
     itemGrid37.FontColor = Color.White;
     itemGrid37.FontStyle = FontStyle.Regular;
     itemGrid37.Height = 1f;
     itemGrid37.IsBlink = 0;
     itemGrid37.Name = "lbPosition";
     itemGrid37.Text = "Position";
     itemGrid37.ValueFormat = FormatType.Text;
     itemGrid37.Visible = true;
     itemGrid37.Width = 55;
     itemGrid37.X = 0;
     itemGrid37.Y = 1f;
     itemGrid38.AdjustFontSize = 0f;
     itemGrid38.Alignment = StringAlignment.Far;
     itemGrid38.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid38.Changed = false;
     itemGrid38.FieldType = ItemType.Text;
     itemGrid38.FontColor = Color.Yellow;
     itemGrid38.FontStyle = FontStyle.Regular;
     itemGrid38.Height = 1f;
     itemGrid38.IsBlink = 0;
     itemGrid38.Name = "tbPosition";
     itemGrid38.Text = "";
     itemGrid38.ValueFormat = FormatType.Text;
     itemGrid38.Visible = true;
     itemGrid38.Width = 45;
     itemGrid38.X = 55;
     itemGrid38.Y = 1f;
     itemGrid39.AdjustFontSize = 0f;
     itemGrid39.Alignment = StringAlignment.Near;
     itemGrid39.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid39.Changed = false;
     itemGrid39.FieldType = ItemType.Label;
     itemGrid39.FontColor = Color.White;
     itemGrid39.FontStyle = FontStyle.Regular;
     itemGrid39.Height = 1f;
     itemGrid39.IsBlink = 0;
     itemGrid39.Name = "lbSide";
     itemGrid39.Text = "Side";
     itemGrid39.ValueFormat = FormatType.Text;
     itemGrid39.Visible = true;
     itemGrid39.Width = 55;
     itemGrid39.X = 0;
     itemGrid39.Y = 2f;
     itemGrid40.AdjustFontSize = 0f;
     itemGrid40.Alignment = StringAlignment.Far;
     itemGrid40.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid40.Changed = false;
     itemGrid40.FieldType = ItemType.Text;
     itemGrid40.FontColor = Color.White;
     itemGrid40.FontStyle = FontStyle.Regular;
     itemGrid40.Height = 1f;
     itemGrid40.IsBlink = 0;
     itemGrid40.Name = "tbSide";
     itemGrid40.Text = "";
     itemGrid40.ValueFormat = FormatType.Text;
     itemGrid40.Visible = true;
     itemGrid40.Width = 45;
     itemGrid40.X = 55;
     itemGrid40.Y = 2f;
     itemGrid41.AdjustFontSize = 0f;
     itemGrid41.Alignment = StringAlignment.Near;
     itemGrid41.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid41.Changed = false;
     itemGrid41.FieldType = ItemType.Label;
     itemGrid41.FontColor = Color.White;
     itemGrid41.FontStyle = FontStyle.Regular;
     itemGrid41.Height = 1f;
     itemGrid41.IsBlink = 0;
     itemGrid41.Name = "lbStock";
     itemGrid41.Text = "Symbol";
     itemGrid41.ValueFormat = FormatType.Text;
     itemGrid41.Visible = true;
     itemGrid41.Width = 40;
     itemGrid41.X = 0;
     itemGrid41.Y = 3f;
     itemGrid42.AdjustFontSize = 0f;
     itemGrid42.Alignment = StringAlignment.Far;
     itemGrid42.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid42.Changed = false;
     itemGrid42.FieldType = ItemType.Text;
     itemGrid42.FontColor = Color.Yellow;
     itemGrid42.FontStyle = FontStyle.Regular;
     itemGrid42.Height = 1f;
     itemGrid42.IsBlink = 0;
     itemGrid42.Name = "tbStock";
     itemGrid42.Text = "";
     itemGrid42.ValueFormat = FormatType.Text;
     itemGrid42.Visible = true;
     itemGrid42.Width = 60;
     itemGrid42.X = 40;
     itemGrid42.Y = 3f;
     itemGrid43.AdjustFontSize = 0f;
     itemGrid43.Alignment = StringAlignment.Near;
     itemGrid43.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid43.Changed = false;
     itemGrid43.FieldType = ItemType.Label;
     itemGrid43.FontColor = Color.White;
     itemGrid43.FontStyle = FontStyle.Regular;
     itemGrid43.Height = 1f;
     itemGrid43.IsBlink = 0;
     itemGrid43.Name = "lbVolume";
     itemGrid43.Text = "Volume";
     itemGrid43.ValueFormat = FormatType.Text;
     itemGrid43.Visible = true;
     itemGrid43.Width = 55;
     itemGrid43.X = 0;
     itemGrid43.Y = 4f;
     itemGrid44.AdjustFontSize = 0f;
     itemGrid44.Alignment = StringAlignment.Far;
     itemGrid44.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid44.Changed = false;
     itemGrid44.FieldType = ItemType.Text;
     itemGrid44.FontColor = Color.Yellow;
     itemGrid44.FontStyle = FontStyle.Regular;
     itemGrid44.Height = 1f;
     itemGrid44.IsBlink = 0;
     itemGrid44.Name = "tbVolume";
     itemGrid44.Text = "";
     itemGrid44.ValueFormat = FormatType.Volume;
     itemGrid44.Visible = true;
     itemGrid44.Width = 45;
     itemGrid44.X = 55;
     itemGrid44.Y = 4f;
     itemGrid45.AdjustFontSize = 0f;
     itemGrid45.Alignment = StringAlignment.Near;
     itemGrid45.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid45.Changed = false;
     itemGrid45.FieldType = ItemType.Label;
     itemGrid45.FontColor = Color.White;
     itemGrid45.FontStyle = FontStyle.Regular;
     itemGrid45.Height = 1f;
     itemGrid45.IsBlink = 0;
     itemGrid45.Name = "lbPrice";
     itemGrid45.Text = "Price";
     itemGrid45.ValueFormat = FormatType.Text;
     itemGrid45.Visible = true;
     itemGrid45.Width = 55;
     itemGrid45.X = 0;
     itemGrid45.Y = 5f;
     itemGrid46.AdjustFontSize = 0f;
     itemGrid46.Alignment = StringAlignment.Far;
     itemGrid46.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid46.Changed = false;
     itemGrid46.FieldType = ItemType.Text;
     itemGrid46.FontColor = Color.Yellow;
     itemGrid46.FontStyle = FontStyle.Regular;
     itemGrid46.Height = 1f;
     itemGrid46.IsBlink = 0;
     itemGrid46.Name = "tbPrice";
     itemGrid46.Text = "";
     itemGrid46.ValueFormat = FormatType.Text;
     itemGrid46.Visible = true;
     itemGrid46.Width = 45;
     itemGrid46.X = 55;
     itemGrid46.Y = 5f;
     itemGrid47.AdjustFontSize = 0f;
     itemGrid47.Alignment = StringAlignment.Near;
     itemGrid47.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid47.Changed = false;
     itemGrid47.FieldType = ItemType.Label;
     itemGrid47.FontColor = Color.White;
     itemGrid47.FontStyle = FontStyle.Regular;
     itemGrid47.Height = 1f;
     itemGrid47.IsBlink = 0;
     itemGrid47.Name = "lbMatched";
     itemGrid47.Text = "Matched";
     itemGrid47.ValueFormat = FormatType.Text;
     itemGrid47.Visible = true;
     itemGrid47.Width = 55;
     itemGrid47.X = 0;
     itemGrid47.Y = 6f;
     itemGrid48.AdjustFontSize = 0f;
     itemGrid48.Alignment = StringAlignment.Far;
     itemGrid48.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid48.Changed = false;
     itemGrid48.FieldType = ItemType.Text;
     itemGrid48.FontColor = Color.Cyan;
     itemGrid48.FontStyle = FontStyle.Regular;
     itemGrid48.Height = 1f;
     itemGrid48.IsBlink = 0;
     itemGrid48.Name = "tbMatched";
     itemGrid48.Text = "";
     itemGrid48.ValueFormat = FormatType.Volume;
     itemGrid48.Visible = true;
     itemGrid48.Width = 45;
     itemGrid48.X = 55;
     itemGrid48.Y = 6f;
     itemGrid49.AdjustFontSize = 0f;
     itemGrid49.Alignment = StringAlignment.Near;
     itemGrid49.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid49.Changed = false;
     itemGrid49.FieldType = ItemType.Label;
     itemGrid49.FontColor = Color.White;
     itemGrid49.FontStyle = FontStyle.Regular;
     itemGrid49.Height = 1f;
     itemGrid49.IsBlink = 0;
     itemGrid49.Name = "lbPublished";
     itemGrid49.Text = "Published";
     itemGrid49.ValueFormat = FormatType.Text;
     itemGrid49.Visible = true;
     itemGrid49.Width = 55;
     itemGrid49.X = 0;
     itemGrid49.Y = 7f;
     itemGrid50.AdjustFontSize = 0f;
     itemGrid50.Alignment = StringAlignment.Far;
     itemGrid50.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid50.Changed = false;
     itemGrid50.FieldType = ItemType.Text;
     itemGrid50.FontColor = Color.Cyan;
     itemGrid50.FontStyle = FontStyle.Regular;
     itemGrid50.Height = 1f;
     itemGrid50.IsBlink = 0;
     itemGrid50.Name = "tbPublished";
     itemGrid50.Text = "";
     itemGrid50.ValueFormat = FormatType.Volume;
     itemGrid50.Visible = true;
     itemGrid50.Width = 45;
     itemGrid50.X = 55;
     itemGrid50.Y = 7f;
     this.intzaInfo1.Items.Add(itemGrid35);
     this.intzaInfo1.Items.Add(itemGrid36);
     this.intzaInfo1.Items.Add(itemGrid37);
     this.intzaInfo1.Items.Add(itemGrid38);
     this.intzaInfo1.Items.Add(itemGrid39);
     this.intzaInfo1.Items.Add(itemGrid40);
     this.intzaInfo1.Items.Add(itemGrid41);
     this.intzaInfo1.Items.Add(itemGrid42);
     this.intzaInfo1.Items.Add(itemGrid43);
     this.intzaInfo1.Items.Add(itemGrid44);
     this.intzaInfo1.Items.Add(itemGrid45);
     this.intzaInfo1.Items.Add(itemGrid46);
     this.intzaInfo1.Items.Add(itemGrid47);
     this.intzaInfo1.Items.Add(itemGrid48);
     this.intzaInfo1.Items.Add(itemGrid49);
     this.intzaInfo1.Items.Add(itemGrid50);
     this.intzaInfo1.LineColor = Color.Red;
     this.intzaInfo1.Location = new Point(2, 3);
     this.intzaInfo1.Name = "intzaInfo1";
     this.intzaInfo1.Size = new Size(159, 143);
     this.intzaInfo1.TabIndex = 156;
     this.intzaInfo5.AllowDrop = true;
     this.intzaInfo5.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaInfo5.CanDrag = false;
     this.intzaInfo5.IsAutoRepaint = true;
     this.intzaInfo5.IsDroped = false;
     itemGrid51.AdjustFontSize = 0f;
     itemGrid51.Alignment = StringAlignment.Near;
     itemGrid51.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid51.Changed = false;
     itemGrid51.FieldType = ItemType.Label;
     itemGrid51.FontColor = Color.White;
     itemGrid51.FontStyle = FontStyle.Regular;
     itemGrid51.Height = 1f;
     itemGrid51.IsBlink = 0;
     itemGrid51.Name = "lbTfexOrdNo                                                 ";
     itemGrid51.Text = "TFEX Order No.";
     itemGrid51.ValueFormat = FormatType.Text;
     itemGrid51.Visible = true;
     itemGrid51.Width = 22;
     itemGrid51.X = 0;
     itemGrid51.Y = 0f;
     itemGrid52.AdjustFontSize = 0f;
     itemGrid52.Alignment = StringAlignment.Near;
     itemGrid52.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid52.Changed = false;
     itemGrid52.FieldType = ItemType.Text;
     itemGrid52.FontColor = Color.Yellow;
     itemGrid52.FontStyle = FontStyle.Regular;
     itemGrid52.Height = 1f;
     itemGrid52.IsBlink = 0;
     itemGrid52.Name = "tbTfexOrdNo";
     itemGrid52.Text = "";
     itemGrid52.ValueFormat = FormatType.Text;
     itemGrid52.Visible = true;
     itemGrid52.Width = 100;
     itemGrid52.X = 22;
     itemGrid52.Y = 0f;
     this.intzaInfo5.Items.Add(itemGrid51);
     this.intzaInfo5.Items.Add(itemGrid52);
     this.intzaInfo5.LineColor = Color.Red;
     this.intzaInfo5.Location = new Point(2, 167);
     this.intzaInfo5.Name = "intzaInfo5";
     this.intzaInfo5.Size = new Size(506, 19);
     this.intzaInfo5.TabIndex = 161;
     base.AutoScaleDimensions = new SizeF(7f, 15f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = Color.FromArgb(20, 20, 20);
     base.ClientSize = new Size(748, 189);
     base.Controls.Add(this.intzaInfo5);
     base.Controls.Add(this.intzaInfo4);
     base.Controls.Add(this.intzaDeal);
     base.Controls.Add(this.intzaInfo3);
     base.Controls.Add(this.intzaInfo2);
     base.Controls.Add(this.intzaInfo1);
     this.Font = new Font("Microsoft Sans Serif", 9f);
     base.FormBorderStyle = FormBorderStyle.FixedToolWindow;
     base.Name = "frmViewOrderInfoTFEX";
     this.Text = "frmViewOrderInfoTFEX";
     base.Load += new EventHandler(this.frmViewOrderInfoTFEX_Load);
     base.Shown += new EventHandler(this.frmViewOrderInfoTFEX_Shown);
     base.Enter += new EventHandler(this.frmViewOrderInfoTFEX_Enter);
     base.Leave += new EventHandler(this.frmViewOrderInfoTFEX_Leave);
     base.KeyDown += new KeyEventHandler(this.frmViewOrderInfoTFEX_KeyDown);
     base.ResumeLayout(false);
 }
示例#19
0
 private void InitializeComponent()
 {
     ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmPortfolio));
     clsPermission clsPermission = new clsPermission();
     clsPermission clsPermission2 = new clsPermission();
     clsPermission clsPermission3 = new clsPermission();
     clsPermission clsPermission4 = new clsPermission();
     ExchangeIntraday exchangeIntraday = new ExchangeIntraday();
     ItemGrid itemGrid = new ItemGrid();
     ItemGrid itemGrid2 = new ItemGrid();
     ItemGrid itemGrid3 = new ItemGrid();
     ItemGrid itemGrid4 = new ItemGrid();
     ItemGrid itemGrid5 = new ItemGrid();
     ItemGrid itemGrid6 = new ItemGrid();
     ItemGrid itemGrid7 = new ItemGrid();
     ItemGrid itemGrid8 = new ItemGrid();
     ItemGrid itemGrid9 = new ItemGrid();
     ItemGrid itemGrid10 = new ItemGrid();
     ItemGrid itemGrid11 = new ItemGrid();
     ItemGrid itemGrid12 = new ItemGrid();
     ItemGrid itemGrid13 = new ItemGrid();
     ItemGrid itemGrid14 = new ItemGrid();
     ItemGrid itemGrid15 = new ItemGrid();
     ItemGrid itemGrid16 = new ItemGrid();
     ItemGrid itemGrid17 = new ItemGrid();
     ItemGrid itemGrid18 = new ItemGrid();
     ItemGrid itemGrid19 = new ItemGrid();
     ItemGrid itemGrid20 = new ItemGrid();
     ItemGrid itemGrid21 = new ItemGrid();
     ItemGrid itemGrid22 = new ItemGrid();
     ItemGrid itemGrid23 = new ItemGrid();
     ItemGrid itemGrid24 = new ItemGrid();
     ItemGrid itemGrid25 = new ItemGrid();
     ItemGrid itemGrid26 = new ItemGrid();
     ItemGrid itemGrid27 = new ItemGrid();
     ItemGrid itemGrid28 = new ItemGrid();
     ItemGrid itemGrid29 = new ItemGrid();
     ItemGrid itemGrid30 = new ItemGrid();
     ItemGrid itemGrid31 = new ItemGrid();
     ItemGrid itemGrid32 = new ItemGrid();
     ItemGrid itemGrid33 = new ItemGrid();
     ItemGrid itemGrid34 = new ItemGrid();
     ItemGrid itemGrid35 = new ItemGrid();
     ItemGrid itemGrid36 = new ItemGrid();
     ItemGrid itemGrid37 = new ItemGrid();
     ItemGrid itemGrid38 = new ItemGrid();
     ItemGrid itemGrid39 = new ItemGrid();
     ItemGrid itemGrid40 = new ItemGrid();
     ItemGrid itemGrid41 = new ItemGrid();
     ItemGrid itemGrid42 = new ItemGrid();
     ItemGrid itemGrid43 = new ItemGrid();
     ItemGrid itemGrid44 = new ItemGrid();
     ItemGrid itemGrid45 = new ItemGrid();
     ItemGrid itemGrid46 = new ItemGrid();
     ItemGrid itemGrid47 = new ItemGrid();
     ItemGrid itemGrid48 = new ItemGrid();
     ItemGrid itemGrid49 = new ItemGrid();
     ItemGrid itemGrid50 = new ItemGrid();
     ItemGrid itemGrid51 = new ItemGrid();
     ItemGrid itemGrid52 = new ItemGrid();
     ItemGrid itemGrid53 = new ItemGrid();
     ItemGrid itemGrid54 = new ItemGrid();
     ItemGrid itemGrid55 = new ItemGrid();
     ItemGrid itemGrid56 = new ItemGrid();
     ItemGrid itemGrid57 = new ItemGrid();
     ItemGrid itemGrid58 = new ItemGrid();
     ItemGrid itemGrid59 = new ItemGrid();
     ItemGrid itemGrid60 = new ItemGrid();
     ItemGrid itemGrid61 = new ItemGrid();
     ItemGrid itemGrid62 = new ItemGrid();
     ItemGrid itemGrid63 = new ItemGrid();
     ItemGrid itemGrid64 = new ItemGrid();
     ItemGrid itemGrid65 = new ItemGrid();
     ItemGrid itemGrid66 = new ItemGrid();
     ItemGrid itemGrid67 = new ItemGrid();
     ItemGrid itemGrid68 = new ItemGrid();
     ItemGrid itemGrid69 = new ItemGrid();
     ItemGrid itemGrid70 = new ItemGrid();
     ItemGrid itemGrid71 = new ItemGrid();
     ItemGrid itemGrid72 = new ItemGrid();
     ItemGrid itemGrid73 = new ItemGrid();
     ItemGrid itemGrid74 = new ItemGrid();
     ItemGrid itemGrid75 = new ItemGrid();
     ItemGrid itemGrid76 = new ItemGrid();
     ItemGrid itemGrid77 = new ItemGrid();
     ItemGrid itemGrid78 = new ItemGrid();
     ItemGrid itemGrid79 = new ItemGrid();
     ItemGrid itemGrid80 = new ItemGrid();
     ItemGrid itemGrid81 = new ItemGrid();
     ItemGrid itemGrid82 = new ItemGrid();
     ItemGrid itemGrid83 = new ItemGrid();
     ItemGrid itemGrid84 = new ItemGrid();
     ItemGrid itemGrid85 = new ItemGrid();
     ItemGrid itemGrid86 = new ItemGrid();
     ItemGrid itemGrid87 = new ItemGrid();
     ItemGrid itemGrid88 = new ItemGrid();
     ItemGrid itemGrid89 = new ItemGrid();
     ItemGrid itemGrid90 = new ItemGrid();
     ItemGrid itemGrid91 = new ItemGrid();
     ItemGrid itemGrid92 = new ItemGrid();
     ItemGrid itemGrid93 = new ItemGrid();
     ItemGrid itemGrid94 = new ItemGrid();
     ItemGrid itemGrid95 = new ItemGrid();
     ItemGrid itemGrid96 = new ItemGrid();
     ItemGrid itemGrid97 = new ItemGrid();
     ItemGrid itemGrid98 = new ItemGrid();
     ItemGrid itemGrid99 = new ItemGrid();
     ItemGrid itemGrid100 = new ItemGrid();
     ItemGrid itemGrid101 = new ItemGrid();
     ItemGrid itemGrid102 = new ItemGrid();
     ItemGrid itemGrid103 = new ItemGrid();
     ItemGrid itemGrid104 = new ItemGrid();
     ItemGrid itemGrid105 = new ItemGrid();
     ItemGrid itemGrid106 = new ItemGrid();
     ItemGrid itemGrid107 = new ItemGrid();
     ItemGrid itemGrid108 = new ItemGrid();
     ItemGrid itemGrid109 = new ItemGrid();
     ItemGrid itemGrid110 = new ItemGrid();
     ItemGrid itemGrid111 = new ItemGrid();
     ItemGrid itemGrid112 = new ItemGrid();
     ItemGrid itemGrid113 = new ItemGrid();
     ItemGrid itemGrid114 = new ItemGrid();
     ItemGrid itemGrid115 = new ItemGrid();
     ItemGrid itemGrid116 = new ItemGrid();
     ItemGrid itemGrid117 = new ItemGrid();
     ItemGrid itemGrid118 = new ItemGrid();
     ItemGrid itemGrid119 = new ItemGrid();
     ItemGrid itemGrid120 = new ItemGrid();
     ItemGrid itemGrid121 = new ItemGrid();
     ItemGrid itemGrid122 = new ItemGrid();
     ItemGrid itemGrid123 = new ItemGrid();
     ItemGrid itemGrid124 = new ItemGrid();
     ItemGrid itemGrid125 = new ItemGrid();
     ItemGrid itemGrid126 = new ItemGrid();
     ItemGrid itemGrid127 = new ItemGrid();
     ItemGrid itemGrid128 = new ItemGrid();
     ItemGrid itemGrid129 = new ItemGrid();
     ItemGrid itemGrid130 = new ItemGrid();
     ItemGrid itemGrid131 = new ItemGrid();
     ItemGrid itemGrid132 = new ItemGrid();
     ItemGrid itemGrid133 = new ItemGrid();
     ItemGrid itemGrid134 = new ItemGrid();
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ColumnItem columnItem5 = new ColumnItem();
     ColumnItem columnItem6 = new ColumnItem();
     ColumnItem columnItem7 = new ColumnItem();
     ColumnItem columnItem8 = new ColumnItem();
     ColumnItem columnItem9 = new ColumnItem();
     ColumnItem columnItem10 = new ColumnItem();
     ColumnItem columnItem11 = new ColumnItem();
     ColumnItem columnItem12 = new ColumnItem();
     ColumnItem columnItem13 = new ColumnItem();
     ColumnItem columnItem14 = new ColumnItem();
     ColumnItem columnItem15 = new ColumnItem();
     ColumnItem columnItem16 = new ColumnItem();
     ColumnItem columnItem17 = new ColumnItem();
     ItemGrid itemGrid135 = new ItemGrid();
     ItemGrid itemGrid136 = new ItemGrid();
     ItemGrid itemGrid137 = new ItemGrid();
     ItemGrid itemGrid138 = new ItemGrid();
     ItemGrid itemGrid139 = new ItemGrid();
     ItemGrid itemGrid140 = new ItemGrid();
     ItemGrid itemGrid141 = new ItemGrid();
     ItemGrid itemGrid142 = new ItemGrid();
     ItemGrid itemGrid143 = new ItemGrid();
     ItemGrid itemGrid144 = new ItemGrid();
     ItemGrid itemGrid145 = new ItemGrid();
     ItemGrid itemGrid146 = new ItemGrid();
     ItemGrid itemGrid147 = new ItemGrid();
     ItemGrid itemGrid148 = new ItemGrid();
     ItemGrid itemGrid149 = new ItemGrid();
     ItemGrid itemGrid150 = new ItemGrid();
     ItemGrid itemGrid151 = new ItemGrid();
     ItemGrid itemGrid152 = new ItemGrid();
     ItemGrid itemGrid153 = new ItemGrid();
     ItemGrid itemGrid154 = new ItemGrid();
     ItemGrid itemGrid155 = new ItemGrid();
     ItemGrid itemGrid156 = new ItemGrid();
     ItemGrid itemGrid157 = new ItemGrid();
     ItemGrid itemGrid158 = new ItemGrid();
     ItemGrid itemGrid159 = new ItemGrid();
     ItemGrid itemGrid160 = new ItemGrid();
     ItemGrid itemGrid161 = new ItemGrid();
     ItemGrid itemGrid162 = new ItemGrid();
     ItemGrid itemGrid163 = new ItemGrid();
     ItemGrid itemGrid164 = new ItemGrid();
     ItemGrid itemGrid165 = new ItemGrid();
     ItemGrid itemGrid166 = new ItemGrid();
     ItemGrid itemGrid167 = new ItemGrid();
     ItemGrid itemGrid168 = new ItemGrid();
     ItemGrid itemGrid169 = new ItemGrid();
     ItemGrid itemGrid170 = new ItemGrid();
     ColumnItem columnItem18 = new ColumnItem();
     ColumnItem columnItem19 = new ColumnItem();
     ColumnItem columnItem20 = new ColumnItem();
     ColumnItem columnItem21 = new ColumnItem();
     ColumnItem columnItem22 = new ColumnItem();
     ColumnItem columnItem23 = new ColumnItem();
     ColumnItem columnItem24 = new ColumnItem();
     ColumnItem columnItem25 = new ColumnItem();
     ColumnItem columnItem26 = new ColumnItem();
     ColumnItem columnItem27 = new ColumnItem();
     ColumnItem columnItem28 = new ColumnItem();
     ColumnItem columnItem29 = new ColumnItem();
     ColumnItem columnItem30 = new ColumnItem();
     ColumnItem columnItem31 = new ColumnItem();
     ColumnItem columnItem32 = new ColumnItem();
     ColumnItem columnItem33 = new ColumnItem();
     ColumnItem columnItem34 = new ColumnItem();
     ColumnItem columnItem35 = new ColumnItem();
     ColumnItem columnItem36 = new ColumnItem();
     ColumnItem columnItem37 = new ColumnItem();
     ColumnItem columnItem38 = new ColumnItem();
     ColumnItem columnItem39 = new ColumnItem();
     ColumnItem columnItem40 = new ColumnItem();
     ColumnItem columnItem41 = new ColumnItem();
     ColumnItem columnItem42 = new ColumnItem();
     ColumnItem columnItem43 = new ColumnItem();
     ColumnItem columnItem44 = new ColumnItem();
     ColumnItem columnItem45 = new ColumnItem();
     ColumnItem columnItem46 = new ColumnItem();
     ColumnItem columnItem47 = new ColumnItem();
     ColumnItem columnItem48 = new ColumnItem();
     ColumnItem columnItem49 = new ColumnItem();
     ColumnItem columnItem50 = new ColumnItem();
     ColumnItem columnItem51 = new ColumnItem();
     ColumnItem columnItem52 = new ColumnItem();
     ItemGrid itemGrid171 = new ItemGrid();
     ItemGrid itemGrid172 = new ItemGrid();
     ItemGrid itemGrid173 = new ItemGrid();
     ItemGrid itemGrid174 = new ItemGrid();
     ItemGrid itemGrid175 = new ItemGrid();
     ItemGrid itemGrid176 = new ItemGrid();
     ItemGrid itemGrid177 = new ItemGrid();
     ItemGrid itemGrid178 = new ItemGrid();
     ItemGrid itemGrid179 = new ItemGrid();
     ItemGrid itemGrid180 = new ItemGrid();
     ItemGrid itemGrid181 = new ItemGrid();
     ItemGrid itemGrid182 = new ItemGrid();
     ItemGrid itemGrid183 = new ItemGrid();
     ItemGrid itemGrid184 = new ItemGrid();
     ItemGrid itemGrid185 = new ItemGrid();
     ItemGrid itemGrid186 = new ItemGrid();
     ItemGrid itemGrid187 = new ItemGrid();
     ItemGrid itemGrid188 = new ItemGrid();
     ItemGrid itemGrid189 = new ItemGrid();
     ItemGrid itemGrid190 = new ItemGrid();
     ItemGrid itemGrid191 = new ItemGrid();
     ItemGrid itemGrid192 = new ItemGrid();
     ItemGrid itemGrid193 = new ItemGrid();
     ItemGrid itemGrid194 = new ItemGrid();
     ItemGrid itemGrid195 = new ItemGrid();
     ItemGrid itemGrid196 = new ItemGrid();
     ItemGrid itemGrid197 = new ItemGrid();
     ItemGrid itemGrid198 = new ItemGrid();
     ItemGrid itemGrid199 = new ItemGrid();
     ItemGrid itemGrid200 = new ItemGrid();
     ItemGrid itemGrid201 = new ItemGrid();
     ItemGrid itemGrid202 = new ItemGrid();
     ItemGrid itemGrid203 = new ItemGrid();
     ItemGrid itemGrid204 = new ItemGrid();
     ItemGrid itemGrid205 = new ItemGrid();
     ItemGrid itemGrid206 = new ItemGrid();
     ItemGrid itemGrid207 = new ItemGrid();
     ItemGrid itemGrid208 = new ItemGrid();
     ItemGrid itemGrid209 = new ItemGrid();
     ItemGrid itemGrid210 = new ItemGrid();
     ItemGrid itemGrid211 = new ItemGrid();
     ItemGrid itemGrid212 = new ItemGrid();
     ItemGrid itemGrid213 = new ItemGrid();
     ItemGrid itemGrid214 = new ItemGrid();
     ItemGrid itemGrid215 = new ItemGrid();
     ItemGrid itemGrid216 = new ItemGrid();
     ItemGrid itemGrid217 = new ItemGrid();
     ItemGrid itemGrid218 = new ItemGrid();
     ItemGrid itemGrid219 = new ItemGrid();
     ItemGrid itemGrid220 = new ItemGrid();
     ItemGrid itemGrid221 = new ItemGrid();
     ItemGrid itemGrid222 = new ItemGrid();
     this.tStripMain = new ToolStrip();
     this.tsbtnHoldingChart = new ToolStripButton();
     this.tsbtnNAV = new ToolStripButton();
     this.tsbtnPortfolio = new ToolStripButton();
     this.btnRefresh = new ToolStripButton();
     this.wcGraphVolumeSector = new ucVolumeAtPrice();
     this.wcGraphVolume = new ucVolumeAtPrice();
     this.panelNav = new Panel();
     this.monthCalendar1 = new MonthCalendar();
     this.chart = new ChartWinControl();
     this.tStripMenu = new ToolStrip();
     this.toolStripLabel1 = new ToolStripLabel();
     this.tstbStartDate = new ToolStripLabel();
     this.tsbtnSelStartDate = new ToolStripButton();
     this.toolStripLabel2 = new ToolStripLabel();
     this.tstbEndDate = new ToolStripLabel();
     this.tsbtnSelEndDate = new ToolStripButton();
     this.toolStripSeparator1 = new ToolStripSeparator();
     this.tsbtnReload = new ToolStripButton();
     this.panelSET = new Panel();
     this.intzaCB_Freewill = new IntzaCustomGrid();
     this.panelReportMenu = new Panel();
     this.toolStrip1 = new ToolStrip();
     this.tsbtnSummary = new ToolStripButton();
     this.tsbtnCreditBalance = new ToolStripButton();
     this.tsbtnTotRealizeProfit = new ToolStripButton();
     this.tsbtnConfrimSumm = new ToolStripButton();
     this.tsbtnConfrimByStock = new ToolStripButton();
     this.tssepStock = new ToolStripSeparator();
     this.tslbStock = new ToolStripLabel();
     this.tstbStock2 = new ToolStripTextBox();
     this.tsbtnClearStock = new ToolStripButton();
     this.tssepPrint = new ToolStripSeparator();
     this.tsbtnPrint = new ToolStripButton();
     this.intzaCB = new IntzaCustomGrid();
     this.intzaInfoHeader = new IntzaCustomGrid();
     this.intzaSumReport = new SortGrid();
     this.intzaReport = new SortGrid();
     this.panelTFEXPort = new Panel();
     this.pnlTradeJ = new Panel();
     this.intzaTradeOverview = new IntzaCustomGrid();
     this.tStripTJ = new ToolStrip();
     this.tslbAmountText = new ToolStripLabel();
     this.toolStripSeparator2 = new ToolStripSeparator();
     this.tsbtnAmount = new ToolStripButton();
     this.tstxtAmount = new ToolStripTextBox();
     this.cbText = new ComboBox();
     this.sortGrid1 = new SortGrid();
     this.sortGridTfexSumm = new SortGrid();
     this.sortGridTfex = new SortGrid();
     this.intzaCustBottTfex = new IntzaCustomGrid();
     this.intzaCustHeadTfex = new IntzaCustomGrid();
     this.tStripMainT = new ToolStrip();
     this.tslbAccountT = new ToolStripLabel();
     this.btnRefreshT = new ToolStripButton();
     this.toolStripSeparator3 = new ToolStripSeparator();
     this.tsbtnPrintT = new ToolStripButton();
     this.tsbtnPort = new ToolStripButton();
     this.tsbtnTradeJournal = new ToolStripButton();
     this.tsbtnExportCSV = new ToolStripButton();
     this.tStripMain.SuspendLayout();
     this.panelNav.SuspendLayout();
     this.tStripMenu.SuspendLayout();
     this.panelSET.SuspendLayout();
     this.panelReportMenu.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.panelTFEXPort.SuspendLayout();
     this.pnlTradeJ.SuspendLayout();
     this.tStripTJ.SuspendLayout();
     this.tStripMainT.SuspendLayout();
     base.SuspendLayout();
     this.tStripMain.BackColor = Color.FromArgb(30, 30, 30);
     this.tStripMain.GripStyle = ToolStripGripStyle.Hidden;
     this.tStripMain.Items.AddRange(new ToolStripItem[]
     {
         this.tsbtnHoldingChart,
         this.tsbtnNAV,
         this.tsbtnPortfolio,
         this.btnRefresh
     });
     this.tStripMain.Location = new Point(0, 0);
     this.tStripMain.Name = "tStripMain";
     this.tStripMain.Padding = new Padding(1, 1, 1, 2);
     this.tStripMain.RenderMode = ToolStripRenderMode.System;
     this.tStripMain.Size = new Size(863, 26);
     this.tStripMain.TabIndex = 20;
     this.tStripMain.Tag = "-1";
     this.tStripMain.Text = "toolStrip1";
     this.tsbtnHoldingChart.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnHoldingChart.ForeColor = Color.WhiteSmoke;
     this.tsbtnHoldingChart.ImageTransparentColor = Color.Magenta;
     this.tsbtnHoldingChart.Name = "tsbtnHoldingChart";
     this.tsbtnHoldingChart.Size = new Size(91, 20);
     this.tsbtnHoldingChart.Text = "Holdings Chart";
     this.tsbtnHoldingChart.Click += new EventHandler(this.ReportClick);
     this.tsbtnNAV.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnNAV.ForeColor = Color.WhiteSmoke;
     this.tsbtnNAV.ImageTransparentColor = Color.Magenta;
     this.tsbtnNAV.Name = "tsbtnNAV";
     this.tsbtnNAV.Size = new Size(35, 20);
     this.tsbtnNAV.Text = "NAV";
     this.tsbtnNAV.Click += new EventHandler(this.ReportClick);
     this.tsbtnPortfolio.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnPortfolio.ForeColor = Color.WhiteSmoke;
     this.tsbtnPortfolio.ImageTransparentColor = Color.Magenta;
     this.tsbtnPortfolio.Margin = new Padding(2, 1, 0, 2);
     this.tsbtnPortfolio.Name = "tsbtnPortfolio";
     this.tsbtnPortfolio.Size = new Size(57, 20);
     this.tsbtnPortfolio.Text = "Portfolio";
     this.tsbtnPortfolio.ToolTipText = "Credit Position";
     this.tsbtnPortfolio.Click += new EventHandler(this.ReportClick);
     this.btnRefresh.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.btnRefresh.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.btnRefresh.Image = (Image)componentResourceManager.GetObject("btnRefresh.Image");
     this.btnRefresh.ImageTransparentColor = Color.Magenta;
     this.btnRefresh.Margin = new Padding(5, 1, 0, 2);
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.Size = new Size(23, 20);
     this.btnRefresh.Text = "Refresh";
     this.btnRefresh.Click += new EventHandler(this.btnRefresh_Click);
     clsPermission.DisplayBuySell = enumDisplayBuySell.Yes;
     clsPermission.HistoricalDay = 30.0;
     clsPermission.Permission = enumPermission.Visible;
     clsPermission.VolType = null;
     clsPermission.WordingType = null;
     this.wcGraphVolumeSector.ActiveSET = clsPermission;
     clsPermission2.DisplayBuySell = enumDisplayBuySell.Yes;
     clsPermission2.HistoricalDay = 30.0;
     clsPermission2.Permission = enumPermission.Visible;
     clsPermission2.VolType = null;
     clsPermission2.WordingType = null;
     this.wcGraphVolumeSector.ActiveTFEX = clsPermission2;
     this.wcGraphVolumeSector.BackColor = Color.FromArgb(20, 20, 20);
     this.wcGraphVolumeSector.ColorBg = Color.FromArgb(20, 20, 20);
     this.wcGraphVolumeSector.ColorBuy = Color.Lime;
     this.wcGraphVolumeSector.ColorCeiling = Color.Aqua;
     this.wcGraphVolumeSector.ColorDown = Color.Red;
     this.wcGraphVolumeSector.ColorFloor = Color.Fuchsia;
     this.wcGraphVolumeSector.ColorGrid = Color.DimGray;
     this.wcGraphVolumeSector.ColorNoChg = Color.Yellow;
     this.wcGraphVolumeSector.ColorSell = Color.Red;
     this.wcGraphVolumeSector.ColorUp = Color.Lime;
     this.wcGraphVolumeSector.ColorValue = Color.White;
     this.wcGraphVolumeSector.ColorVolume = Color.Yellow;
     this.wcGraphVolumeSector.CurDate = null;
     this.wcGraphVolumeSector.dictIPO = (Dictionary<string, float>)componentResourceManager.GetObject("wcGraphVolumeSector.dictIPO");
     this.wcGraphVolumeSector.FontName = "Arial";
     this.wcGraphVolumeSector.FontSize = 10f;
     this.wcGraphVolumeSector.Location = new Point(259, 100);
     this.wcGraphVolumeSector.Mode = 1;
     this.wcGraphVolumeSector.Name = "wcGraphVolumeSector";
     this.wcGraphVolumeSector.Size = new Size(87, 36);
     this.wcGraphVolumeSector.SymbolList = null;
     this.wcGraphVolumeSector.SymbolType = enumType.eSet;
     this.wcGraphVolumeSector.TabIndex = 31;
     this.wcGraphVolumeSector.TextBoxBgColor = Color.Empty;
     this.wcGraphVolumeSector.TextBoxForeColor = Color.Empty;
     this.wcGraphVolumeSector.TypeMode = enumMode.Previous;
     this.wcGraphVolumeSector.Visible = false;
     clsPermission3.DisplayBuySell = enumDisplayBuySell.Yes;
     clsPermission3.HistoricalDay = 30.0;
     clsPermission3.Permission = enumPermission.Visible;
     clsPermission3.VolType = null;
     clsPermission3.WordingType = null;
     this.wcGraphVolume.ActiveSET = clsPermission3;
     clsPermission4.DisplayBuySell = enumDisplayBuySell.Yes;
     clsPermission4.HistoricalDay = 30.0;
     clsPermission4.Permission = enumPermission.Visible;
     clsPermission4.VolType = null;
     clsPermission4.WordingType = null;
     this.wcGraphVolume.ActiveTFEX = clsPermission4;
     this.wcGraphVolume.BackColor = Color.FromArgb(20, 20, 20);
     this.wcGraphVolume.ColorBg = Color.FromArgb(20, 20, 20);
     this.wcGraphVolume.ColorBuy = Color.Lime;
     this.wcGraphVolume.ColorCeiling = Color.Aqua;
     this.wcGraphVolume.ColorDown = Color.Red;
     this.wcGraphVolume.ColorFloor = Color.Fuchsia;
     this.wcGraphVolume.ColorGrid = Color.DimGray;
     this.wcGraphVolume.ColorNoChg = Color.Yellow;
     this.wcGraphVolume.ColorSell = Color.Red;
     this.wcGraphVolume.ColorUp = Color.Lime;
     this.wcGraphVolume.ColorValue = Color.White;
     this.wcGraphVolume.ColorVolume = Color.Yellow;
     this.wcGraphVolume.CurDate = null;
     this.wcGraphVolume.dictIPO = (Dictionary<string, float>)componentResourceManager.GetObject("wcGraphVolume.dictIPO");
     this.wcGraphVolume.FontName = "Arial";
     this.wcGraphVolume.FontSize = 10f;
     this.wcGraphVolume.Location = new Point(259, 49);
     this.wcGraphVolume.Mode = 1;
     this.wcGraphVolume.Name = "wcGraphVolume";
     this.wcGraphVolume.Size = new Size(87, 36);
     this.wcGraphVolume.SymbolList = null;
     this.wcGraphVolume.SymbolType = enumType.eSet;
     this.wcGraphVolume.TabIndex = 30;
     this.wcGraphVolume.TextBoxBgColor = Color.Empty;
     this.wcGraphVolume.TextBoxForeColor = Color.Empty;
     this.wcGraphVolume.TypeMode = enumMode.Previous;
     this.wcGraphVolume.Visible = false;
     this.panelNav.Controls.Add(this.monthCalendar1);
     this.panelNav.Controls.Add(this.chart);
     this.panelNav.Controls.Add(this.tStripMenu);
     this.panelNav.Location = new Point(517, 30);
     this.panelNav.Name = "panelNav";
     this.panelNav.Size = new Size(320, 142);
     this.panelNav.TabIndex = 54;
     this.panelNav.Visible = false;
     this.monthCalendar1.Location = new Point(86, 19);
     this.monthCalendar1.MaxDate = new DateTime(2020, 12, 31, 0, 0, 0, 0);
     this.monthCalendar1.MaxSelectionCount = 1;
     this.monthCalendar1.MinDate = new DateTime(2009, 1, 1, 0, 0, 0, 0);
     this.monthCalendar1.Name = "monthCalendar1";
     this.monthCalendar1.TabIndex = 66;
     this.monthCalendar1.Visible = false;
     this.monthCalendar1.DateSelected += new DateRangeEventHandler(this.monthCalendar1_DateSelected);
     this.monthCalendar1.Leave += new EventHandler(this.monthCalendar1_Leave);
     this.chart.AreaPercent = "3;1";
     this.chart.BackColor = Color.FromArgb(30, 30, 30);
     this.chart.CausesValidation = false;
     this.chart.ChartDragMode = ChartDragMode.Axis;
     this.chart.CrossCursorMouseMode = MouseAction.MouseDown;
     this.chart.DefaultFormulas = null;
     this.chart.Designing = false;
     this.chart.Dock = DockStyle.Fill;
     this.chart.EndTime = new DateTime(0L);
     this.chart.FavoriteFormulas = "";
     exchangeIntraday.NativeCycle = true;
     exchangeIntraday.ShowFirstXLabel = true;
     exchangeIntraday.TimePeriods = new TimePeriod[0];
     exchangeIntraday.TimeZone = 7.0;
     this.chart.IntradayInfo = exchangeIntraday;
     this.chart.LatestValueType = LatestValueType.None;
     this.chart.Location = new Point(0, 25);
     this.chart.MaxColumnWidth = 30.0;
     this.chart.MaxPrice = 0.0;
     this.chart.MinPrice = 0.0;
     this.chart.Name = "chart";
     this.chart.NeedDrawCursor = false;
     this.chart.PriceLabelFormat = null;
     this.chart.ScaleType = ScaleType.Default;
     this.chart.SelectFormulaMouseMode = MouseAction.MouseDown;
     this.chart.ShowCursorLabel = false;
     this.chart.ShowHorizontalGrid = ShowLineMode.Default;
     this.chart.ShowStatistic = false;
     this.chart.ShowVerticalGrid = ShowLineMode.Default;
     this.chart.Size = new Size(320, 117);
     this.chart.Skin = "GreenRed";
     this.chart.StartTime = new DateTime(0L);
     this.chart.StickRenderType = StickRenderType.Default;
     this.chart.StockBars = 50;
     this.chart.StockRenderType = StockRenderType.Default;
     this.chart.Symbol = "";
     this.chart.TabIndex = 65;
     this.chart.TabStop = false;
     this.chart.ValueTextMode = ValueTextMode.Default;
     this.tStripMenu.BackColor = Color.FromArgb(30, 30, 30);
     this.tStripMenu.GripStyle = ToolStripGripStyle.Hidden;
     this.tStripMenu.Items.AddRange(new ToolStripItem[]
     {
         this.toolStripLabel1,
         this.tstbStartDate,
         this.tsbtnSelStartDate,
         this.toolStripLabel2,
         this.tstbEndDate,
         this.tsbtnSelEndDate,
         this.toolStripSeparator1,
         this.tsbtnReload
     });
     this.tStripMenu.Location = new Point(0, 0);
     this.tStripMenu.Name = "tStripMenu";
     this.tStripMenu.RenderMode = ToolStripRenderMode.System;
     this.tStripMenu.Size = new Size(320, 25);
     this.tStripMenu.TabIndex = 64;
     this.tStripMenu.Text = "toolStrip1";
     this.toolStripLabel1.ForeColor = Color.LightGray;
     this.toolStripLabel1.Margin = new Padding(5, 1, 0, 2);
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new Size(64, 22);
     this.toolStripLabel1.Text = "Start Date :";
     this.tstbStartDate.BackColor = Color.Gray;
     this.tstbStartDate.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tstbStartDate.ForeColor = Color.Yellow;
     this.tstbStartDate.Margin = new Padding(5, 1, 5, 2);
     this.tstbStartDate.Name = "tstbStartDate";
     this.tstbStartDate.Size = new Size(55, 22);
     this.tstbStartDate.Text = "20090101";
     this.tsbtnSelStartDate.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnSelStartDate.Image = (Image)componentResourceManager.GetObject("tsbtnSelStartDate.Image");
     this.tsbtnSelStartDate.ImageTransparentColor = Color.Magenta;
     this.tsbtnSelStartDate.Name = "tsbtnSelStartDate";
     this.tsbtnSelStartDate.Size = new Size(23, 22);
     this.tsbtnSelStartDate.Text = "toolStripButton1";
     this.tsbtnSelStartDate.ToolTipText = "Select Date";
     this.tsbtnSelStartDate.Click += new EventHandler(this.tsbtnSelStartDate_Click);
     this.toolStripLabel2.ForeColor = Color.LightGray;
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new Size(60, 22);
     this.toolStripLabel2.Text = "End Date :";
     this.tstbEndDate.BackColor = Color.Gray;
     this.tstbEndDate.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tstbEndDate.ForeColor = Color.Yellow;
     this.tstbEndDate.Margin = new Padding(5, 1, 5, 2);
     this.tstbEndDate.Name = "tstbEndDate";
     this.tstbEndDate.Size = new Size(55, 22);
     this.tstbEndDate.Text = "20090501";
     this.tsbtnSelEndDate.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnSelEndDate.Image = (Image)componentResourceManager.GetObject("tsbtnSelEndDate.Image");
     this.tsbtnSelEndDate.ImageTransparentColor = Color.Magenta;
     this.tsbtnSelEndDate.Name = "tsbtnSelEndDate";
     this.tsbtnSelEndDate.Size = new Size(23, 20);
     this.tsbtnSelEndDate.Text = "toolStripButton2";
     this.tsbtnSelEndDate.ToolTipText = "Select Date";
     this.tsbtnSelEndDate.Click += new EventHandler(this.tsbtnSelEndDate_Click);
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new Size(6, 25);
     this.tsbtnReload.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnReload.Image = Resources.refresh;
     this.tsbtnReload.ImageTransparentColor = Color.Magenta;
     this.tsbtnReload.Margin = new Padding(5, 1, 0, 2);
     this.tsbtnReload.Name = "tsbtnReload";
     this.tsbtnReload.Size = new Size(23, 20);
     this.tsbtnReload.Text = "Reload";
     this.tsbtnReload.Click += new EventHandler(this.tsbtnReload_Click);
     this.panelSET.BackColor = Color.FromArgb(20, 20, 20);
     this.panelSET.Controls.Add(this.intzaCB_Freewill);
     this.panelSET.Controls.Add(this.panelReportMenu);
     this.panelSET.Controls.Add(this.intzaCB);
     this.panelSET.Controls.Add(this.intzaInfoHeader);
     this.panelSET.Controls.Add(this.tStripMain);
     this.panelSET.Controls.Add(this.intzaSumReport);
     this.panelSET.Controls.Add(this.intzaReport);
     this.panelSET.Controls.Add(this.wcGraphVolume);
     this.panelSET.Controls.Add(this.panelNav);
     this.panelSET.Controls.Add(this.wcGraphVolumeSector);
     this.panelSET.Location = new Point(4, 5);
     this.panelSET.Name = "panelSET";
     this.panelSET.Size = new Size(863, 320);
     this.panelSET.TabIndex = 71;
     this.panelSET.Visible = false;
     this.intzaCB_Freewill.AllowDrop = true;
     this.intzaCB_Freewill.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaCB_Freewill.CanDrag = false;
     this.intzaCB_Freewill.IsAutoRepaint = true;
     this.intzaCB_Freewill.IsDroped = false;
     itemGrid.AdjustFontSize = 0f;
     itemGrid.Alignment = StringAlignment.Near;
     itemGrid.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid.Changed = false;
     itemGrid.FieldType = ItemType.Label2;
     itemGrid.FontColor = Color.LightGray;
     itemGrid.FontStyle = FontStyle.Regular;
     itemGrid.Height = 1f;
     itemGrid.IsBlink = 0;
     itemGrid.Name = "lbAccEE";
     itemGrid.Text = "Acc EE";
     itemGrid.ValueFormat = FormatType.Text;
     itemGrid.Visible = true;
     itemGrid.Width = 10;
     itemGrid.X = 0;
     itemGrid.Y = 0f;
     itemGrid2.AdjustFontSize = 0f;
     itemGrid2.Alignment = StringAlignment.Near;
     itemGrid2.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid2.Changed = false;
     itemGrid2.FieldType = ItemType.Text;
     itemGrid2.FontColor = Color.Yellow;
     itemGrid2.FontStyle = FontStyle.Regular;
     itemGrid2.Height = 1f;
     itemGrid2.IsBlink = 0;
     itemGrid2.Name = "tbAccEE";
     itemGrid2.Text = "";
     itemGrid2.ValueFormat = FormatType.Text;
     itemGrid2.Visible = true;
     itemGrid2.Width = 15;
     itemGrid2.X = 10;
     itemGrid2.Y = 0f;
     itemGrid3.AdjustFontSize = 0f;
     itemGrid3.Alignment = StringAlignment.Near;
     itemGrid3.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid3.Changed = false;
     itemGrid3.FieldType = ItemType.Label2;
     itemGrid3.FontColor = Color.LightGray;
     itemGrid3.FontStyle = FontStyle.Regular;
     itemGrid3.Height = 1f;
     itemGrid3.IsBlink = 0;
     itemGrid3.Name = "lbBuyCredit50";
     itemGrid3.Text = "BCrd 50%";
     itemGrid3.ValueFormat = FormatType.Text;
     itemGrid3.Visible = true;
     itemGrid3.Width = 10;
     itemGrid3.X = 25;
     itemGrid3.Y = 0f;
     itemGrid4.AdjustFontSize = 0f;
     itemGrid4.Alignment = StringAlignment.Near;
     itemGrid4.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid4.Changed = false;
     itemGrid4.FieldType = ItemType.Text;
     itemGrid4.FontColor = Color.Yellow;
     itemGrid4.FontStyle = FontStyle.Regular;
     itemGrid4.Height = 1f;
     itemGrid4.IsBlink = 0;
     itemGrid4.Name = "tbBuyCredit50";
     itemGrid4.Text = "";
     itemGrid4.ValueFormat = FormatType.Text;
     itemGrid4.Visible = true;
     itemGrid4.Width = 15;
     itemGrid4.X = 35;
     itemGrid4.Y = 0f;
     itemGrid5.AdjustFontSize = 0f;
     itemGrid5.Alignment = StringAlignment.Near;
     itemGrid5.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid5.Changed = false;
     itemGrid5.FieldType = ItemType.Label2;
     itemGrid5.FontColor = Color.LightGray;
     itemGrid5.FontStyle = FontStyle.Regular;
     itemGrid5.Height = 1f;
     itemGrid5.IsBlink = 0;
     itemGrid5.Name = "lbBuyCredit60";
     itemGrid5.Text = "BCrd 60%";
     itemGrid5.ValueFormat = FormatType.Text;
     itemGrid5.Visible = true;
     itemGrid5.Width = 10;
     itemGrid5.X = 50;
     itemGrid5.Y = 0f;
     itemGrid6.AdjustFontSize = 0f;
     itemGrid6.Alignment = StringAlignment.Near;
     itemGrid6.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid6.Changed = false;
     itemGrid6.FieldType = ItemType.Text;
     itemGrid6.FontColor = Color.Yellow;
     itemGrid6.FontStyle = FontStyle.Regular;
     itemGrid6.Height = 1f;
     itemGrid6.IsBlink = 0;
     itemGrid6.Name = "tbBuyCredit60";
     itemGrid6.Text = "";
     itemGrid6.ValueFormat = FormatType.Text;
     itemGrid6.Visible = true;
     itemGrid6.Width = 15;
     itemGrid6.X = 60;
     itemGrid6.Y = 0f;
     itemGrid7.AdjustFontSize = 0f;
     itemGrid7.Alignment = StringAlignment.Near;
     itemGrid7.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid7.Changed = false;
     itemGrid7.FieldType = ItemType.Label2;
     itemGrid7.FontColor = Color.LightGray;
     itemGrid7.FontStyle = FontStyle.Regular;
     itemGrid7.Height = 1f;
     itemGrid7.IsBlink = 0;
     itemGrid7.Name = "lbBuyCredit70";
     itemGrid7.Text = "BCrd 70%";
     itemGrid7.ValueFormat = FormatType.Text;
     itemGrid7.Visible = true;
     itemGrid7.Width = 10;
     itemGrid7.X = 75;
     itemGrid7.Y = 0f;
     itemGrid8.AdjustFontSize = 0f;
     itemGrid8.Alignment = StringAlignment.Near;
     itemGrid8.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid8.Changed = false;
     itemGrid8.FieldType = ItemType.Text;
     itemGrid8.FontColor = Color.Yellow;
     itemGrid8.FontStyle = FontStyle.Regular;
     itemGrid8.Height = 1f;
     itemGrid8.IsBlink = 0;
     itemGrid8.Name = "tbBuyCredit70";
     itemGrid8.Text = "";
     itemGrid8.ValueFormat = FormatType.Text;
     itemGrid8.Visible = true;
     itemGrid8.Width = 15;
     itemGrid8.X = 85;
     itemGrid8.Y = 0f;
     itemGrid9.AdjustFontSize = 0f;
     itemGrid9.Alignment = StringAlignment.Near;
     itemGrid9.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid9.Changed = false;
     itemGrid9.FieldType = ItemType.Label2;
     itemGrid9.FontColor = Color.LightGray;
     itemGrid9.FontStyle = FontStyle.Regular;
     itemGrid9.Height = 1f;
     itemGrid9.IsBlink = 0;
     itemGrid9.Name = "lbAssets";
     itemGrid9.Text = "Assets";
     itemGrid9.ValueFormat = FormatType.Text;
     itemGrid9.Visible = true;
     itemGrid9.Width = 10;
     itemGrid9.X = 0;
     itemGrid9.Y = 1f;
     itemGrid10.AdjustFontSize = 0f;
     itemGrid10.Alignment = StringAlignment.Near;
     itemGrid10.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid10.Changed = false;
     itemGrid10.FieldType = ItemType.Text;
     itemGrid10.FontColor = Color.Lime;
     itemGrid10.FontStyle = FontStyle.Regular;
     itemGrid10.Height = 1f;
     itemGrid10.IsBlink = 0;
     itemGrid10.Name = "tbAssets";
     itemGrid10.Text = "";
     itemGrid10.ValueFormat = FormatType.Text;
     itemGrid10.Visible = true;
     itemGrid10.Width = 15;
     itemGrid10.X = 10;
     itemGrid10.Y = 1f;
     itemGrid11.AdjustFontSize = 0f;
     itemGrid11.Alignment = StringAlignment.Near;
     itemGrid11.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid11.Changed = false;
     itemGrid11.FieldType = ItemType.Label2;
     itemGrid11.FontColor = Color.LightGray;
     itemGrid11.FontStyle = FontStyle.Regular;
     itemGrid11.Height = 1f;
     itemGrid11.IsBlink = 0;
     itemGrid11.Name = "lbMR";
     itemGrid11.Text = "MR";
     itemGrid11.ValueFormat = FormatType.Text;
     itemGrid11.Visible = true;
     itemGrid11.Width = 10;
     itemGrid11.X = 25;
     itemGrid11.Y = 1f;
     itemGrid12.AdjustFontSize = 0f;
     itemGrid12.Alignment = StringAlignment.Near;
     itemGrid12.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid12.Changed = false;
     itemGrid12.FieldType = ItemType.Text;
     itemGrid12.FontColor = Color.Yellow;
     itemGrid12.FontStyle = FontStyle.Regular;
     itemGrid12.Height = 1f;
     itemGrid12.IsBlink = 0;
     itemGrid12.Name = "tbMR";
     itemGrid12.Text = "";
     itemGrid12.ValueFormat = FormatType.Text;
     itemGrid12.Visible = true;
     itemGrid12.Width = 15;
     itemGrid12.X = 35;
     itemGrid12.Y = 1f;
     itemGrid13.AdjustFontSize = 0f;
     itemGrid13.Alignment = StringAlignment.Near;
     itemGrid13.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid13.Changed = false;
     itemGrid13.FieldType = ItemType.Label2;
     itemGrid13.FontColor = Color.LightGray;
     itemGrid13.FontStyle = FontStyle.Regular;
     itemGrid13.Height = 1f;
     itemGrid13.IsBlink = 0;
     itemGrid13.Name = "lbCallForce";
     itemGrid13.Text = "Call Force";
     itemGrid13.ValueFormat = FormatType.Text;
     itemGrid13.Visible = true;
     itemGrid13.Width = 10;
     itemGrid13.X = 50;
     itemGrid13.Y = 1f;
     itemGrid14.AdjustFontSize = 0f;
     itemGrid14.Alignment = StringAlignment.Near;
     itemGrid14.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid14.Changed = false;
     itemGrid14.FieldType = ItemType.Text;
     itemGrid14.FontColor = Color.Yellow;
     itemGrid14.FontStyle = FontStyle.Regular;
     itemGrid14.Height = 1f;
     itemGrid14.IsBlink = 0;
     itemGrid14.Name = "tbCallForce";
     itemGrid14.Text = "";
     itemGrid14.ValueFormat = FormatType.Text;
     itemGrid14.Visible = true;
     itemGrid14.Width = 15;
     itemGrid14.X = 60;
     itemGrid14.Y = 1f;
     itemGrid15.AdjustFontSize = 0f;
     itemGrid15.Alignment = StringAlignment.Near;
     itemGrid15.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid15.Changed = false;
     itemGrid15.FieldType = ItemType.Label2;
     itemGrid15.FontColor = Color.LightGray;
     itemGrid15.FontStyle = FontStyle.Regular;
     itemGrid15.Height = 1f;
     itemGrid15.IsBlink = 0;
     itemGrid15.Name = "lbShortForce";
     itemGrid15.Text = "Shortage Force";
     itemGrid15.ValueFormat = FormatType.Text;
     itemGrid15.Visible = true;
     itemGrid15.Width = 10;
     itemGrid15.X = 75;
     itemGrid15.Y = 1f;
     itemGrid16.AdjustFontSize = 0f;
     itemGrid16.Alignment = StringAlignment.Near;
     itemGrid16.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid16.Changed = false;
     itemGrid16.FieldType = ItemType.Text;
     itemGrid16.FontColor = Color.Yellow;
     itemGrid16.FontStyle = FontStyle.Regular;
     itemGrid16.Height = 1f;
     itemGrid16.IsBlink = 0;
     itemGrid16.Name = "tbShortForce";
     itemGrid16.Text = "";
     itemGrid16.ValueFormat = FormatType.Text;
     itemGrid16.Visible = true;
     itemGrid16.Width = 15;
     itemGrid16.X = 85;
     itemGrid16.Y = 1f;
     itemGrid17.AdjustFontSize = 0f;
     itemGrid17.Alignment = StringAlignment.Near;
     itemGrid17.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid17.Changed = false;
     itemGrid17.FieldType = ItemType.Label2;
     itemGrid17.FontColor = Color.LightGray;
     itemGrid17.FontStyle = FontStyle.Regular;
     itemGrid17.Height = 1f;
     itemGrid17.IsBlink = 0;
     itemGrid17.Name = "lbLiabilities";
     itemGrid17.Text = "Liabilities";
     itemGrid17.ValueFormat = FormatType.Text;
     itemGrid17.Visible = true;
     itemGrid17.Width = 10;
     itemGrid17.X = 0;
     itemGrid17.Y = 2f;
     itemGrid18.AdjustFontSize = 0f;
     itemGrid18.Alignment = StringAlignment.Near;
     itemGrid18.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid18.Changed = false;
     itemGrid18.FieldType = ItemType.Text;
     itemGrid18.FontColor = Color.Red;
     itemGrid18.FontStyle = FontStyle.Regular;
     itemGrid18.Height = 1f;
     itemGrid18.IsBlink = 0;
     itemGrid18.Name = "tbLiabilities";
     itemGrid18.Text = "";
     itemGrid18.ValueFormat = FormatType.Text;
     itemGrid18.Visible = true;
     itemGrid18.Width = 15;
     itemGrid18.X = 10;
     itemGrid18.Y = 2f;
     itemGrid19.AdjustFontSize = 0f;
     itemGrid19.Alignment = StringAlignment.Near;
     itemGrid19.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid19.Changed = false;
     itemGrid19.FieldType = ItemType.Label2;
     itemGrid19.FontColor = Color.LightGray;
     itemGrid19.FontStyle = FontStyle.Regular;
     itemGrid19.Height = 1f;
     itemGrid19.IsBlink = 0;
     itemGrid19.Name = "lbEquity";
     itemGrid19.Text = "Equity";
     itemGrid19.ValueFormat = FormatType.Text;
     itemGrid19.Visible = true;
     itemGrid19.Width = 10;
     itemGrid19.X = 25;
     itemGrid19.Y = 2f;
     itemGrid20.AdjustFontSize = 0f;
     itemGrid20.Alignment = StringAlignment.Near;
     itemGrid20.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid20.Changed = false;
     itemGrid20.FieldType = ItemType.Text;
     itemGrid20.FontColor = Color.Yellow;
     itemGrid20.FontStyle = FontStyle.Regular;
     itemGrid20.Height = 1f;
     itemGrid20.IsBlink = 0;
     itemGrid20.Name = "tbEquity";
     itemGrid20.Text = "";
     itemGrid20.ValueFormat = FormatType.Text;
     itemGrid20.Visible = true;
     itemGrid20.Width = 15;
     itemGrid20.X = 35;
     itemGrid20.Y = 2f;
     itemGrid21.AdjustFontSize = 0f;
     itemGrid21.Alignment = StringAlignment.Near;
     itemGrid21.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid21.Changed = false;
     itemGrid21.FieldType = ItemType.Label2;
     itemGrid21.FontColor = Color.LightGray;
     itemGrid21.FontStyle = FontStyle.Regular;
     itemGrid21.Height = 1f;
     itemGrid21.IsBlink = 0;
     itemGrid21.Name = "lbBuyMR";
     itemGrid21.Text = "Buy MR";
     itemGrid21.ValueFormat = FormatType.Text;
     itemGrid21.Visible = true;
     itemGrid21.Width = 10;
     itemGrid21.X = 50;
     itemGrid21.Y = 2f;
     itemGrid22.AdjustFontSize = 0f;
     itemGrid22.Alignment = StringAlignment.Near;
     itemGrid22.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid22.Changed = false;
     itemGrid22.FieldType = ItemType.Text;
     itemGrid22.FontColor = Color.Yellow;
     itemGrid22.FontStyle = FontStyle.Regular;
     itemGrid22.Height = 1f;
     itemGrid22.IsBlink = 0;
     itemGrid22.Name = "tbBuyMR";
     itemGrid22.Text = "";
     itemGrid22.ValueFormat = FormatType.Text;
     itemGrid22.Visible = true;
     itemGrid22.Width = 15;
     itemGrid22.X = 60;
     itemGrid22.Y = 2f;
     itemGrid23.AdjustFontSize = 0f;
     itemGrid23.Alignment = StringAlignment.Near;
     itemGrid23.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid23.Changed = false;
     itemGrid23.FieldType = ItemType.Label2;
     itemGrid23.FontColor = Color.LightGray;
     itemGrid23.FontStyle = FontStyle.Regular;
     itemGrid23.Height = 1f;
     itemGrid23.IsBlink = 0;
     itemGrid23.Name = "lbSellMR";
     itemGrid23.Text = "Sell MR";
     itemGrid23.ValueFormat = FormatType.Text;
     itemGrid23.Visible = true;
     itemGrid23.Width = 10;
     itemGrid23.X = 75;
     itemGrid23.Y = 2f;
     itemGrid24.AdjustFontSize = 0f;
     itemGrid24.Alignment = StringAlignment.Near;
     itemGrid24.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid24.Changed = false;
     itemGrid24.FieldType = ItemType.Text;
     itemGrid24.FontColor = Color.Yellow;
     itemGrid24.FontStyle = FontStyle.Regular;
     itemGrid24.Height = 1f;
     itemGrid24.IsBlink = 0;
     itemGrid24.Name = "tbSellMR";
     itemGrid24.Text = "";
     itemGrid24.ValueFormat = FormatType.Text;
     itemGrid24.Visible = true;
     itemGrid24.Width = 15;
     itemGrid24.X = 85;
     itemGrid24.Y = 2f;
     itemGrid25.AdjustFontSize = 0f;
     itemGrid25.Alignment = StringAlignment.Near;
     itemGrid25.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid25.Changed = false;
     itemGrid25.FieldType = ItemType.Label2;
     itemGrid25.FontColor = Color.LightGray;
     itemGrid25.FontStyle = FontStyle.Regular;
     itemGrid25.Height = 1f;
     itemGrid25.IsBlink = 0;
     itemGrid25.Name = "lbCashBal";
     itemGrid25.Text = "Cash Bal";
     itemGrid25.ValueFormat = FormatType.Text;
     itemGrid25.Visible = true;
     itemGrid25.Width = 10;
     itemGrid25.X = 0;
     itemGrid25.Y = 3f;
     itemGrid26.AdjustFontSize = 0f;
     itemGrid26.Alignment = StringAlignment.Near;
     itemGrid26.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid26.Changed = false;
     itemGrid26.FieldType = ItemType.Text;
     itemGrid26.FontColor = Color.Lime;
     itemGrid26.FontStyle = FontStyle.Regular;
     itemGrid26.Height = 1f;
     itemGrid26.IsBlink = 0;
     itemGrid26.Name = "tbCashBal";
     itemGrid26.Text = "";
     itemGrid26.ValueFormat = FormatType.Text;
     itemGrid26.Visible = true;
     itemGrid26.Width = 15;
     itemGrid26.X = 10;
     itemGrid26.Y = 3f;
     itemGrid27.AdjustFontSize = 0f;
     itemGrid27.Alignment = StringAlignment.Near;
     itemGrid27.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid27.Changed = false;
     itemGrid27.FieldType = ItemType.Label2;
     itemGrid27.FontColor = Color.LightGray;
     itemGrid27.FontStyle = FontStyle.Regular;
     itemGrid27.Height = 1f;
     itemGrid27.IsBlink = 0;
     itemGrid27.Name = "lbEE";
     itemGrid27.Text = "EE";
     itemGrid27.ValueFormat = FormatType.Text;
     itemGrid27.Visible = true;
     itemGrid27.Width = 10;
     itemGrid27.X = 25;
     itemGrid27.Y = 3f;
     itemGrid28.AdjustFontSize = 0f;
     itemGrid28.Alignment = StringAlignment.Near;
     itemGrid28.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid28.Changed = false;
     itemGrid28.FieldType = ItemType.Text;
     itemGrid28.FontColor = Color.Yellow;
     itemGrid28.FontStyle = FontStyle.Regular;
     itemGrid28.Height = 1f;
     itemGrid28.IsBlink = 0;
     itemGrid28.Name = "tbEE";
     itemGrid28.Text = "";
     itemGrid28.ValueFormat = FormatType.Text;
     itemGrid28.Visible = true;
     itemGrid28.Width = 15;
     itemGrid28.X = 35;
     itemGrid28.Y = 3f;
     itemGrid29.AdjustFontSize = 0f;
     itemGrid29.Alignment = StringAlignment.Near;
     itemGrid29.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid29.Changed = false;
     itemGrid29.FieldType = ItemType.Label2;
     itemGrid29.FontColor = Color.LightGray;
     itemGrid29.FontStyle = FontStyle.Regular;
     itemGrid29.Height = 1f;
     itemGrid29.IsBlink = 0;
     itemGrid29.Name = "lbPP";
     itemGrid29.Text = "PP";
     itemGrid29.ValueFormat = FormatType.Text;
     itemGrid29.Visible = true;
     itemGrid29.Width = 10;
     itemGrid29.X = 50;
     itemGrid29.Y = 3f;
     itemGrid30.AdjustFontSize = 0f;
     itemGrid30.Alignment = StringAlignment.Near;
     itemGrid30.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid30.Changed = false;
     itemGrid30.FieldType = ItemType.Text;
     itemGrid30.FontColor = Color.Yellow;
     itemGrid30.FontStyle = FontStyle.Regular;
     itemGrid30.Height = 1f;
     itemGrid30.IsBlink = 0;
     itemGrid30.Name = "tbPP";
     itemGrid30.Text = "";
     itemGrid30.ValueFormat = FormatType.Text;
     itemGrid30.Visible = true;
     itemGrid30.Width = 15;
     itemGrid30.X = 60;
     itemGrid30.Y = 3f;
     itemGrid31.AdjustFontSize = 0f;
     itemGrid31.Alignment = StringAlignment.Near;
     itemGrid31.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid31.Changed = false;
     itemGrid31.FieldType = ItemType.Label2;
     itemGrid31.FontColor = Color.LightGray;
     itemGrid31.FontStyle = FontStyle.Regular;
     itemGrid31.Height = 1f;
     itemGrid31.IsBlink = 0;
     itemGrid31.Name = "lbCallLMV";
     itemGrid31.Text = "Call LMV";
     itemGrid31.ValueFormat = FormatType.Text;
     itemGrid31.Visible = true;
     itemGrid31.Width = 10;
     itemGrid31.X = 75;
     itemGrid31.Y = 3f;
     itemGrid32.AdjustFontSize = 0f;
     itemGrid32.Alignment = StringAlignment.Near;
     itemGrid32.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid32.Changed = false;
     itemGrid32.FieldType = ItemType.Text;
     itemGrid32.FontColor = Color.Yellow;
     itemGrid32.FontStyle = FontStyle.Regular;
     itemGrid32.Height = 1f;
     itemGrid32.IsBlink = 0;
     itemGrid32.Name = "tbCallLMV";
     itemGrid32.Text = "";
     itemGrid32.ValueFormat = FormatType.Text;
     itemGrid32.Visible = true;
     itemGrid32.Width = 15;
     itemGrid32.X = 85;
     itemGrid32.Y = 3f;
     itemGrid33.AdjustFontSize = 0f;
     itemGrid33.Alignment = StringAlignment.Near;
     itemGrid33.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid33.Changed = false;
     itemGrid33.FieldType = ItemType.Label2;
     itemGrid33.FontColor = Color.LightGray;
     itemGrid33.FontStyle = FontStyle.Regular;
     itemGrid33.Height = 1f;
     itemGrid33.IsBlink = 0;
     itemGrid33.Name = "lbLMV";
     itemGrid33.Text = "LMV";
     itemGrid33.ValueFormat = FormatType.Text;
     itemGrid33.Visible = true;
     itemGrid33.Width = 10;
     itemGrid33.X = 0;
     itemGrid33.Y = 4f;
     itemGrid34.AdjustFontSize = 0f;
     itemGrid34.Alignment = StringAlignment.Near;
     itemGrid34.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid34.Changed = false;
     itemGrid34.FieldType = ItemType.Text;
     itemGrid34.FontColor = Color.Lime;
     itemGrid34.FontStyle = FontStyle.Regular;
     itemGrid34.Height = 1f;
     itemGrid34.IsBlink = 0;
     itemGrid34.Name = "tbLMV";
     itemGrid34.Text = "";
     itemGrid34.ValueFormat = FormatType.Text;
     itemGrid34.Visible = true;
     itemGrid34.Width = 15;
     itemGrid34.X = 10;
     itemGrid34.Y = 4f;
     itemGrid35.AdjustFontSize = 0f;
     itemGrid35.Alignment = StringAlignment.Near;
     itemGrid35.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid35.Changed = false;
     itemGrid35.FieldType = ItemType.Label2;
     itemGrid35.FontColor = Color.LightGray;
     itemGrid35.FontStyle = FontStyle.Regular;
     itemGrid35.Height = 1f;
     itemGrid35.IsBlink = 0;
     itemGrid35.Name = "lbCollateral";
     itemGrid35.Text = "Collateral";
     itemGrid35.ValueFormat = FormatType.Text;
     itemGrid35.Visible = true;
     itemGrid35.Width = 10;
     itemGrid35.X = 25;
     itemGrid35.Y = 4f;
     itemGrid36.AdjustFontSize = 0f;
     itemGrid36.Alignment = StringAlignment.Near;
     itemGrid36.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid36.Changed = false;
     itemGrid36.FieldType = ItemType.Text;
     itemGrid36.FontColor = Color.Lime;
     itemGrid36.FontStyle = FontStyle.Regular;
     itemGrid36.Height = 1f;
     itemGrid36.IsBlink = 0;
     itemGrid36.Name = "tbCollateral";
     itemGrid36.Text = "";
     itemGrid36.ValueFormat = FormatType.Text;
     itemGrid36.Visible = true;
     itemGrid36.Width = 15;
     itemGrid36.X = 35;
     itemGrid36.Y = 4f;
     itemGrid37.AdjustFontSize = 0f;
     itemGrid37.Alignment = StringAlignment.Near;
     itemGrid37.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid37.Changed = false;
     itemGrid37.FieldType = ItemType.Label2;
     itemGrid37.FontColor = Color.LightGray;
     itemGrid37.FontStyle = FontStyle.Regular;
     itemGrid37.Height = 1f;
     itemGrid37.IsBlink = 0;
     itemGrid37.Name = "lbCallMargin";
     itemGrid37.Text = "Call Margin";
     itemGrid37.ValueFormat = FormatType.Text;
     itemGrid37.Visible = true;
     itemGrid37.Width = 10;
     itemGrid37.X = 50;
     itemGrid37.Y = 4f;
     itemGrid38.AdjustFontSize = 0f;
     itemGrid38.Alignment = StringAlignment.Near;
     itemGrid38.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid38.Changed = false;
     itemGrid38.FieldType = ItemType.Text;
     itemGrid38.FontColor = Color.Yellow;
     itemGrid38.FontStyle = FontStyle.Regular;
     itemGrid38.Height = 1f;
     itemGrid38.IsBlink = 0;
     itemGrid38.Name = "tbCallMargin";
     itemGrid38.Text = "";
     itemGrid38.ValueFormat = FormatType.Text;
     itemGrid38.Visible = true;
     itemGrid38.Width = 15;
     itemGrid38.X = 60;
     itemGrid38.Y = 4f;
     itemGrid39.AdjustFontSize = 0f;
     itemGrid39.Alignment = StringAlignment.Near;
     itemGrid39.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid39.Changed = false;
     itemGrid39.FieldType = ItemType.Label2;
     itemGrid39.FontColor = Color.LightGray;
     itemGrid39.FontStyle = FontStyle.Regular;
     itemGrid39.Height = 1f;
     itemGrid39.IsBlink = 0;
     itemGrid39.Name = "lbCallSMV";
     itemGrid39.Text = "Call SMV";
     itemGrid39.ValueFormat = FormatType.Text;
     itemGrid39.Visible = true;
     itemGrid39.Width = 10;
     itemGrid39.X = 75;
     itemGrid39.Y = 4f;
     itemGrid40.AdjustFontSize = 0f;
     itemGrid40.Alignment = StringAlignment.Near;
     itemGrid40.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid40.Changed = false;
     itemGrid40.FieldType = ItemType.Text;
     itemGrid40.FontColor = Color.Yellow;
     itemGrid40.FontStyle = FontStyle.Regular;
     itemGrid40.Height = 1f;
     itemGrid40.IsBlink = 0;
     itemGrid40.Name = "tbCallSMV";
     itemGrid40.Text = "";
     itemGrid40.ValueFormat = FormatType.Text;
     itemGrid40.Visible = true;
     itemGrid40.Width = 15;
     itemGrid40.X = 85;
     itemGrid40.Y = 4f;
     itemGrid41.AdjustFontSize = 0f;
     itemGrid41.Alignment = StringAlignment.Near;
     itemGrid41.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid41.Changed = false;
     itemGrid41.FieldType = ItemType.Label2;
     itemGrid41.FontColor = Color.LightGray;
     itemGrid41.FontStyle = FontStyle.Regular;
     itemGrid41.Height = 1f;
     itemGrid41.IsBlink = 0;
     itemGrid41.Name = "lbSMV";
     itemGrid41.Text = "SMV";
     itemGrid41.ValueFormat = FormatType.Text;
     itemGrid41.Visible = true;
     itemGrid41.Width = 10;
     itemGrid41.X = 0;
     itemGrid41.Y = 5f;
     itemGrid42.AdjustFontSize = 0f;
     itemGrid42.Alignment = StringAlignment.Near;
     itemGrid42.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid42.Changed = false;
     itemGrid42.FieldType = ItemType.Text;
     itemGrid42.FontColor = Color.Red;
     itemGrid42.FontStyle = FontStyle.Regular;
     itemGrid42.Height = 1f;
     itemGrid42.IsBlink = 0;
     itemGrid42.Name = "tbSMV";
     itemGrid42.Text = "";
     itemGrid42.ValueFormat = FormatType.Text;
     itemGrid42.Visible = true;
     itemGrid42.Width = 15;
     itemGrid42.X = 10;
     itemGrid42.Y = 5f;
     itemGrid43.AdjustFontSize = 0f;
     itemGrid43.Alignment = StringAlignment.Near;
     itemGrid43.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid43.Changed = false;
     itemGrid43.FieldType = ItemType.Label2;
     itemGrid43.FontColor = Color.LightGray;
     itemGrid43.FontStyle = FontStyle.Regular;
     itemGrid43.Height = 1f;
     itemGrid43.IsBlink = 0;
     itemGrid43.Name = "lbDEBT";
     itemGrid43.Text = "DEBT";
     itemGrid43.ValueFormat = FormatType.Text;
     itemGrid43.Visible = true;
     itemGrid43.Width = 10;
     itemGrid43.X = 25;
     itemGrid43.Y = 5f;
     itemGrid44.AdjustFontSize = 0f;
     itemGrid44.Alignment = StringAlignment.Near;
     itemGrid44.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid44.Changed = false;
     itemGrid44.FieldType = ItemType.Text;
     itemGrid44.FontColor = Color.Red;
     itemGrid44.FontStyle = FontStyle.Regular;
     itemGrid44.Height = 1f;
     itemGrid44.IsBlink = 0;
     itemGrid44.Name = "tbDEBT";
     itemGrid44.Text = "";
     itemGrid44.ValueFormat = FormatType.Text;
     itemGrid44.Visible = true;
     itemGrid44.Width = 15;
     itemGrid44.X = 35;
     itemGrid44.Y = 5f;
     itemGrid45.AdjustFontSize = 0f;
     itemGrid45.Alignment = StringAlignment.Near;
     itemGrid45.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid45.Changed = false;
     itemGrid45.FieldType = ItemType.Label2;
     itemGrid45.FontColor = Color.LightGray;
     itemGrid45.FontStyle = FontStyle.Regular;
     itemGrid45.Height = 1f;
     itemGrid45.IsBlink = 0;
     itemGrid45.Name = "lbShortageCall";
     itemGrid45.Text = "Shortage Call";
     itemGrid45.ValueFormat = FormatType.Text;
     itemGrid45.Visible = true;
     itemGrid45.Width = 10;
     itemGrid45.X = 50;
     itemGrid45.Y = 5f;
     itemGrid46.AdjustFontSize = 0f;
     itemGrid46.Alignment = StringAlignment.Near;
     itemGrid46.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid46.Changed = false;
     itemGrid46.FieldType = ItemType.Text;
     itemGrid46.FontColor = Color.Yellow;
     itemGrid46.FontStyle = FontStyle.Regular;
     itemGrid46.Height = 1f;
     itemGrid46.IsBlink = 0;
     itemGrid46.Name = "tbShortageCall";
     itemGrid46.Text = "";
     itemGrid46.ValueFormat = FormatType.Text;
     itemGrid46.Visible = true;
     itemGrid46.Width = 15;
     itemGrid46.X = 60;
     itemGrid46.Y = 5f;
     itemGrid47.AdjustFontSize = 0f;
     itemGrid47.Alignment = StringAlignment.Near;
     itemGrid47.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid47.Changed = false;
     itemGrid47.FieldType = ItemType.Label2;
     itemGrid47.FontColor = Color.LightGray;
     itemGrid47.FontStyle = FontStyle.Regular;
     itemGrid47.Height = 1f;
     itemGrid47.IsBlink = 0;
     itemGrid47.Name = "lbForceLMV";
     itemGrid47.Text = "Force LMV";
     itemGrid47.ValueFormat = FormatType.Text;
     itemGrid47.Visible = true;
     itemGrid47.Width = 10;
     itemGrid47.X = 75;
     itemGrid47.Y = 5f;
     itemGrid48.AdjustFontSize = 0f;
     itemGrid48.Alignment = StringAlignment.Near;
     itemGrid48.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid48.Changed = false;
     itemGrid48.FieldType = ItemType.Text;
     itemGrid48.FontColor = Color.Yellow;
     itemGrid48.FontStyle = FontStyle.Regular;
     itemGrid48.Height = 1f;
     itemGrid48.IsBlink = 0;
     itemGrid48.Name = "tbForceLMV";
     itemGrid48.Text = "";
     itemGrid48.ValueFormat = FormatType.Text;
     itemGrid48.Visible = true;
     itemGrid48.Width = 15;
     itemGrid48.X = 85;
     itemGrid48.Y = 5f;
     itemGrid49.AdjustFontSize = 0f;
     itemGrid49.Alignment = StringAlignment.Near;
     itemGrid49.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid49.Changed = false;
     itemGrid49.FieldType = ItemType.Label2;
     itemGrid49.FontColor = Color.LightGray;
     itemGrid49.FontStyle = FontStyle.Regular;
     itemGrid49.Height = 1f;
     itemGrid49.IsBlink = 0;
     itemGrid49.Name = "lbBMV";
     itemGrid49.Text = "BMV";
     itemGrid49.ValueFormat = FormatType.Text;
     itemGrid49.Visible = true;
     itemGrid49.Width = 10;
     itemGrid49.X = 0;
     itemGrid49.Y = 6f;
     itemGrid50.AdjustFontSize = 0f;
     itemGrid50.Alignment = StringAlignment.Near;
     itemGrid50.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid50.Changed = false;
     itemGrid50.FieldType = ItemType.Text;
     itemGrid50.FontColor = Color.Yellow;
     itemGrid50.FontStyle = FontStyle.Regular;
     itemGrid50.Height = 1f;
     itemGrid50.IsBlink = 0;
     itemGrid50.Name = "tbBMV";
     itemGrid50.Text = "";
     itemGrid50.ValueFormat = FormatType.Text;
     itemGrid50.Visible = true;
     itemGrid50.Width = 15;
     itemGrid50.X = 10;
     itemGrid50.Y = 6f;
     itemGrid51.AdjustFontSize = 0f;
     itemGrid51.Alignment = StringAlignment.Near;
     itemGrid51.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid51.Changed = false;
     itemGrid51.FieldType = ItemType.Label2;
     itemGrid51.FontColor = Color.LightGray;
     itemGrid51.FontStyle = FontStyle.Regular;
     itemGrid51.Height = 1f;
     itemGrid51.IsBlink = 0;
     itemGrid51.Name = "lbAction";
     itemGrid51.Text = "Action";
     itemGrid51.ValueFormat = FormatType.Text;
     itemGrid51.Visible = true;
     itemGrid51.Width = 10;
     itemGrid51.X = 25;
     itemGrid51.Y = 6f;
     itemGrid52.AdjustFontSize = 0f;
     itemGrid52.Alignment = StringAlignment.Near;
     itemGrid52.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid52.Changed = false;
     itemGrid52.FieldType = ItemType.Text;
     itemGrid52.FontColor = Color.Yellow;
     itemGrid52.FontStyle = FontStyle.Regular;
     itemGrid52.Height = 1f;
     itemGrid52.IsBlink = 0;
     itemGrid52.Name = "tbAction";
     itemGrid52.Text = "";
     itemGrid52.ValueFormat = FormatType.Text;
     itemGrid52.Visible = true;
     itemGrid52.Width = 15;
     itemGrid52.X = 35;
     itemGrid52.Y = 6f;
     itemGrid53.AdjustFontSize = 0f;
     itemGrid53.Alignment = StringAlignment.Near;
     itemGrid53.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid53.Changed = false;
     itemGrid53.FieldType = ItemType.Label2;
     itemGrid53.FontColor = Color.LightGray;
     itemGrid53.FontStyle = FontStyle.Regular;
     itemGrid53.Height = 1f;
     itemGrid53.IsBlink = 0;
     itemGrid53.Name = "lbBorrowMR";
     itemGrid53.Text = "Borrow MR";
     itemGrid53.ValueFormat = FormatType.Text;
     itemGrid53.Visible = true;
     itemGrid53.Width = 10;
     itemGrid53.X = 50;
     itemGrid53.Y = 6f;
     itemGrid54.AdjustFontSize = 0f;
     itemGrid54.Alignment = StringAlignment.Near;
     itemGrid54.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid54.Changed = false;
     itemGrid54.FieldType = ItemType.Text;
     itemGrid54.FontColor = Color.Yellow;
     itemGrid54.FontStyle = FontStyle.Regular;
     itemGrid54.Height = 1f;
     itemGrid54.IsBlink = 0;
     itemGrid54.Name = "tbBorrowMR";
     itemGrid54.Text = "";
     itemGrid54.ValueFormat = FormatType.Text;
     itemGrid54.Visible = true;
     itemGrid54.Width = 15;
     itemGrid54.X = 60;
     itemGrid54.Y = 6f;
     itemGrid55.AdjustFontSize = 0f;
     itemGrid55.Alignment = StringAlignment.Near;
     itemGrid55.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid55.Changed = false;
     itemGrid55.FieldType = ItemType.Label2;
     itemGrid55.FontColor = Color.LightGray;
     itemGrid55.FontStyle = FontStyle.Regular;
     itemGrid55.Height = 1f;
     itemGrid55.IsBlink = 0;
     itemGrid55.Name = "lbForceSMV";
     itemGrid55.Text = "Force SMV";
     itemGrid55.ValueFormat = FormatType.Text;
     itemGrid55.Visible = true;
     itemGrid55.Width = 10;
     itemGrid55.X = 75;
     itemGrid55.Y = 6f;
     itemGrid56.AdjustFontSize = 0f;
     itemGrid56.Alignment = StringAlignment.Near;
     itemGrid56.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid56.Changed = false;
     itemGrid56.FieldType = ItemType.Text;
     itemGrid56.FontColor = Color.Yellow;
     itemGrid56.FontStyle = FontStyle.Regular;
     itemGrid56.Height = 1f;
     itemGrid56.IsBlink = 0;
     itemGrid56.Name = "tbForceSMV";
     itemGrid56.Text = "";
     itemGrid56.ValueFormat = FormatType.Text;
     itemGrid56.Visible = true;
     itemGrid56.Width = 15;
     itemGrid56.X = 85;
     itemGrid56.Y = 6f;
     itemGrid57.AdjustFontSize = 0f;
     itemGrid57.Alignment = StringAlignment.Near;
     itemGrid57.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid57.Changed = false;
     itemGrid57.FieldType = ItemType.Label2;
     itemGrid57.FontColor = Color.LightGray;
     itemGrid57.FontStyle = FontStyle.Regular;
     itemGrid57.Height = 1f;
     itemGrid57.IsBlink = 0;
     itemGrid57.Name = "lbWithdrawal";
     itemGrid57.Text = "Withdrawal";
     itemGrid57.ValueFormat = FormatType.Text;
     itemGrid57.Visible = true;
     itemGrid57.Width = 10;
     itemGrid57.X = 0;
     itemGrid57.Y = 7f;
     itemGrid58.AdjustFontSize = 0f;
     itemGrid58.Alignment = StringAlignment.Near;
     itemGrid58.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid58.Changed = false;
     itemGrid58.FieldType = ItemType.Text;
     itemGrid58.FontColor = Color.Yellow;
     itemGrid58.FontStyle = FontStyle.Regular;
     itemGrid58.Height = 1f;
     itemGrid58.IsBlink = 0;
     itemGrid58.Name = "tbWithdrawal";
     itemGrid58.Text = "";
     itemGrid58.ValueFormat = FormatType.Text;
     itemGrid58.Visible = true;
     itemGrid58.Width = 15;
     itemGrid58.X = 10;
     itemGrid58.Y = 7f;
     itemGrid59.AdjustFontSize = 0f;
     itemGrid59.Alignment = StringAlignment.Near;
     itemGrid59.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid59.Changed = false;
     itemGrid59.FieldType = ItemType.Label2;
     itemGrid59.FontColor = Color.LightGray;
     itemGrid59.FontStyle = FontStyle.Regular;
     itemGrid59.Height = 1f;
     itemGrid59.IsBlink = 0;
     itemGrid59.Name = "lbMarginRate";
     itemGrid59.Text = "Margin Rate";
     itemGrid59.ValueFormat = FormatType.Text;
     itemGrid59.Visible = true;
     itemGrid59.Width = 10;
     itemGrid59.X = 25;
     itemGrid59.Y = 7f;
     itemGrid60.AdjustFontSize = 0f;
     itemGrid60.Alignment = StringAlignment.Near;
     itemGrid60.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid60.Changed = false;
     itemGrid60.FieldType = ItemType.Text;
     itemGrid60.FontColor = Color.Yellow;
     itemGrid60.FontStyle = FontStyle.Regular;
     itemGrid60.Height = 1f;
     itemGrid60.IsBlink = 0;
     itemGrid60.Name = "tbMarginRate";
     itemGrid60.Text = "";
     itemGrid60.ValueFormat = FormatType.Text;
     itemGrid60.Visible = true;
     itemGrid60.Width = 15;
     itemGrid60.X = 35;
     itemGrid60.Y = 7f;
     this.intzaCB_Freewill.Items.Add(itemGrid);
     this.intzaCB_Freewill.Items.Add(itemGrid2);
     this.intzaCB_Freewill.Items.Add(itemGrid3);
     this.intzaCB_Freewill.Items.Add(itemGrid4);
     this.intzaCB_Freewill.Items.Add(itemGrid5);
     this.intzaCB_Freewill.Items.Add(itemGrid6);
     this.intzaCB_Freewill.Items.Add(itemGrid7);
     this.intzaCB_Freewill.Items.Add(itemGrid8);
     this.intzaCB_Freewill.Items.Add(itemGrid9);
     this.intzaCB_Freewill.Items.Add(itemGrid10);
     this.intzaCB_Freewill.Items.Add(itemGrid11);
     this.intzaCB_Freewill.Items.Add(itemGrid12);
     this.intzaCB_Freewill.Items.Add(itemGrid13);
     this.intzaCB_Freewill.Items.Add(itemGrid14);
     this.intzaCB_Freewill.Items.Add(itemGrid15);
     this.intzaCB_Freewill.Items.Add(itemGrid16);
     this.intzaCB_Freewill.Items.Add(itemGrid17);
     this.intzaCB_Freewill.Items.Add(itemGrid18);
     this.intzaCB_Freewill.Items.Add(itemGrid19);
     this.intzaCB_Freewill.Items.Add(itemGrid20);
     this.intzaCB_Freewill.Items.Add(itemGrid21);
     this.intzaCB_Freewill.Items.Add(itemGrid22);
     this.intzaCB_Freewill.Items.Add(itemGrid23);
     this.intzaCB_Freewill.Items.Add(itemGrid24);
     this.intzaCB_Freewill.Items.Add(itemGrid25);
     this.intzaCB_Freewill.Items.Add(itemGrid26);
     this.intzaCB_Freewill.Items.Add(itemGrid27);
     this.intzaCB_Freewill.Items.Add(itemGrid28);
     this.intzaCB_Freewill.Items.Add(itemGrid29);
     this.intzaCB_Freewill.Items.Add(itemGrid30);
     this.intzaCB_Freewill.Items.Add(itemGrid31);
     this.intzaCB_Freewill.Items.Add(itemGrid32);
     this.intzaCB_Freewill.Items.Add(itemGrid33);
     this.intzaCB_Freewill.Items.Add(itemGrid34);
     this.intzaCB_Freewill.Items.Add(itemGrid35);
     this.intzaCB_Freewill.Items.Add(itemGrid36);
     this.intzaCB_Freewill.Items.Add(itemGrid37);
     this.intzaCB_Freewill.Items.Add(itemGrid38);
     this.intzaCB_Freewill.Items.Add(itemGrid39);
     this.intzaCB_Freewill.Items.Add(itemGrid40);
     this.intzaCB_Freewill.Items.Add(itemGrid41);
     this.intzaCB_Freewill.Items.Add(itemGrid42);
     this.intzaCB_Freewill.Items.Add(itemGrid43);
     this.intzaCB_Freewill.Items.Add(itemGrid44);
     this.intzaCB_Freewill.Items.Add(itemGrid45);
     this.intzaCB_Freewill.Items.Add(itemGrid46);
     this.intzaCB_Freewill.Items.Add(itemGrid47);
     this.intzaCB_Freewill.Items.Add(itemGrid48);
     this.intzaCB_Freewill.Items.Add(itemGrid49);
     this.intzaCB_Freewill.Items.Add(itemGrid50);
     this.intzaCB_Freewill.Items.Add(itemGrid51);
     this.intzaCB_Freewill.Items.Add(itemGrid52);
     this.intzaCB_Freewill.Items.Add(itemGrid53);
     this.intzaCB_Freewill.Items.Add(itemGrid54);
     this.intzaCB_Freewill.Items.Add(itemGrid55);
     this.intzaCB_Freewill.Items.Add(itemGrid56);
     this.intzaCB_Freewill.Items.Add(itemGrid57);
     this.intzaCB_Freewill.Items.Add(itemGrid58);
     this.intzaCB_Freewill.Items.Add(itemGrid59);
     this.intzaCB_Freewill.Items.Add(itemGrid60);
     this.intzaCB_Freewill.LineColor = Color.Red;
     this.intzaCB_Freewill.Location = new Point(10, 91);
     this.intzaCB_Freewill.Name = "intzaCB_Freewill";
     this.intzaCB_Freewill.Size = new Size(243, 82);
     this.intzaCB_Freewill.TabIndex = 24;
     this.intzaCB_Freewill.Visible = false;
     this.panelReportMenu.Controls.Add(this.toolStrip1);
     this.panelReportMenu.Location = new Point(3, 178);
     this.panelReportMenu.Name = "panelReportMenu";
     this.panelReportMenu.Size = new Size(854, 39);
     this.panelReportMenu.TabIndex = 71;
     this.toolStrip1.BackColor = Color.FromArgb(30, 30, 30);
     this.toolStrip1.GripStyle = ToolStripGripStyle.Hidden;
     this.toolStrip1.Items.AddRange(new ToolStripItem[]
     {
         this.tsbtnSummary,
         this.tsbtnCreditBalance,
         this.tsbtnTotRealizeProfit,
         this.tsbtnConfrimSumm,
         this.tsbtnConfrimByStock,
         this.tssepStock,
         this.tslbStock,
         this.tstbStock2,
         this.tsbtnClearStock,
         this.tssepPrint,
         this.tsbtnPrint
     });
     this.toolStrip1.Location = new Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Padding = new Padding(1, 1, 1, 2);
     this.toolStrip1.RenderMode = ToolStripRenderMode.System;
     this.toolStrip1.Size = new Size(854, 27);
     this.toolStrip1.TabIndex = 21;
     this.toolStrip1.Tag = "-1";
     this.toolStrip1.Text = "toolStrip1";
     this.tsbtnSummary.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnSummary.ForeColor = Color.WhiteSmoke;
     this.tsbtnSummary.ImageTransparentColor = Color.Magenta;
     this.tsbtnSummary.Margin = new Padding(3, 1, 3, 2);
     this.tsbtnSummary.Name = "tsbtnSummary";
     this.tsbtnSummary.Size = new Size(68, 21);
     this.tsbtnSummary.Text = "Profit/Loss";
     this.tsbtnSummary.ToolTipText = "Credit Position";
     this.tsbtnSummary.Click += new EventHandler(this.ReportClick);
     this.tsbtnCreditBalance.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnCreditBalance.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tsbtnCreditBalance.ForeColor = Color.WhiteSmoke;
     this.tsbtnCreditBalance.ImageTransparentColor = Color.Magenta;
     this.tsbtnCreditBalance.Margin = new Padding(3, 1, 3, 2);
     this.tsbtnCreditBalance.Name = "tsbtnCreditBalance";
     this.tsbtnCreditBalance.Size = new Size(38, 21);
     this.tsbtnCreditBalance.Text = "Credit";
     this.tsbtnCreditBalance.ToolTipText = "Credit Balance Information";
     this.tsbtnCreditBalance.Click += new EventHandler(this.tsbtnCreditBalance_Click);
     this.tsbtnTotRealizeProfit.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnTotRealizeProfit.ForeColor = Color.WhiteSmoke;
     this.tsbtnTotRealizeProfit.Image = (Image)componentResourceManager.GetObject("tsbtnTotRealizeProfit.Image");
     this.tsbtnTotRealizeProfit.ImageTransparentColor = Color.Magenta;
     this.tsbtnTotRealizeProfit.Margin = new Padding(3, 1, 3, 2);
     this.tsbtnTotRealizeProfit.Name = "tsbtnTotRealizeProfit";
     this.tsbtnTotRealizeProfit.Size = new Size(111, 21);
     this.tsbtnTotRealizeProfit.Text = "Total Realize/Profit";
     this.tsbtnTotRealizeProfit.Click += new EventHandler(this.ReportClick);
     this.tsbtnConfrimSumm.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnConfrimSumm.ForeColor = Color.WhiteSmoke;
     this.tsbtnConfrimSumm.Image = (Image)componentResourceManager.GetObject("tsbtnConfrimSumm.Image");
     this.tsbtnConfrimSumm.ImageTransparentColor = Color.Magenta;
     this.tsbtnConfrimSumm.Margin = new Padding(3, 1, 3, 2);
     this.tsbtnConfrimSumm.Name = "tsbtnConfrimSumm";
     this.tsbtnConfrimSumm.Size = new Size(109, 21);
     this.tsbtnConfrimSumm.Text = "Confirm Summary";
     this.tsbtnConfrimSumm.Click += new EventHandler(this.ReportClick);
     this.tsbtnConfrimByStock.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnConfrimByStock.ForeColor = Color.WhiteSmoke;
     this.tsbtnConfrimByStock.Image = (Image)componentResourceManager.GetObject("tsbtnConfrimByStock.Image");
     this.tsbtnConfrimByStock.ImageTransparentColor = Color.Magenta;
     this.tsbtnConfrimByStock.Margin = new Padding(3, 1, 3, 2);
     this.tsbtnConfrimByStock.Name = "tsbtnConfrimByStock";
     this.tsbtnConfrimByStock.Size = new Size(103, 21);
     this.tsbtnConfrimByStock.Text = "Confirm by Stock";
     this.tsbtnConfrimByStock.Click += new EventHandler(this.ReportClick);
     this.tssepStock.Name = "tssepStock";
     this.tssepStock.Size = new Size(6, 24);
     this.tslbStock.ForeColor = Color.WhiteSmoke;
     this.tslbStock.Margin = new Padding(5, 1, 0, 2);
     this.tslbStock.Name = "tslbStock";
     this.tslbStock.Size = new Size(71, 21);
     this.tslbStock.Text = "Filter Stock :";
     this.tstbStock2.AutoCompleteMode = AutoCompleteMode.Suggest;
     this.tstbStock2.AutoCompleteSource = AutoCompleteSource.CustomSource;
     this.tstbStock2.BackColor = Color.FromArgb(60, 60, 60);
     this.tstbStock2.BorderStyle = BorderStyle.FixedSingle;
     this.tstbStock2.CharacterCasing = CharacterCasing.Upper;
     this.tstbStock2.ForeColor = Color.LightGray;
     this.tstbStock2.Margin = new Padding(1, 0, 1, 1);
     this.tstbStock2.MaxLength = 12;
     this.tstbStock2.Name = "tstbStock2";
     this.tstbStock2.Size = new Size(100, 23);
     this.tstbStock2.Leave += new EventHandler(this.controlOrder_Leave);
     this.tstbStock2.Enter += new EventHandler(this.controlOrder_Enter);
     this.tstbStock2.KeyUp += new KeyEventHandler(this.tstbStock2_KeyUp);
     this.tsbtnClearStock.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnClearStock.ForeColor = Color.WhiteSmoke;
     this.tsbtnClearStock.ImageTransparentColor = Color.Magenta;
     this.tsbtnClearStock.Margin = new Padding(5, 1, 0, 2);
     this.tsbtnClearStock.Name = "tsbtnClearStock";
     this.tsbtnClearStock.Size = new Size(38, 21);
     this.tsbtnClearStock.Text = "Clear";
     this.tsbtnClearStock.ToolTipText = "Clear Stock Filter";
     this.tsbtnClearStock.Click += new EventHandler(this.tsbtnClearStock_Click);
     this.tssepPrint.Name = "tssepPrint";
     this.tssepPrint.Size = new Size(6, 24);
     this.tsbtnPrint.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnPrint.ForeColor = Color.WhiteSmoke;
     this.tsbtnPrint.ImageTransparentColor = Color.Magenta;
     this.tsbtnPrint.Margin = new Padding(5, 1, 0, 2);
     this.tsbtnPrint.Name = "tsbtnPrint";
     this.tsbtnPrint.Size = new Size(36, 21);
     this.tsbtnPrint.Text = "Print";
     this.tsbtnPrint.Click += new EventHandler(this.tsbtnPrint_Click);
     this.intzaCB.AllowDrop = true;
     this.intzaCB.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaCB.BorderStyle = BorderStyle.FixedSingle;
     this.intzaCB.CanDrag = false;
     this.intzaCB.IsAutoRepaint = true;
     this.intzaCB.IsDroped = false;
     itemGrid61.AdjustFontSize = 0f;
     itemGrid61.Alignment = StringAlignment.Near;
     itemGrid61.BackColor = Color.DimGray;
     itemGrid61.Changed = false;
     itemGrid61.FieldType = ItemType.TextGradient;
     itemGrid61.FontColor = Color.WhiteSmoke;
     itemGrid61.FontStyle = FontStyle.Regular;
     itemGrid61.Height = 1f;
     itemGrid61.IsBlink = 0;
     itemGrid61.Name = "lbBankCol";
     itemGrid61.Text = "";
     itemGrid61.ValueFormat = FormatType.Text;
     itemGrid61.Visible = true;
     itemGrid61.Width = 30;
     itemGrid61.X = 0;
     itemGrid61.Y = 1f;
     itemGrid62.AdjustFontSize = 0f;
     itemGrid62.Alignment = StringAlignment.Center;
     itemGrid62.BackColor = Color.DimGray;
     itemGrid62.Changed = false;
     itemGrid62.FieldType = ItemType.TextGradient;
     itemGrid62.FontColor = Color.WhiteSmoke;
     itemGrid62.FontStyle = FontStyle.Regular;
     itemGrid62.Height = 1f;
     itemGrid62.IsBlink = 0;
     itemGrid62.Name = "lbPrevious";
     itemGrid62.Text = "Previous";
     itemGrid62.ValueFormat = FormatType.Text;
     itemGrid62.Visible = true;
     itemGrid62.Width = 35;
     itemGrid62.X = 30;
     itemGrid62.Y = 1f;
     itemGrid63.AdjustFontSize = 0f;
     itemGrid63.Alignment = StringAlignment.Center;
     itemGrid63.BackColor = Color.DimGray;
     itemGrid63.Changed = false;
     itemGrid63.FieldType = ItemType.TextGradient;
     itemGrid63.FontColor = Color.WhiteSmoke;
     itemGrid63.FontStyle = FontStyle.Regular;
     itemGrid63.Height = 1f;
     itemGrid63.IsBlink = 0;
     itemGrid63.Name = "lbCurrent";
     itemGrid63.Text = "Current";
     itemGrid63.ValueFormat = FormatType.Text;
     itemGrid63.Visible = true;
     itemGrid63.Width = 35;
     itemGrid63.X = 65;
     itemGrid63.Y = 1f;
     itemGrid64.AdjustFontSize = -1f;
     itemGrid64.Alignment = StringAlignment.Far;
     itemGrid64.BackColor = Color.FromArgb(64, 64, 64);
     itemGrid64.Changed = false;
     itemGrid64.FieldType = ItemType.Label;
     itemGrid64.FontColor = Color.WhiteSmoke;
     itemGrid64.FontStyle = FontStyle.Regular;
     itemGrid64.Height = 1f;
     itemGrid64.IsBlink = 0;
     itemGrid64.Name = "lbExcessEquity";
     itemGrid64.Text = "Excess Equity";
     itemGrid64.ValueFormat = FormatType.Text;
     itemGrid64.Visible = true;
     itemGrid64.Width = 30;
     itemGrid64.X = 0;
     itemGrid64.Y = 2f;
     itemGrid65.AdjustFontSize = 0f;
     itemGrid65.Alignment = StringAlignment.Near;
     itemGrid65.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid65.Changed = false;
     itemGrid65.FieldType = ItemType.Text;
     itemGrid65.FontColor = Color.White;
     itemGrid65.FontStyle = FontStyle.Regular;
     itemGrid65.Height = 1f;
     itemGrid65.IsBlink = 0;
     itemGrid65.Name = "tbExcessEquityPrevious";
     itemGrid65.Text = "";
     itemGrid65.ValueFormat = FormatType.Text;
     itemGrid65.Visible = true;
     itemGrid65.Width = 35;
     itemGrid65.X = 30;
     itemGrid65.Y = 2f;
     itemGrid66.AdjustFontSize = 0f;
     itemGrid66.Alignment = StringAlignment.Near;
     itemGrid66.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid66.Changed = false;
     itemGrid66.FieldType = ItemType.Text;
     itemGrid66.FontColor = Color.White;
     itemGrid66.FontStyle = FontStyle.Regular;
     itemGrid66.Height = 1f;
     itemGrid66.IsBlink = 0;
     itemGrid66.Name = "tbExcessEquityCurrent";
     itemGrid66.Text = "";
     itemGrid66.ValueFormat = FormatType.Text;
     itemGrid66.Visible = true;
     itemGrid66.Width = 35;
     itemGrid66.X = 65;
     itemGrid66.Y = 2f;
     itemGrid67.AdjustFontSize = -1f;
     itemGrid67.Alignment = StringAlignment.Far;
     itemGrid67.BackColor = Color.FromArgb(64, 64, 64);
     itemGrid67.Changed = false;
     itemGrid67.FieldType = ItemType.Label;
     itemGrid67.FontColor = Color.WhiteSmoke;
     itemGrid67.FontStyle = FontStyle.Regular;
     itemGrid67.Height = 1f;
     itemGrid67.IsBlink = 0;
     itemGrid67.Name = "lbMarkToEE";
     itemGrid67.Text = "Mark to Market EE";
     itemGrid67.ValueFormat = FormatType.Text;
     itemGrid67.Visible = true;
     itemGrid67.Width = 30;
     itemGrid67.X = 0;
     itemGrid67.Y = 3f;
     itemGrid68.AdjustFontSize = 0f;
     itemGrid68.Alignment = StringAlignment.Near;
     itemGrid68.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid68.Changed = false;
     itemGrid68.FieldType = ItemType.Text;
     itemGrid68.FontColor = Color.White;
     itemGrid68.FontStyle = FontStyle.Regular;
     itemGrid68.Height = 1f;
     itemGrid68.IsBlink = 0;
     itemGrid68.Name = "tbMarkToEEPrevious";
     itemGrid68.Text = "";
     itemGrid68.ValueFormat = FormatType.Text;
     itemGrid68.Visible = true;
     itemGrid68.Width = 35;
     itemGrid68.X = 30;
     itemGrid68.Y = 3f;
     itemGrid69.AdjustFontSize = 0f;
     itemGrid69.Alignment = StringAlignment.Near;
     itemGrid69.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid69.Changed = false;
     itemGrid69.FieldType = ItemType.Text;
     itemGrid69.FontColor = Color.White;
     itemGrid69.FontStyle = FontStyle.Regular;
     itemGrid69.Height = 1f;
     itemGrid69.IsBlink = 0;
     itemGrid69.Name = "tbMarkToEECurrent";
     itemGrid69.Text = "";
     itemGrid69.ValueFormat = FormatType.Text;
     itemGrid69.Visible = true;
     itemGrid69.Width = 35;
     itemGrid69.X = 65;
     itemGrid69.Y = 3f;
     itemGrid70.AdjustFontSize = -1f;
     itemGrid70.Alignment = StringAlignment.Far;
     itemGrid70.BackColor = Color.FromArgb(64, 64, 64);
     itemGrid70.Changed = false;
     itemGrid70.FieldType = ItemType.Label;
     itemGrid70.FontColor = Color.WhiteSmoke;
     itemGrid70.FontStyle = FontStyle.Regular;
     itemGrid70.Height = 1f;
     itemGrid70.IsBlink = 0;
     itemGrid70.Name = "lbMMpercent";
     itemGrid70.Text = "MM%";
     itemGrid70.ValueFormat = FormatType.Text;
     itemGrid70.Visible = true;
     itemGrid70.Width = 30;
     itemGrid70.X = 0;
     itemGrid70.Y = 4f;
     itemGrid71.AdjustFontSize = 0f;
     itemGrid71.Alignment = StringAlignment.Near;
     itemGrid71.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid71.Changed = false;
     itemGrid71.FieldType = ItemType.Text;
     itemGrid71.FontColor = Color.White;
     itemGrid71.FontStyle = FontStyle.Regular;
     itemGrid71.Height = 1f;
     itemGrid71.IsBlink = 0;
     itemGrid71.Name = "tbMMpercentPrevious";
     itemGrid71.Text = "";
     itemGrid71.ValueFormat = FormatType.PercentChange;
     itemGrid71.Visible = true;
     itemGrid71.Width = 35;
     itemGrid71.X = 30;
     itemGrid71.Y = 4f;
     itemGrid72.AdjustFontSize = 0f;
     itemGrid72.Alignment = StringAlignment.Near;
     itemGrid72.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid72.Changed = false;
     itemGrid72.FieldType = ItemType.Text;
     itemGrid72.FontColor = Color.White;
     itemGrid72.FontStyle = FontStyle.Regular;
     itemGrid72.Height = 1f;
     itemGrid72.IsBlink = 0;
     itemGrid72.Name = "tbMMpercentCurrent";
     itemGrid72.Text = "";
     itemGrid72.ValueFormat = FormatType.PercentChange;
     itemGrid72.Visible = true;
     itemGrid72.Width = 35;
     itemGrid72.X = 65;
     itemGrid72.Y = 4f;
     itemGrid73.AdjustFontSize = -1f;
     itemGrid73.Alignment = StringAlignment.Far;
     itemGrid73.BackColor = Color.FromArgb(64, 64, 64);
     itemGrid73.Changed = false;
     itemGrid73.FieldType = ItemType.Label;
     itemGrid73.FontColor = Color.WhiteSmoke;
     itemGrid73.FontStyle = FontStyle.Regular;
     itemGrid73.Height = 1f;
     itemGrid73.IsBlink = 0;
     itemGrid73.Name = "lbEquity";
     itemGrid73.Text = "Equity";
     itemGrid73.ValueFormat = FormatType.Text;
     itemGrid73.Visible = true;
     itemGrid73.Width = 30;
     itemGrid73.X = 0;
     itemGrid73.Y = 5f;
     itemGrid74.AdjustFontSize = 0f;
     itemGrid74.Alignment = StringAlignment.Near;
     itemGrid74.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid74.Changed = false;
     itemGrid74.FieldType = ItemType.Text;
     itemGrid74.FontColor = Color.White;
     itemGrid74.FontStyle = FontStyle.Regular;
     itemGrid74.Height = 1f;
     itemGrid74.IsBlink = 0;
     itemGrid74.Name = "tbEquityPrevious";
     itemGrid74.Text = "";
     itemGrid74.ValueFormat = FormatType.Price;
     itemGrid74.Visible = true;
     itemGrid74.Width = 35;
     itemGrid74.X = 30;
     itemGrid74.Y = 5f;
     itemGrid75.AdjustFontSize = 0f;
     itemGrid75.Alignment = StringAlignment.Near;
     itemGrid75.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid75.Changed = false;
     itemGrid75.FieldType = ItemType.Text;
     itemGrid75.FontColor = Color.White;
     itemGrid75.FontStyle = FontStyle.Regular;
     itemGrid75.Height = 1f;
     itemGrid75.IsBlink = 0;
     itemGrid75.Name = "tbEquityCurrent";
     itemGrid75.Text = "";
     itemGrid75.ValueFormat = FormatType.Price;
     itemGrid75.Visible = true;
     itemGrid75.Width = 35;
     itemGrid75.X = 65;
     itemGrid75.Y = 5f;
     itemGrid76.AdjustFontSize = -1f;
     itemGrid76.Alignment = StringAlignment.Far;
     itemGrid76.BackColor = Color.FromArgb(64, 64, 64);
     itemGrid76.Changed = false;
     itemGrid76.FieldType = ItemType.Label;
     itemGrid76.FontColor = Color.WhiteSmoke;
     itemGrid76.FontStyle = FontStyle.Regular;
     itemGrid76.Height = 1f;
     itemGrid76.IsBlink = 0;
     itemGrid76.Name = "lbMR";
     itemGrid76.Text = "MR";
     itemGrid76.ValueFormat = FormatType.Text;
     itemGrid76.Visible = true;
     itemGrid76.Width = 30;
     itemGrid76.X = 0;
     itemGrid76.Y = 6f;
     itemGrid77.AdjustFontSize = 0f;
     itemGrid77.Alignment = StringAlignment.Near;
     itemGrid77.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid77.Changed = false;
     itemGrid77.FieldType = ItemType.Text;
     itemGrid77.FontColor = Color.White;
     itemGrid77.FontStyle = FontStyle.Regular;
     itemGrid77.Height = 1f;
     itemGrid77.IsBlink = 0;
     itemGrid77.Name = "tbMRPrevious";
     itemGrid77.Text = "";
     itemGrid77.ValueFormat = FormatType.Text;
     itemGrid77.Visible = true;
     itemGrid77.Width = 35;
     itemGrid77.X = 30;
     itemGrid77.Y = 6f;
     itemGrid78.AdjustFontSize = 0f;
     itemGrid78.Alignment = StringAlignment.Near;
     itemGrid78.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid78.Changed = false;
     itemGrid78.FieldType = ItemType.Text;
     itemGrid78.FontColor = Color.White;
     itemGrid78.FontStyle = FontStyle.Regular;
     itemGrid78.Height = 1f;
     itemGrid78.IsBlink = 0;
     itemGrid78.Name = "tbMRCurrent";
     itemGrid78.Text = "";
     itemGrid78.ValueFormat = FormatType.Text;
     itemGrid78.Visible = true;
     itemGrid78.Width = 35;
     itemGrid78.X = 65;
     itemGrid78.Y = 6f;
     itemGrid79.AdjustFontSize = 0f;
     itemGrid79.Alignment = StringAlignment.Near;
     itemGrid79.BackColor = Color.DimGray;
     itemGrid79.Changed = false;
     itemGrid79.FieldType = ItemType.TextGradient;
     itemGrid79.FontColor = Color.WhiteSmoke;
     itemGrid79.FontStyle = FontStyle.Regular;
     itemGrid79.Height = 1f;
     itemGrid79.IsBlink = 0;
     itemGrid79.Name = "lbAsset";
     itemGrid79.Text = "ASSET";
     itemGrid79.ValueFormat = FormatType.Text;
     itemGrid79.Visible = true;
     itemGrid79.Width = 30;
     itemGrid79.X = 0;
     itemGrid79.Y = 7f;
     itemGrid80.AdjustFontSize = 0f;
     itemGrid80.Alignment = StringAlignment.Near;
     itemGrid80.BackColor = Color.DimGray;
     itemGrid80.Changed = false;
     itemGrid80.FieldType = ItemType.TextGradient;
     itemGrid80.FontColor = Color.WhiteSmoke;
     itemGrid80.FontStyle = FontStyle.Regular;
     itemGrid80.Height = 1f;
     itemGrid80.IsBlink = 0;
     itemGrid80.Name = "lbAssetPrevious";
     itemGrid80.Text = "";
     itemGrid80.ValueFormat = FormatType.Text;
     itemGrid80.Visible = true;
     itemGrid80.Width = 35;
     itemGrid80.X = 30;
     itemGrid80.Y = 7f;
     itemGrid81.AdjustFontSize = 0f;
     itemGrid81.Alignment = StringAlignment.Near;
     itemGrid81.BackColor = Color.DimGray;
     itemGrid81.Changed = false;
     itemGrid81.FieldType = ItemType.TextGradient;
     itemGrid81.FontColor = Color.WhiteSmoke;
     itemGrid81.FontStyle = FontStyle.Regular;
     itemGrid81.Height = 1f;
     itemGrid81.IsBlink = 0;
     itemGrid81.Name = "lbAssetCurrent";
     itemGrid81.Text = "";
     itemGrid81.ValueFormat = FormatType.Text;
     itemGrid81.Visible = true;
     itemGrid81.Width = 35;
     itemGrid81.X = 65;
     itemGrid81.Y = 7f;
     itemGrid82.AdjustFontSize = -1f;
     itemGrid82.Alignment = StringAlignment.Far;
     itemGrid82.BackColor = Color.FromArgb(64, 64, 64);
     itemGrid82.Changed = false;
     itemGrid82.FieldType = ItemType.Label;
     itemGrid82.FontColor = Color.WhiteSmoke;
     itemGrid82.FontStyle = FontStyle.Regular;
     itemGrid82.Height = 1f;
     itemGrid82.IsBlink = 0;
     itemGrid82.Name = "lbCashBalance";
     itemGrid82.Text = "Cash Balance";
     itemGrid82.ValueFormat = FormatType.Text;
     itemGrid82.Visible = true;
     itemGrid82.Width = 30;
     itemGrid82.X = 0;
     itemGrid82.Y = 8f;
     itemGrid83.AdjustFontSize = 0f;
     itemGrid83.Alignment = StringAlignment.Near;
     itemGrid83.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid83.Changed = false;
     itemGrid83.FieldType = ItemType.Text;
     itemGrid83.FontColor = Color.White;
     itemGrid83.FontStyle = FontStyle.Regular;
     itemGrid83.Height = 1f;
     itemGrid83.IsBlink = 0;
     itemGrid83.Name = "tbCashBalancePrevious";
     itemGrid83.Text = "";
     itemGrid83.ValueFormat = FormatType.Text;
     itemGrid83.Visible = true;
     itemGrid83.Width = 35;
     itemGrid83.X = 30;
     itemGrid83.Y = 8f;
     itemGrid84.AdjustFontSize = 0f;
     itemGrid84.Alignment = StringAlignment.Near;
     itemGrid84.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid84.Changed = false;
     itemGrid84.FieldType = ItemType.Text;
     itemGrid84.FontColor = Color.White;
     itemGrid84.FontStyle = FontStyle.Regular;
     itemGrid84.Height = 1f;
     itemGrid84.IsBlink = 0;
     itemGrid84.Name = "tbCashBalanceCurrent";
     itemGrid84.Text = "";
     itemGrid84.ValueFormat = FormatType.Text;
     itemGrid84.Visible = true;
     itemGrid84.Width = 35;
     itemGrid84.X = 65;
     itemGrid84.Y = 8f;
     itemGrid85.AdjustFontSize = -1f;
     itemGrid85.Alignment = StringAlignment.Far;
     itemGrid85.BackColor = Color.FromArgb(64, 64, 64);
     itemGrid85.Changed = false;
     itemGrid85.FieldType = ItemType.Label;
     itemGrid85.FontColor = Color.WhiteSmoke;
     itemGrid85.FontStyle = FontStyle.Regular;
     itemGrid85.Height = 1f;
     itemGrid85.IsBlink = 0;
     itemGrid85.Name = "lbLmv";
     itemGrid85.Text = "LMV";
     itemGrid85.ValueFormat = FormatType.Text;
     itemGrid85.Visible = true;
     itemGrid85.Width = 30;
     itemGrid85.X = 0;
     itemGrid85.Y = 9f;
     itemGrid86.AdjustFontSize = 0f;
     itemGrid86.Alignment = StringAlignment.Near;
     itemGrid86.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid86.Changed = false;
     itemGrid86.FieldType = ItemType.Text;
     itemGrid86.FontColor = Color.White;
     itemGrid86.FontStyle = FontStyle.Regular;
     itemGrid86.Height = 1f;
     itemGrid86.IsBlink = 0;
     itemGrid86.Name = "tbLmvPrevious";
     itemGrid86.Text = "";
     itemGrid86.ValueFormat = FormatType.Text;
     itemGrid86.Visible = true;
     itemGrid86.Width = 35;
     itemGrid86.X = 30;
     itemGrid86.Y = 9f;
     itemGrid87.AdjustFontSize = 0f;
     itemGrid87.Alignment = StringAlignment.Near;
     itemGrid87.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid87.Changed = false;
     itemGrid87.FieldType = ItemType.Text;
     itemGrid87.FontColor = Color.White;
     itemGrid87.FontStyle = FontStyle.Regular;
     itemGrid87.Height = 1f;
     itemGrid87.IsBlink = 0;
     itemGrid87.Name = "tbLmvCurrent";
     itemGrid87.Text = "";
     itemGrid87.ValueFormat = FormatType.Text;
     itemGrid87.Visible = true;
     itemGrid87.Width = 35;
     itemGrid87.X = 65;
     itemGrid87.Y = 9f;
     itemGrid88.AdjustFontSize = -1f;
     itemGrid88.Alignment = StringAlignment.Far;
     itemGrid88.BackColor = Color.FromArgb(64, 64, 64);
     itemGrid88.Changed = false;
     itemGrid88.FieldType = ItemType.Label;
     itemGrid88.FontColor = Color.WhiteSmoke;
     itemGrid88.FontStyle = FontStyle.Regular;
     itemGrid88.Height = 1f;
     itemGrid88.IsBlink = 0;
     itemGrid88.Name = "lbColleteral";
     itemGrid88.Text = "Colleteral";
     itemGrid88.ValueFormat = FormatType.Text;
     itemGrid88.Visible = true;
     itemGrid88.Width = 30;
     itemGrid88.X = 0;
     itemGrid88.Y = 10f;
     itemGrid89.AdjustFontSize = 0f;
     itemGrid89.Alignment = StringAlignment.Near;
     itemGrid89.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid89.Changed = false;
     itemGrid89.FieldType = ItemType.Text;
     itemGrid89.FontColor = Color.White;
     itemGrid89.FontStyle = FontStyle.Regular;
     itemGrid89.Height = 1f;
     itemGrid89.IsBlink = 0;
     itemGrid89.Name = "tbColleteralPrevious";
     itemGrid89.Text = "";
     itemGrid89.ValueFormat = FormatType.Text;
     itemGrid89.Visible = true;
     itemGrid89.Width = 35;
     itemGrid89.X = 30;
     itemGrid89.Y = 10f;
     itemGrid90.AdjustFontSize = 0f;
     itemGrid90.Alignment = StringAlignment.Near;
     itemGrid90.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid90.Changed = false;
     itemGrid90.FieldType = ItemType.Text;
     itemGrid90.FontColor = Color.White;
     itemGrid90.FontStyle = FontStyle.Regular;
     itemGrid90.Height = 1f;
     itemGrid90.IsBlink = 0;
     itemGrid90.Name = "tbColleteralCurrent";
     itemGrid90.Text = "";
     itemGrid90.ValueFormat = FormatType.Text;
     itemGrid90.Visible = true;
     itemGrid90.Width = 35;
     itemGrid90.X = 65;
     itemGrid90.Y = 10f;
     itemGrid91.AdjustFontSize = 0f;
     itemGrid91.Alignment = StringAlignment.Near;
     itemGrid91.BackColor = Color.DimGray;
     itemGrid91.Changed = false;
     itemGrid91.FieldType = ItemType.TextGradient;
     itemGrid91.FontColor = Color.WhiteSmoke;
     itemGrid91.FontStyle = FontStyle.Regular;
     itemGrid91.Height = 1f;
     itemGrid91.IsBlink = 0;
     itemGrid91.Name = "lbLiabilities";
     itemGrid91.Text = "LIABILITIES";
     itemGrid91.ValueFormat = FormatType.Text;
     itemGrid91.Visible = true;
     itemGrid91.Width = 30;
     itemGrid91.X = 0;
     itemGrid91.Y = 11f;
     itemGrid92.AdjustFontSize = 0f;
     itemGrid92.Alignment = StringAlignment.Near;
     itemGrid92.BackColor = Color.DimGray;
     itemGrid92.Changed = false;
     itemGrid92.FieldType = ItemType.TextGradient;
     itemGrid92.FontColor = Color.WhiteSmoke;
     itemGrid92.FontStyle = FontStyle.Regular;
     itemGrid92.Height = 1f;
     itemGrid92.IsBlink = 0;
     itemGrid92.Name = "lbLiabilitiesPrevious";
     itemGrid92.Text = "";
     itemGrid92.ValueFormat = FormatType.Text;
     itemGrid92.Visible = true;
     itemGrid92.Width = 35;
     itemGrid92.X = 30;
     itemGrid92.Y = 11f;
     itemGrid93.AdjustFontSize = 0f;
     itemGrid93.Alignment = StringAlignment.Near;
     itemGrid93.BackColor = Color.DimGray;
     itemGrid93.Changed = false;
     itemGrid93.FieldType = ItemType.TextGradient;
     itemGrid93.FontColor = Color.WhiteSmoke;
     itemGrid93.FontStyle = FontStyle.Regular;
     itemGrid93.Height = 1f;
     itemGrid93.IsBlink = 0;
     itemGrid93.Name = "lbLiabilitiesCurrent";
     itemGrid93.Text = "";
     itemGrid93.ValueFormat = FormatType.Text;
     itemGrid93.Visible = true;
     itemGrid93.Width = 35;
     itemGrid93.X = 65;
     itemGrid93.Y = 11f;
     itemGrid94.AdjustFontSize = -1f;
     itemGrid94.Alignment = StringAlignment.Far;
     itemGrid94.BackColor = Color.FromArgb(64, 64, 64);
     itemGrid94.Changed = false;
     itemGrid94.FieldType = ItemType.Label;
     itemGrid94.FontColor = Color.WhiteSmoke;
     itemGrid94.FontStyle = FontStyle.Regular;
     itemGrid94.Height = 1f;
     itemGrid94.IsBlink = 0;
     itemGrid94.Name = "lbLoan";
     itemGrid94.Text = "Loan";
     itemGrid94.ValueFormat = FormatType.Text;
     itemGrid94.Visible = true;
     itemGrid94.Width = 30;
     itemGrid94.X = 0;
     itemGrid94.Y = 12f;
     itemGrid95.AdjustFontSize = 0f;
     itemGrid95.Alignment = StringAlignment.Near;
     itemGrid95.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid95.Changed = false;
     itemGrid95.FieldType = ItemType.Text;
     itemGrid95.FontColor = Color.White;
     itemGrid95.FontStyle = FontStyle.Regular;
     itemGrid95.Height = 1f;
     itemGrid95.IsBlink = 0;
     itemGrid95.Name = "tbLoanPrevious";
     itemGrid95.Text = "";
     itemGrid95.ValueFormat = FormatType.Text;
     itemGrid95.Visible = true;
     itemGrid95.Width = 35;
     itemGrid95.X = 30;
     itemGrid95.Y = 12f;
     itemGrid96.AdjustFontSize = 0f;
     itemGrid96.Alignment = StringAlignment.Near;
     itemGrid96.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid96.Changed = false;
     itemGrid96.FieldType = ItemType.Text;
     itemGrid96.FontColor = Color.White;
     itemGrid96.FontStyle = FontStyle.Regular;
     itemGrid96.Height = 1f;
     itemGrid96.IsBlink = 0;
     itemGrid96.Name = "tbLoanCurrent";
     itemGrid96.Text = "";
     itemGrid96.ValueFormat = FormatType.Text;
     itemGrid96.Visible = true;
     itemGrid96.Width = 35;
     itemGrid96.X = 65;
     itemGrid96.Y = 12f;
     itemGrid97.AdjustFontSize = -1f;
     itemGrid97.Alignment = StringAlignment.Far;
     itemGrid97.BackColor = Color.FromArgb(64, 64, 64);
     itemGrid97.Changed = false;
     itemGrid97.FieldType = ItemType.Label;
     itemGrid97.FontColor = Color.WhiteSmoke;
     itemGrid97.FontStyle = FontStyle.Regular;
     itemGrid97.Height = 1f;
     itemGrid97.IsBlink = 0;
     itemGrid97.Name = "lbSmv";
     itemGrid97.Text = "SMV";
     itemGrid97.ValueFormat = FormatType.Price;
     itemGrid97.Visible = true;
     itemGrid97.Width = 30;
     itemGrid97.X = 0;
     itemGrid97.Y = 13f;
     itemGrid98.AdjustFontSize = 0f;
     itemGrid98.Alignment = StringAlignment.Near;
     itemGrid98.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid98.Changed = false;
     itemGrid98.FieldType = ItemType.Text;
     itemGrid98.FontColor = Color.White;
     itemGrid98.FontStyle = FontStyle.Regular;
     itemGrid98.Height = 1f;
     itemGrid98.IsBlink = 0;
     itemGrid98.Name = "tbSmvPrevious";
     itemGrid98.Text = "";
     itemGrid98.ValueFormat = FormatType.Text;
     itemGrid98.Visible = true;
     itemGrid98.Width = 35;
     itemGrid98.X = 30;
     itemGrid98.Y = 13f;
     itemGrid99.AdjustFontSize = 0f;
     itemGrid99.Alignment = StringAlignment.Near;
     itemGrid99.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid99.Changed = false;
     itemGrid99.FieldType = ItemType.Text;
     itemGrid99.FontColor = Color.White;
     itemGrid99.FontStyle = FontStyle.Regular;
     itemGrid99.Height = 1f;
     itemGrid99.IsBlink = 0;
     itemGrid99.Name = "tbSmvCurrent";
     itemGrid99.Text = "";
     itemGrid99.ValueFormat = FormatType.Text;
     itemGrid99.Visible = true;
     itemGrid99.Width = 35;
     itemGrid99.X = 65;
     itemGrid99.Y = 13f;
     itemGrid100.AdjustFontSize = 0f;
     itemGrid100.Alignment = StringAlignment.Near;
     itemGrid100.BackColor = Color.DimGray;
     itemGrid100.Changed = false;
     itemGrid100.FieldType = ItemType.TextGradient;
     itemGrid100.FontColor = Color.WhiteSmoke;
     itemGrid100.FontStyle = FontStyle.Regular;
     itemGrid100.Height = 1f;
     itemGrid100.IsBlink = 0;
     itemGrid100.Name = "lbBankCol1Previous";
     itemGrid100.Text = "";
     itemGrid100.ValueFormat = FormatType.Text;
     itemGrid100.Visible = true;
     itemGrid100.Width = 35;
     itemGrid100.X = 30;
     itemGrid100.Y = 14f;
     itemGrid101.AdjustFontSize = 0f;
     itemGrid101.Alignment = StringAlignment.Near;
     itemGrid101.BackColor = Color.DimGray;
     itemGrid101.Changed = false;
     itemGrid101.FieldType = ItemType.TextGradient;
     itemGrid101.FontColor = Color.WhiteSmoke;
     itemGrid101.FontStyle = FontStyle.Regular;
     itemGrid101.Height = 1f;
     itemGrid101.IsBlink = 0;
     itemGrid101.Name = "lbBankCol1";
     itemGrid101.Text = "CALL & FORCE";
     itemGrid101.ValueFormat = FormatType.Text;
     itemGrid101.Visible = true;
     itemGrid101.Width = 30;
     itemGrid101.X = 0;
     itemGrid101.Y = 14f;
     itemGrid102.AdjustFontSize = 0f;
     itemGrid102.Alignment = StringAlignment.Near;
     itemGrid102.BackColor = Color.DimGray;
     itemGrid102.Changed = false;
     itemGrid102.FieldType = ItemType.TextGradient;
     itemGrid102.FontColor = Color.WhiteSmoke;
     itemGrid102.FontStyle = FontStyle.Regular;
     itemGrid102.Height = 1f;
     itemGrid102.IsBlink = 0;
     itemGrid102.Name = "lbBankCol1Current";
     itemGrid102.Text = "";
     itemGrid102.ValueFormat = FormatType.Text;
     itemGrid102.Visible = true;
     itemGrid102.Width = 35;
     itemGrid102.X = 65;
     itemGrid102.Y = 14f;
     itemGrid103.AdjustFontSize = -1f;
     itemGrid103.Alignment = StringAlignment.Far;
     itemGrid103.BackColor = Color.FromArgb(64, 64, 64);
     itemGrid103.Changed = false;
     itemGrid103.FieldType = ItemType.Label;
     itemGrid103.FontColor = Color.WhiteSmoke;
     itemGrid103.FontStyle = FontStyle.Regular;
     itemGrid103.Height = 1f;
     itemGrid103.IsBlink = 0;
     itemGrid103.Name = "lbCall";
     itemGrid103.Text = "Call";
     itemGrid103.ValueFormat = FormatType.Text;
     itemGrid103.Visible = true;
     itemGrid103.Width = 30;
     itemGrid103.X = 0;
     itemGrid103.Y = 15f;
     itemGrid104.AdjustFontSize = 0f;
     itemGrid104.Alignment = StringAlignment.Near;
     itemGrid104.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid104.Changed = false;
     itemGrid104.FieldType = ItemType.Text;
     itemGrid104.FontColor = Color.Red;
     itemGrid104.FontStyle = FontStyle.Regular;
     itemGrid104.Height = 1f;
     itemGrid104.IsBlink = 0;
     itemGrid104.Name = "tbCallPrevious";
     itemGrid104.Text = "";
     itemGrid104.ValueFormat = FormatType.Text;
     itemGrid104.Visible = true;
     itemGrid104.Width = 35;
     itemGrid104.X = 30;
     itemGrid104.Y = 15f;
     itemGrid105.AdjustFontSize = 0f;
     itemGrid105.Alignment = StringAlignment.Near;
     itemGrid105.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid105.Changed = false;
     itemGrid105.FieldType = ItemType.Text;
     itemGrid105.FontColor = Color.Red;
     itemGrid105.FontStyle = FontStyle.Regular;
     itemGrid105.Height = 1f;
     itemGrid105.IsBlink = 0;
     itemGrid105.Name = "tbCallCurrent";
     itemGrid105.Text = "";
     itemGrid105.ValueFormat = FormatType.Text;
     itemGrid105.Visible = true;
     itemGrid105.Width = 35;
     itemGrid105.X = 65;
     itemGrid105.Y = 15f;
     itemGrid106.AdjustFontSize = -1f;
     itemGrid106.Alignment = StringAlignment.Far;
     itemGrid106.BackColor = Color.FromArgb(64, 64, 64);
     itemGrid106.Changed = false;
     itemGrid106.FieldType = ItemType.Label;
     itemGrid106.FontColor = Color.WhiteSmoke;
     itemGrid106.FontStyle = FontStyle.Regular;
     itemGrid106.Height = 1f;
     itemGrid106.IsBlink = 0;
     itemGrid106.Name = "lbForce";
     itemGrid106.Text = "Force";
     itemGrid106.ValueFormat = FormatType.Text;
     itemGrid106.Visible = true;
     itemGrid106.Width = 30;
     itemGrid106.X = 0;
     itemGrid106.Y = 16f;
     itemGrid107.AdjustFontSize = 0f;
     itemGrid107.Alignment = StringAlignment.Near;
     itemGrid107.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid107.Changed = false;
     itemGrid107.FieldType = ItemType.Text;
     itemGrid107.FontColor = Color.Red;
     itemGrid107.FontStyle = FontStyle.Regular;
     itemGrid107.Height = 1f;
     itemGrid107.IsBlink = 0;
     itemGrid107.Name = "tbForcePrevious";
     itemGrid107.Text = "";
     itemGrid107.ValueFormat = FormatType.Text;
     itemGrid107.Visible = true;
     itemGrid107.Width = 35;
     itemGrid107.X = 30;
     itemGrid107.Y = 16f;
     itemGrid108.AdjustFontSize = 0f;
     itemGrid108.Alignment = StringAlignment.Near;
     itemGrid108.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid108.Changed = false;
     itemGrid108.FieldType = ItemType.Text;
     itemGrid108.FontColor = Color.Red;
     itemGrid108.FontStyle = FontStyle.Regular;
     itemGrid108.Height = 1f;
     itemGrid108.IsBlink = 0;
     itemGrid108.Name = "tbForceCurrent";
     itemGrid108.Text = "";
     itemGrid108.ValueFormat = FormatType.Text;
     itemGrid108.Visible = true;
     itemGrid108.Width = 35;
     itemGrid108.X = 65;
     itemGrid108.Y = 16f;
     itemGrid109.AdjustFontSize = 0f;
     itemGrid109.Alignment = StringAlignment.Near;
     itemGrid109.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid109.Changed = false;
     itemGrid109.FieldType = ItemType.Label2;
     itemGrid109.FontColor = Color.WhiteSmoke;
     itemGrid109.FontStyle = FontStyle.Regular;
     itemGrid109.Height = 1f;
     itemGrid109.IsBlink = 0;
     itemGrid109.Name = "lbMarginRate";
     itemGrid109.Text = "Margin Rate";
     itemGrid109.ValueFormat = FormatType.Text;
     itemGrid109.Visible = true;
     itemGrid109.Width = 11;
     itemGrid109.X = 0;
     itemGrid109.Y = 0f;
     itemGrid110.AdjustFontSize = 0f;
     itemGrid110.Alignment = StringAlignment.Near;
     itemGrid110.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid110.Changed = false;
     itemGrid110.FieldType = ItemType.Text;
     itemGrid110.FontColor = Color.Yellow;
     itemGrid110.FontStyle = FontStyle.Regular;
     itemGrid110.Height = 1f;
     itemGrid110.IsBlink = 0;
     itemGrid110.Name = "tbMarginRate";
     itemGrid110.Text = "";
     itemGrid110.ValueFormat = FormatType.Volume;
     itemGrid110.Visible = true;
     itemGrid110.Width = 14;
     itemGrid110.X = 11;
     itemGrid110.Y = 0f;
     itemGrid111.AdjustFontSize = 0f;
     itemGrid111.Alignment = StringAlignment.Near;
     itemGrid111.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid111.Changed = false;
     itemGrid111.FieldType = ItemType.Label2;
     itemGrid111.FontColor = Color.WhiteSmoke;
     itemGrid111.FontStyle = FontStyle.Regular;
     itemGrid111.Height = 1f;
     itemGrid111.IsBlink = 0;
     itemGrid111.Name = "lbLoanLimit";
     itemGrid111.Text = "Loan Limit";
     itemGrid111.ValueFormat = FormatType.Text;
     itemGrid111.Visible = true;
     itemGrid111.Width = 11;
     itemGrid111.X = 25;
     itemGrid111.Y = 0f;
     itemGrid112.AdjustFontSize = 0f;
     itemGrid112.Alignment = StringAlignment.Near;
     itemGrid112.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid112.Changed = false;
     itemGrid112.FieldType = ItemType.Text;
     itemGrid112.FontColor = Color.Yellow;
     itemGrid112.FontStyle = FontStyle.Regular;
     itemGrid112.Height = 1f;
     itemGrid112.IsBlink = 0;
     itemGrid112.Name = "tbLoanLimit";
     itemGrid112.Text = "";
     itemGrid112.ValueFormat = FormatType.Volume;
     itemGrid112.Visible = true;
     itemGrid112.Width = 14;
     itemGrid112.X = 36;
     itemGrid112.Y = 0f;
     this.intzaCB.Items.Add(itemGrid61);
     this.intzaCB.Items.Add(itemGrid62);
     this.intzaCB.Items.Add(itemGrid63);
     this.intzaCB.Items.Add(itemGrid64);
     this.intzaCB.Items.Add(itemGrid65);
     this.intzaCB.Items.Add(itemGrid66);
     this.intzaCB.Items.Add(itemGrid67);
     this.intzaCB.Items.Add(itemGrid68);
     this.intzaCB.Items.Add(itemGrid69);
     this.intzaCB.Items.Add(itemGrid70);
     this.intzaCB.Items.Add(itemGrid71);
     this.intzaCB.Items.Add(itemGrid72);
     this.intzaCB.Items.Add(itemGrid73);
     this.intzaCB.Items.Add(itemGrid74);
     this.intzaCB.Items.Add(itemGrid75);
     this.intzaCB.Items.Add(itemGrid76);
     this.intzaCB.Items.Add(itemGrid77);
     this.intzaCB.Items.Add(itemGrid78);
     this.intzaCB.Items.Add(itemGrid79);
     this.intzaCB.Items.Add(itemGrid80);
     this.intzaCB.Items.Add(itemGrid81);
     this.intzaCB.Items.Add(itemGrid82);
     this.intzaCB.Items.Add(itemGrid83);
     this.intzaCB.Items.Add(itemGrid84);
     this.intzaCB.Items.Add(itemGrid85);
     this.intzaCB.Items.Add(itemGrid86);
     this.intzaCB.Items.Add(itemGrid87);
     this.intzaCB.Items.Add(itemGrid88);
     this.intzaCB.Items.Add(itemGrid89);
     this.intzaCB.Items.Add(itemGrid90);
     this.intzaCB.Items.Add(itemGrid91);
     this.intzaCB.Items.Add(itemGrid92);
     this.intzaCB.Items.Add(itemGrid93);
     this.intzaCB.Items.Add(itemGrid94);
     this.intzaCB.Items.Add(itemGrid95);
     this.intzaCB.Items.Add(itemGrid96);
     this.intzaCB.Items.Add(itemGrid97);
     this.intzaCB.Items.Add(itemGrid98);
     this.intzaCB.Items.Add(itemGrid99);
     this.intzaCB.Items.Add(itemGrid100);
     this.intzaCB.Items.Add(itemGrid101);
     this.intzaCB.Items.Add(itemGrid102);
     this.intzaCB.Items.Add(itemGrid103);
     this.intzaCB.Items.Add(itemGrid104);
     this.intzaCB.Items.Add(itemGrid105);
     this.intzaCB.Items.Add(itemGrid106);
     this.intzaCB.Items.Add(itemGrid107);
     this.intzaCB.Items.Add(itemGrid108);
     this.intzaCB.Items.Add(itemGrid109);
     this.intzaCB.Items.Add(itemGrid110);
     this.intzaCB.Items.Add(itemGrid111);
     this.intzaCB.Items.Add(itemGrid112);
     this.intzaCB.LineColor = Color.Red;
     this.intzaCB.Location = new Point(350, 31);
     this.intzaCB.Margin = new Padding(1);
     this.intzaCB.Name = "intzaCB";
     this.intzaCB.Size = new Size(147, 131);
     this.intzaCB.TabIndex = 19;
     this.intzaCB.TabStop = false;
     this.intzaCB.KeyPress += new KeyPressEventHandler(this.intzaListView1_KeyPress);
     this.intzaInfoHeader.AllowDrop = true;
     this.intzaInfoHeader.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaInfoHeader.CanDrag = false;
     this.intzaInfoHeader.IsAutoRepaint = true;
     this.intzaInfoHeader.IsDroped = false;
     itemGrid113.AdjustFontSize = -1f;
     itemGrid113.Alignment = StringAlignment.Near;
     itemGrid113.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid113.Changed = false;
     itemGrid113.FieldType = ItemType.Label2;
     itemGrid113.FontColor = Color.LightGray;
     itemGrid113.FontStyle = FontStyle.Regular;
     itemGrid113.Height = 1f;
     itemGrid113.IsBlink = 0;
     itemGrid113.Name = "lbCustName";
     itemGrid113.Text = "Name";
     itemGrid113.ValueFormat = FormatType.Text;
     itemGrid113.Visible = true;
     itemGrid113.Width = 11;
     itemGrid113.X = 0;
     itemGrid113.Y = 0f;
     itemGrid114.AdjustFontSize = 0f;
     itemGrid114.Alignment = StringAlignment.Near;
     itemGrid114.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid114.Changed = false;
     itemGrid114.FieldType = ItemType.Text;
     itemGrid114.FontColor = Color.Yellow;
     itemGrid114.FontStyle = FontStyle.Regular;
     itemGrid114.Height = 1f;
     itemGrid114.IsBlink = 0;
     itemGrid114.Name = "tbCustName";
     itemGrid114.Text = "";
     itemGrid114.ValueFormat = FormatType.Text;
     itemGrid114.Visible = true;
     itemGrid114.Width = 35;
     itemGrid114.X = 11;
     itemGrid114.Y = 0f;
     itemGrid115.AdjustFontSize = -1f;
     itemGrid115.Alignment = StringAlignment.Near;
     itemGrid115.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid115.Changed = false;
     itemGrid115.FieldType = ItemType.Label2;
     itemGrid115.FontColor = Color.LightGray;
     itemGrid115.FontStyle = FontStyle.Regular;
     itemGrid115.Height = 1f;
     itemGrid115.IsBlink = 0;
     itemGrid115.Name = "lbTrader";
     itemGrid115.Text = "Trader";
     itemGrid115.ValueFormat = FormatType.Text;
     itemGrid115.Visible = true;
     itemGrid115.Width = 8;
     itemGrid115.X = 46;
     itemGrid115.Y = 0f;
     itemGrid116.AdjustFontSize = 0f;
     itemGrid116.Alignment = StringAlignment.Near;
     itemGrid116.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid116.Changed = false;
     itemGrid116.FieldType = ItemType.Text;
     itemGrid116.FontColor = Color.Yellow;
     itemGrid116.FontStyle = FontStyle.Regular;
     itemGrid116.Height = 1f;
     itemGrid116.IsBlink = 0;
     itemGrid116.Name = "tbTrader";
     itemGrid116.Text = "";
     itemGrid116.ValueFormat = FormatType.Text;
     itemGrid116.Visible = true;
     itemGrid116.Width = 21;
     itemGrid116.X = 54;
     itemGrid116.Y = 0f;
     itemGrid117.AdjustFontSize = -1f;
     itemGrid117.Alignment = StringAlignment.Near;
     itemGrid117.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid117.Changed = false;
     itemGrid117.FieldType = ItemType.Label2;
     itemGrid117.FontColor = Color.LightGray;
     itemGrid117.FontStyle = FontStyle.Regular;
     itemGrid117.Height = 1f;
     itemGrid117.IsBlink = 0;
     itemGrid117.Name = "lbCustomerFlag";
     itemGrid117.Text = "Cust Flag";
     itemGrid117.ValueFormat = FormatType.Text;
     itemGrid117.Visible = true;
     itemGrid117.Width = 13;
     itemGrid117.X = 75;
     itemGrid117.Y = 0f;
     itemGrid118.AdjustFontSize = 0f;
     itemGrid118.Alignment = StringAlignment.Near;
     itemGrid118.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid118.Changed = false;
     itemGrid118.FieldType = ItemType.Text;
     itemGrid118.FontColor = Color.Yellow;
     itemGrid118.FontStyle = FontStyle.Regular;
     itemGrid118.Height = 1f;
     itemGrid118.IsBlink = 0;
     itemGrid118.Name = "tbCustomerFlag";
     itemGrid118.Text = "";
     itemGrid118.ValueFormat = FormatType.Text;
     itemGrid118.Visible = true;
     itemGrid118.Width = 12;
     itemGrid118.X = 88;
     itemGrid118.Y = 0f;
     itemGrid119.AdjustFontSize = -1f;
     itemGrid119.Alignment = StringAlignment.Near;
     itemGrid119.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid119.Changed = false;
     itemGrid119.FieldType = ItemType.Label2;
     itemGrid119.FontColor = Color.LightGray;
     itemGrid119.FontStyle = FontStyle.Regular;
     itemGrid119.Height = 1f;
     itemGrid119.IsBlink = 0;
     itemGrid119.Name = "lbBuyLimit";
     itemGrid119.Text = "Buy Limit";
     itemGrid119.ValueFormat = FormatType.Text;
     itemGrid119.Visible = true;
     itemGrid119.Width = 11;
     itemGrid119.X = 0;
     itemGrid119.Y = 2f;
     itemGrid120.AdjustFontSize = 0f;
     itemGrid120.Alignment = StringAlignment.Near;
     itemGrid120.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid120.Changed = false;
     itemGrid120.FieldType = ItemType.Text;
     itemGrid120.FontColor = Color.Yellow;
     itemGrid120.FontStyle = FontStyle.Regular;
     itemGrid120.Height = 1f;
     itemGrid120.IsBlink = 0;
     itemGrid120.Name = "tbBuyLimit";
     itemGrid120.Text = "";
     itemGrid120.ValueFormat = FormatType.Text;
     itemGrid120.Visible = true;
     itemGrid120.Width = 14;
     itemGrid120.X = 11;
     itemGrid120.Y = 2f;
     itemGrid121.AdjustFontSize = -1f;
     itemGrid121.Alignment = StringAlignment.Near;
     itemGrid121.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid121.Changed = false;
     itemGrid121.FieldType = ItemType.Label2;
     itemGrid121.FontColor = Color.LightGray;
     itemGrid121.FontStyle = FontStyle.Regular;
     itemGrid121.Height = 1f;
     itemGrid121.IsBlink = 0;
     itemGrid121.Name = "lbCustomerType";
     itemGrid121.Text = "Cust Type";
     itemGrid121.ValueFormat = FormatType.Text;
     itemGrid121.Visible = true;
     itemGrid121.Width = 11;
     itemGrid121.X = 0;
     itemGrid121.Y = 1f;
     itemGrid122.AdjustFontSize = 0f;
     itemGrid122.Alignment = StringAlignment.Near;
     itemGrid122.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid122.Changed = false;
     itemGrid122.FieldType = ItemType.Text;
     itemGrid122.FontColor = Color.Yellow;
     itemGrid122.FontStyle = FontStyle.Regular;
     itemGrid122.Height = 1f;
     itemGrid122.IsBlink = 0;
     itemGrid122.Name = "tbCustomerType";
     itemGrid122.Text = "";
     itemGrid122.ValueFormat = FormatType.Text;
     itemGrid122.Visible = true;
     itemGrid122.Width = 14;
     itemGrid122.X = 11;
     itemGrid122.Y = 1f;
     itemGrid123.AdjustFontSize = -1f;
     itemGrid123.Alignment = StringAlignment.Near;
     itemGrid123.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid123.Changed = false;
     itemGrid123.FieldType = ItemType.Label2;
     itemGrid123.FontColor = Color.LightGray;
     itemGrid123.FontStyle = FontStyle.Regular;
     itemGrid123.Height = 1f;
     itemGrid123.IsBlink = 0;
     itemGrid123.Name = "lbAccountType";
     itemGrid123.Text = "Acc Type";
     itemGrid123.ValueFormat = FormatType.Text;
     itemGrid123.Visible = true;
     itemGrid123.Width = 14;
     itemGrid123.X = 25;
     itemGrid123.Y = 1f;
     itemGrid124.AdjustFontSize = -1f;
     itemGrid124.Alignment = StringAlignment.Near;
     itemGrid124.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid124.Changed = false;
     itemGrid124.FieldType = ItemType.Text;
     itemGrid124.FontColor = Color.Yellow;
     itemGrid124.FontStyle = FontStyle.Regular;
     itemGrid124.Height = 1f;
     itemGrid124.IsBlink = 0;
     itemGrid124.Name = "tbAccountType";
     itemGrid124.Text = "";
     itemGrid124.ValueFormat = FormatType.Text;
     itemGrid124.Visible = true;
     itemGrid124.Width = 14;
     itemGrid124.X = 39;
     itemGrid124.Y = 1f;
     itemGrid125.AdjustFontSize = -1f;
     itemGrid125.Alignment = StringAlignment.Near;
     itemGrid125.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid125.Changed = false;
     itemGrid125.FieldType = ItemType.Label2;
     itemGrid125.FontColor = Color.LightGray;
     itemGrid125.FontStyle = FontStyle.Regular;
     itemGrid125.Height = 1f;
     itemGrid125.IsBlink = 0;
     itemGrid125.Name = "lbCreditType";
     itemGrid125.Text = "Credit Type";
     itemGrid125.ValueFormat = FormatType.Text;
     itemGrid125.Visible = true;
     itemGrid125.Width = 10;
     itemGrid125.X = 53;
     itemGrid125.Y = 1f;
     itemGrid126.AdjustFontSize = -1f;
     itemGrid126.Alignment = StringAlignment.Near;
     itemGrid126.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid126.Changed = false;
     itemGrid126.FieldType = ItemType.Text;
     itemGrid126.FontColor = Color.Yellow;
     itemGrid126.FontStyle = FontStyle.Regular;
     itemGrid126.Height = 1f;
     itemGrid126.IsBlink = 0;
     itemGrid126.Name = "tbCreditType";
     itemGrid126.Text = "";
     itemGrid126.ValueFormat = FormatType.Text;
     itemGrid126.Visible = true;
     itemGrid126.Width = 12;
     itemGrid126.X = 63;
     itemGrid126.Y = 1f;
     itemGrid127.AdjustFontSize = -1f;
     itemGrid127.Alignment = StringAlignment.Near;
     itemGrid127.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid127.Changed = false;
     itemGrid127.FieldType = ItemType.Label2;
     itemGrid127.FontColor = Color.LightGray;
     itemGrid127.FontStyle = FontStyle.Regular;
     itemGrid127.Height = 1f;
     itemGrid127.IsBlink = 0;
     itemGrid127.Name = "lbCantOverCredit";
     itemGrid127.Text = "Can't Over Credit";
     itemGrid127.ValueFormat = FormatType.Text;
     itemGrid127.Visible = true;
     itemGrid127.Width = 13;
     itemGrid127.X = 75;
     itemGrid127.Y = 1f;
     itemGrid128.AdjustFontSize = 0f;
     itemGrid128.Alignment = StringAlignment.Near;
     itemGrid128.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid128.Changed = false;
     itemGrid128.FieldType = ItemType.Text;
     itemGrid128.FontColor = Color.Yellow;
     itemGrid128.FontStyle = FontStyle.Regular;
     itemGrid128.Height = 1f;
     itemGrid128.IsBlink = 0;
     itemGrid128.Name = "tbCantOverCredit";
     itemGrid128.Text = "";
     itemGrid128.ValueFormat = FormatType.Text;
     itemGrid128.Visible = true;
     itemGrid128.Width = 12;
     itemGrid128.X = 88;
     itemGrid128.Y = 1f;
     itemGrid129.AdjustFontSize = -1f;
     itemGrid129.Alignment = StringAlignment.Near;
     itemGrid129.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid129.Changed = false;
     itemGrid129.FieldType = ItemType.Label2;
     itemGrid129.FontColor = Color.LightGray;
     itemGrid129.FontStyle = FontStyle.Regular;
     itemGrid129.Height = 1f;
     itemGrid129.IsBlink = 0;
     itemGrid129.Name = "lbHighLimit";
     itemGrid129.Text = "High Limit";
     itemGrid129.ValueFormat = FormatType.Text;
     itemGrid129.Visible = true;
     itemGrid129.Width = 14;
     itemGrid129.X = 25;
     itemGrid129.Y = 2f;
     itemGrid130.AdjustFontSize = 0f;
     itemGrid130.Alignment = StringAlignment.Near;
     itemGrid130.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid130.Changed = false;
     itemGrid130.FieldType = ItemType.Text;
     itemGrid130.FontColor = Color.Yellow;
     itemGrid130.FontStyle = FontStyle.Regular;
     itemGrid130.Height = 1f;
     itemGrid130.IsBlink = 0;
     itemGrid130.Name = "tbHighLimit";
     itemGrid130.Text = "";
     itemGrid130.ValueFormat = FormatType.Text;
     itemGrid130.Visible = true;
     itemGrid130.Width = 14;
     itemGrid130.X = 39;
     itemGrid130.Y = 2f;
     itemGrid131.AdjustFontSize = -1f;
     itemGrid131.Alignment = StringAlignment.Near;
     itemGrid131.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid131.Changed = false;
     itemGrid131.FieldType = ItemType.Label2;
     itemGrid131.FontColor = Color.LightGray;
     itemGrid131.FontStyle = FontStyle.Regular;
     itemGrid131.Height = 1f;
     itemGrid131.IsBlink = 0;
     itemGrid131.Name = "lbCreditLine";
     itemGrid131.Text = "Credit Line";
     itemGrid131.ValueFormat = FormatType.Text;
     itemGrid131.Visible = true;
     itemGrid131.Width = 10;
     itemGrid131.X = 53;
     itemGrid131.Y = 2f;
     itemGrid132.AdjustFontSize = 0f;
     itemGrid132.Alignment = StringAlignment.Near;
     itemGrid132.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid132.Changed = false;
     itemGrid132.FieldType = ItemType.Text;
     itemGrid132.FontColor = Color.Yellow;
     itemGrid132.FontStyle = FontStyle.Regular;
     itemGrid132.Height = 1f;
     itemGrid132.IsBlink = 0;
     itemGrid132.Name = "tbCreditLine";
     itemGrid132.Text = "";
     itemGrid132.ValueFormat = FormatType.Text;
     itemGrid132.Visible = true;
     itemGrid132.Width = 12;
     itemGrid132.X = 63;
     itemGrid132.Y = 2f;
     itemGrid133.AdjustFontSize = -1f;
     itemGrid133.Alignment = StringAlignment.Near;
     itemGrid133.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid133.Changed = false;
     itemGrid133.FieldType = ItemType.Label2;
     itemGrid133.FontColor = Color.LightGray;
     itemGrid133.FontStyle = FontStyle.Regular;
     itemGrid133.Height = 1f;
     itemGrid133.IsBlink = 0;
     itemGrid133.Name = "lbEquity";
     itemGrid133.Text = "Equity";
     itemGrid133.ValueFormat = FormatType.Text;
     itemGrid133.Visible = true;
     itemGrid133.Width = 13;
     itemGrid133.X = 75;
     itemGrid133.Y = 2f;
     itemGrid134.AdjustFontSize = 0f;
     itemGrid134.Alignment = StringAlignment.Near;
     itemGrid134.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid134.Changed = false;
     itemGrid134.FieldType = ItemType.Text;
     itemGrid134.FontColor = Color.Yellow;
     itemGrid134.FontStyle = FontStyle.Regular;
     itemGrid134.Height = 1f;
     itemGrid134.IsBlink = 0;
     itemGrid134.Name = "tbEquity";
     itemGrid134.Text = "";
     itemGrid134.ValueFormat = FormatType.Text;
     itemGrid134.Visible = true;
     itemGrid134.Width = 12;
     itemGrid134.X = 88;
     itemGrid134.Y = 2f;
     this.intzaInfoHeader.Items.Add(itemGrid113);
     this.intzaInfoHeader.Items.Add(itemGrid114);
     this.intzaInfoHeader.Items.Add(itemGrid115);
     this.intzaInfoHeader.Items.Add(itemGrid116);
     this.intzaInfoHeader.Items.Add(itemGrid117);
     this.intzaInfoHeader.Items.Add(itemGrid118);
     this.intzaInfoHeader.Items.Add(itemGrid119);
     this.intzaInfoHeader.Items.Add(itemGrid120);
     this.intzaInfoHeader.Items.Add(itemGrid121);
     this.intzaInfoHeader.Items.Add(itemGrid122);
     this.intzaInfoHeader.Items.Add(itemGrid123);
     this.intzaInfoHeader.Items.Add(itemGrid124);
     this.intzaInfoHeader.Items.Add(itemGrid125);
     this.intzaInfoHeader.Items.Add(itemGrid126);
     this.intzaInfoHeader.Items.Add(itemGrid127);
     this.intzaInfoHeader.Items.Add(itemGrid128);
     this.intzaInfoHeader.Items.Add(itemGrid129);
     this.intzaInfoHeader.Items.Add(itemGrid130);
     this.intzaInfoHeader.Items.Add(itemGrid131);
     this.intzaInfoHeader.Items.Add(itemGrid132);
     this.intzaInfoHeader.Items.Add(itemGrid133);
     this.intzaInfoHeader.Items.Add(itemGrid134);
     this.intzaInfoHeader.LineColor = Color.Red;
     this.intzaInfoHeader.Location = new Point(10, 31);
     this.intzaInfoHeader.Margin = new Padding(1);
     this.intzaInfoHeader.Name = "intzaInfoHeader";
     this.intzaInfoHeader.Size = new Size(243, 58);
     this.intzaInfoHeader.TabIndex = 70;
     this.intzaInfoHeader.TabStop = false;
     this.intzaSumReport.AllowDrop = true;
     this.intzaSumReport.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaSumReport.CanBlink = true;
     this.intzaSumReport.CanDrag = false;
     this.intzaSumReport.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Far;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.White;
     columnItem.MyStyle = FontStyle.Bold;
     columnItem.Name = "last";
     columnItem.Text = "Last";
     columnItem.ValueFormat = FormatType.Text;
     columnItem.Visible = true;
     columnItem.Width = 53;
     columnItem2.Alignment = StringAlignment.Far;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "cost";
     columnItem2.Text = "Cost";
     columnItem2.ValueFormat = FormatType.Text;
     columnItem2.Visible = true;
     columnItem2.Width = 10;
     columnItem3.Alignment = StringAlignment.Far;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "curr_value";
     columnItem3.Text = "Curr Val";
     columnItem3.ValueFormat = FormatType.Text;
     columnItem3.Visible = true;
     columnItem3.Width = 10;
     columnItem4.Alignment = StringAlignment.Far;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Bold;
     columnItem4.Name = "unreal_pct";
     columnItem4.Text = "%Unrl";
     columnItem4.ValueFormat = FormatType.Text;
     columnItem4.Visible = true;
     columnItem4.Width = 7;
     columnItem5.Alignment = StringAlignment.Far;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.LightGray;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "unreal";
     columnItem5.Text = "Unrl P/L";
     columnItem5.ValueFormat = FormatType.Text;
     columnItem5.Visible = true;
     columnItem5.Width = 10;
     columnItem6.Alignment = StringAlignment.Far;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.ColumnAlignment = StringAlignment.Center;
     columnItem6.FontColor = Color.LightGray;
     columnItem6.MyStyle = FontStyle.Regular;
     columnItem6.Name = "realize";
     columnItem6.Text = "Real P/L";
     columnItem6.ValueFormat = FormatType.Text;
     columnItem6.Visible = true;
     columnItem6.Width = 10;
     this.intzaSumReport.Columns.Add(columnItem);
     this.intzaSumReport.Columns.Add(columnItem2);
     this.intzaSumReport.Columns.Add(columnItem3);
     this.intzaSumReport.Columns.Add(columnItem4);
     this.intzaSumReport.Columns.Add(columnItem5);
     this.intzaSumReport.Columns.Add(columnItem6);
     this.intzaSumReport.CurrentScroll = 0;
     this.intzaSumReport.FocusItemIndex = -1;
     this.intzaSumReport.ForeColor = Color.Black;
     this.intzaSumReport.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaSumReport.HeaderPctHeight = 100f;
     this.intzaSumReport.IsAutoRepaint = true;
     this.intzaSumReport.IsDrawFullRow = false;
     this.intzaSumReport.IsDrawGrid = true;
     this.intzaSumReport.IsDrawHeader = false;
     this.intzaSumReport.IsScrollable = true;
     this.intzaSumReport.Location = new Point(8, 281);
     this.intzaSumReport.MainColumn = "";
     this.intzaSumReport.Name = "intzaSumReport";
     this.intzaSumReport.Rows = 1;
     this.intzaSumReport.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaSumReport.RowSelectType = 0;
     this.intzaSumReport.RowsVisible = 1;
     this.intzaSumReport.Size = new Size(829, 25);
     this.intzaSumReport.SortColumnName = "";
     this.intzaSumReport.SortType = SortType.Desc;
     this.intzaSumReport.TabIndex = 69;
     this.intzaReport.AllowDrop = true;
     this.intzaReport.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaReport.CanBlink = true;
     this.intzaReport.CanDrag = false;
     this.intzaReport.CanGetMouseMove = false;
     columnItem7.Alignment = StringAlignment.Near;
     columnItem7.BackColor = Color.FromArgb(64, 64, 64);
     columnItem7.ColumnAlignment = StringAlignment.Center;
     columnItem7.FontColor = Color.LightGray;
     columnItem7.MyStyle = FontStyle.Regular;
     columnItem7.Name = "stock";
     columnItem7.Text = "Symbol";
     columnItem7.ValueFormat = FormatType.Text;
     columnItem7.Visible = true;
     columnItem7.Width = 11;
     columnItem8.Alignment = StringAlignment.Center;
     columnItem8.BackColor = Color.FromArgb(64, 64, 64);
     columnItem8.ColumnAlignment = StringAlignment.Center;
     columnItem8.FontColor = Color.LightGray;
     columnItem8.MyStyle = FontStyle.Regular;
     columnItem8.Name = "ttf";
     columnItem8.Text = "TTF";
     columnItem8.ValueFormat = FormatType.Text;
     columnItem8.Visible = true;
     columnItem8.Width = 4;
     columnItem9.Alignment = StringAlignment.Far;
     columnItem9.BackColor = Color.FromArgb(64, 64, 64);
     columnItem9.ColumnAlignment = StringAlignment.Center;
     columnItem9.FontColor = Color.LightGray;
     columnItem9.MyStyle = FontStyle.Regular;
     columnItem9.Name = "onhand";
     columnItem9.Text = "OnHand";
     columnItem9.ValueFormat = FormatType.Text;
     columnItem9.Visible = true;
     columnItem9.Width = 10;
     columnItem10.Alignment = StringAlignment.Far;
     columnItem10.BackColor = Color.FromArgb(64, 64, 64);
     columnItem10.ColumnAlignment = StringAlignment.Center;
     columnItem10.FontColor = Color.LightGray;
     columnItem10.MyStyle = FontStyle.Regular;
     columnItem10.Name = "sellable";
     columnItem10.Text = "Sellable";
     columnItem10.ValueFormat = FormatType.Text;
     columnItem10.Visible = true;
     columnItem10.Width = 10;
     columnItem11.Alignment = StringAlignment.Far;
     columnItem11.BackColor = Color.FromArgb(64, 64, 64);
     columnItem11.ColumnAlignment = StringAlignment.Center;
     columnItem11.FontColor = Color.LightGray;
     columnItem11.MyStyle = FontStyle.Regular;
     columnItem11.Name = "avg";
     columnItem11.Text = "Avg";
     columnItem11.ValueFormat = FormatType.Text;
     columnItem11.Visible = true;
     columnItem11.Width = 7;
     columnItem12.Alignment = StringAlignment.Far;
     columnItem12.BackColor = Color.FromArgb(64, 64, 64);
     columnItem12.ColumnAlignment = StringAlignment.Center;
     columnItem12.FontColor = Color.LightGray;
     columnItem12.MyStyle = FontStyle.Regular;
     columnItem12.Name = "last";
     columnItem12.Text = "Last";
     columnItem12.ValueFormat = FormatType.Text;
     columnItem12.Visible = true;
     columnItem12.Width = 7;
     columnItem13.Alignment = StringAlignment.Far;
     columnItem13.BackColor = Color.FromArgb(64, 64, 64);
     columnItem13.ColumnAlignment = StringAlignment.Center;
     columnItem13.FontColor = Color.LightGray;
     columnItem13.MyStyle = FontStyle.Regular;
     columnItem13.Name = "cost";
     columnItem13.Text = "Cost";
     columnItem13.ValueFormat = FormatType.Text;
     columnItem13.Visible = true;
     columnItem13.Width = 10;
     columnItem14.Alignment = StringAlignment.Far;
     columnItem14.BackColor = Color.FromArgb(64, 64, 64);
     columnItem14.ColumnAlignment = StringAlignment.Center;
     columnItem14.FontColor = Color.LightGray;
     columnItem14.MyStyle = FontStyle.Regular;
     columnItem14.Name = "curr_value";
     columnItem14.Text = "Curr Val";
     columnItem14.ValueFormat = FormatType.Text;
     columnItem14.Visible = true;
     columnItem14.Width = 10;
     columnItem15.Alignment = StringAlignment.Far;
     columnItem15.BackColor = Color.FromArgb(64, 64, 64);
     columnItem15.ColumnAlignment = StringAlignment.Center;
     columnItem15.FontColor = Color.LightGray;
     columnItem15.MyStyle = FontStyle.Regular;
     columnItem15.Name = "unreal_pct";
     columnItem15.Text = "%Unrl";
     columnItem15.ValueFormat = FormatType.Text;
     columnItem15.Visible = true;
     columnItem15.Width = 7;
     columnItem16.Alignment = StringAlignment.Far;
     columnItem16.BackColor = Color.FromArgb(64, 64, 64);
     columnItem16.ColumnAlignment = StringAlignment.Center;
     columnItem16.FontColor = Color.LightGray;
     columnItem16.MyStyle = FontStyle.Regular;
     columnItem16.Name = "unreal";
     columnItem16.Text = "Unrl P/L";
     columnItem16.ValueFormat = FormatType.Text;
     columnItem16.Visible = true;
     columnItem16.Width = 10;
     columnItem17.Alignment = StringAlignment.Far;
     columnItem17.BackColor = Color.FromArgb(64, 64, 64);
     columnItem17.ColumnAlignment = StringAlignment.Center;
     columnItem17.FontColor = Color.LightGray;
     columnItem17.MyStyle = FontStyle.Regular;
     columnItem17.Name = "realize";
     columnItem17.Text = "Real P/L";
     columnItem17.ValueFormat = FormatType.Text;
     columnItem17.Visible = true;
     columnItem17.Width = 10;
     this.intzaReport.Columns.Add(columnItem7);
     this.intzaReport.Columns.Add(columnItem8);
     this.intzaReport.Columns.Add(columnItem9);
     this.intzaReport.Columns.Add(columnItem10);
     this.intzaReport.Columns.Add(columnItem11);
     this.intzaReport.Columns.Add(columnItem12);
     this.intzaReport.Columns.Add(columnItem13);
     this.intzaReport.Columns.Add(columnItem14);
     this.intzaReport.Columns.Add(columnItem15);
     this.intzaReport.Columns.Add(columnItem16);
     this.intzaReport.Columns.Add(columnItem17);
     this.intzaReport.CurrentScroll = 0;
     this.intzaReport.FocusItemIndex = -1;
     this.intzaReport.ForeColor = Color.Black;
     this.intzaReport.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaReport.HeaderPctHeight = 80f;
     this.intzaReport.IsAutoRepaint = true;
     this.intzaReport.IsDrawFullRow = false;
     this.intzaReport.IsDrawGrid = true;
     this.intzaReport.IsDrawHeader = true;
     this.intzaReport.IsScrollable = true;
     this.intzaReport.Location = new Point(8, 223);
     this.intzaReport.MainColumn = "";
     this.intzaReport.Name = "intzaReport";
     this.intzaReport.Rows = 0;
     this.intzaReport.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaReport.RowSelectType = 1;
     this.intzaReport.RowsVisible = 0;
     this.intzaReport.Size = new Size(829, 52);
     this.intzaReport.SortColumnName = "";
     this.intzaReport.SortType = SortType.Desc;
     this.intzaReport.TabIndex = 68;
     this.intzaReport.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaReport_TableMouseClick);
     this.panelTFEXPort.BackColor = Color.FromArgb(20, 20, 20);
     this.panelTFEXPort.Controls.Add(this.pnlTradeJ);
     this.panelTFEXPort.Controls.Add(this.sortGridTfexSumm);
     this.panelTFEXPort.Controls.Add(this.sortGridTfex);
     this.panelTFEXPort.Controls.Add(this.intzaCustBottTfex);
     this.panelTFEXPort.Controls.Add(this.intzaCustHeadTfex);
     this.panelTFEXPort.Controls.Add(this.tStripMainT);
     this.panelTFEXPort.Location = new Point(4, 331);
     this.panelTFEXPort.Name = "panelTFEXPort";
     this.panelTFEXPort.Size = new Size(852, 362);
     this.panelTFEXPort.TabIndex = 72;
     this.panelTFEXPort.Visible = false;
     this.pnlTradeJ.Controls.Add(this.intzaTradeOverview);
     this.pnlTradeJ.Controls.Add(this.tStripTJ);
     this.pnlTradeJ.Controls.Add(this.cbText);
     this.pnlTradeJ.Controls.Add(this.sortGrid1);
     this.pnlTradeJ.Location = new Point(0, 207);
     this.pnlTradeJ.Name = "pnlTradeJ";
     this.pnlTradeJ.Size = new Size(849, 152);
     this.pnlTradeJ.TabIndex = 29;
     this.pnlTradeJ.Visible = false;
     this.intzaTradeOverview.AllowDrop = true;
     this.intzaTradeOverview.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaTradeOverview.CanDrag = false;
     this.intzaTradeOverview.IsAutoRepaint = true;
     this.intzaTradeOverview.IsDroped = false;
     itemGrid135.AdjustFontSize = 0f;
     itemGrid135.Alignment = StringAlignment.Center;
     itemGrid135.BackColor = Color.DimGray;
     itemGrid135.Changed = true;
     itemGrid135.FieldType = ItemType.TextGradient;
     itemGrid135.FontColor = Color.White;
     itemGrid135.FontStyle = FontStyle.Underline;
     itemGrid135.Height = 1f;
     itemGrid135.IsBlink = 0;
     itemGrid135.Name = "lbTJOverviewHeader";
     itemGrid135.Text = "Trade Journal Overview";
     itemGrid135.ValueFormat = FormatType.Text;
     itemGrid135.Visible = true;
     itemGrid135.Width = 100;
     itemGrid135.X = 0;
     itemGrid135.Y = 0f;
     itemGrid136.AdjustFontSize = 0f;
     itemGrid136.Alignment = StringAlignment.Near;
     itemGrid136.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid136.Changed = true;
     itemGrid136.FieldType = ItemType.Label2;
     itemGrid136.FontColor = Color.White;
     itemGrid136.FontStyle = FontStyle.Regular;
     itemGrid136.Height = 1f;
     itemGrid136.IsBlink = 0;
     itemGrid136.Name = "lbEquityInvest";
     itemGrid136.Text = "Equity Invested ";
     itemGrid136.ValueFormat = FormatType.Text;
     itemGrid136.Visible = true;
     itemGrid136.Width = 12;
     itemGrid136.X = 0;
     itemGrid136.Y = 1f;
     itemGrid137.AdjustFontSize = 0f;
     itemGrid137.Alignment = StringAlignment.Far;
     itemGrid137.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid137.Changed = true;
     itemGrid137.FieldType = ItemType.Text;
     itemGrid137.FontColor = Color.Yellow;
     itemGrid137.FontStyle = FontStyle.Regular;
     itemGrid137.Height = 1f;
     itemGrid137.IsBlink = 0;
     itemGrid137.Name = "tbEquityInvest";
     itemGrid137.Text = "";
     itemGrid137.ValueFormat = FormatType.Text;
     itemGrid137.Visible = true;
     itemGrid137.Width = 10;
     itemGrid137.X = 12;
     itemGrid137.Y = 1f;
     itemGrid138.AdjustFontSize = 0f;
     itemGrid138.Alignment = StringAlignment.Near;
     itemGrid138.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid138.Changed = true;
     itemGrid138.FieldType = ItemType.Label2;
     itemGrid138.FontColor = Color.White;
     itemGrid138.FontStyle = FontStyle.Regular;
     itemGrid138.Height = 1f;
     itemGrid138.IsBlink = 0;
     itemGrid138.Name = "lbCurrEquity";
     itemGrid138.Text = "Current Equity";
     itemGrid138.ValueFormat = FormatType.Text;
     itemGrid138.Visible = true;
     itemGrid138.Width = 12;
     itemGrid138.X = 0;
     itemGrid138.Y = 2f;
     itemGrid139.AdjustFontSize = 0f;
     itemGrid139.Alignment = StringAlignment.Far;
     itemGrid139.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid139.Changed = true;
     itemGrid139.FieldType = ItemType.Text;
     itemGrid139.FontColor = Color.Yellow;
     itemGrid139.FontStyle = FontStyle.Regular;
     itemGrid139.Height = 1f;
     itemGrid139.IsBlink = 0;
     itemGrid139.Name = "tbCurrEquity";
     itemGrid139.Text = "";
     itemGrid139.ValueFormat = FormatType.Text;
     itemGrid139.Visible = true;
     itemGrid139.Width = 10;
     itemGrid139.X = 12;
     itemGrid139.Y = 2f;
     itemGrid140.AdjustFontSize = 0f;
     itemGrid140.Alignment = StringAlignment.Near;
     itemGrid140.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid140.Changed = true;
     itemGrid140.FieldType = ItemType.Label2;
     itemGrid140.FontColor = Color.White;
     itemGrid140.FontStyle = FontStyle.Regular;
     itemGrid140.Height = 1f;
     itemGrid140.IsBlink = 0;
     itemGrid140.Name = "lbTotalPL";
     itemGrid140.Text = "Total Profit/Loss";
     itemGrid140.ValueFormat = FormatType.Text;
     itemGrid140.Visible = true;
     itemGrid140.Width = 12;
     itemGrid140.X = 0;
     itemGrid140.Y = 3f;
     itemGrid141.AdjustFontSize = 0f;
     itemGrid141.Alignment = StringAlignment.Far;
     itemGrid141.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid141.Changed = true;
     itemGrid141.FieldType = ItemType.Text;
     itemGrid141.FontColor = Color.Yellow;
     itemGrid141.FontStyle = FontStyle.Regular;
     itemGrid141.Height = 1f;
     itemGrid141.IsBlink = 0;
     itemGrid141.Name = "tbTotalPL";
     itemGrid141.Text = "";
     itemGrid141.ValueFormat = FormatType.Text;
     itemGrid141.Visible = true;
     itemGrid141.Width = 10;
     itemGrid141.X = 12;
     itemGrid141.Y = 3f;
     itemGrid142.AdjustFontSize = 0f;
     itemGrid142.Alignment = StringAlignment.Near;
     itemGrid142.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid142.Changed = true;
     itemGrid142.FieldType = ItemType.Label2;
     itemGrid142.FontColor = Color.White;
     itemGrid142.FontStyle = FontStyle.Regular;
     itemGrid142.Height = 1f;
     itemGrid142.IsBlink = 0;
     itemGrid142.Name = "lbTotalPLPct";
     itemGrid142.Text = "Total Profit/Loss %";
     itemGrid142.ValueFormat = FormatType.Text;
     itemGrid142.Visible = true;
     itemGrid142.Width = 12;
     itemGrid142.X = 0;
     itemGrid142.Y = 4f;
     itemGrid143.AdjustFontSize = 0f;
     itemGrid143.Alignment = StringAlignment.Far;
     itemGrid143.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid143.Changed = true;
     itemGrid143.FieldType = ItemType.Text;
     itemGrid143.FontColor = Color.Yellow;
     itemGrid143.FontStyle = FontStyle.Regular;
     itemGrid143.Height = 1f;
     itemGrid143.IsBlink = 0;
     itemGrid143.Name = "tbTotalPLPct";
     itemGrid143.Text = "";
     itemGrid143.ValueFormat = FormatType.Text;
     itemGrid143.Visible = true;
     itemGrid143.Width = 10;
     itemGrid143.X = 12;
     itemGrid143.Y = 4f;
     itemGrid144.AdjustFontSize = 0f;
     itemGrid144.Alignment = StringAlignment.Near;
     itemGrid144.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid144.Changed = true;
     itemGrid144.FieldType = ItemType.Label2;
     itemGrid144.FontColor = Color.White;
     itemGrid144.FontStyle = FontStyle.Regular;
     itemGrid144.Height = 1f;
     itemGrid144.IsBlink = 0;
     itemGrid144.Name = "lbTotalTrade";
     itemGrid144.Text = "Total Trades";
     itemGrid144.ValueFormat = FormatType.Text;
     itemGrid144.Visible = true;
     itemGrid144.Width = 10;
     itemGrid144.X = 24;
     itemGrid144.Y = 1f;
     itemGrid145.AdjustFontSize = 0f;
     itemGrid145.Alignment = StringAlignment.Center;
     itemGrid145.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid145.Changed = true;
     itemGrid145.FieldType = ItemType.Text;
     itemGrid145.FontColor = Color.Yellow;
     itemGrid145.FontStyle = FontStyle.Regular;
     itemGrid145.Height = 1f;
     itemGrid145.IsBlink = 0;
     itemGrid145.Name = "tbTotalTrade";
     itemGrid145.Text = "";
     itemGrid145.ValueFormat = FormatType.Text;
     itemGrid145.Visible = true;
     itemGrid145.Width = 5;
     itemGrid145.X = 34;
     itemGrid145.Y = 1f;
     itemGrid146.AdjustFontSize = 0f;
     itemGrid146.Alignment = StringAlignment.Center;
     itemGrid146.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid146.Changed = true;
     itemGrid146.FieldType = ItemType.Text;
     itemGrid146.FontColor = Color.Yellow;
     itemGrid146.FontStyle = FontStyle.Regular;
     itemGrid146.Height = 1f;
     itemGrid146.IsBlink = 0;
     itemGrid146.Name = "tbTotalTradePct";
     itemGrid146.Text = "";
     itemGrid146.ValueFormat = FormatType.Text;
     itemGrid146.Visible = true;
     itemGrid146.Width = 7;
     itemGrid146.X = 39;
     itemGrid146.Y = 1f;
     itemGrid147.AdjustFontSize = 0f;
     itemGrid147.Alignment = StringAlignment.Near;
     itemGrid147.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid147.Changed = true;
     itemGrid147.FieldType = ItemType.Label2;
     itemGrid147.FontColor = Color.White;
     itemGrid147.FontStyle = FontStyle.Regular;
     itemGrid147.Height = 1f;
     itemGrid147.IsBlink = 0;
     itemGrid147.Name = "lbLongTrade";
     itemGrid147.Text = "Long Trades";
     itemGrid147.ValueFormat = FormatType.Text;
     itemGrid147.Visible = true;
     itemGrid147.Width = 10;
     itemGrid147.X = 24;
     itemGrid147.Y = 2f;
     itemGrid148.AdjustFontSize = 0f;
     itemGrid148.Alignment = StringAlignment.Center;
     itemGrid148.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid148.Changed = true;
     itemGrid148.FieldType = ItemType.Text;
     itemGrid148.FontColor = Color.Yellow;
     itemGrid148.FontStyle = FontStyle.Regular;
     itemGrid148.Height = 1f;
     itemGrid148.IsBlink = 0;
     itemGrid148.Name = "tbLongTrade";
     itemGrid148.Text = "";
     itemGrid148.ValueFormat = FormatType.Text;
     itemGrid148.Visible = true;
     itemGrid148.Width = 5;
     itemGrid148.X = 34;
     itemGrid148.Y = 2f;
     itemGrid149.AdjustFontSize = 0f;
     itemGrid149.Alignment = StringAlignment.Center;
     itemGrid149.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid149.Changed = true;
     itemGrid149.FieldType = ItemType.Text;
     itemGrid149.FontColor = Color.Yellow;
     itemGrid149.FontStyle = FontStyle.Regular;
     itemGrid149.Height = 1f;
     itemGrid149.IsBlink = 0;
     itemGrid149.Name = "tbLongTradePct";
     itemGrid149.Text = "";
     itemGrid149.ValueFormat = FormatType.Text;
     itemGrid149.Visible = true;
     itemGrid149.Width = 7;
     itemGrid149.X = 39;
     itemGrid149.Y = 2f;
     itemGrid150.AdjustFontSize = 0f;
     itemGrid150.Alignment = StringAlignment.Near;
     itemGrid150.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid150.Changed = true;
     itemGrid150.FieldType = ItemType.Label2;
     itemGrid150.FontColor = Color.White;
     itemGrid150.FontStyle = FontStyle.Regular;
     itemGrid150.Height = 1f;
     itemGrid150.IsBlink = 0;
     itemGrid150.Name = "lbShortTrade";
     itemGrid150.Text = "Short Trades";
     itemGrid150.ValueFormat = FormatType.Text;
     itemGrid150.Visible = true;
     itemGrid150.Width = 10;
     itemGrid150.X = 24;
     itemGrid150.Y = 3f;
     itemGrid151.AdjustFontSize = 0f;
     itemGrid151.Alignment = StringAlignment.Center;
     itemGrid151.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid151.Changed = true;
     itemGrid151.FieldType = ItemType.Text;
     itemGrid151.FontColor = Color.Yellow;
     itemGrid151.FontStyle = FontStyle.Regular;
     itemGrid151.Height = 1f;
     itemGrid151.IsBlink = 0;
     itemGrid151.Name = "tbShortTrade";
     itemGrid151.Text = "";
     itemGrid151.ValueFormat = FormatType.Text;
     itemGrid151.Visible = true;
     itemGrid151.Width = 5;
     itemGrid151.X = 34;
     itemGrid151.Y = 3f;
     itemGrid152.AdjustFontSize = 0f;
     itemGrid152.Alignment = StringAlignment.Center;
     itemGrid152.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid152.Changed = true;
     itemGrid152.FieldType = ItemType.Text;
     itemGrid152.FontColor = Color.Yellow;
     itemGrid152.FontStyle = FontStyle.Regular;
     itemGrid152.Height = 1f;
     itemGrid152.IsBlink = 0;
     itemGrid152.Name = "tbShortTradePct";
     itemGrid152.Text = "";
     itemGrid152.ValueFormat = FormatType.Text;
     itemGrid152.Visible = true;
     itemGrid152.Width = 7;
     itemGrid152.X = 39;
     itemGrid152.Y = 3f;
     itemGrid153.AdjustFontSize = 0f;
     itemGrid153.Alignment = StringAlignment.Near;
     itemGrid153.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid153.Changed = true;
     itemGrid153.FieldType = ItemType.Label2;
     itemGrid153.FontColor = Color.White;
     itemGrid153.FontStyle = FontStyle.Regular;
     itemGrid153.Height = 1f;
     itemGrid153.IsBlink = 0;
     itemGrid153.Name = "lbWinTrade";
     itemGrid153.Text = "Winning Trades";
     itemGrid153.ValueFormat = FormatType.Text;
     itemGrid153.Visible = true;
     itemGrid153.Width = 11;
     itemGrid153.X = 47;
     itemGrid153.Y = 1f;
     itemGrid154.AdjustFontSize = 0f;
     itemGrid154.Alignment = StringAlignment.Center;
     itemGrid154.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid154.Changed = true;
     itemGrid154.FieldType = ItemType.Text;
     itemGrid154.FontColor = Color.Yellow;
     itemGrid154.FontStyle = FontStyle.Regular;
     itemGrid154.Height = 1f;
     itemGrid154.IsBlink = 0;
     itemGrid154.Name = "tbWinTrade";
     itemGrid154.Text = "";
     itemGrid154.ValueFormat = FormatType.Text;
     itemGrid154.Visible = true;
     itemGrid154.Width = 5;
     itemGrid154.X = 58;
     itemGrid154.Y = 1f;
     itemGrid155.AdjustFontSize = 0f;
     itemGrid155.Alignment = StringAlignment.Center;
     itemGrid155.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid155.Changed = true;
     itemGrid155.FieldType = ItemType.Text;
     itemGrid155.FontColor = Color.Yellow;
     itemGrid155.FontStyle = FontStyle.Regular;
     itemGrid155.Height = 1f;
     itemGrid155.IsBlink = 0;
     itemGrid155.Name = "tbWinTradePct";
     itemGrid155.Text = "";
     itemGrid155.ValueFormat = FormatType.Text;
     itemGrid155.Visible = true;
     itemGrid155.Width = 7;
     itemGrid155.X = 63;
     itemGrid155.Y = 1f;
     itemGrid156.AdjustFontSize = 0f;
     itemGrid156.Alignment = StringAlignment.Near;
     itemGrid156.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid156.Changed = true;
     itemGrid156.FieldType = ItemType.Label2;
     itemGrid156.FontColor = Color.White;
     itemGrid156.FontStyle = FontStyle.Regular;
     itemGrid156.Height = 1f;
     itemGrid156.IsBlink = 0;
     itemGrid156.Name = "lbWinLong";
     itemGrid156.Text = "Winning Long";
     itemGrid156.ValueFormat = FormatType.Text;
     itemGrid156.Visible = true;
     itemGrid156.Width = 11;
     itemGrid156.X = 47;
     itemGrid156.Y = 2f;
     itemGrid157.AdjustFontSize = 0f;
     itemGrid157.Alignment = StringAlignment.Center;
     itemGrid157.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid157.Changed = true;
     itemGrid157.FieldType = ItemType.Text;
     itemGrid157.FontColor = Color.Yellow;
     itemGrid157.FontStyle = FontStyle.Regular;
     itemGrid157.Height = 1f;
     itemGrid157.IsBlink = 0;
     itemGrid157.Name = "tbWinLong";
     itemGrid157.Text = "";
     itemGrid157.ValueFormat = FormatType.Text;
     itemGrid157.Visible = true;
     itemGrid157.Width = 5;
     itemGrid157.X = 58;
     itemGrid157.Y = 2f;
     itemGrid158.AdjustFontSize = 0f;
     itemGrid158.Alignment = StringAlignment.Center;
     itemGrid158.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid158.Changed = true;
     itemGrid158.FieldType = ItemType.Text;
     itemGrid158.FontColor = Color.Yellow;
     itemGrid158.FontStyle = FontStyle.Regular;
     itemGrid158.Height = 1f;
     itemGrid158.IsBlink = 0;
     itemGrid158.Name = "tbWinLongPct";
     itemGrid158.Text = "";
     itemGrid158.ValueFormat = FormatType.Text;
     itemGrid158.Visible = true;
     itemGrid158.Width = 7;
     itemGrid158.X = 63;
     itemGrid158.Y = 2f;
     itemGrid159.AdjustFontSize = 0f;
     itemGrid159.Alignment = StringAlignment.Near;
     itemGrid159.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid159.Changed = true;
     itemGrid159.FieldType = ItemType.Label2;
     itemGrid159.FontColor = Color.White;
     itemGrid159.FontStyle = FontStyle.Regular;
     itemGrid159.Height = 1f;
     itemGrid159.IsBlink = 0;
     itemGrid159.Name = "lbWinShort";
     itemGrid159.Text = "Winning Short";
     itemGrid159.ValueFormat = FormatType.Text;
     itemGrid159.Visible = true;
     itemGrid159.Width = 11;
     itemGrid159.X = 47;
     itemGrid159.Y = 3f;
     itemGrid160.AdjustFontSize = 0f;
     itemGrid160.Alignment = StringAlignment.Center;
     itemGrid160.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid160.Changed = true;
     itemGrid160.FieldType = ItemType.Text;
     itemGrid160.FontColor = Color.Yellow;
     itemGrid160.FontStyle = FontStyle.Regular;
     itemGrid160.Height = 1f;
     itemGrid160.IsBlink = 0;
     itemGrid160.Name = "tbWinShort";
     itemGrid160.Text = "";
     itemGrid160.ValueFormat = FormatType.Text;
     itemGrid160.Visible = true;
     itemGrid160.Width = 5;
     itemGrid160.X = 58;
     itemGrid160.Y = 3f;
     itemGrid161.AdjustFontSize = 0f;
     itemGrid161.Alignment = StringAlignment.Center;
     itemGrid161.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid161.Changed = true;
     itemGrid161.FieldType = ItemType.Text;
     itemGrid161.FontColor = Color.Yellow;
     itemGrid161.FontStyle = FontStyle.Regular;
     itemGrid161.Height = 1f;
     itemGrid161.IsBlink = 0;
     itemGrid161.Name = "tbwinShortPct";
     itemGrid161.Text = "";
     itemGrid161.ValueFormat = FormatType.Text;
     itemGrid161.Visible = true;
     itemGrid161.Width = 7;
     itemGrid161.X = 63;
     itemGrid161.Y = 3f;
     itemGrid162.AdjustFontSize = 0f;
     itemGrid162.Alignment = StringAlignment.Near;
     itemGrid162.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid162.Changed = true;
     itemGrid162.FieldType = ItemType.Label2;
     itemGrid162.FontColor = Color.White;
     itemGrid162.FontStyle = FontStyle.Regular;
     itemGrid162.Height = 1f;
     itemGrid162.IsBlink = 0;
     itemGrid162.Name = "lbLoseTrade";
     itemGrid162.Text = "Losing Trades";
     itemGrid162.ValueFormat = FormatType.Text;
     itemGrid162.Visible = true;
     itemGrid162.Width = 10;
     itemGrid162.X = 71;
     itemGrid162.Y = 1f;
     itemGrid163.AdjustFontSize = 0f;
     itemGrid163.Alignment = StringAlignment.Center;
     itemGrid163.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid163.Changed = true;
     itemGrid163.FieldType = ItemType.Text;
     itemGrid163.FontColor = Color.Yellow;
     itemGrid163.FontStyle = FontStyle.Regular;
     itemGrid163.Height = 1f;
     itemGrid163.IsBlink = 0;
     itemGrid163.Name = "tbLoseTrade";
     itemGrid163.Text = "";
     itemGrid163.ValueFormat = FormatType.Text;
     itemGrid163.Visible = true;
     itemGrid163.Width = 5;
     itemGrid163.X = 81;
     itemGrid163.Y = 1f;
     itemGrid164.AdjustFontSize = 0f;
     itemGrid164.Alignment = StringAlignment.Center;
     itemGrid164.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid164.Changed = true;
     itemGrid164.FieldType = ItemType.Text;
     itemGrid164.FontColor = Color.Yellow;
     itemGrid164.FontStyle = FontStyle.Regular;
     itemGrid164.Height = 1f;
     itemGrid164.IsBlink = 0;
     itemGrid164.Name = "tbLoseTradePct";
     itemGrid164.Text = "";
     itemGrid164.ValueFormat = FormatType.Text;
     itemGrid164.Visible = true;
     itemGrid164.Width = 7;
     itemGrid164.X = 86;
     itemGrid164.Y = 1f;
     itemGrid165.AdjustFontSize = 0f;
     itemGrid165.Alignment = StringAlignment.Near;
     itemGrid165.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid165.Changed = true;
     itemGrid165.FieldType = ItemType.Label2;
     itemGrid165.FontColor = Color.White;
     itemGrid165.FontStyle = FontStyle.Regular;
     itemGrid165.Height = 1f;
     itemGrid165.IsBlink = 0;
     itemGrid165.Name = "lbLoseLong";
     itemGrid165.Text = "Losing Long";
     itemGrid165.ValueFormat = FormatType.Text;
     itemGrid165.Visible = true;
     itemGrid165.Width = 10;
     itemGrid165.X = 71;
     itemGrid165.Y = 2f;
     itemGrid166.AdjustFontSize = 0f;
     itemGrid166.Alignment = StringAlignment.Center;
     itemGrid166.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid166.Changed = true;
     itemGrid166.FieldType = ItemType.Text;
     itemGrid166.FontColor = Color.Yellow;
     itemGrid166.FontStyle = FontStyle.Regular;
     itemGrid166.Height = 1f;
     itemGrid166.IsBlink = 0;
     itemGrid166.Name = "tbLoseLong";
     itemGrid166.Text = "";
     itemGrid166.ValueFormat = FormatType.Text;
     itemGrid166.Visible = true;
     itemGrid166.Width = 5;
     itemGrid166.X = 81;
     itemGrid166.Y = 2f;
     itemGrid167.AdjustFontSize = 0f;
     itemGrid167.Alignment = StringAlignment.Center;
     itemGrid167.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid167.Changed = true;
     itemGrid167.FieldType = ItemType.Text;
     itemGrid167.FontColor = Color.Yellow;
     itemGrid167.FontStyle = FontStyle.Regular;
     itemGrid167.Height = 1f;
     itemGrid167.IsBlink = 0;
     itemGrid167.Name = "tbLoseLongPct";
     itemGrid167.Text = "";
     itemGrid167.ValueFormat = FormatType.Text;
     itemGrid167.Visible = true;
     itemGrid167.Width = 7;
     itemGrid167.X = 86;
     itemGrid167.Y = 2f;
     itemGrid168.AdjustFontSize = 0f;
     itemGrid168.Alignment = StringAlignment.Near;
     itemGrid168.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid168.Changed = true;
     itemGrid168.FieldType = ItemType.Label2;
     itemGrid168.FontColor = Color.White;
     itemGrid168.FontStyle = FontStyle.Regular;
     itemGrid168.Height = 1f;
     itemGrid168.IsBlink = 0;
     itemGrid168.Name = "lbLoseShort";
     itemGrid168.Text = "Losing Short";
     itemGrid168.ValueFormat = FormatType.Text;
     itemGrid168.Visible = true;
     itemGrid168.Width = 10;
     itemGrid168.X = 71;
     itemGrid168.Y = 3f;
     itemGrid169.AdjustFontSize = 0f;
     itemGrid169.Alignment = StringAlignment.Center;
     itemGrid169.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid169.Changed = true;
     itemGrid169.FieldType = ItemType.Text;
     itemGrid169.FontColor = Color.Yellow;
     itemGrid169.FontStyle = FontStyle.Regular;
     itemGrid169.Height = 1f;
     itemGrid169.IsBlink = 0;
     itemGrid169.Name = "tbLoseShort";
     itemGrid169.Text = "";
     itemGrid169.ValueFormat = FormatType.Text;
     itemGrid169.Visible = true;
     itemGrid169.Width = 5;
     itemGrid169.X = 81;
     itemGrid169.Y = 3f;
     itemGrid170.AdjustFontSize = 0f;
     itemGrid170.Alignment = StringAlignment.Center;
     itemGrid170.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid170.Changed = true;
     itemGrid170.FieldType = ItemType.Text;
     itemGrid170.FontColor = Color.Yellow;
     itemGrid170.FontStyle = FontStyle.Regular;
     itemGrid170.Height = 1f;
     itemGrid170.IsBlink = 0;
     itemGrid170.Name = "tbLoseShortPct";
     itemGrid170.Text = "";
     itemGrid170.ValueFormat = FormatType.Text;
     itemGrid170.Visible = true;
     itemGrid170.Width = 7;
     itemGrid170.X = 86;
     itemGrid170.Y = 3f;
     this.intzaTradeOverview.Items.Add(itemGrid135);
     this.intzaTradeOverview.Items.Add(itemGrid136);
     this.intzaTradeOverview.Items.Add(itemGrid137);
     this.intzaTradeOverview.Items.Add(itemGrid138);
     this.intzaTradeOverview.Items.Add(itemGrid139);
     this.intzaTradeOverview.Items.Add(itemGrid140);
     this.intzaTradeOverview.Items.Add(itemGrid141);
     this.intzaTradeOverview.Items.Add(itemGrid142);
     this.intzaTradeOverview.Items.Add(itemGrid143);
     this.intzaTradeOverview.Items.Add(itemGrid144);
     this.intzaTradeOverview.Items.Add(itemGrid145);
     this.intzaTradeOverview.Items.Add(itemGrid146);
     this.intzaTradeOverview.Items.Add(itemGrid147);
     this.intzaTradeOverview.Items.Add(itemGrid148);
     this.intzaTradeOverview.Items.Add(itemGrid149);
     this.intzaTradeOverview.Items.Add(itemGrid150);
     this.intzaTradeOverview.Items.Add(itemGrid151);
     this.intzaTradeOverview.Items.Add(itemGrid152);
     this.intzaTradeOverview.Items.Add(itemGrid153);
     this.intzaTradeOverview.Items.Add(itemGrid154);
     this.intzaTradeOverview.Items.Add(itemGrid155);
     this.intzaTradeOverview.Items.Add(itemGrid156);
     this.intzaTradeOverview.Items.Add(itemGrid157);
     this.intzaTradeOverview.Items.Add(itemGrid158);
     this.intzaTradeOverview.Items.Add(itemGrid159);
     this.intzaTradeOverview.Items.Add(itemGrid160);
     this.intzaTradeOverview.Items.Add(itemGrid161);
     this.intzaTradeOverview.Items.Add(itemGrid162);
     this.intzaTradeOverview.Items.Add(itemGrid163);
     this.intzaTradeOverview.Items.Add(itemGrid164);
     this.intzaTradeOverview.Items.Add(itemGrid165);
     this.intzaTradeOverview.Items.Add(itemGrid166);
     this.intzaTradeOverview.Items.Add(itemGrid167);
     this.intzaTradeOverview.Items.Add(itemGrid168);
     this.intzaTradeOverview.Items.Add(itemGrid169);
     this.intzaTradeOverview.Items.Add(itemGrid170);
     this.intzaTradeOverview.LineColor = Color.Red;
     this.intzaTradeOverview.Location = new Point(3, 3);
     this.intzaTradeOverview.Name = "intzaTradeOverview";
     this.intzaTradeOverview.Size = new Size(824, 62);
     this.intzaTradeOverview.TabIndex = 0;
     this.tStripTJ.BackColor = Color.FromArgb(30, 30, 30);
     this.tStripTJ.Dock = DockStyle.Bottom;
     this.tStripTJ.GripStyle = ToolStripGripStyle.Hidden;
     this.tStripTJ.Items.AddRange(new ToolStripItem[]
     {
         this.tslbAmountText,
         this.toolStripSeparator2,
         this.tsbtnAmount,
         this.tstxtAmount
     });
     this.tStripTJ.Location = new Point(0, 124);
     this.tStripTJ.Margin = new Padding(1);
     this.tStripTJ.Name = "tStripTJ";
     this.tStripTJ.Padding = new Padding(1);
     this.tStripTJ.RenderMode = ToolStripRenderMode.Professional;
     this.tStripTJ.Size = new Size(849, 28);
     this.tStripTJ.TabIndex = 27;
     this.tStripTJ.Text = "toolStrip1";
     this.tslbAmountText.ForeColor = Color.WhiteSmoke;
     this.tslbAmountText.Name = "tslbAmountText";
     this.tslbAmountText.Size = new Size(144, 23);
     this.tslbAmountText.Text = "Account Start Transaction";
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new Size(6, 26);
     this.tsbtnAmount.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnAmount.Font = new Font("Segoe UI", 10f, FontStyle.Bold);
     this.tsbtnAmount.ForeColor = Color.Cyan;
     this.tsbtnAmount.Image = (Image)componentResourceManager.GetObject("tsbtnAmount.Image");
     this.tsbtnAmount.ImageTransparentColor = Color.Magenta;
     this.tsbtnAmount.Name = "tsbtnAmount";
     this.tsbtnAmount.Size = new Size(41, 23);
     this.tsbtnAmount.Text = "0.00";
     this.tsbtnAmount.Click += new EventHandler(this.tsbtnAmount_Click);
     this.tstxtAmount.Name = "tstxtAmount";
     this.tstxtAmount.Size = new Size(100, 26);
     this.tstxtAmount.Visible = false;
     this.tstxtAmount.Leave += new EventHandler(this.tstxtAmount_Leave);
     this.tstxtAmount.KeyUp += new KeyEventHandler(this.tstxtAmount_KeyUp);
     this.tstxtAmount.TextChanged += new EventHandler(this.tstxtAmount_TextChanged);
     this.cbText.FormattingEnabled = true;
     this.cbText.Location = new Point(706, 65);
     this.cbText.Name = "cbText";
     this.cbText.Size = new Size(121, 21);
     this.cbText.TabIndex = 2;
     this.cbText.Visible = false;
     this.cbText.Leave += new EventHandler(this.cbText_Leave);
     this.cbText.KeyPress += new KeyPressEventHandler(this.cbText_KeyPress);
     this.cbText.KeyUp += new KeyEventHandler(this.cbText_KeyUp);
     this.cbText.KeyDown += new KeyEventHandler(this.cbStock_KeyDown);
     this.cbText.TextChanged += new EventHandler(this.cbText_TextChanged);
     this.sortGrid1.AllowDrop = true;
     this.sortGrid1.BackColor = Color.FromArgb(30, 30, 30);
     this.sortGrid1.CanBlink = true;
     this.sortGrid1.CanDrag = false;
     this.sortGrid1.CanGetMouseMove = false;
     columnItem18.Alignment = StringAlignment.Center;
     columnItem18.BackColor = Color.FromArgb(64, 64, 64);
     columnItem18.ColumnAlignment = StringAlignment.Center;
     columnItem18.FontColor = Color.LightGray;
     columnItem18.MyStyle = FontStyle.Regular;
     columnItem18.Name = "dateopen";
     columnItem18.Text = "Date Open";
     columnItem18.ValueFormat = FormatType.Text;
     columnItem18.Visible = true;
     columnItem18.Width = 8;
     columnItem19.Alignment = StringAlignment.Center;
     columnItem19.BackColor = Color.FromArgb(64, 64, 64);
     columnItem19.ColumnAlignment = StringAlignment.Center;
     columnItem19.FontColor = Color.LightGray;
     columnItem19.MyStyle = FontStyle.Regular;
     columnItem19.Name = "dateclose";
     columnItem19.Text = "Date Close";
     columnItem19.ValueFormat = FormatType.Text;
     columnItem19.Visible = true;
     columnItem19.Width = 8;
     columnItem20.Alignment = StringAlignment.Center;
     columnItem20.BackColor = Color.FromArgb(64, 64, 64);
     columnItem20.ColumnAlignment = StringAlignment.Center;
     columnItem20.FontColor = Color.LightGray;
     columnItem20.MyStyle = FontStyle.Regular;
     columnItem20.Name = "direction";
     columnItem20.Text = "L/S";
     columnItem20.ValueFormat = FormatType.Text;
     columnItem20.Visible = true;
     columnItem20.Width = 4;
     columnItem21.Alignment = StringAlignment.Far;
     columnItem21.BackColor = Color.FromArgb(64, 64, 64);
     columnItem21.ColumnAlignment = StringAlignment.Center;
     columnItem21.FontColor = Color.LightGray;
     columnItem21.MyStyle = FontStyle.Regular;
     columnItem21.Name = "positionsize";
     columnItem21.Text = "Position Size";
     columnItem21.ValueFormat = FormatType.Text;
     columnItem21.Visible = false;
     columnItem21.Width = 10;
     columnItem22.Alignment = StringAlignment.Far;
     columnItem22.BackColor = Color.FromArgb(64, 64, 64);
     columnItem22.ColumnAlignment = StringAlignment.Center;
     columnItem22.FontColor = Color.LightGray;
     columnItem22.MyStyle = FontStyle.Regular;
     columnItem22.Name = "entryprice";
     columnItem22.Text = "Entry Price";
     columnItem22.ValueFormat = FormatType.Text;
     columnItem22.Visible = true;
     columnItem22.Width = 8;
     columnItem23.Alignment = StringAlignment.Far;
     columnItem23.BackColor = Color.FromArgb(64, 64, 64);
     columnItem23.ColumnAlignment = StringAlignment.Center;
     columnItem23.FontColor = Color.LightGray;
     columnItem23.MyStyle = FontStyle.Regular;
     columnItem23.Name = "stoploss";
     columnItem23.Text = "Stop Loss";
     columnItem23.ValueFormat = FormatType.Text;
     columnItem23.Visible = true;
     columnItem23.Width = 8;
     columnItem24.Alignment = StringAlignment.Far;
     columnItem24.BackColor = Color.FromArgb(64, 64, 64);
     columnItem24.ColumnAlignment = StringAlignment.Center;
     columnItem24.FontColor = Color.LightGray;
     columnItem24.MyStyle = FontStyle.Regular;
     columnItem24.Name = "takeprofit";
     columnItem24.Text = "Take Profit";
     columnItem24.ValueFormat = FormatType.Text;
     columnItem24.Visible = true;
     columnItem24.Width = 8;
     columnItem25.Alignment = StringAlignment.Far;
     columnItem25.BackColor = Color.FromArgb(64, 64, 64);
     columnItem25.ColumnAlignment = StringAlignment.Center;
     columnItem25.FontColor = Color.LightGray;
     columnItem25.MyStyle = FontStyle.Regular;
     columnItem25.Name = "exitprice";
     columnItem25.Text = "Exit Price";
     columnItem25.ValueFormat = FormatType.Text;
     columnItem25.Visible = true;
     columnItem25.Width = 8;
     columnItem26.Alignment = StringAlignment.Center;
     columnItem26.BackColor = Color.Teal;
     columnItem26.ColumnAlignment = StringAlignment.Center;
     columnItem26.FontColor = Color.LightGray;
     columnItem26.MyStyle = FontStyle.Regular;
     columnItem26.Name = "riskreward";
     columnItem26.Text = "Risk/Reward";
     columnItem26.ValueFormat = FormatType.Text;
     columnItem26.Visible = true;
     columnItem26.Width = 8;
     columnItem27.Alignment = StringAlignment.Far;
     columnItem27.BackColor = Color.FromArgb(64, 64, 64);
     columnItem27.ColumnAlignment = StringAlignment.Center;
     columnItem27.FontColor = Color.LightGray;
     columnItem27.MyStyle = FontStyle.Regular;
     columnItem27.Name = "loss";
     columnItem27.Text = "Loss";
     columnItem27.ValueFormat = FormatType.Text;
     columnItem27.Visible = true;
     columnItem27.Width = 8;
     columnItem28.Alignment = StringAlignment.Far;
     columnItem28.BackColor = Color.FromArgb(64, 64, 64);
     columnItem28.ColumnAlignment = StringAlignment.Center;
     columnItem28.FontColor = Color.LightGray;
     columnItem28.MyStyle = FontStyle.Regular;
     columnItem28.Name = "profit";
     columnItem28.Text = "Profit";
     columnItem28.ValueFormat = FormatType.Text;
     columnItem28.Visible = true;
     columnItem28.Width = 8;
     columnItem29.Alignment = StringAlignment.Far;
     columnItem29.BackColor = Color.Teal;
     columnItem29.ColumnAlignment = StringAlignment.Center;
     columnItem29.FontColor = Color.LightGray;
     columnItem29.MyStyle = FontStyle.Regular;
     columnItem29.Name = "profitpct";
     columnItem29.Text = "% Profit";
     columnItem29.ValueFormat = FormatType.Text;
     columnItem29.Visible = true;
     columnItem29.Width = 7;
     columnItem30.Alignment = StringAlignment.Far;
     columnItem30.BackColor = Color.Teal;
     columnItem30.ColumnAlignment = StringAlignment.Center;
     columnItem30.FontColor = Color.LightGray;
     columnItem30.MyStyle = FontStyle.Regular;
     columnItem30.Name = "losspct";
     columnItem30.Text = "% Loss";
     columnItem30.ValueFormat = FormatType.Text;
     columnItem30.Visible = true;
     columnItem30.Width = 7;
     columnItem31.Alignment = StringAlignment.Far;
     columnItem31.BackColor = Color.Teal;
     columnItem31.ColumnAlignment = StringAlignment.Center;
     columnItem31.FontColor = Color.LightGray;
     columnItem31.MyStyle = FontStyle.Regular;
     columnItem31.Name = "balance";
     columnItem31.Text = "Balance";
     columnItem31.ValueFormat = FormatType.Text;
     columnItem31.Visible = true;
     columnItem31.Width = 10;
     columnItem32.Alignment = StringAlignment.Near;
     columnItem32.BackColor = Color.FromArgb(64, 64, 64);
     columnItem32.ColumnAlignment = StringAlignment.Center;
     columnItem32.FontColor = Color.LightGray;
     columnItem32.MyStyle = FontStyle.Regular;
     columnItem32.Name = "tmpbalance";
     columnItem32.Text = "None";
     columnItem32.ValueFormat = FormatType.Text;
     columnItem32.Visible = false;
     columnItem32.Width = 10;
     columnItem33.Alignment = StringAlignment.Near;
     columnItem33.BackColor = Color.FromArgb(64, 64, 64);
     columnItem33.ColumnAlignment = StringAlignment.Center;
     columnItem33.FontColor = Color.LightGray;
     columnItem33.MyStyle = FontStyle.Regular;
     columnItem33.Name = "winloss";
     columnItem33.Text = "None";
     columnItem33.ValueFormat = FormatType.Text;
     columnItem33.Visible = false;
     columnItem33.Width = 10;
     this.sortGrid1.Columns.Add(columnItem18);
     this.sortGrid1.Columns.Add(columnItem19);
     this.sortGrid1.Columns.Add(columnItem20);
     this.sortGrid1.Columns.Add(columnItem21);
     this.sortGrid1.Columns.Add(columnItem22);
     this.sortGrid1.Columns.Add(columnItem23);
     this.sortGrid1.Columns.Add(columnItem24);
     this.sortGrid1.Columns.Add(columnItem25);
     this.sortGrid1.Columns.Add(columnItem26);
     this.sortGrid1.Columns.Add(columnItem27);
     this.sortGrid1.Columns.Add(columnItem28);
     this.sortGrid1.Columns.Add(columnItem29);
     this.sortGrid1.Columns.Add(columnItem30);
     this.sortGrid1.Columns.Add(columnItem31);
     this.sortGrid1.Columns.Add(columnItem32);
     this.sortGrid1.Columns.Add(columnItem33);
     this.sortGrid1.CurrentScroll = 0;
     this.sortGrid1.FocusItemIndex = -1;
     this.sortGrid1.ForeColor = Color.Black;
     this.sortGrid1.GridColor = Color.FromArgb(45, 45, 45);
     this.sortGrid1.HeaderPctHeight = 100f;
     this.sortGrid1.IsAutoRepaint = true;
     this.sortGrid1.IsDrawFullRow = false;
     this.sortGrid1.IsDrawGrid = true;
     this.sortGrid1.IsDrawHeader = true;
     this.sortGrid1.IsScrollable = true;
     this.sortGrid1.Location = new Point(3, 71);
     this.sortGrid1.MainColumn = "";
     this.sortGrid1.Name = "sortGrid1";
     this.sortGrid1.Rows = 25;
     this.sortGrid1.RowSelectColor = Color.MediumBlue;
     this.sortGrid1.RowSelectType = 0;
     this.sortGrid1.RowsVisible = 25;
     this.sortGrid1.Size = new Size(824, 40);
     this.sortGrid1.SortColumnName = "";
     this.sortGrid1.SortType = SortType.Desc;
     this.sortGrid1.TabIndex = 1;
     this.sortGrid1.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.sortGrid1_TableMouseClick);
     this.sortGrid1.TableMouseDoubleClick += new SortGrid.TableMouseDoubleClickEventHandler(this.sortGrid1_TableMouseDoubleClick);
     this.sortGridTfexSumm.AllowDrop = true;
     this.sortGridTfexSumm.BackColor = Color.FromArgb(30, 30, 30);
     this.sortGridTfexSumm.CanBlink = true;
     this.sortGridTfexSumm.CanDrag = false;
     this.sortGridTfexSumm.CanGetMouseMove = false;
     columnItem34.Alignment = StringAlignment.Far;
     columnItem34.BackColor = Color.FromArgb(64, 64, 64);
     columnItem34.ColumnAlignment = StringAlignment.Center;
     columnItem34.FontColor = Color.LightGray;
     columnItem34.MyStyle = FontStyle.Regular;
     columnItem34.Name = "last";
     columnItem34.Text = "Last";
     columnItem34.ValueFormat = FormatType.Text;
     columnItem34.Visible = true;
     columnItem34.Width = 56;
     columnItem35.Alignment = StringAlignment.Far;
     columnItem35.BackColor = Color.FromArgb(64, 64, 64);
     columnItem35.ColumnAlignment = StringAlignment.Center;
     columnItem35.FontColor = Color.LightGray;
     columnItem35.MyStyle = FontStyle.Regular;
     columnItem35.Name = "mkt_val";
     columnItem35.Text = "Mkt Value";
     columnItem35.ValueFormat = FormatType.Text;
     columnItem35.Visible = true;
     columnItem35.Width = 11;
     columnItem36.Alignment = StringAlignment.Far;
     columnItem36.BackColor = Color.FromArgb(64, 64, 64);
     columnItem36.ColumnAlignment = StringAlignment.Center;
     columnItem36.FontColor = Color.LightGray;
     columnItem36.MyStyle = FontStyle.Regular;
     columnItem36.Name = "cost_val";
     columnItem36.Text = "Cost Val";
     columnItem36.ValueFormat = FormatType.Text;
     columnItem36.Visible = true;
     columnItem36.Width = 11;
     columnItem37.Alignment = StringAlignment.Far;
     columnItem37.BackColor = Color.FromArgb(64, 64, 64);
     columnItem37.ColumnAlignment = StringAlignment.Center;
     columnItem37.FontColor = Color.LightGray;
     columnItem37.MyStyle = FontStyle.Regular;
     columnItem37.Name = "unreal_settle";
     columnItem37.Text = "Unreal(Settle)";
     columnItem37.ValueFormat = FormatType.Text;
     columnItem37.Visible = true;
     columnItem37.Width = 11;
     columnItem38.Alignment = StringAlignment.Far;
     columnItem38.BackColor = Color.FromArgb(64, 64, 64);
     columnItem38.ColumnAlignment = StringAlignment.Center;
     columnItem38.FontColor = Color.LightGray;
     columnItem38.MyStyle = FontStyle.Regular;
     columnItem38.Name = "unreal_cost";
     columnItem38.Text = "Unreal(Cost)";
     columnItem38.ValueFormat = FormatType.Text;
     columnItem38.Visible = false;
     columnItem38.Width = 11;
     columnItem39.Alignment = StringAlignment.Far;
     columnItem39.BackColor = Color.FromArgb(64, 64, 64);
     columnItem39.ColumnAlignment = StringAlignment.Center;
     columnItem39.FontColor = Color.LightGray;
     columnItem39.MyStyle = FontStyle.Regular;
     columnItem39.Name = "realize";
     columnItem39.Text = "Realize";
     columnItem39.ValueFormat = FormatType.Text;
     columnItem39.Visible = true;
     columnItem39.Width = 11;
     this.sortGridTfexSumm.Columns.Add(columnItem34);
     this.sortGridTfexSumm.Columns.Add(columnItem35);
     this.sortGridTfexSumm.Columns.Add(columnItem36);
     this.sortGridTfexSumm.Columns.Add(columnItem37);
     this.sortGridTfexSumm.Columns.Add(columnItem38);
     this.sortGridTfexSumm.Columns.Add(columnItem39);
     this.sortGridTfexSumm.CurrentScroll = 0;
     this.sortGridTfexSumm.FocusItemIndex = -1;
     this.sortGridTfexSumm.ForeColor = Color.Black;
     this.sortGridTfexSumm.GridColor = Color.FromArgb(45, 45, 45);
     this.sortGridTfexSumm.HeaderPctHeight = 80f;
     this.sortGridTfexSumm.IsAutoRepaint = true;
     this.sortGridTfexSumm.IsDrawFullRow = false;
     this.sortGridTfexSumm.IsDrawGrid = true;
     this.sortGridTfexSumm.IsDrawHeader = false;
     this.sortGridTfexSumm.IsScrollable = true;
     this.sortGridTfexSumm.Location = new Point(0, 179);
     this.sortGridTfexSumm.MainColumn = "";
     this.sortGridTfexSumm.Name = "sortGridTfexSumm";
     this.sortGridTfexSumm.Rows = 1;
     this.sortGridTfexSumm.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.sortGridTfexSumm.RowSelectType = 0;
     this.sortGridTfexSumm.RowsVisible = 1;
     this.sortGridTfexSumm.Size = new Size(846, 22);
     this.sortGridTfexSumm.SortColumnName = "";
     this.sortGridTfexSumm.SortType = SortType.Desc;
     this.sortGridTfexSumm.TabIndex = 28;
     this.sortGridTfex.AllowDrop = true;
     this.sortGridTfex.BackColor = Color.FromArgb(30, 30, 30);
     this.sortGridTfex.CanBlink = true;
     this.sortGridTfex.CanDrag = false;
     this.sortGridTfex.CanGetMouseMove = false;
     columnItem40.Alignment = StringAlignment.Near;
     columnItem40.BackColor = Color.FromArgb(64, 64, 64);
     columnItem40.ColumnAlignment = StringAlignment.Center;
     columnItem40.FontColor = Color.LightGray;
     columnItem40.MyStyle = FontStyle.Regular;
     columnItem40.Name = "series";
     columnItem40.Text = "Symbol";
     columnItem40.ValueFormat = FormatType.Text;
     columnItem40.Visible = true;
     columnItem40.Width = 11;
     columnItem41.Alignment = StringAlignment.Center;
     columnItem41.BackColor = Color.FromArgb(64, 64, 64);
     columnItem41.ColumnAlignment = StringAlignment.Center;
     columnItem41.FontColor = Color.LightGray;
     columnItem41.MyStyle = FontStyle.Regular;
     columnItem41.Name = "side";
     columnItem41.Text = "Side";
     columnItem41.ValueFormat = FormatType.Text;
     columnItem41.Visible = true;
     columnItem41.Width = 6;
     columnItem42.Alignment = StringAlignment.Far;
     columnItem42.BackColor = Color.FromArgb(64, 64, 64);
     columnItem42.ColumnAlignment = StringAlignment.Center;
     columnItem42.FontColor = Color.LightGray;
     columnItem42.MyStyle = FontStyle.Regular;
     columnItem42.Name = "start_vol";
     columnItem42.Text = "Str.Vol";
     columnItem42.ValueFormat = FormatType.Text;
     columnItem42.Visible = true;
     columnItem42.Width = 7;
     columnItem43.Alignment = StringAlignment.Far;
     columnItem43.BackColor = Color.FromArgb(64, 64, 64);
     columnItem43.ColumnAlignment = StringAlignment.Center;
     columnItem43.FontColor = Color.LightGray;
     columnItem43.MyStyle = FontStyle.Regular;
     columnItem43.Name = "onhand";
     columnItem43.Text = "OnHand";
     columnItem43.ValueFormat = FormatType.Text;
     columnItem43.Visible = true;
     columnItem43.Width = 7;
     columnItem44.Alignment = StringAlignment.Far;
     columnItem44.BackColor = Color.FromArgb(64, 64, 64);
     columnItem44.ColumnAlignment = StringAlignment.Center;
     columnItem44.FontColor = Color.LightGray;
     columnItem44.MyStyle = FontStyle.Regular;
     columnItem44.Name = "sellable";
     columnItem44.Text = "Sellable";
     columnItem44.ValueFormat = FormatType.Text;
     columnItem44.Visible = true;
     columnItem44.Width = 7;
     columnItem45.Alignment = StringAlignment.Far;
     columnItem45.BackColor = Color.FromArgb(64, 64, 64);
     columnItem45.ColumnAlignment = StringAlignment.Center;
     columnItem45.FontColor = Color.LightGray;
     columnItem45.MyStyle = FontStyle.Regular;
     columnItem45.Name = "cost_avg";
     columnItem45.Text = "C.Avg";
     columnItem45.ValueFormat = FormatType.Text;
     columnItem45.Visible = false;
     columnItem45.Width = 9;
     columnItem46.Alignment = StringAlignment.Far;
     columnItem46.BackColor = Color.FromArgb(64, 64, 64);
     columnItem46.ColumnAlignment = StringAlignment.Center;
     columnItem46.FontColor = Color.LightGray;
     columnItem46.MyStyle = FontStyle.Regular;
     columnItem46.Name = "cost_settle";
     columnItem46.Text = "C.Settle";
     columnItem46.ValueFormat = FormatType.Text;
     columnItem46.Visible = true;
     columnItem46.Width = 9;
     columnItem47.Alignment = StringAlignment.Far;
     columnItem47.BackColor = Color.FromArgb(64, 64, 64);
     columnItem47.ColumnAlignment = StringAlignment.Center;
     columnItem47.FontColor = Color.LightGray;
     columnItem47.MyStyle = FontStyle.Regular;
     columnItem47.Name = "last";
     columnItem47.Text = "Last";
     columnItem47.ValueFormat = FormatType.Text;
     columnItem47.Visible = true;
     columnItem47.Width = 9;
     columnItem48.Alignment = StringAlignment.Far;
     columnItem48.BackColor = Color.FromArgb(64, 64, 64);
     columnItem48.ColumnAlignment = StringAlignment.Center;
     columnItem48.FontColor = Color.LightGray;
     columnItem48.MyStyle = FontStyle.Regular;
     columnItem48.Name = "mkt_val";
     columnItem48.Text = "MktVal";
     columnItem48.ValueFormat = FormatType.Text;
     columnItem48.Visible = true;
     columnItem48.Width = 11;
     columnItem49.Alignment = StringAlignment.Far;
     columnItem49.BackColor = Color.FromArgb(64, 64, 64);
     columnItem49.ColumnAlignment = StringAlignment.Center;
     columnItem49.FontColor = Color.LightGray;
     columnItem49.MyStyle = FontStyle.Regular;
     columnItem49.Name = "cost_val";
     columnItem49.Text = "C.Val";
     columnItem49.ValueFormat = FormatType.Text;
     columnItem49.Visible = true;
     columnItem49.Width = 11;
     columnItem50.Alignment = StringAlignment.Far;
     columnItem50.BackColor = Color.Teal;
     columnItem50.ColumnAlignment = StringAlignment.Center;
     columnItem50.FontColor = Color.LightGray;
     columnItem50.MyStyle = FontStyle.Underline;
     columnItem50.Name = "unreal_settle";
     columnItem50.Text = "Unrl(Settle)";
     columnItem50.ValueFormat = FormatType.Text;
     columnItem50.Visible = true;
     columnItem50.Width = 11;
     columnItem51.Alignment = StringAlignment.Far;
     columnItem51.BackColor = Color.Teal;
     columnItem51.ColumnAlignment = StringAlignment.Center;
     columnItem51.FontColor = Color.LightGray;
     columnItem51.MyStyle = FontStyle.Underline;
     columnItem51.Name = "unreal_cost";
     columnItem51.Text = "Unrl(Cost)";
     columnItem51.ValueFormat = FormatType.Text;
     columnItem51.Visible = false;
     columnItem51.Width = 11;
     columnItem52.Alignment = StringAlignment.Far;
     columnItem52.BackColor = Color.FromArgb(64, 64, 64);
     columnItem52.ColumnAlignment = StringAlignment.Center;
     columnItem52.FontColor = Color.LightGray;
     columnItem52.MyStyle = FontStyle.Regular;
     columnItem52.Name = "realize";
     columnItem52.Text = "Realize";
     columnItem52.ValueFormat = FormatType.Text;
     columnItem52.Visible = true;
     columnItem52.Width = 11;
     this.sortGridTfex.Columns.Add(columnItem40);
     this.sortGridTfex.Columns.Add(columnItem41);
     this.sortGridTfex.Columns.Add(columnItem42);
     this.sortGridTfex.Columns.Add(columnItem43);
     this.sortGridTfex.Columns.Add(columnItem44);
     this.sortGridTfex.Columns.Add(columnItem45);
     this.sortGridTfex.Columns.Add(columnItem46);
     this.sortGridTfex.Columns.Add(columnItem47);
     this.sortGridTfex.Columns.Add(columnItem48);
     this.sortGridTfex.Columns.Add(columnItem49);
     this.sortGridTfex.Columns.Add(columnItem50);
     this.sortGridTfex.Columns.Add(columnItem51);
     this.sortGridTfex.Columns.Add(columnItem52);
     this.sortGridTfex.CurrentScroll = 0;
     this.sortGridTfex.FocusItemIndex = -1;
     this.sortGridTfex.ForeColor = Color.Black;
     this.sortGridTfex.GridColor = Color.FromArgb(45, 45, 45);
     this.sortGridTfex.HeaderPctHeight = 80f;
     this.sortGridTfex.IsAutoRepaint = true;
     this.sortGridTfex.IsDrawFullRow = false;
     this.sortGridTfex.IsDrawGrid = true;
     this.sortGridTfex.IsDrawHeader = true;
     this.sortGridTfex.IsScrollable = true;
     this.sortGridTfex.Location = new Point(0, 137);
     this.sortGridTfex.MainColumn = "";
     this.sortGridTfex.Name = "sortGridTfex";
     this.sortGridTfex.Rows = 0;
     this.sortGridTfex.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.sortGridTfex.RowSelectType = 0;
     this.sortGridTfex.RowsVisible = 0;
     this.sortGridTfex.Size = new Size(846, 36);
     this.sortGridTfex.SortColumnName = "";
     this.sortGridTfex.SortType = SortType.Desc;
     this.sortGridTfex.TabIndex = 27;
     this.sortGridTfex.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.sortGridTfex_TableMouseClick);
     this.intzaCustBottTfex.AllowDrop = true;
     this.intzaCustBottTfex.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaCustBottTfex.CanDrag = false;
     this.intzaCustBottTfex.IsAutoRepaint = true;
     this.intzaCustBottTfex.IsDroped = false;
     itemGrid171.AdjustFontSize = -1f;
     itemGrid171.Alignment = StringAlignment.Near;
     itemGrid171.BackColor = Color.DimGray;
     itemGrid171.Changed = false;
     itemGrid171.FieldType = ItemType.TextGradient;
     itemGrid171.FontColor = Color.LightGray;
     itemGrid171.FontStyle = FontStyle.Regular;
     itemGrid171.Height = 1f;
     itemGrid171.IsBlink = 0;
     itemGrid171.Name = "lbBankCol";
     itemGrid171.Text = "";
     itemGrid171.ValueFormat = FormatType.Text;
     itemGrid171.Visible = true;
     itemGrid171.Width = 25;
     itemGrid171.X = 0;
     itemGrid171.Y = 0f;
     itemGrid172.AdjustFontSize = -1f;
     itemGrid172.Alignment = StringAlignment.Center;
     itemGrid172.BackColor = Color.DimGray;
     itemGrid172.Changed = false;
     itemGrid172.FieldType = ItemType.TextGradient;
     itemGrid172.FontColor = Color.LightGray;
     itemGrid172.FontStyle = FontStyle.Regular;
     itemGrid172.Height = 1f;
     itemGrid172.IsBlink = 0;
     itemGrid172.Name = "lbPrevious";
     itemGrid172.Text = "Previous";
     itemGrid172.ValueFormat = FormatType.Text;
     itemGrid172.Visible = true;
     itemGrid172.Width = 25;
     itemGrid172.X = 25;
     itemGrid172.Y = 0f;
     itemGrid173.AdjustFontSize = -1f;
     itemGrid173.Alignment = StringAlignment.Center;
     itemGrid173.BackColor = Color.DimGray;
     itemGrid173.Changed = false;
     itemGrid173.FieldType = ItemType.TextGradient;
     itemGrid173.FontColor = Color.LightGray;
     itemGrid173.FontStyle = FontStyle.Regular;
     itemGrid173.Height = 1f;
     itemGrid173.IsBlink = 0;
     itemGrid173.Name = "lbCurrent";
     itemGrid173.Text = "Current (Expected)";
     itemGrid173.ValueFormat = FormatType.Text;
     itemGrid173.Visible = true;
     itemGrid173.Width = 25;
     itemGrid173.X = 50;
     itemGrid173.Y = 0f;
     itemGrid174.AdjustFontSize = -1f;
     itemGrid174.Alignment = StringAlignment.Center;
     itemGrid174.BackColor = Color.DimGray;
     itemGrid174.Changed = false;
     itemGrid174.FieldType = ItemType.TextGradient;
     itemGrid174.FontColor = Color.LightGray;
     itemGrid174.FontStyle = FontStyle.Regular;
     itemGrid174.Height = 1f;
     itemGrid174.IsBlink = 0;
     itemGrid174.Name = "lbCurrentPort";
     itemGrid174.Text = "Current (Port)";
     itemGrid174.ValueFormat = FormatType.Text;
     itemGrid174.Visible = true;
     itemGrid174.Width = 25;
     itemGrid174.X = 75;
     itemGrid174.Y = 0f;
     itemGrid175.AdjustFontSize = 0f;
     itemGrid175.Alignment = StringAlignment.Near;
     itemGrid175.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid175.Changed = false;
     itemGrid175.FieldType = ItemType.Label;
     itemGrid175.FontColor = Color.LightGray;
     itemGrid175.FontStyle = FontStyle.Regular;
     itemGrid175.Height = 1f;
     itemGrid175.IsBlink = 0;
     itemGrid175.Name = "lbEquityBalance";
     itemGrid175.Text = "Equity Balance";
     itemGrid175.ValueFormat = FormatType.Text;
     itemGrid175.Visible = true;
     itemGrid175.Width = 25;
     itemGrid175.X = 0;
     itemGrid175.Y = 1f;
     itemGrid176.AdjustFontSize = 0f;
     itemGrid176.Alignment = StringAlignment.Near;
     itemGrid176.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid176.Changed = false;
     itemGrid176.FieldType = ItemType.Text;
     itemGrid176.FontColor = Color.White;
     itemGrid176.FontStyle = FontStyle.Regular;
     itemGrid176.Height = 1f;
     itemGrid176.IsBlink = 0;
     itemGrid176.Name = "tbEquityBalancePrevious";
     itemGrid176.Text = "";
     itemGrid176.ValueFormat = FormatType.Text;
     itemGrid176.Visible = true;
     itemGrid176.Width = 25;
     itemGrid176.X = 25;
     itemGrid176.Y = 1f;
     itemGrid177.AdjustFontSize = 0f;
     itemGrid177.Alignment = StringAlignment.Near;
     itemGrid177.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid177.Changed = false;
     itemGrid177.FieldType = ItemType.Text;
     itemGrid177.FontColor = Color.White;
     itemGrid177.FontStyle = FontStyle.Regular;
     itemGrid177.Height = 1f;
     itemGrid177.IsBlink = 0;
     itemGrid177.Name = "tbEquityBalanceCurrent";
     itemGrid177.Text = "";
     itemGrid177.ValueFormat = FormatType.Text;
     itemGrid177.Visible = true;
     itemGrid177.Width = 25;
     itemGrid177.X = 50;
     itemGrid177.Y = 1f;
     itemGrid178.AdjustFontSize = 0f;
     itemGrid178.Alignment = StringAlignment.Near;
     itemGrid178.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid178.Changed = false;
     itemGrid178.FieldType = ItemType.Text;
     itemGrid178.FontColor = Color.White;
     itemGrid178.FontStyle = FontStyle.Regular;
     itemGrid178.Height = 1f;
     itemGrid178.IsBlink = 0;
     itemGrid178.Name = "tbEquityBalanceCurrentPort";
     itemGrid178.Text = "";
     itemGrid178.ValueFormat = FormatType.Text;
     itemGrid178.Visible = true;
     itemGrid178.Width = 25;
     itemGrid178.X = 75;
     itemGrid178.Y = 1f;
     itemGrid179.AdjustFontSize = 0f;
     itemGrid179.Alignment = StringAlignment.Near;
     itemGrid179.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid179.Changed = false;
     itemGrid179.FieldType = ItemType.Label;
     itemGrid179.FontColor = Color.LightGray;
     itemGrid179.FontStyle = FontStyle.Regular;
     itemGrid179.Height = 1f;
     itemGrid179.IsBlink = 0;
     itemGrid179.Name = "lbEEBalance";
     itemGrid179.Text = "Excess Equity Balance";
     itemGrid179.ValueFormat = FormatType.Text;
     itemGrid179.Visible = true;
     itemGrid179.Width = 25;
     itemGrid179.X = 0;
     itemGrid179.Y = 2f;
     itemGrid180.AdjustFontSize = 0f;
     itemGrid180.Alignment = StringAlignment.Near;
     itemGrid180.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid180.Changed = false;
     itemGrid180.FieldType = ItemType.Text;
     itemGrid180.FontColor = Color.White;
     itemGrid180.FontStyle = FontStyle.Regular;
     itemGrid180.Height = 1f;
     itemGrid180.IsBlink = 0;
     itemGrid180.Name = "tbEEBalancePrevious";
     itemGrid180.Text = "";
     itemGrid180.ValueFormat = FormatType.Text;
     itemGrid180.Visible = true;
     itemGrid180.Width = 25;
     itemGrid180.X = 25;
     itemGrid180.Y = 2f;
     itemGrid181.AdjustFontSize = 0f;
     itemGrid181.Alignment = StringAlignment.Near;
     itemGrid181.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid181.Changed = false;
     itemGrid181.FieldType = ItemType.Text;
     itemGrid181.FontColor = Color.White;
     itemGrid181.FontStyle = FontStyle.Regular;
     itemGrid181.Height = 1f;
     itemGrid181.IsBlink = 0;
     itemGrid181.Name = "tbEEBalanceCurrent";
     itemGrid181.Text = "";
     itemGrid181.ValueFormat = FormatType.Text;
     itemGrid181.Visible = true;
     itemGrid181.Width = 25;
     itemGrid181.X = 50;
     itemGrid181.Y = 2f;
     itemGrid182.AdjustFontSize = 0f;
     itemGrid182.Alignment = StringAlignment.Near;
     itemGrid182.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid182.Changed = false;
     itemGrid182.FieldType = ItemType.Text;
     itemGrid182.FontColor = Color.White;
     itemGrid182.FontStyle = FontStyle.Regular;
     itemGrid182.Height = 1f;
     itemGrid182.IsBlink = 0;
     itemGrid182.Name = "tbEEBalanceCurerntPort";
     itemGrid182.Text = "";
     itemGrid182.ValueFormat = FormatType.Text;
     itemGrid182.Visible = true;
     itemGrid182.Width = 25;
     itemGrid182.X = 75;
     itemGrid182.Y = 2f;
     itemGrid183.AdjustFontSize = 0f;
     itemGrid183.Alignment = StringAlignment.Near;
     itemGrid183.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid183.Changed = false;
     itemGrid183.FieldType = ItemType.Label;
     itemGrid183.FontColor = Color.LightGray;
     itemGrid183.FontStyle = FontStyle.Regular;
     itemGrid183.Height = 1f;
     itemGrid183.IsBlink = 0;
     itemGrid183.Name = "lbUnrealizedPL";
     itemGrid183.Text = "Unrealized P/L";
     itemGrid183.ValueFormat = FormatType.Text;
     itemGrid183.Visible = true;
     itemGrid183.Width = 25;
     itemGrid183.X = 0;
     itemGrid183.Y = 3f;
     itemGrid184.AdjustFontSize = 0f;
     itemGrid184.Alignment = StringAlignment.Near;
     itemGrid184.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid184.Changed = false;
     itemGrid184.FieldType = ItemType.Text;
     itemGrid184.FontColor = Color.White;
     itemGrid184.FontStyle = FontStyle.Regular;
     itemGrid184.Height = 1f;
     itemGrid184.IsBlink = 0;
     itemGrid184.Name = "tbUnrealizedPLPrevious";
     itemGrid184.Text = "";
     itemGrid184.ValueFormat = FormatType.Text;
     itemGrid184.Visible = true;
     itemGrid184.Width = 25;
     itemGrid184.X = 25;
     itemGrid184.Y = 3f;
     itemGrid185.AdjustFontSize = 0f;
     itemGrid185.Alignment = StringAlignment.Near;
     itemGrid185.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid185.Changed = false;
     itemGrid185.FieldType = ItemType.Text;
     itemGrid185.FontColor = Color.White;
     itemGrid185.FontStyle = FontStyle.Regular;
     itemGrid185.Height = 1f;
     itemGrid185.IsBlink = 0;
     itemGrid185.Name = "tbUnrealizedPLCurrent";
     itemGrid185.Text = "";
     itemGrid185.ValueFormat = FormatType.Text;
     itemGrid185.Visible = true;
     itemGrid185.Width = 25;
     itemGrid185.X = 50;
     itemGrid185.Y = 3f;
     itemGrid186.AdjustFontSize = 0f;
     itemGrid186.Alignment = StringAlignment.Near;
     itemGrid186.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid186.Changed = false;
     itemGrid186.FieldType = ItemType.Text;
     itemGrid186.FontColor = Color.White;
     itemGrid186.FontStyle = FontStyle.Regular;
     itemGrid186.Height = 1f;
     itemGrid186.IsBlink = 0;
     itemGrid186.Name = "tbUnrealizedPLCurrentPort";
     itemGrid186.Text = "";
     itemGrid186.ValueFormat = FormatType.Text;
     itemGrid186.Visible = true;
     itemGrid186.Width = 25;
     itemGrid186.X = 75;
     itemGrid186.Y = 3f;
     itemGrid187.AdjustFontSize = 0f;
     itemGrid187.Alignment = StringAlignment.Near;
     itemGrid187.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid187.Changed = false;
     itemGrid187.FieldType = ItemType.Label;
     itemGrid187.FontColor = Color.LightGray;
     itemGrid187.FontStyle = FontStyle.Regular;
     itemGrid187.Height = 1f;
     itemGrid187.IsBlink = 0;
     itemGrid187.Name = "lbMarginBalance";
     itemGrid187.Text = "Margin Balance";
     itemGrid187.ValueFormat = FormatType.Text;
     itemGrid187.Visible = true;
     itemGrid187.Width = 25;
     itemGrid187.X = 0;
     itemGrid187.Y = 4f;
     itemGrid188.AdjustFontSize = 0f;
     itemGrid188.Alignment = StringAlignment.Near;
     itemGrid188.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid188.Changed = false;
     itemGrid188.FieldType = ItemType.Text;
     itemGrid188.FontColor = Color.White;
     itemGrid188.FontStyle = FontStyle.Regular;
     itemGrid188.Height = 1f;
     itemGrid188.IsBlink = 0;
     itemGrid188.Name = "tbMarginBalancePrevious";
     itemGrid188.Text = "";
     itemGrid188.ValueFormat = FormatType.Text;
     itemGrid188.Visible = true;
     itemGrid188.Width = 25;
     itemGrid188.X = 25;
     itemGrid188.Y = 4f;
     itemGrid189.AdjustFontSize = 0f;
     itemGrid189.Alignment = StringAlignment.Near;
     itemGrid189.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid189.Changed = false;
     itemGrid189.FieldType = ItemType.Text;
     itemGrid189.FontColor = Color.White;
     itemGrid189.FontStyle = FontStyle.Regular;
     itemGrid189.Height = 1f;
     itemGrid189.IsBlink = 0;
     itemGrid189.Name = "tbMarginBalanceCurrent";
     itemGrid189.Text = "";
     itemGrid189.ValueFormat = FormatType.Price;
     itemGrid189.Visible = true;
     itemGrid189.Width = 25;
     itemGrid189.X = 50;
     itemGrid189.Y = 4f;
     itemGrid190.AdjustFontSize = 0f;
     itemGrid190.Alignment = StringAlignment.Near;
     itemGrid190.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid190.Changed = false;
     itemGrid190.FieldType = ItemType.Text;
     itemGrid190.FontColor = Color.White;
     itemGrid190.FontStyle = FontStyle.Regular;
     itemGrid190.Height = 1f;
     itemGrid190.IsBlink = 0;
     itemGrid190.Name = "tbMarginBalanceCurrentPort";
     itemGrid190.Text = "";
     itemGrid190.ValueFormat = FormatType.Text;
     itemGrid190.Visible = true;
     itemGrid190.Width = 25;
     itemGrid190.X = 75;
     itemGrid190.Y = 4f;
     itemGrid191.AdjustFontSize = 0f;
     itemGrid191.Alignment = StringAlignment.Near;
     itemGrid191.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid191.Changed = false;
     itemGrid191.FieldType = ItemType.Label;
     itemGrid191.FontColor = Color.LightGray;
     itemGrid191.FontStyle = FontStyle.Regular;
     itemGrid191.Height = 1f;
     itemGrid191.IsBlink = 0;
     itemGrid191.Name = "lbCallForce";
     itemGrid191.Text = "Call Force Flag / Amount";
     itemGrid191.ValueFormat = FormatType.Text;
     itemGrid191.Visible = true;
     itemGrid191.Width = 25;
     itemGrid191.X = 0;
     itemGrid191.Y = 5f;
     itemGrid192.AdjustFontSize = 0f;
     itemGrid192.Alignment = StringAlignment.Near;
     itemGrid192.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid192.Changed = false;
     itemGrid192.FieldType = ItemType.Text;
     itemGrid192.FontColor = Color.White;
     itemGrid192.FontStyle = FontStyle.Regular;
     itemGrid192.Height = 1f;
     itemGrid192.IsBlink = 0;
     itemGrid192.Name = "tbCallForcePrevious";
     itemGrid192.Text = "";
     itemGrid192.ValueFormat = FormatType.Text;
     itemGrid192.Visible = true;
     itemGrid192.Width = 25;
     itemGrid192.X = 25;
     itemGrid192.Y = 5f;
     itemGrid193.AdjustFontSize = 0f;
     itemGrid193.Alignment = StringAlignment.Near;
     itemGrid193.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid193.Changed = false;
     itemGrid193.FieldType = ItemType.Text;
     itemGrid193.FontColor = Color.White;
     itemGrid193.FontStyle = FontStyle.Regular;
     itemGrid193.Height = 1f;
     itemGrid193.IsBlink = 0;
     itemGrid193.Name = "tbCallForceCurrent";
     itemGrid193.Text = "";
     itemGrid193.ValueFormat = FormatType.Text;
     itemGrid193.Visible = true;
     itemGrid193.Width = 25;
     itemGrid193.X = 50;
     itemGrid193.Y = 5f;
     itemGrid194.AdjustFontSize = 0f;
     itemGrid194.Alignment = StringAlignment.Near;
     itemGrid194.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid194.Changed = false;
     itemGrid194.FieldType = ItemType.Text;
     itemGrid194.FontColor = Color.White;
     itemGrid194.FontStyle = FontStyle.Regular;
     itemGrid194.Height = 1f;
     itemGrid194.IsBlink = 0;
     itemGrid194.Name = "tbCallForceCurrentPort";
     itemGrid194.Text = "";
     itemGrid194.ValueFormat = FormatType.Text;
     itemGrid194.Visible = true;
     itemGrid194.Width = 25;
     itemGrid194.X = 75;
     itemGrid194.Y = 5f;
     this.intzaCustBottTfex.Items.Add(itemGrid171);
     this.intzaCustBottTfex.Items.Add(itemGrid172);
     this.intzaCustBottTfex.Items.Add(itemGrid173);
     this.intzaCustBottTfex.Items.Add(itemGrid174);
     this.intzaCustBottTfex.Items.Add(itemGrid175);
     this.intzaCustBottTfex.Items.Add(itemGrid176);
     this.intzaCustBottTfex.Items.Add(itemGrid177);
     this.intzaCustBottTfex.Items.Add(itemGrid178);
     this.intzaCustBottTfex.Items.Add(itemGrid179);
     this.intzaCustBottTfex.Items.Add(itemGrid180);
     this.intzaCustBottTfex.Items.Add(itemGrid181);
     this.intzaCustBottTfex.Items.Add(itemGrid182);
     this.intzaCustBottTfex.Items.Add(itemGrid183);
     this.intzaCustBottTfex.Items.Add(itemGrid184);
     this.intzaCustBottTfex.Items.Add(itemGrid185);
     this.intzaCustBottTfex.Items.Add(itemGrid186);
     this.intzaCustBottTfex.Items.Add(itemGrid187);
     this.intzaCustBottTfex.Items.Add(itemGrid188);
     this.intzaCustBottTfex.Items.Add(itemGrid189);
     this.intzaCustBottTfex.Items.Add(itemGrid190);
     this.intzaCustBottTfex.Items.Add(itemGrid191);
     this.intzaCustBottTfex.Items.Add(itemGrid192);
     this.intzaCustBottTfex.Items.Add(itemGrid193);
     this.intzaCustBottTfex.Items.Add(itemGrid194);
     this.intzaCustBottTfex.LineColor = Color.Red;
     this.intzaCustBottTfex.Location = new Point(3, 86);
     this.intzaCustBottTfex.Margin = new Padding(1);
     this.intzaCustBottTfex.Name = "intzaCustBottTfex";
     this.intzaCustBottTfex.Size = new Size(851, 47);
     this.intzaCustBottTfex.TabIndex = 26;
     this.intzaCustBottTfex.TabStop = false;
     this.intzaCustHeadTfex.AllowDrop = true;
     this.intzaCustHeadTfex.Anchor = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right);
     this.intzaCustHeadTfex.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaCustHeadTfex.CanDrag = false;
     this.intzaCustHeadTfex.IsAutoRepaint = true;
     this.intzaCustHeadTfex.IsDroped = false;
     itemGrid195.AdjustFontSize = -1f;
     itemGrid195.Alignment = StringAlignment.Near;
     itemGrid195.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid195.Changed = false;
     itemGrid195.FieldType = ItemType.Label2;
     itemGrid195.FontColor = Color.LightGray;
     itemGrid195.FontStyle = FontStyle.Regular;
     itemGrid195.Height = 1f;
     itemGrid195.IsBlink = 0;
     itemGrid195.Name = "lbCustName";
     itemGrid195.Text = "Name";
     itemGrid195.ValueFormat = FormatType.Text;
     itemGrid195.Visible = true;
     itemGrid195.Width = 14;
     itemGrid195.X = 0;
     itemGrid195.Y = 0f;
     itemGrid196.AdjustFontSize = 0f;
     itemGrid196.Alignment = StringAlignment.Near;
     itemGrid196.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid196.Changed = false;
     itemGrid196.FieldType = ItemType.Text;
     itemGrid196.FontColor = Color.Yellow;
     itemGrid196.FontStyle = FontStyle.Regular;
     itemGrid196.Height = 1f;
     itemGrid196.IsBlink = 0;
     itemGrid196.Name = "tbCustName";
     itemGrid196.Text = "";
     itemGrid196.ValueFormat = FormatType.Text;
     itemGrid196.Visible = true;
     itemGrid196.Width = 32;
     itemGrid196.X = 14;
     itemGrid196.Y = 0f;
     itemGrid197.AdjustFontSize = -1f;
     itemGrid197.Alignment = StringAlignment.Near;
     itemGrid197.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid197.Changed = false;
     itemGrid197.FieldType = ItemType.Label2;
     itemGrid197.FontColor = Color.LightGray;
     itemGrid197.FontStyle = FontStyle.Regular;
     itemGrid197.Height = 1f;
     itemGrid197.IsBlink = 0;
     itemGrid197.Name = "lbVipFlag";
     itemGrid197.Text = "Vip Flag";
     itemGrid197.ValueFormat = FormatType.Text;
     itemGrid197.Visible = false;
     itemGrid197.Width = 14;
     itemGrid197.X = 0;
     itemGrid197.Y = 1f;
     itemGrid198.AdjustFontSize = 0f;
     itemGrid198.Alignment = StringAlignment.Near;
     itemGrid198.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid198.Changed = false;
     itemGrid198.FieldType = ItemType.Text;
     itemGrid198.FontColor = Color.Yellow;
     itemGrid198.FontStyle = FontStyle.Regular;
     itemGrid198.Height = 1f;
     itemGrid198.IsBlink = 0;
     itemGrid198.Name = "tbVipFlag";
     itemGrid198.Text = "";
     itemGrid198.ValueFormat = FormatType.Text;
     itemGrid198.Visible = false;
     itemGrid198.Width = 17;
     itemGrid198.X = 14;
     itemGrid198.Y = 1f;
     itemGrid199.AdjustFontSize = -1f;
     itemGrid199.Alignment = StringAlignment.Near;
     itemGrid199.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid199.Changed = false;
     itemGrid199.FieldType = ItemType.Label2;
     itemGrid199.FontColor = Color.LightGray;
     itemGrid199.FontStyle = FontStyle.Regular;
     itemGrid199.Height = 1f;
     itemGrid199.IsBlink = 0;
     itemGrid199.Name = "lbAccountType";
     itemGrid199.Text = "Account Type";
     itemGrid199.ValueFormat = FormatType.Text;
     itemGrid199.Visible = true;
     itemGrid199.Width = 14;
     itemGrid199.X = 0;
     itemGrid199.Y = 1f;
     itemGrid200.AdjustFontSize = 0f;
     itemGrid200.Alignment = StringAlignment.Near;
     itemGrid200.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid200.Changed = false;
     itemGrid200.FieldType = ItemType.Text;
     itemGrid200.FontColor = Color.Yellow;
     itemGrid200.FontStyle = FontStyle.Regular;
     itemGrid200.Height = 1f;
     itemGrid200.IsBlink = 0;
     itemGrid200.Name = "tbAccountType";
     itemGrid200.Text = "";
     itemGrid200.ValueFormat = FormatType.Text;
     itemGrid200.Visible = true;
     itemGrid200.Width = 17;
     itemGrid200.X = 14;
     itemGrid200.Y = 1f;
     itemGrid201.AdjustFontSize = -1f;
     itemGrid201.Alignment = StringAlignment.Near;
     itemGrid201.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid201.Changed = false;
     itemGrid201.FieldType = ItemType.Label2;
     itemGrid201.FontColor = Color.LightGray;
     itemGrid201.FontStyle = FontStyle.Regular;
     itemGrid201.Height = 1f;
     itemGrid201.IsBlink = 0;
     itemGrid201.Name = "lbCantOverCredit";
     itemGrid201.Text = "Can't over credit";
     itemGrid201.ValueFormat = FormatType.Text;
     itemGrid201.Visible = false;
     itemGrid201.Width = 14;
     itemGrid201.X = 0;
     itemGrid201.Y = 2f;
     itemGrid202.AdjustFontSize = 0f;
     itemGrid202.Alignment = StringAlignment.Near;
     itemGrid202.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid202.Changed = false;
     itemGrid202.FieldType = ItemType.Text;
     itemGrid202.FontColor = Color.Yellow;
     itemGrid202.FontStyle = FontStyle.Regular;
     itemGrid202.Height = 1f;
     itemGrid202.IsBlink = 0;
     itemGrid202.Name = "tbCantOverCredit";
     itemGrid202.Text = "";
     itemGrid202.ValueFormat = FormatType.Text;
     itemGrid202.Visible = false;
     itemGrid202.Width = 17;
     itemGrid202.X = 14;
     itemGrid202.Y = 2f;
     itemGrid203.AdjustFontSize = -1f;
     itemGrid203.Alignment = StringAlignment.Near;
     itemGrid203.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid203.Changed = false;
     itemGrid203.FieldType = ItemType.Label2;
     itemGrid203.FontColor = Color.LightGray;
     itemGrid203.FontStyle = FontStyle.Regular;
     itemGrid203.Height = 1f;
     itemGrid203.IsBlink = 0;
     itemGrid203.Name = "lbBuyLimit";
     itemGrid203.Text = "Buy Limit";
     itemGrid203.ValueFormat = FormatType.Text;
     itemGrid203.Visible = true;
     itemGrid203.Width = 14;
     itemGrid203.X = 0;
     itemGrid203.Y = 2f;
     itemGrid204.AdjustFontSize = 0f;
     itemGrid204.Alignment = StringAlignment.Near;
     itemGrid204.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid204.Changed = false;
     itemGrid204.FieldType = ItemType.Text;
     itemGrid204.FontColor = Color.Yellow;
     itemGrid204.FontStyle = FontStyle.Regular;
     itemGrid204.Height = 1f;
     itemGrid204.IsBlink = 0;
     itemGrid204.Name = "tbBuyLimit";
     itemGrid204.Text = "";
     itemGrid204.ValueFormat = FormatType.Text;
     itemGrid204.Visible = true;
     itemGrid204.Width = 17;
     itemGrid204.X = 14;
     itemGrid204.Y = 2f;
     itemGrid205.AdjustFontSize = -1f;
     itemGrid205.Alignment = StringAlignment.Near;
     itemGrid205.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid205.Changed = false;
     itemGrid205.FieldType = ItemType.Label2;
     itemGrid205.FontColor = Color.LightGray;
     itemGrid205.FontStyle = FontStyle.Regular;
     itemGrid205.Height = 1f;
     itemGrid205.IsBlink = 0;
     itemGrid205.Name = "lbCustomerType";
     itemGrid205.Text = "Customer Type";
     itemGrid205.ValueFormat = FormatType.Text;
     itemGrid205.Visible = true;
     itemGrid205.Width = 17;
     itemGrid205.X = 33;
     itemGrid205.Y = 1f;
     itemGrid206.AdjustFontSize = 0f;
     itemGrid206.Alignment = StringAlignment.Near;
     itemGrid206.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid206.Changed = false;
     itemGrid206.FieldType = ItemType.Text;
     itemGrid206.FontColor = Color.Yellow;
     itemGrid206.FontStyle = FontStyle.Regular;
     itemGrid206.Height = 1f;
     itemGrid206.IsBlink = 0;
     itemGrid206.Name = "tbCustomerType";
     itemGrid206.Text = "";
     itemGrid206.ValueFormat = FormatType.Text;
     itemGrid206.Visible = true;
     itemGrid206.Width = 15;
     itemGrid206.X = 50;
     itemGrid206.Y = 1f;
     itemGrid207.AdjustFontSize = -1f;
     itemGrid207.Alignment = StringAlignment.Near;
     itemGrid207.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid207.Changed = false;
     itemGrid207.FieldType = ItemType.Label2;
     itemGrid207.FontColor = Color.LightGray;
     itemGrid207.FontStyle = FontStyle.Regular;
     itemGrid207.Height = 1f;
     itemGrid207.IsBlink = 0;
     itemGrid207.Name = "lbCashBalance";
     itemGrid207.Text = "Prev Cash Balance";
     itemGrid207.ValueFormat = FormatType.Text;
     itemGrid207.Visible = true;
     itemGrid207.Width = 14;
     itemGrid207.X = 0;
     itemGrid207.Y = 3f;
     itemGrid208.AdjustFontSize = 0f;
     itemGrid208.Alignment = StringAlignment.Near;
     itemGrid208.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid208.Changed = false;
     itemGrid208.FieldType = ItemType.Text;
     itemGrid208.FontColor = Color.Yellow;
     itemGrid208.FontStyle = FontStyle.Regular;
     itemGrid208.Height = 1f;
     itemGrid208.IsBlink = 0;
     itemGrid208.Name = "CashBalancePrev";
     itemGrid208.Text = "";
     itemGrid208.ValueFormat = FormatType.Text;
     itemGrid208.Visible = true;
     itemGrid208.Width = 17;
     itemGrid208.X = 14;
     itemGrid208.Y = 3f;
     itemGrid209.AdjustFontSize = -1f;
     itemGrid209.Alignment = StringAlignment.Near;
     itemGrid209.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid209.Changed = false;
     itemGrid209.FieldType = ItemType.Label2;
     itemGrid209.FontColor = Color.LightGray;
     itemGrid209.FontStyle = FontStyle.Regular;
     itemGrid209.Height = 1f;
     itemGrid209.IsBlink = 0;
     itemGrid209.Name = "lbCustomerFlag";
     itemGrid209.Text = "Customer Flag";
     itemGrid209.ValueFormat = FormatType.Text;
     itemGrid209.Visible = true;
     itemGrid209.Width = 15;
     itemGrid209.X = 67;
     itemGrid209.Y = 1f;
     itemGrid210.AdjustFontSize = 0f;
     itemGrid210.Alignment = StringAlignment.Near;
     itemGrid210.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid210.Changed = false;
     itemGrid210.FieldType = ItemType.Text;
     itemGrid210.FontColor = Color.Yellow;
     itemGrid210.FontStyle = FontStyle.Regular;
     itemGrid210.Height = 1f;
     itemGrid210.IsBlink = 0;
     itemGrid210.Name = "tbCustomerFlag";
     itemGrid210.Text = "";
     itemGrid210.ValueFormat = FormatType.Text;
     itemGrid210.Visible = true;
     itemGrid210.Width = 18;
     itemGrid210.X = 82;
     itemGrid210.Y = 1f;
     itemGrid211.AdjustFontSize = -1f;
     itemGrid211.Alignment = StringAlignment.Near;
     itemGrid211.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid211.Changed = false;
     itemGrid211.FieldType = ItemType.Label2;
     itemGrid211.FontColor = Color.LightGray;
     itemGrid211.FontStyle = FontStyle.Regular;
     itemGrid211.Height = 1f;
     itemGrid211.IsBlink = 0;
     itemGrid211.Name = "lbCreditLine";
     itemGrid211.Text = "Credit Line";
     itemGrid211.ValueFormat = FormatType.Text;
     itemGrid211.Visible = true;
     itemGrid211.Width = 15;
     itemGrid211.X = 67;
     itemGrid211.Y = 2f;
     itemGrid212.AdjustFontSize = 0f;
     itemGrid212.Alignment = StringAlignment.Near;
     itemGrid212.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid212.Changed = false;
     itemGrid212.FieldType = ItemType.Text;
     itemGrid212.FontColor = Color.Yellow;
     itemGrid212.FontStyle = FontStyle.Regular;
     itemGrid212.Height = 1f;
     itemGrid212.IsBlink = 0;
     itemGrid212.Name = "tbCreditLine";
     itemGrid212.Text = "";
     itemGrid212.ValueFormat = FormatType.Text;
     itemGrid212.Visible = true;
     itemGrid212.Width = 18;
     itemGrid212.X = 82;
     itemGrid212.Y = 2f;
     itemGrid213.AdjustFontSize = -1f;
     itemGrid213.Alignment = StringAlignment.Near;
     itemGrid213.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid213.Changed = false;
     itemGrid213.FieldType = ItemType.Label2;
     itemGrid213.FontColor = Color.LightGray;
     itemGrid213.FontStyle = FontStyle.Regular;
     itemGrid213.Height = 1f;
     itemGrid213.IsBlink = 0;
     itemGrid213.Name = "lbDepositWithdraw";
     itemGrid213.Text = "Deposit/Withdraw";
     itemGrid213.ValueFormat = FormatType.Text;
     itemGrid213.Visible = true;
     itemGrid213.Width = 17;
     itemGrid213.X = 33;
     itemGrid213.Y = 2f;
     itemGrid214.AdjustFontSize = 0f;
     itemGrid214.Alignment = StringAlignment.Near;
     itemGrid214.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid214.Changed = false;
     itemGrid214.FieldType = ItemType.Text;
     itemGrid214.FontColor = Color.Yellow;
     itemGrid214.FontStyle = FontStyle.Regular;
     itemGrid214.Height = 1f;
     itemGrid214.IsBlink = 0;
     itemGrid214.Name = "tbDepositWithdraw";
     itemGrid214.Text = "";
     itemGrid214.ValueFormat = FormatType.Text;
     itemGrid214.Visible = true;
     itemGrid214.Width = 15;
     itemGrid214.X = 50;
     itemGrid214.Y = 2f;
     itemGrid215.AdjustFontSize = -1f;
     itemGrid215.Alignment = StringAlignment.Near;
     itemGrid215.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid215.Changed = false;
     itemGrid215.FieldType = ItemType.Label2;
     itemGrid215.FontColor = Color.LightGray;
     itemGrid215.FontStyle = FontStyle.Regular;
     itemGrid215.Height = 1f;
     itemGrid215.IsBlink = 0;
     itemGrid215.Name = "lbTrader";
     itemGrid215.Text = "Trader";
     itemGrid215.ValueFormat = FormatType.Text;
     itemGrid215.Visible = true;
     itemGrid215.Width = 6;
     itemGrid215.X = 46;
     itemGrid215.Y = 0f;
     itemGrid216.AdjustFontSize = 0f;
     itemGrid216.Alignment = StringAlignment.Near;
     itemGrid216.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid216.Changed = false;
     itemGrid216.FieldType = ItemType.Text;
     itemGrid216.FontColor = Color.Yellow;
     itemGrid216.FontStyle = FontStyle.Regular;
     itemGrid216.Height = 1f;
     itemGrid216.IsBlink = 0;
     itemGrid216.Name = "tbTrader";
     itemGrid216.Text = "";
     itemGrid216.ValueFormat = FormatType.Text;
     itemGrid216.Visible = true;
     itemGrid216.Width = 35;
     itemGrid216.X = 52;
     itemGrid216.Y = 0f;
     itemGrid217.AdjustFontSize = -1f;
     itemGrid217.Alignment = StringAlignment.Near;
     itemGrid217.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid217.Changed = false;
     itemGrid217.FieldType = ItemType.Label2;
     itemGrid217.FontColor = Color.LightGray;
     itemGrid217.FontStyle = FontStyle.Regular;
     itemGrid217.Height = 1f;
     itemGrid217.IsBlink = 0;
     itemGrid217.Name = "lbCashBalance";
     itemGrid217.Text = "Cash Balance";
     itemGrid217.ValueFormat = FormatType.Text;
     itemGrid217.Visible = true;
     itemGrid217.Width = 17;
     itemGrid217.X = 33;
     itemGrid217.Y = 3f;
     itemGrid218.AdjustFontSize = 0f;
     itemGrid218.Alignment = StringAlignment.Near;
     itemGrid218.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid218.Changed = false;
     itemGrid218.FieldType = ItemType.Text;
     itemGrid218.FontColor = Color.Yellow;
     itemGrid218.FontStyle = FontStyle.Regular;
     itemGrid218.Height = 1f;
     itemGrid218.IsBlink = 0;
     itemGrid218.Name = "tbCashBalance";
     itemGrid218.Text = "";
     itemGrid218.ValueFormat = FormatType.Text;
     itemGrid218.Visible = true;
     itemGrid218.Width = 15;
     itemGrid218.X = 50;
     itemGrid218.Y = 3f;
     itemGrid219.AdjustFontSize = -1f;
     itemGrid219.Alignment = StringAlignment.Near;
     itemGrid219.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid219.Changed = false;
     itemGrid219.FieldType = ItemType.Label2;
     itemGrid219.FontColor = Color.LightGray;
     itemGrid219.FontStyle = FontStyle.Regular;
     itemGrid219.Height = 1f;
     itemGrid219.IsBlink = 0;
     itemGrid219.Name = "lbMMR";
     itemGrid219.Text = "MMR";
     itemGrid219.ValueFormat = FormatType.Text;
     itemGrid219.Visible = false;
     itemGrid219.Width = 17;
     itemGrid219.X = 33;
     itemGrid219.Y = 3f;
     itemGrid220.AdjustFontSize = 0f;
     itemGrid220.Alignment = StringAlignment.Near;
     itemGrid220.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid220.Changed = false;
     itemGrid220.FieldType = ItemType.Text;
     itemGrid220.FontColor = Color.Yellow;
     itemGrid220.FontStyle = FontStyle.Regular;
     itemGrid220.Height = 1f;
     itemGrid220.IsBlink = 0;
     itemGrid220.Name = "tbMMR";
     itemGrid220.Text = "";
     itemGrid220.ValueFormat = FormatType.Text;
     itemGrid220.Visible = false;
     itemGrid220.Width = 15;
     itemGrid220.X = 50;
     itemGrid220.Y = 3f;
     itemGrid221.AdjustFontSize = -1f;
     itemGrid221.Alignment = StringAlignment.Near;
     itemGrid221.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid221.Changed = false;
     itemGrid221.FieldType = ItemType.Label2;
     itemGrid221.FontColor = Color.LightGray;
     itemGrid221.FontStyle = FontStyle.Regular;
     itemGrid221.Height = 1f;
     itemGrid221.IsBlink = 0;
     itemGrid221.Name = "lbCommvat";
     itemGrid221.Text = "Comm+Vat";
     itemGrid221.ValueFormat = FormatType.Text;
     itemGrid221.Visible = true;
     itemGrid221.Width = 15;
     itemGrid221.X = 67;
     itemGrid221.Y = 3f;
     itemGrid222.AdjustFontSize = 0f;
     itemGrid222.Alignment = StringAlignment.Near;
     itemGrid222.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid222.Changed = false;
     itemGrid222.FieldType = ItemType.Text;
     itemGrid222.FontColor = Color.Yellow;
     itemGrid222.FontStyle = FontStyle.Regular;
     itemGrid222.Height = 1f;
     itemGrid222.IsBlink = 0;
     itemGrid222.Name = "tbCommvat";
     itemGrid222.Text = "";
     itemGrid222.ValueFormat = FormatType.Text;
     itemGrid222.Visible = true;
     itemGrid222.Width = 18;
     itemGrid222.X = 82;
     itemGrid222.Y = 3f;
     this.intzaCustHeadTfex.Items.Add(itemGrid195);
     this.intzaCustHeadTfex.Items.Add(itemGrid196);
     this.intzaCustHeadTfex.Items.Add(itemGrid197);
     this.intzaCustHeadTfex.Items.Add(itemGrid198);
     this.intzaCustHeadTfex.Items.Add(itemGrid199);
     this.intzaCustHeadTfex.Items.Add(itemGrid200);
     this.intzaCustHeadTfex.Items.Add(itemGrid201);
     this.intzaCustHeadTfex.Items.Add(itemGrid202);
     this.intzaCustHeadTfex.Items.Add(itemGrid203);
     this.intzaCustHeadTfex.Items.Add(itemGrid204);
     this.intzaCustHeadTfex.Items.Add(itemGrid205);
     this.intzaCustHeadTfex.Items.Add(itemGrid206);
     this.intzaCustHeadTfex.Items.Add(itemGrid207);
     this.intzaCustHeadTfex.Items.Add(itemGrid208);
     this.intzaCustHeadTfex.Items.Add(itemGrid209);
     this.intzaCustHeadTfex.Items.Add(itemGrid210);
     this.intzaCustHeadTfex.Items.Add(itemGrid211);
     this.intzaCustHeadTfex.Items.Add(itemGrid212);
     this.intzaCustHeadTfex.Items.Add(itemGrid213);
     this.intzaCustHeadTfex.Items.Add(itemGrid214);
     this.intzaCustHeadTfex.Items.Add(itemGrid215);
     this.intzaCustHeadTfex.Items.Add(itemGrid216);
     this.intzaCustHeadTfex.Items.Add(itemGrid217);
     this.intzaCustHeadTfex.Items.Add(itemGrid218);
     this.intzaCustHeadTfex.Items.Add(itemGrid219);
     this.intzaCustHeadTfex.Items.Add(itemGrid220);
     this.intzaCustHeadTfex.Items.Add(itemGrid221);
     this.intzaCustHeadTfex.Items.Add(itemGrid222);
     this.intzaCustHeadTfex.LineColor = Color.Red;
     this.intzaCustHeadTfex.Location = new Point(0, 30);
     this.intzaCustHeadTfex.Margin = new Padding(0);
     this.intzaCustHeadTfex.Name = "intzaCustHeadTfex";
     this.intzaCustHeadTfex.Size = new Size(852, 48);
     this.intzaCustHeadTfex.TabIndex = 26;
     this.intzaCustHeadTfex.TabStop = false;
     this.tStripMainT.BackColor = Color.FromArgb(30, 30, 30);
     this.tStripMainT.GripStyle = ToolStripGripStyle.Hidden;
     this.tStripMainT.Items.AddRange(new ToolStripItem[]
     {
         this.tslbAccountT,
         this.btnRefreshT,
         this.toolStripSeparator3,
         this.tsbtnPrintT,
         this.tsbtnPort,
         this.tsbtnTradeJournal,
         this.tsbtnExportCSV
     });
     this.tStripMainT.Location = new Point(0, 0);
     this.tStripMainT.Margin = new Padding(1);
     this.tStripMainT.Name = "tStripMainT";
     this.tStripMainT.Padding = new Padding(1);
     this.tStripMainT.RenderMode = ToolStripRenderMode.Professional;
     this.tStripMainT.Size = new Size(852, 25);
     this.tStripMainT.TabIndex = 26;
     this.tStripMainT.Text = "toolStrip1";
     this.tStripMainT.ItemClicked += new ToolStripItemClickedEventHandler(this.tStripMainT_ItemClicked);
     this.tslbAccountT.BackColor = Color.Black;
     this.tslbAccountT.Font = new Font("Tahoma", 8.25f);
     this.tslbAccountT.ForeColor = Color.Turquoise;
     this.tslbAccountT.Margin = new Padding(1);
     this.tslbAccountT.Name = "tslbAccountT";
     this.tslbAccountT.Padding = new Padding(3, 0, 3, 0);
     this.tslbAccountT.Size = new Size(49, 21);
     this.tslbAccountT.Text = "000000";
     this.tslbAccountT.ToolTipText = "Account";
     this.btnRefreshT.BackColor = Color.Transparent;
     this.btnRefreshT.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.btnRefreshT.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.btnRefreshT.ForeColor = Color.LightGray;
     this.btnRefreshT.Image = (Image)componentResourceManager.GetObject("btnRefreshT.Image");
     this.btnRefreshT.ImageTransparentColor = Color.Magenta;
     this.btnRefreshT.Name = "btnRefreshT";
     this.btnRefreshT.Size = new Size(23, 20);
     this.btnRefreshT.Text = "Refresh";
     this.btnRefreshT.Click += new EventHandler(this.btnRefresh_Click);
     this.toolStripSeparator3.BackColor = Color.Black;
     this.toolStripSeparator3.ForeColor = Color.LightGray;
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new Size(6, 23);
     this.tsbtnPrintT.Alignment = ToolStripItemAlignment.Right;
     this.tsbtnPrintT.BackColor = Color.Transparent;
     this.tsbtnPrintT.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnPrintT.ForeColor = Color.LightGray;
     this.tsbtnPrintT.ImageTransparentColor = Color.Magenta;
     this.tsbtnPrintT.Name = "tsbtnPrintT";
     this.tsbtnPrintT.Size = new Size(36, 20);
     this.tsbtnPrintT.Text = "Print";
     this.tsbtnPrintT.Click += new EventHandler(this.tsbtnPrintT_Click);
     this.tsbtnPort.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnPort.ForeColor = Color.WhiteSmoke;
     this.tsbtnPort.Image = (Image)componentResourceManager.GetObject("tsbtnPort.Image");
     this.tsbtnPort.ImageTransparentColor = Color.Magenta;
     this.tsbtnPort.Name = "tsbtnPort";
     this.tsbtnPort.Size = new Size(57, 20);
     this.tsbtnPort.Text = "Portfolio";
     this.tsbtnPort.Click += new EventHandler(this.tsbtnPort_Click);
     this.tsbtnTradeJournal.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnTradeJournal.ForeColor = Color.WhiteSmoke;
     this.tsbtnTradeJournal.Image = (Image)componentResourceManager.GetObject("tsbtnTradeJournal.Image");
     this.tsbtnTradeJournal.ImageTransparentColor = Color.Magenta;
     this.tsbtnTradeJournal.Name = "tsbtnTradeJournal";
     this.tsbtnTradeJournal.Size = new Size(82, 20);
     this.tsbtnTradeJournal.Text = "Trade Journal";
     this.tsbtnTradeJournal.Visible = false;
     this.tsbtnTradeJournal.Click += new EventHandler(this.tsbtnTradeJournal_Click);
     this.tsbtnExportCSV.ForeColor = Color.WhiteSmoke;
     this.tsbtnExportCSV.Image = (Image)componentResourceManager.GetObject("tsbtnExportCSV.Image");
     this.tsbtnExportCSV.ImageTransparentColor = Color.Magenta;
     this.tsbtnExportCSV.Name = "tsbtnExportCSV";
     this.tsbtnExportCSV.Size = new Size(60, 20);
     this.tsbtnExportCSV.Text = "Export";
     this.tsbtnExportCSV.Visible = false;
     this.tsbtnExportCSV.Click += new EventHandler(this.tsbtnExportCSV_Click);
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = Color.FromArgb(64, 64, 64);
     base.ClientSize = new Size(879, 705);
     base.Controls.Add(this.panelTFEXPort);
     base.Controls.Add(this.panelSET);
     base.Name = "frmPortfolio";
     this.Text = "Portfolio";
     base.IDoShownDelay += new ClientBaseForm.OnShownDelayEventHandler(this.frmPortfolio_IDoShownDelay);
     base.IDoLoadData += new ClientBaseForm.OnIDoLoadDataEventHandler(this.frmPortfolio_IDoLoadData);
     base.IDoFontChanged += new ClientBaseForm.OnFontChangedEventHandler(this.frmPortfolio_IDoFontChanged);
     base.IDoCustomSizeChanged += new ClientBaseForm.CustomSizeChangedEventHandler(this.frmPortfolio_IDoCustomSizeChanged);
     base.IDoSymbolLinked += new ClientBaseForm.OnSymbolLinkEventHandler(this.frmPortfolio_IDoSymbolLinked);
     base.IDoMainFormKeyUp += new ClientBaseForm.OnFormKeyUpEventHandler(this.frmPortfolio_IDoMainFormKeyUp);
     base.IDoReActivated += new ClientBaseForm.OnReActiveEventHandler(this.frmPortfolio_IDoReActivated);
     base.Controls.SetChildIndex(this.panelSET, 0);
     base.Controls.SetChildIndex(this.panelTFEXPort, 0);
     this.tStripMain.ResumeLayout(false);
     this.tStripMain.PerformLayout();
     this.panelNav.ResumeLayout(false);
     this.panelNav.PerformLayout();
     this.tStripMenu.ResumeLayout(false);
     this.tStripMenu.PerformLayout();
     this.panelSET.ResumeLayout(false);
     this.panelSET.PerformLayout();
     this.panelReportMenu.ResumeLayout(false);
     this.panelReportMenu.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.panelTFEXPort.ResumeLayout(false);
     this.panelTFEXPort.PerformLayout();
     this.pnlTradeJ.ResumeLayout(false);
     this.pnlTradeJ.PerformLayout();
     this.tStripTJ.ResumeLayout(false);
     this.tStripTJ.PerformLayout();
     this.tStripMainT.ResumeLayout(false);
     this.tStripMainT.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
示例#20
0
 private void InitializeComponent()
 {
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ColumnItem columnItem5 = new ColumnItem();
     ColumnItem columnItem6 = new ColumnItem();
     ColumnItem columnItem7 = new ColumnItem();
     ColumnItem columnItem8 = new ColumnItem();
     ItemGrid itemGrid = new ItemGrid();
     ItemGrid itemGrid2 = new ItemGrid();
     ItemGrid itemGrid3 = new ItemGrid();
     ItemGrid itemGrid4 = new ItemGrid();
     ItemGrid itemGrid5 = new ItemGrid();
     ItemGrid itemGrid6 = new ItemGrid();
     ItemGrid itemGrid7 = new ItemGrid();
     ItemGrid itemGrid8 = new ItemGrid();
     ItemGrid itemGrid9 = new ItemGrid();
     ItemGrid itemGrid10 = new ItemGrid();
     ItemGrid itemGrid11 = new ItemGrid();
     ItemGrid itemGrid12 = new ItemGrid();
     ItemGrid itemGrid13 = new ItemGrid();
     ItemGrid itemGrid14 = new ItemGrid();
     ItemGrid itemGrid15 = new ItemGrid();
     ItemGrid itemGrid16 = new ItemGrid();
     ItemGrid itemGrid17 = new ItemGrid();
     ItemGrid itemGrid18 = new ItemGrid();
     ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmMarketInfo));
     ColumnItem columnItem9 = new ColumnItem();
     ColumnItem columnItem10 = new ColumnItem();
     ColumnItem columnItem11 = new ColumnItem();
     ColumnItem columnItem12 = new ColumnItem();
     ColumnItem columnItem13 = new ColumnItem();
     ColumnItem columnItem14 = new ColumnItem();
     ColumnItem columnItem15 = new ColumnItem();
     ColumnItem columnItem16 = new ColumnItem();
     ColumnItem columnItem17 = new ColumnItem();
     this.tStripMenu = new ToolStrip();
     this.toolStripLabel1 = new ToolStripLabel();
     this.tsbtnSector = new ToolStripButton();
     this.tsbtnIndustry = new ToolStripButton();
     this.toolStripSeparator1 = new ToolStripSeparator();
     this.tsSortBy = new ToolStripLabel();
     this.tsbtnSortAsc = new ToolStripButton();
     this.tsbtnSortDesc = new ToolStripButton();
     this.toolStripSeparator2 = new ToolStripSeparator();
     this.toolStripLabel2 = new ToolStripLabel();
     this.tsSortBySector = new ToolStripButton();
     this.tsSortByVolume = new ToolStripButton();
     this.tsSortByValues = new ToolStripButton();
     this.panelSector = new Panel();
     this.intzaSector = new SortGrid();
     this.lbLoading2 = new Label();
     this.intzaMarketInfo = new IntzaCustomGrid();
     this.toolStrip1 = new ToolStrip();
     this.tsbtnInfo = new ToolStripButton();
     this.toolStripSeparator3 = new ToolStripSeparator();
     this.tsbtnSETChart = new ToolStripButton();
     this.tsbtnSET50Chart = new ToolStripButton();
     this.tsbtnSET100Chart = new ToolStripButton();
     this.tsbtnSETHdChart = new ToolStripButton();
     this.tsbtnMaiChart = new ToolStripButton();
     this.pictureBox1 = new PictureBox();
     this.lbChartLoading = new Label();
     this.intzaSET = new SortGrid();
     this.intzaBoard = new SortGrid();
     this.tStripMenu.SuspendLayout();
     this.panelSector.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     ((ISupportInitialize)this.pictureBox1).BeginInit();
     base.SuspendLayout();
     this.tStripMenu.AllowMerge = false;
     this.tStripMenu.BackColor = Color.FromArgb(30, 30, 30);
     this.tStripMenu.GripMargin = new Padding(0);
     this.tStripMenu.GripStyle = ToolStripGripStyle.Hidden;
     this.tStripMenu.Items.AddRange(new ToolStripItem[]
     {
         this.toolStripLabel1,
         this.tsbtnSector,
         this.tsbtnIndustry,
         this.toolStripSeparator1,
         this.tsSortBy,
         this.tsbtnSortAsc,
         this.tsbtnSortDesc,
         this.toolStripSeparator2,
         this.toolStripLabel2,
         this.tsSortBySector,
         this.tsSortByVolume,
         this.tsSortByValues
     });
     this.tStripMenu.LayoutStyle = ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.tStripMenu.Location = new Point(0, 0);
     this.tStripMenu.Name = "tStripMenu";
     this.tStripMenu.Padding = new Padding(1, 1, 1, 2);
     this.tStripMenu.RenderMode = ToolStripRenderMode.System;
     this.tStripMenu.Size = new Size(675, 26);
     this.tStripMenu.TabIndex = 10;
     this.tStripMenu.Tag = "-1";
     this.tStripMenu.Text = "ToolStrip1";
     this.toolStripLabel1.ForeColor = Color.LightGray;
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new Size(64, 20);
     this.toolStripLabel1.Text = "Selection : ";
     this.tsbtnSector.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnSector.ForeColor = Color.LightGray;
     this.tsbtnSector.ImageTransparentColor = Color.Magenta;
     this.tsbtnSector.Name = "tsbtnSector";
     this.tsbtnSector.Size = new Size(44, 20);
     this.tsbtnSector.Text = "Sector";
     this.tsbtnSector.Click += new EventHandler(this.tsbtnSector_Click);
     this.tsbtnIndustry.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnIndustry.ForeColor = Color.LightGray;
     this.tsbtnIndustry.ImageTransparentColor = Color.Magenta;
     this.tsbtnIndustry.Name = "tsbtnIndustry";
     this.tsbtnIndustry.Size = new Size(54, 20);
     this.tsbtnIndustry.Text = "Industry";
     this.tsbtnIndustry.Click += new EventHandler(this.tsbtnIndustry_Click);
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new Size(6, 23);
     this.tsSortBy.BackColor = Color.Transparent;
     this.tsSortBy.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsSortBy.Font = new Font("Microsoft Sans Serif", 9f);
     this.tsSortBy.ForeColor = Color.LightGray;
     this.tsSortBy.ImageTransparentColor = Color.Magenta;
     this.tsSortBy.Name = "tsSortBy";
     this.tsSortBy.Size = new Size(35, 20);
     this.tsSortBy.Text = "Sort :";
     this.tsbtnSortAsc.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnSortAsc.ForeColor = Color.LightGray;
     this.tsbtnSortAsc.ImageTransparentColor = Color.Magenta;
     this.tsbtnSortAsc.Name = "tsbtnSortAsc";
     this.tsbtnSortAsc.Size = new Size(67, 20);
     this.tsbtnSortAsc.Text = "Ascending";
     this.tsbtnSortAsc.Click += new EventHandler(this.tsbtnSortAsc_Click);
     this.tsbtnSortDesc.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnSortDesc.ForeColor = Color.LightGray;
     this.tsbtnSortDesc.ImageTransparentColor = Color.Magenta;
     this.tsbtnSortDesc.Name = "tsbtnSortDesc";
     this.tsbtnSortDesc.Size = new Size(73, 20);
     this.tsbtnSortDesc.Text = "Descending";
     this.tsbtnSortDesc.Click += new EventHandler(this.tsbtnSortDesc_Click);
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new Size(6, 23);
     this.toolStripLabel2.ForeColor = Color.LightGray;
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new Size(50, 20);
     this.toolStripLabel2.Text = "Sort by :";
     this.tsSortBySector.BackColor = Color.Transparent;
     this.tsSortBySector.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsSortBySector.ForeColor = Color.LightGray;
     this.tsSortBySector.ImageTransparentColor = Color.Magenta;
     this.tsSortBySector.Name = "tsSortBySector";
     this.tsSortBySector.Size = new Size(51, 20);
     this.tsSortBySector.Text = "Symbol";
     this.tsSortBySector.Click += new EventHandler(this.tsSortBySector_Click);
     this.tsSortByVolume.BackColor = Color.Transparent;
     this.tsSortByVolume.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsSortByVolume.ForeColor = Color.LightGray;
     this.tsSortByVolume.ImageTransparentColor = Color.Magenta;
     this.tsSortByVolume.Name = "tsSortByVolume";
     this.tsSortByVolume.Size = new Size(55, 20);
     this.tsSortByVolume.Text = "Volume.";
     this.tsSortByVolume.Click += new EventHandler(this.tsSortByVolume_Click);
     this.tsSortByValues.BackColor = Color.Transparent;
     this.tsSortByValues.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsSortByValues.ForeColor = Color.LightGray;
     this.tsSortByValues.ImageTransparentColor = Color.Magenta;
     this.tsSortByValues.Name = "tsSortByValues";
     this.tsSortByValues.Size = new Size(43, 20);
     this.tsSortByValues.Text = "Value.";
     this.tsSortByValues.Click += new EventHandler(this.tsSortByValues_Click);
     this.panelSector.Controls.Add(this.intzaSector);
     this.panelSector.Controls.Add(this.lbLoading2);
     this.panelSector.Controls.Add(this.tStripMenu);
     this.panelSector.Location = new Point(0, 214);
     this.panelSector.Name = "panelSector";
     this.panelSector.Size = new Size(675, 188);
     this.panelSector.TabIndex = 19;
     this.intzaSector.AllowDrop = true;
     this.intzaSector.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaSector.CanBlink = true;
     this.intzaSector.CanDrag = false;
     this.intzaSector.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Near;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "symbol";
     columnItem.Text = "Symbol";
     columnItem.ValueFormat = FormatType.Text;
     columnItem.Visible = true;
     columnItem.Width = 14;
     columnItem2.Alignment = StringAlignment.Far;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "prior";
     columnItem2.Text = "Prev";
     columnItem2.ValueFormat = FormatType.Price;
     columnItem2.Visible = true;
     columnItem2.Width = 10;
     columnItem3.Alignment = StringAlignment.Far;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "last";
     columnItem3.Text = "Last";
     columnItem3.ValueFormat = FormatType.Price;
     columnItem3.Visible = true;
     columnItem3.Width = 10;
     columnItem4.Alignment = StringAlignment.Far;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "chg";
     columnItem4.Text = "Change";
     columnItem4.ValueFormat = FormatType.ChangePrice;
     columnItem4.Visible = true;
     columnItem4.Width = 10;
     columnItem5.Alignment = StringAlignment.Far;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.LightGray;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "pchg";
     columnItem5.Text = "%Change";
     columnItem5.ValueFormat = FormatType.ChangePrice;
     columnItem5.Visible = true;
     columnItem5.Width = 10;
     columnItem6.Alignment = StringAlignment.Far;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.ColumnAlignment = StringAlignment.Center;
     columnItem6.FontColor = Color.LightGray;
     columnItem6.MyStyle = FontStyle.Regular;
     columnItem6.Name = "volume";
     columnItem6.Text = "Volume";
     columnItem6.ValueFormat = FormatType.Volume;
     columnItem6.Visible = true;
     columnItem6.Width = 17;
     columnItem7.Alignment = StringAlignment.Far;
     columnItem7.BackColor = Color.FromArgb(64, 64, 64);
     columnItem7.ColumnAlignment = StringAlignment.Center;
     columnItem7.FontColor = Color.LightGray;
     columnItem7.MyStyle = FontStyle.Regular;
     columnItem7.Name = "value";
     columnItem7.Text = "Value";
     columnItem7.ValueFormat = FormatType.Volume;
     columnItem7.Visible = true;
     columnItem7.Width = 19;
     columnItem8.Alignment = StringAlignment.Far;
     columnItem8.BackColor = Color.FromArgb(64, 64, 64);
     columnItem8.ColumnAlignment = StringAlignment.Center;
     columnItem8.FontColor = Color.LightGray;
     columnItem8.MyStyle = FontStyle.Regular;
     columnItem8.Name = "pmkt";
     columnItem8.Text = "%Mkt";
     columnItem8.ValueFormat = FormatType.Price;
     columnItem8.Visible = true;
     columnItem8.Width = 10;
     this.intzaSector.Columns.Add(columnItem);
     this.intzaSector.Columns.Add(columnItem2);
     this.intzaSector.Columns.Add(columnItem3);
     this.intzaSector.Columns.Add(columnItem4);
     this.intzaSector.Columns.Add(columnItem5);
     this.intzaSector.Columns.Add(columnItem6);
     this.intzaSector.Columns.Add(columnItem7);
     this.intzaSector.Columns.Add(columnItem8);
     this.intzaSector.CurrentScroll = 0;
     this.intzaSector.Dock = DockStyle.Fill;
     this.intzaSector.FocusItemIndex = -1;
     this.intzaSector.ForeColor = Color.Black;
     this.intzaSector.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaSector.HeaderPctHeight = 80f;
     this.intzaSector.IsAutoRepaint = true;
     this.intzaSector.IsDrawFullRow = false;
     this.intzaSector.IsDrawGrid = true;
     this.intzaSector.IsDrawHeader = true;
     this.intzaSector.IsScrollable = true;
     this.intzaSector.Location = new Point(0, 26);
     this.intzaSector.MainColumn = "";
     this.intzaSector.Name = "intzaSector";
     this.intzaSector.Rows = 0;
     this.intzaSector.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaSector.RowSelectType = 0;
     this.intzaSector.RowsVisible = 0;
     this.intzaSector.Size = new Size(675, 162);
     this.intzaSector.SortColumnName = "";
     this.intzaSector.SortType = SortType.Desc;
     this.intzaSector.TabIndex = 86;
     this.lbLoading2.AutoSize = true;
     this.lbLoading2.BorderStyle = BorderStyle.FixedSingle;
     this.lbLoading2.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbLoading2.ForeColor = Color.Yellow;
     this.lbLoading2.Location = new Point(308, 99);
     this.lbLoading2.Name = "lbLoading2";
     this.lbLoading2.Padding = new Padding(5, 3, 5, 3);
     this.lbLoading2.Size = new Size(69, 21);
     this.lbLoading2.TabIndex = 85;
     this.lbLoading2.Text = "Loading ...";
     this.lbLoading2.TextAlign = ContentAlignment.MiddleCenter;
     this.lbLoading2.Visible = false;
     this.intzaMarketInfo.AllowDrop = true;
     this.intzaMarketInfo.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaMarketInfo.CanDrag = false;
     this.intzaMarketInfo.IsAutoRepaint = true;
     this.intzaMarketInfo.IsDroped = false;
     itemGrid.AdjustFontSize = 0f;
     itemGrid.Alignment = StringAlignment.Near;
     itemGrid.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid.Changed = false;
     itemGrid.FieldType = ItemType.Label2;
     itemGrid.FontColor = Color.LightGray;
     itemGrid.FontStyle = FontStyle.Regular;
     itemGrid.Height = 1f;
     itemGrid.IsBlink = 0;
     itemGrid.Name = "upvolume_label";
     itemGrid.Text = "Up Vol";
     itemGrid.ValueFormat = FormatType.Text;
     itemGrid.Visible = true;
     itemGrid.Width = 25;
     itemGrid.X = 0;
     itemGrid.Y = 0f;
     itemGrid2.AdjustFontSize = 0f;
     itemGrid2.Alignment = StringAlignment.Far;
     itemGrid2.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid2.Changed = false;
     itemGrid2.FieldType = ItemType.Text;
     itemGrid2.FontColor = Color.Lime;
     itemGrid2.FontStyle = FontStyle.Regular;
     itemGrid2.Height = 1f;
     itemGrid2.IsBlink = 0;
     itemGrid2.Name = "upvolume_text";
     itemGrid2.Text = "";
     itemGrid2.ValueFormat = FormatType.Volume;
     itemGrid2.Visible = true;
     itemGrid2.Width = 30;
     itemGrid2.X = 25;
     itemGrid2.Y = 0f;
     itemGrid3.AdjustFontSize = 0f;
     itemGrid3.Alignment = StringAlignment.Near;
     itemGrid3.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid3.Changed = false;
     itemGrid3.FieldType = ItemType.Label2;
     itemGrid3.FontColor = Color.LightGray;
     itemGrid3.FontStyle = FontStyle.Regular;
     itemGrid3.Height = 1f;
     itemGrid3.IsBlink = 0;
     itemGrid3.Name = "maival_label";
     itemGrid3.Text = "MAI Val";
     itemGrid3.ValueFormat = FormatType.Text;
     itemGrid3.Visible = true;
     itemGrid3.Width = 18;
     itemGrid3.X = 57;
     itemGrid3.Y = 0f;
     itemGrid4.AdjustFontSize = 0f;
     itemGrid4.Alignment = StringAlignment.Far;
     itemGrid4.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid4.Changed = false;
     itemGrid4.FieldType = ItemType.Text;
     itemGrid4.FontColor = Color.Yellow;
     itemGrid4.FontStyle = FontStyle.Regular;
     itemGrid4.Height = 1f;
     itemGrid4.IsBlink = 0;
     itemGrid4.Name = "maival_text";
     itemGrid4.Text = "";
     itemGrid4.ValueFormat = FormatType.Price;
     itemGrid4.Visible = true;
     itemGrid4.Width = 25;
     itemGrid4.X = 75;
     itemGrid4.Y = 0f;
     itemGrid5.AdjustFontSize = 0f;
     itemGrid5.Alignment = StringAlignment.Near;
     itemGrid5.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid5.Changed = false;
     itemGrid5.FieldType = ItemType.Label2;
     itemGrid5.FontColor = Color.LightGray;
     itemGrid5.FontStyle = FontStyle.Regular;
     itemGrid5.Height = 1f;
     itemGrid5.IsBlink = 0;
     itemGrid5.Name = "downvolume_label";
     itemGrid5.Text = "Down Vol";
     itemGrid5.ValueFormat = FormatType.Text;
     itemGrid5.Visible = true;
     itemGrid5.Width = 25;
     itemGrid5.X = 0;
     itemGrid5.Y = 1f;
     itemGrid6.AdjustFontSize = 0f;
     itemGrid6.Alignment = StringAlignment.Far;
     itemGrid6.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid6.Changed = false;
     itemGrid6.FieldType = ItemType.Text;
     itemGrid6.FontColor = Color.Red;
     itemGrid6.FontStyle = FontStyle.Regular;
     itemGrid6.Height = 1f;
     itemGrid6.IsBlink = 0;
     itemGrid6.Name = "downvolume_text";
     itemGrid6.Text = "";
     itemGrid6.ValueFormat = FormatType.Volume;
     itemGrid6.Visible = true;
     itemGrid6.Width = 30;
     itemGrid6.X = 25;
     itemGrid6.Y = 1f;
     itemGrid7.AdjustFontSize = 0f;
     itemGrid7.Alignment = StringAlignment.Near;
     itemGrid7.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid7.Changed = false;
     itemGrid7.FieldType = ItemType.Label2;
     itemGrid7.FontColor = Color.LightGray;
     itemGrid7.FontStyle = FontStyle.Regular;
     itemGrid7.Height = 1f;
     itemGrid7.IsBlink = 0;
     itemGrid7.Name = "nochg_volume_label";
     itemGrid7.Text = "UnChg Vol";
     itemGrid7.ValueFormat = FormatType.Text;
     itemGrid7.Visible = true;
     itemGrid7.Width = 25;
     itemGrid7.X = 0;
     itemGrid7.Y = 2f;
     itemGrid8.AdjustFontSize = 0f;
     itemGrid8.Alignment = StringAlignment.Far;
     itemGrid8.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid8.Changed = false;
     itemGrid8.FieldType = ItemType.Text;
     itemGrid8.FontColor = Color.Yellow;
     itemGrid8.FontStyle = FontStyle.Regular;
     itemGrid8.Height = 1f;
     itemGrid8.IsBlink = 0;
     itemGrid8.Name = "nochg_volume_text";
     itemGrid8.Text = "";
     itemGrid8.ValueFormat = FormatType.Volume;
     itemGrid8.Visible = true;
     itemGrid8.Width = 30;
     itemGrid8.X = 25;
     itemGrid8.Y = 2f;
     itemGrid9.AdjustFontSize = 0f;
     itemGrid9.Alignment = StringAlignment.Near;
     itemGrid9.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid9.Changed = false;
     itemGrid9.FieldType = ItemType.Label2;
     itemGrid9.FontColor = Color.LightGray;
     itemGrid9.FontStyle = FontStyle.Regular;
     itemGrid9.Height = 1f;
     itemGrid9.IsBlink = 0;
     itemGrid9.Name = "up_label";
     itemGrid9.Text = "Up";
     itemGrid9.ValueFormat = FormatType.Text;
     itemGrid9.Visible = true;
     itemGrid9.Width = 11;
     itemGrid9.X = 0;
     itemGrid9.Y = 3f;
     itemGrid10.AdjustFontSize = 0f;
     itemGrid10.Alignment = StringAlignment.Near;
     itemGrid10.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid10.Changed = false;
     itemGrid10.FieldType = ItemType.Text;
     itemGrid10.FontColor = Color.Lime;
     itemGrid10.FontStyle = FontStyle.Regular;
     itemGrid10.Height = 1f;
     itemGrid10.IsBlink = 0;
     itemGrid10.Name = "up_text";
     itemGrid10.Text = "";
     itemGrid10.ValueFormat = FormatType.Volume;
     itemGrid10.Visible = true;
     itemGrid10.Width = 15;
     itemGrid10.X = 12;
     itemGrid10.Y = 3f;
     itemGrid11.AdjustFontSize = 0f;
     itemGrid11.Alignment = StringAlignment.Near;
     itemGrid11.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid11.Changed = false;
     itemGrid11.FieldType = ItemType.Label2;
     itemGrid11.FontColor = Color.LightGray;
     itemGrid11.FontStyle = FontStyle.Regular;
     itemGrid11.Height = 1f;
     itemGrid11.IsBlink = 0;
     itemGrid11.Name = "down_label";
     itemGrid11.Text = "Down";
     itemGrid11.ValueFormat = FormatType.Volume;
     itemGrid11.Visible = true;
     itemGrid11.Width = 12;
     itemGrid11.X = 30;
     itemGrid11.Y = 3f;
     itemGrid12.AdjustFontSize = 0f;
     itemGrid12.Alignment = StringAlignment.Near;
     itemGrid12.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid12.Changed = false;
     itemGrid12.FieldType = ItemType.Text;
     itemGrid12.FontColor = Color.Red;
     itemGrid12.FontStyle = FontStyle.Regular;
     itemGrid12.Height = 1f;
     itemGrid12.IsBlink = 0;
     itemGrid12.Name = "down_text";
     itemGrid12.Text = "";
     itemGrid12.ValueFormat = FormatType.Volume;
     itemGrid12.Visible = true;
     itemGrid12.Width = 15;
     itemGrid12.X = 43;
     itemGrid12.Y = 3f;
     itemGrid13.AdjustFontSize = 0f;
     itemGrid13.Alignment = StringAlignment.Near;
     itemGrid13.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid13.Changed = false;
     itemGrid13.FieldType = ItemType.Label2;
     itemGrid13.FontColor = Color.LightGray;
     itemGrid13.FontStyle = FontStyle.Regular;
     itemGrid13.Height = 1f;
     itemGrid13.IsBlink = 0;
     itemGrid13.Name = "nochange_label";
     itemGrid13.Text = "UnChg.";
     itemGrid13.ValueFormat = FormatType.Text;
     itemGrid13.Visible = true;
     itemGrid13.Width = 15;
     itemGrid13.X = 60;
     itemGrid13.Y = 3f;
     itemGrid14.AdjustFontSize = 0f;
     itemGrid14.Alignment = StringAlignment.Near;
     itemGrid14.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid14.Changed = false;
     itemGrid14.FieldType = ItemType.Text;
     itemGrid14.FontColor = Color.Yellow;
     itemGrid14.FontStyle = FontStyle.Regular;
     itemGrid14.Height = 1f;
     itemGrid14.IsBlink = 0;
     itemGrid14.Name = "nochange_text";
     itemGrid14.Text = "";
     itemGrid14.ValueFormat = FormatType.Volume;
     itemGrid14.Visible = true;
     itemGrid14.Width = 13;
     itemGrid14.X = 75;
     itemGrid14.Y = 3f;
     itemGrid15.AdjustFontSize = 0f;
     itemGrid15.Alignment = StringAlignment.Near;
     itemGrid15.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid15.Changed = false;
     itemGrid15.FieldType = ItemType.Label2;
     itemGrid15.FontColor = Color.LightGray;
     itemGrid15.FontStyle = FontStyle.Regular;
     itemGrid15.Height = 1f;
     itemGrid15.IsBlink = 0;
     itemGrid15.Name = "tick_label";
     itemGrid15.Text = "Tick";
     itemGrid15.ValueFormat = FormatType.Text;
     itemGrid15.Visible = true;
     itemGrid15.Width = 11;
     itemGrid15.X = 0;
     itemGrid15.Y = 4f;
     itemGrid16.AdjustFontSize = 0f;
     itemGrid16.Alignment = StringAlignment.Near;
     itemGrid16.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid16.Changed = false;
     itemGrid16.FieldType = ItemType.Text;
     itemGrid16.FontColor = Color.White;
     itemGrid16.FontStyle = FontStyle.Regular;
     itemGrid16.Height = 1f;
     itemGrid16.IsBlink = 0;
     itemGrid16.Name = "tick_text";
     itemGrid16.Text = "";
     itemGrid16.ValueFormat = FormatType.Price;
     itemGrid16.Visible = true;
     itemGrid16.Width = 15;
     itemGrid16.X = 12;
     itemGrid16.Y = 4f;
     itemGrid17.AdjustFontSize = 0f;
     itemGrid17.Alignment = StringAlignment.Near;
     itemGrid17.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid17.Changed = false;
     itemGrid17.FieldType = ItemType.Label2;
     itemGrid17.FontColor = Color.LightGray;
     itemGrid17.FontStyle = FontStyle.Regular;
     itemGrid17.Height = 1f;
     itemGrid17.IsBlink = 0;
     itemGrid17.Name = "trin_label";
     itemGrid17.Text = "Trin";
     itemGrid17.ValueFormat = FormatType.Volume;
     itemGrid17.Visible = true;
     itemGrid17.Width = 12;
     itemGrid17.X = 30;
     itemGrid17.Y = 4f;
     itemGrid18.AdjustFontSize = 0f;
     itemGrid18.Alignment = StringAlignment.Near;
     itemGrid18.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid18.Changed = false;
     itemGrid18.FieldType = ItemType.Text;
     itemGrid18.FontColor = Color.White;
     itemGrid18.FontStyle = FontStyle.Regular;
     itemGrid18.Height = 1f;
     itemGrid18.IsBlink = 0;
     itemGrid18.Name = "trin_text";
     itemGrid18.Text = "";
     itemGrid18.ValueFormat = FormatType.Price;
     itemGrid18.Visible = true;
     itemGrid18.Width = 55;
     itemGrid18.X = 43;
     itemGrid18.Y = 4f;
     this.intzaMarketInfo.Items.Add(itemGrid);
     this.intzaMarketInfo.Items.Add(itemGrid2);
     this.intzaMarketInfo.Items.Add(itemGrid3);
     this.intzaMarketInfo.Items.Add(itemGrid4);
     this.intzaMarketInfo.Items.Add(itemGrid5);
     this.intzaMarketInfo.Items.Add(itemGrid6);
     this.intzaMarketInfo.Items.Add(itemGrid7);
     this.intzaMarketInfo.Items.Add(itemGrid8);
     this.intzaMarketInfo.Items.Add(itemGrid9);
     this.intzaMarketInfo.Items.Add(itemGrid10);
     this.intzaMarketInfo.Items.Add(itemGrid11);
     this.intzaMarketInfo.Items.Add(itemGrid12);
     this.intzaMarketInfo.Items.Add(itemGrid13);
     this.intzaMarketInfo.Items.Add(itemGrid14);
     this.intzaMarketInfo.Items.Add(itemGrid15);
     this.intzaMarketInfo.Items.Add(itemGrid16);
     this.intzaMarketInfo.Items.Add(itemGrid17);
     this.intzaMarketInfo.Items.Add(itemGrid18);
     this.intzaMarketInfo.LineColor = Color.Red;
     this.intzaMarketInfo.Location = new Point(350, 128);
     this.intzaMarketInfo.Margin = new Padding(0);
     this.intzaMarketInfo.Name = "intzaMarketInfo";
     this.intzaMarketInfo.Size = new Size(316, 86);
     this.intzaMarketInfo.TabIndex = 23;
     this.intzaMarketInfo.Visible = false;
     this.toolStrip1.AutoSize = false;
     this.toolStrip1.BackColor = Color.FromArgb(30, 30, 30);
     this.toolStrip1.Dock = DockStyle.None;
     this.toolStrip1.GripStyle = ToolStripGripStyle.Hidden;
     this.toolStrip1.Items.AddRange(new ToolStripItem[]
     {
         this.tsbtnInfo,
         this.toolStripSeparator3,
         this.tsbtnSETChart,
         this.tsbtnSET50Chart,
         this.tsbtnSET100Chart,
         this.tsbtnSETHdChart,
         this.tsbtnMaiChart
     });
     this.toolStrip1.Location = new Point(350, 1);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Padding = new Padding(1, 1, 1, 2);
     this.toolStrip1.RenderMode = ToolStripRenderMode.System;
     this.toolStrip1.Size = new Size(325, 25);
     this.toolStrip1.TabIndex = 24;
     this.toolStrip1.Tag = "-1";
     this.toolStrip1.Text = "toolStrip1";
     this.tsbtnInfo.ForeColor = Color.LightGray;
     this.tsbtnInfo.Image = (Image)componentResourceManager.GetObject("tsbtnInfo.Image");
     this.tsbtnInfo.ImageTransparentColor = Color.Magenta;
     this.tsbtnInfo.Margin = new Padding(5, 1, 0, 2);
     this.tsbtnInfo.Name = "tsbtnInfo";
     this.tsbtnInfo.Size = new Size(51, 19);
     this.tsbtnInfo.Text = " Info";
     this.tsbtnInfo.Click += new EventHandler(this.tsbtnInfo_Click);
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new Size(6, 22);
     this.tsbtnSETChart.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnSETChart.ForeColor = Color.LightGray;
     this.tsbtnSETChart.ImageTransparentColor = Color.Magenta;
     this.tsbtnSETChart.Name = "tsbtnSETChart";
     this.tsbtnSETChart.Size = new Size(30, 19);
     this.tsbtnSETChart.Text = "SET";
     this.tsbtnSETChart.Click += new EventHandler(this.tsbtnSETChart_Click);
     this.tsbtnSET50Chart.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnSET50Chart.ForeColor = Color.LightGray;
     this.tsbtnSET50Chart.ImageTransparentColor = Color.Magenta;
     this.tsbtnSET50Chart.Name = "tsbtnSET50Chart";
     this.tsbtnSET50Chart.Size = new Size(42, 19);
     this.tsbtnSET50Chart.Text = "SET50";
     this.tsbtnSET50Chart.Click += new EventHandler(this.tsbtnSETChart_Click);
     this.tsbtnSET100Chart.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnSET100Chart.ForeColor = Color.LightGray;
     this.tsbtnSET100Chart.ImageTransparentColor = Color.Magenta;
     this.tsbtnSET100Chart.Name = "tsbtnSET100Chart";
     this.tsbtnSET100Chart.Size = new Size(48, 19);
     this.tsbtnSET100Chart.Text = "SET100";
     this.tsbtnSET100Chart.Click += new EventHandler(this.tsbtnSETChart_Click);
     this.tsbtnSETHdChart.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnSETHdChart.ForeColor = Color.LightGray;
     this.tsbtnSETHdChart.ImageTransparentColor = Color.Magenta;
     this.tsbtnSETHdChart.Name = "tsbtnSETHdChart";
     this.tsbtnSETHdChart.Size = new Size(47, 19);
     this.tsbtnSETHdChart.Text = "SETHD";
     this.tsbtnSETHdChart.Click += new EventHandler(this.tsbtnSETChart_Click);
     this.tsbtnMaiChart.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnMaiChart.ForeColor = Color.LightGray;
     this.tsbtnMaiChart.ImageTransparentColor = Color.Magenta;
     this.tsbtnMaiChart.Name = "tsbtnMaiChart";
     this.tsbtnMaiChart.Size = new Size(33, 19);
     this.tsbtnMaiChart.Text = "MAI";
     this.tsbtnMaiChart.Click += new EventHandler(this.tsbtnSETChart_Click);
     this.pictureBox1.BackColor = Color.FromArgb(30, 30, 30);
     this.pictureBox1.Location = new Point(360, 67);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new Size(58, 64);
     this.pictureBox1.TabIndex = 82;
     this.pictureBox1.TabStop = false;
     this.lbChartLoading.AutoSize = true;
     this.lbChartLoading.BackColor = Color.FromArgb(64, 64, 64);
     this.lbChartLoading.BorderStyle = BorderStyle.FixedSingle;
     this.lbChartLoading.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbChartLoading.ForeColor = Color.Yellow;
     this.lbChartLoading.Location = new Point(360, 150);
     this.lbChartLoading.Name = "lbChartLoading";
     this.lbChartLoading.Padding = new Padding(5, 3, 5, 3);
     this.lbChartLoading.Size = new Size(69, 21);
     this.lbChartLoading.TabIndex = 83;
     this.lbChartLoading.Text = "Loading ...";
     this.lbChartLoading.TextAlign = ContentAlignment.MiddleCenter;
     this.lbChartLoading.Visible = false;
     this.intzaSET.AllowDrop = true;
     this.intzaSET.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaSET.CanBlink = true;
     this.intzaSET.CanDrag = false;
     this.intzaSET.CanGetMouseMove = false;
     columnItem9.Alignment = StringAlignment.Center;
     columnItem9.BackColor = Color.FromArgb(64, 64, 64);
     columnItem9.ColumnAlignment = StringAlignment.Center;
     columnItem9.FontColor = Color.LightGray;
     columnItem9.MyStyle = FontStyle.Regular;
     columnItem9.Name = "name";
     columnItem9.Text = "";
     columnItem9.ValueFormat = FormatType.Text;
     columnItem9.Visible = true;
     columnItem9.Width = 20;
     columnItem10.Alignment = StringAlignment.Far;
     columnItem10.BackColor = Color.FromArgb(64, 64, 64);
     columnItem10.ColumnAlignment = StringAlignment.Center;
     columnItem10.FontColor = Color.LightGray;
     columnItem10.MyStyle = FontStyle.Regular;
     columnItem10.Name = "prior";
     columnItem10.Text = "Prev";
     columnItem10.ValueFormat = FormatType.Price;
     columnItem10.Visible = true;
     columnItem10.Width = 20;
     columnItem11.Alignment = StringAlignment.Far;
     columnItem11.BackColor = Color.FromArgb(64, 64, 64);
     columnItem11.ColumnAlignment = StringAlignment.Center;
     columnItem11.FontColor = Color.LightGray;
     columnItem11.MyStyle = FontStyle.Regular;
     columnItem11.Name = "index";
     columnItem11.Text = "Index";
     columnItem11.ValueFormat = FormatType.Price;
     columnItem11.Visible = true;
     columnItem11.Width = 20;
     columnItem12.Alignment = StringAlignment.Far;
     columnItem12.BackColor = Color.FromArgb(64, 64, 64);
     columnItem12.ColumnAlignment = StringAlignment.Center;
     columnItem12.FontColor = Color.LightGray;
     columnItem12.MyStyle = FontStyle.Regular;
     columnItem12.Name = "chg";
     columnItem12.Text = "Change";
     columnItem12.ValueFormat = FormatType.ChangePrice;
     columnItem12.Visible = true;
     columnItem12.Width = 20;
     columnItem13.Alignment = StringAlignment.Far;
     columnItem13.BackColor = Color.FromArgb(64, 64, 64);
     columnItem13.ColumnAlignment = StringAlignment.Center;
     columnItem13.FontColor = Color.LightGray;
     columnItem13.MyStyle = FontStyle.Regular;
     columnItem13.Name = "pchg";
     columnItem13.Text = "%Change";
     columnItem13.ValueFormat = FormatType.ChangePrice;
     columnItem13.Visible = true;
     columnItem13.Width = 20;
     this.intzaSET.Columns.Add(columnItem9);
     this.intzaSET.Columns.Add(columnItem10);
     this.intzaSET.Columns.Add(columnItem11);
     this.intzaSET.Columns.Add(columnItem12);
     this.intzaSET.Columns.Add(columnItem13);
     this.intzaSET.CurrentScroll = 0;
     this.intzaSET.FocusItemIndex = -1;
     this.intzaSET.ForeColor = Color.Black;
     this.intzaSET.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaSET.HeaderPctHeight = 80f;
     this.intzaSET.IsAutoRepaint = true;
     this.intzaSET.IsDrawFullRow = false;
     this.intzaSET.IsDrawGrid = true;
     this.intzaSET.IsDrawHeader = true;
     this.intzaSET.IsScrollable = true;
     this.intzaSET.Location = new Point(0, 1);
     this.intzaSET.MainColumn = "";
     this.intzaSET.Name = "intzaSET";
     this.intzaSET.Rows = 15;
     this.intzaSET.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaSET.RowSelectType = 0;
     this.intzaSET.RowsVisible = 15;
     this.intzaSET.Size = new Size(347, 207);
     this.intzaSET.SortColumnName = "";
     this.intzaSET.SortType = SortType.Desc;
     this.intzaSET.TabIndex = 85;
     this.intzaBoard.AllowDrop = true;
     this.intzaBoard.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaBoard.CanBlink = true;
     this.intzaBoard.CanDrag = false;
     this.intzaBoard.CanGetMouseMove = false;
     columnItem14.Alignment = StringAlignment.Near;
     columnItem14.BackColor = Color.FromArgb(64, 64, 64);
     columnItem14.ColumnAlignment = StringAlignment.Center;
     columnItem14.FontColor = Color.LightGray;
     columnItem14.MyStyle = FontStyle.Regular;
     columnItem14.Name = "name";
     columnItem14.Text = "Board";
     columnItem14.ValueFormat = FormatType.Text;
     columnItem14.Visible = true;
     columnItem14.Width = 20;
     columnItem15.Alignment = StringAlignment.Far;
     columnItem15.BackColor = Color.FromArgb(64, 64, 64);
     columnItem15.ColumnAlignment = StringAlignment.Center;
     columnItem15.FontColor = Color.LightGray;
     columnItem15.MyStyle = FontStyle.Regular;
     columnItem15.Name = "volume";
     columnItem15.Text = "Volume";
     columnItem15.ValueFormat = FormatType.Price;
     columnItem15.Visible = true;
     columnItem15.Width = 30;
     columnItem16.Alignment = StringAlignment.Far;
     columnItem16.BackColor = Color.FromArgb(64, 64, 64);
     columnItem16.ColumnAlignment = StringAlignment.Center;
     columnItem16.FontColor = Color.LightGray;
     columnItem16.MyStyle = FontStyle.Regular;
     columnItem16.Name = "value";
     columnItem16.Text = "Value";
     columnItem16.ValueFormat = FormatType.Volume;
     columnItem16.Visible = true;
     columnItem16.Width = 30;
     columnItem17.Alignment = StringAlignment.Far;
     columnItem17.BackColor = Color.FromArgb(64, 64, 64);
     columnItem17.ColumnAlignment = StringAlignment.Center;
     columnItem17.FontColor = Color.LightGray;
     columnItem17.MyStyle = FontStyle.Regular;
     columnItem17.Name = "value_pct";
     columnItem17.Text = "%Value";
     columnItem17.ValueFormat = FormatType.Price;
     columnItem17.Visible = true;
     columnItem17.Width = 20;
     this.intzaBoard.Columns.Add(columnItem14);
     this.intzaBoard.Columns.Add(columnItem15);
     this.intzaBoard.Columns.Add(columnItem16);
     this.intzaBoard.Columns.Add(columnItem17);
     this.intzaBoard.CurrentScroll = 0;
     this.intzaBoard.FocusItemIndex = -1;
     this.intzaBoard.ForeColor = Color.Black;
     this.intzaBoard.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaBoard.HeaderPctHeight = 80f;
     this.intzaBoard.IsAutoRepaint = true;
     this.intzaBoard.IsDrawFullRow = false;
     this.intzaBoard.IsDrawGrid = false;
     this.intzaBoard.IsDrawHeader = true;
     this.intzaBoard.IsScrollable = false;
     this.intzaBoard.Location = new Point(359, 29);
     this.intzaBoard.MainColumn = "";
     this.intzaBoard.Name = "intzaBoard";
     this.intzaBoard.Rows = 5;
     this.intzaBoard.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaBoard.RowSelectType = 0;
     this.intzaBoard.RowsVisible = 5;
     this.intzaBoard.Size = new Size(313, 70);
     this.intzaBoard.SortColumnName = "";
     this.intzaBoard.SortType = SortType.Desc;
     this.intzaBoard.TabIndex = 86;
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     this.BackColor = Color.FromArgb(20, 20, 20);
     base.ClientSize = new Size(675, 403);
     base.Controls.Add(this.intzaMarketInfo);
     base.Controls.Add(this.intzaBoard);
     base.Controls.Add(this.intzaSET);
     base.Controls.Add(this.lbChartLoading);
     base.Controls.Add(this.pictureBox1);
     base.Controls.Add(this.toolStrip1);
     base.Controls.Add(this.panelSector);
     base.KeyPreview = true;
     base.Name = "frmMarketInfo";
     this.Text = "Sector Statistic";
     base.IDoShownDelay += new ClientBaseForm.OnShownDelayEventHandler(this.frmSectorInformation_IDOShownDelay);
     base.IDoLoadData += new ClientBaseForm.OnIDoLoadDataEventHandler(this.frmMarketInfo_IDoLoadData);
     base.IDoFontChanged += new ClientBaseForm.OnFontChangedEventHandler(this.frmSectorStatistic_IDoFontChanged);
     base.IDoCustomSizeChanged += new ClientBaseForm.CustomSizeChangedEventHandler(this.frmSectorInformation_IDOCustomSizeChanged);
     base.IDoReActivated += new ClientBaseForm.OnReActiveEventHandler(this.frmSectorStatistic_IDoReActivated);
     base.Controls.SetChildIndex(this.panelSector, 0);
     base.Controls.SetChildIndex(this.toolStrip1, 0);
     base.Controls.SetChildIndex(this.pictureBox1, 0);
     base.Controls.SetChildIndex(this.lbChartLoading, 0);
     base.Controls.SetChildIndex(this.intzaSET, 0);
     base.Controls.SetChildIndex(this.intzaBoard, 0);
     base.Controls.SetChildIndex(this.intzaMarketInfo, 0);
     this.tStripMenu.ResumeLayout(false);
     this.tStripMenu.PerformLayout();
     this.panelSector.ResumeLayout(false);
     this.panelSector.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((ISupportInitialize)this.pictureBox1).EndInit();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
示例#21
0
 private void InitializeComponent()
 {
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ColumnItem columnItem5 = new ColumnItem();
     this.ViewOrderBox = new ucViewOrder();
     this.intzaSum = new SortGrid();
     this.tStripTop = new ToolStrip();
     this.tsbtnViewTransaction = new ToolStripButton();
     this.tsripViewOrderByStock = new ToolStripSeparator();
     this.tsbtnViewByStock = new ToolStripButton();
     this.OrderStatBox = new ucOrderStat();
     this.tStripTop.SuspendLayout();
     base.SuspendLayout();
     this.ViewOrderBox.BackColor = Color.FromArgb(20, 20, 20);
     this.ViewOrderBox.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.ViewOrderBox.IsActive = false;
     this.ViewOrderBox.IsLoadingData = false;
     this.ViewOrderBox.IsShowLoadingControl = false;
     this.ViewOrderBox.IsShowNextPage = false;
     this.ViewOrderBox.IsShowToolsBar = true;
     this.ViewOrderBox.Location = new Point(0, 36);
     this.ViewOrderBox.Margin = new Padding(0);
     this.ViewOrderBox.Name = "ViewOrderBox";
     this.ViewOrderBox.ShowOnMainForm = false;
     this.ViewOrderBox.Size = new Size(783, 146);
     this.ViewOrderBox.TabIndex = 8;
     this.ViewOrderBox.OnDisplaySummaryOrders += new ucViewOrder.OnDisplaySummaryOrdersHandler(this.ucViewOrder_OnDisplaySummaryOrders);
     this.intzaSum.AllowDrop = true;
     this.intzaSum.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaSum.CanBlink = true;
     this.intzaSum.CanDrag = false;
     this.intzaSum.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Near;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "sum";
     columnItem.Text = "Summary";
     columnItem.ValueFormat = FormatType.Text;
     columnItem.Visible = true;
     columnItem.Width = 28;
     columnItem2.Alignment = StringAlignment.Far;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "volume";
     columnItem2.Text = "Volume";
     columnItem2.ValueFormat = FormatType.Volume;
     columnItem2.Visible = true;
     columnItem2.Width = 18;
     columnItem3.Alignment = StringAlignment.Far;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "unmatch";
     columnItem3.Text = "UnMatch Volume";
     columnItem3.ValueFormat = FormatType.Volume;
     columnItem3.Visible = true;
     columnItem3.Width = 18;
     columnItem4.Alignment = StringAlignment.Far;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "mvolume";
     columnItem4.Text = "Matched Volume";
     columnItem4.ValueFormat = FormatType.Volume;
     columnItem4.Visible = true;
     columnItem4.Width = 18;
     columnItem5.Alignment = StringAlignment.Far;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.LightGray;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "mvalue";
     columnItem5.Text = "Matched Value";
     columnItem5.ValueFormat = FormatType.Price;
     columnItem5.Visible = true;
     columnItem5.Width = 18;
     this.intzaSum.Columns.Add(columnItem);
     this.intzaSum.Columns.Add(columnItem2);
     this.intzaSum.Columns.Add(columnItem3);
     this.intzaSum.Columns.Add(columnItem4);
     this.intzaSum.Columns.Add(columnItem5);
     this.intzaSum.CurrentScroll = 0;
     this.intzaSum.FocusItemIndex = -1;
     this.intzaSum.ForeColor = Color.Black;
     this.intzaSum.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaSum.HeaderPctHeight = 80f;
     this.intzaSum.IsAutoRepaint = true;
     this.intzaSum.IsDrawFullRow = false;
     this.intzaSum.IsDrawGrid = true;
     this.intzaSum.IsDrawHeader = true;
     this.intzaSum.IsScrollable = false;
     this.intzaSum.Location = new Point(0, 345);
     this.intzaSum.MainColumn = "";
     this.intzaSum.Name = "intzaSum";
     this.intzaSum.Rows = 2;
     this.intzaSum.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaSum.RowSelectType = 0;
     this.intzaSum.RowsVisible = 2;
     this.intzaSum.Size = new Size(783, 52);
     this.intzaSum.SortColumnName = "";
     this.intzaSum.SortType = SortType.Desc;
     this.intzaSum.TabIndex = 25;
     this.tStripTop.AllowMerge = false;
     this.tStripTop.BackColor = Color.FromArgb(30, 30, 30);
     this.tStripTop.CanOverflow = false;
     this.tStripTop.GripMargin = new Padding(0);
     this.tStripTop.GripStyle = ToolStripGripStyle.Hidden;
     this.tStripTop.Items.AddRange(new ToolStripItem[]
     {
         this.tsbtnViewTransaction,
         this.tsripViewOrderByStock,
         this.tsbtnViewByStock
     });
     this.tStripTop.LayoutStyle = ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.tStripTop.Location = new Point(0, 0);
     this.tStripTop.Name = "tStripTop";
     this.tStripTop.Padding = new Padding(1, 1, 1, 2);
     this.tStripTop.RenderMode = ToolStripRenderMode.Professional;
     this.tStripTop.Size = new Size(784, 26);
     this.tStripTop.TabIndex = 58;
     this.tStripTop.Tag = "-1";
     this.tsbtnViewTransaction.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnViewTransaction.ForeColor = Color.Orange;
     this.tsbtnViewTransaction.ImageTransparentColor = Color.Magenta;
     this.tsbtnViewTransaction.Margin = new Padding(5, 1, 5, 2);
     this.tsbtnViewTransaction.Name = "tsbtnViewTransaction";
     this.tsbtnViewTransaction.Size = new Size(155, 20);
     this.tsbtnViewTransaction.Text = "View Order by Transactions";
     this.tsbtnViewTransaction.Click += new EventHandler(this.tsbtnViewTransaction_Click);
     this.tsripViewOrderByStock.Name = "tsripViewOrderByStock";
     this.tsripViewOrderByStock.Size = new Size(6, 23);
     this.tsbtnViewByStock.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnViewByStock.ForeColor = Color.LightGray;
     this.tsbtnViewByStock.ImageTransparentColor = Color.Magenta;
     this.tsbtnViewByStock.Margin = new Padding(5, 1, 0, 2);
     this.tsbtnViewByStock.Name = "tsbtnViewByStock";
     this.tsbtnViewByStock.Size = new Size(117, 20);
     this.tsbtnViewByStock.Text = "View Order by Stock";
     this.tsbtnViewByStock.Click += new EventHandler(this.tsbtnViewByStock_Click);
     this.OrderStatBox.BackColor = Color.FromArgb(30, 30, 30);
     this.OrderStatBox.IsLoadingData = false;
     this.OrderStatBox.Location = new Point(3, 196);
     this.OrderStatBox.Margin = new Padding(3, 4, 3, 4);
     this.OrderStatBox.Name = "OrderStatBox";
     this.OrderStatBox.Size = new Size(780, 128);
     this.OrderStatBox.TabIndex = 66;
     this.OrderStatBox.Visible = false;
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = Color.FromArgb(20, 20, 20);
     base.ClientSize = new Size(784, 431);
     base.Controls.Add(this.OrderStatBox);
     base.Controls.Add(this.tStripTop);
     base.Controls.Add(this.intzaSum);
     base.Controls.Add(this.ViewOrderBox);
     base.Margin = new Padding(3, 4, 3, 4);
     base.Name = "frmViewOrder";
     this.Text = "ViewOrder";
     base.IDoShownDelay += new ClientBaseForm.OnShownDelayEventHandler(this.frmViewOrder_IDoShownDelay);
     base.IDoLoadData += new ClientBaseForm.OnIDoLoadDataEventHandler(this.frmViewOrder_IDoLoadData);
     base.IDoFontChanged += new ClientBaseForm.OnFontChangedEventHandler(this.frmViewOrder_IDoFontChanged);
     base.IDoCustomSizeChanged += new ClientBaseForm.CustomSizeChangedEventHandler(this.frmViewOrder_IDoCustomSizeChanged);
     base.IDoSymbolLinked += new ClientBaseForm.OnSymbolLinkEventHandler(this.frmViewOrder_IDoSymbolLinked);
     base.VisibleChanged += new EventHandler(this.frmViewOrder_VisibleChanged);
     base.IDoMainFormKeyUp += new ClientBaseForm.OnFormKeyUpEventHandler(this.frmViewOrder_IDoMainFormKeyUp);
     base.IDoReActivated += new ClientBaseForm.OnReActiveEventHandler(this.frmViewOrder_IDoReActivated);
     base.Controls.SetChildIndex(this.ViewOrderBox, 0);
     base.Controls.SetChildIndex(this.intzaSum, 0);
     base.Controls.SetChildIndex(this.tStripTop, 0);
     base.Controls.SetChildIndex(this.OrderStatBox, 0);
     this.tStripTop.ResumeLayout(false);
     this.tStripTop.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
示例#22
0
 private void InitializeComponent()
 {
     ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(ucOrderStat));
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ColumnItem columnItem5 = new ColumnItem();
     ColumnItem columnItem6 = new ColumnItem();
     ColumnItem columnItem7 = new ColumnItem();
     ColumnItem columnItem8 = new ColumnItem();
     ColumnItem columnItem9 = new ColumnItem();
     ColumnItem columnItem10 = new ColumnItem();
     ColumnItem columnItem11 = new ColumnItem();
     ColumnItem columnItem12 = new ColumnItem();
     ColumnItem columnItem13 = new ColumnItem();
     this.lbLoading = new Label();
     this.tStripMenu = new ToolStrip();
     this.toolStripLabel1 = new ToolStripLabel();
     this.tstbStartDate = new ToolStripLabel();
     this.tsbtnSelStartDate = new ToolStripButton();
     this.toolStripLabel2 = new ToolStripLabel();
     this.tstbEndDate = new ToolStripLabel();
     this.tsbtnSelEndDate = new ToolStripButton();
     this.toolStripSeparator1 = new ToolStripSeparator();
     this.tsbtnReload = new ToolStripButton();
     this.monthCalendar1 = new MonthCalendar();
     this.intzaSum = new SortGrid();
     this.tableStockList = new SortGrid();
     this.tableDetail = new SortGrid();
     this.tStripMenu.SuspendLayout();
     base.SuspendLayout();
     this.lbLoading.AutoSize = true;
     this.lbLoading.BackColor = Color.FromArgb(64, 64, 64);
     this.lbLoading.BorderStyle = BorderStyle.FixedSingle;
     this.lbLoading.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbLoading.ForeColor = Color.Yellow;
     this.lbLoading.Location = new Point(352, 149);
     this.lbLoading.Name = "lbLoading";
     this.lbLoading.Padding = new Padding(5, 3, 5, 3);
     this.lbLoading.Size = new Size(76, 23);
     this.lbLoading.TabIndex = 62;
     this.lbLoading.Text = "Loading ...";
     this.lbLoading.Visible = false;
     this.tStripMenu.BackColor = Color.FromArgb(20, 20, 20);
     this.tStripMenu.GripStyle = ToolStripGripStyle.Hidden;
     this.tStripMenu.Items.AddRange(new ToolStripItem[]
     {
         this.toolStripLabel1,
         this.tstbStartDate,
         this.tsbtnSelStartDate,
         this.toolStripLabel2,
         this.tstbEndDate,
         this.tsbtnSelEndDate,
         this.toolStripSeparator1,
         this.tsbtnReload
     });
     this.tStripMenu.Location = new Point(0, 0);
     this.tStripMenu.Name = "tStripMenu";
     this.tStripMenu.Size = new Size(780, 25);
     this.tStripMenu.TabIndex = 63;
     this.tStripMenu.Text = "toolStrip1";
     this.toolStripLabel1.ForeColor = Color.LightGray;
     this.toolStripLabel1.Margin = new Padding(5, 1, 0, 2);
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new Size(64, 22);
     this.toolStripLabel1.Text = "Start Date :";
     this.tstbStartDate.BackColor = Color.Gray;
     this.tstbStartDate.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tstbStartDate.ForeColor = Color.Yellow;
     this.tstbStartDate.Margin = new Padding(5, 1, 5, 2);
     this.tstbStartDate.Name = "tstbStartDate";
     this.tstbStartDate.Size = new Size(55, 22);
     this.tstbStartDate.Text = "20090101";
     this.tsbtnSelStartDate.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnSelStartDate.Image = (Image)componentResourceManager.GetObject("tsbtnSelStartDate.Image");
     this.tsbtnSelStartDate.ImageTransparentColor = Color.Magenta;
     this.tsbtnSelStartDate.Name = "tsbtnSelStartDate";
     this.tsbtnSelStartDate.Size = new Size(23, 22);
     this.tsbtnSelStartDate.Text = "toolStripButton1";
     this.tsbtnSelStartDate.ToolTipText = "Select Date";
     this.tsbtnSelStartDate.Click += new EventHandler(this.tsbtnSelStartDate_Click);
     this.toolStripLabel2.ForeColor = Color.LightGray;
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new Size(60, 22);
     this.toolStripLabel2.Text = "End Date :";
     this.tstbEndDate.BackColor = Color.Gray;
     this.tstbEndDate.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tstbEndDate.ForeColor = Color.Yellow;
     this.tstbEndDate.Margin = new Padding(5, 1, 5, 2);
     this.tstbEndDate.Name = "tstbEndDate";
     this.tstbEndDate.Size = new Size(55, 22);
     this.tstbEndDate.Text = "20090501";
     this.tsbtnSelEndDate.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnSelEndDate.Image = (Image)componentResourceManager.GetObject("tsbtnSelEndDate.Image");
     this.tsbtnSelEndDate.ImageTransparentColor = Color.Magenta;
     this.tsbtnSelEndDate.Name = "tsbtnSelEndDate";
     this.tsbtnSelEndDate.Size = new Size(23, 22);
     this.tsbtnSelEndDate.Text = "toolStripButton2";
     this.tsbtnSelEndDate.ToolTipText = "Select Date";
     this.tsbtnSelEndDate.Click += new EventHandler(this.tsbtnSelEndDate_Click);
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new Size(6, 25);
     this.tsbtnReload.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnReload.Image = Resources.refresh;
     this.tsbtnReload.ImageTransparentColor = Color.Magenta;
     this.tsbtnReload.Margin = new Padding(5, 1, 0, 2);
     this.tsbtnReload.Name = "tsbtnReload";
     this.tsbtnReload.Size = new Size(23, 22);
     this.tsbtnReload.Text = "Reload";
     this.tsbtnReload.Click += new EventHandler(this.tsbtnReload_Click);
     this.monthCalendar1.Location = new Point(142, 27);
     this.monthCalendar1.MaxDate = new DateTime(2020, 12, 31, 0, 0, 0, 0);
     this.monthCalendar1.MaxSelectionCount = 1;
     this.monthCalendar1.MinDate = new DateTime(2009, 1, 1, 0, 0, 0, 0);
     this.monthCalendar1.Name = "monthCalendar1";
     this.monthCalendar1.TabIndex = 64;
     this.monthCalendar1.Visible = false;
     this.monthCalendar1.DateSelected += new DateRangeEventHandler(this.monthCalendar1_DateSelected);
     this.monthCalendar1.Leave += new EventHandler(this.monthCalendar1_Leave);
     this.intzaSum.AllowDrop = true;
     this.intzaSum.BackColor = Color.FromArgb(20, 20, 20);
     this.intzaSum.CanBlink = true;
     this.intzaSum.CanDrag = false;
     this.intzaSum.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Near;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "item";
     columnItem.Text = "";
     columnItem.ValueFormat = FormatType.Text;
     columnItem.Visible = true;
     columnItem.Width = 30;
     columnItem2.Alignment = StringAlignment.Center;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.Cyan;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "buy";
     columnItem2.Text = "BUY";
     columnItem2.ValueFormat = FormatType.Text;
     columnItem2.Visible = true;
     columnItem2.Width = 35;
     columnItem3.Alignment = StringAlignment.Center;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.Magenta;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "sell";
     columnItem3.Text = "SELL";
     columnItem3.ValueFormat = FormatType.Text;
     columnItem3.Visible = true;
     columnItem3.Width = 35;
     this.intzaSum.Columns.Add(columnItem);
     this.intzaSum.Columns.Add(columnItem2);
     this.intzaSum.Columns.Add(columnItem3);
     this.intzaSum.CurrentScroll = 0;
     this.intzaSum.FocusItemIndex = -1;
     this.intzaSum.ForeColor = Color.Black;
     this.intzaSum.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaSum.HeaderPctHeight = 80f;
     this.intzaSum.IsAutoRepaint = true;
     this.intzaSum.IsDrawFullRow = false;
     this.intzaSum.IsDrawGrid = true;
     this.intzaSum.IsDrawHeader = true;
     this.intzaSum.IsScrollable = true;
     this.intzaSum.Location = new Point(193, 214);
     this.intzaSum.MainColumn = "";
     this.intzaSum.Name = "intzaSum";
     this.intzaSum.Rows = 6;
     this.intzaSum.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaSum.RowSelectType = 0;
     this.intzaSum.RowsVisible = 6;
     this.intzaSum.Size = new Size(583, 99);
     this.intzaSum.SortColumnName = "";
     this.intzaSum.SortType = SortType.Desc;
     this.intzaSum.TabIndex = 7;
     this.tableStockList.AllowDrop = true;
     this.tableStockList.BackColor = Color.FromArgb(20, 20, 20);
     this.tableStockList.CanBlink = true;
     this.tableStockList.CanDrag = false;
     this.tableStockList.CanGetMouseMove = false;
     columnItem4.Alignment = StringAlignment.Center;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "rowId";
     columnItem4.Text = "No.";
     columnItem4.ValueFormat = FormatType.RecordNumber;
     columnItem4.Visible = true;
     columnItem4.Width = 20;
     columnItem5.Alignment = StringAlignment.Near;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.LightGray;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "stock";
     columnItem5.Text = "Symbol";
     columnItem5.ValueFormat = FormatType.Text;
     columnItem5.Visible = true;
     columnItem5.Width = 50;
     columnItem6.Alignment = StringAlignment.Center;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.ColumnAlignment = StringAlignment.Center;
     columnItem6.FontColor = Color.LightGray;
     columnItem6.MyStyle = FontStyle.Regular;
     columnItem6.Name = "deals";
     columnItem6.Text = "Trans";
     columnItem6.ValueFormat = FormatType.Volume;
     columnItem6.Visible = true;
     columnItem6.Width = 30;
     this.tableStockList.Columns.Add(columnItem4);
     this.tableStockList.Columns.Add(columnItem5);
     this.tableStockList.Columns.Add(columnItem6);
     this.tableStockList.CurrentScroll = 0;
     this.tableStockList.FocusItemIndex = -1;
     this.tableStockList.ForeColor = Color.Black;
     this.tableStockList.GridColor = Color.FromArgb(45, 45, 45);
     this.tableStockList.HeaderPctHeight = 80f;
     this.tableStockList.IsAutoRepaint = true;
     this.tableStockList.IsDrawFullRow = false;
     this.tableStockList.IsDrawGrid = true;
     this.tableStockList.IsDrawHeader = true;
     this.tableStockList.IsScrollable = true;
     this.tableStockList.Location = new Point(0, 28);
     this.tableStockList.MainColumn = "";
     this.tableStockList.Name = "tableStockList";
     this.tableStockList.Rows = 0;
     this.tableStockList.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.tableStockList.RowSelectType = 3;
     this.tableStockList.RowsVisible = 0;
     this.tableStockList.Size = new Size(193, 284);
     this.tableStockList.SortColumnName = "";
     this.tableStockList.SortType = SortType.Desc;
     this.tableStockList.TabIndex = 1;
     this.tableStockList.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.tableStockList_TableMouseClick);
     this.tableDetail.AllowDrop = true;
     this.tableDetail.BackColor = Color.FromArgb(20, 20, 20);
     this.tableDetail.CanBlink = true;
     this.tableDetail.CanDrag = false;
     this.tableDetail.CanGetMouseMove = false;
     columnItem7.Alignment = StringAlignment.Center;
     columnItem7.BackColor = Color.FromArgb(64, 64, 64);
     columnItem7.ColumnAlignment = StringAlignment.Center;
     columnItem7.FontColor = Color.LightGray;
     columnItem7.MyStyle = FontStyle.Regular;
     columnItem7.Name = "buyDeal";
     columnItem7.Text = "Trans";
     columnItem7.ValueFormat = FormatType.Volume;
     columnItem7.Visible = true;
     columnItem7.Width = 8;
     columnItem8.Alignment = StringAlignment.Far;
     columnItem8.BackColor = Color.FromArgb(64, 64, 64);
     columnItem8.ColumnAlignment = StringAlignment.Center;
     columnItem8.FontColor = Color.LightGray;
     columnItem8.MyStyle = FontStyle.Regular;
     columnItem8.Name = "buyVol";
     columnItem8.Text = "BuyVol";
     columnItem8.ValueFormat = FormatType.Volume;
     columnItem8.Visible = true;
     columnItem8.Width = 17;
     columnItem9.Alignment = StringAlignment.Far;
     columnItem9.BackColor = Color.FromArgb(64, 64, 64);
     columnItem9.ColumnAlignment = StringAlignment.Center;
     columnItem9.FontColor = Color.LightGray;
     columnItem9.MyStyle = FontStyle.Regular;
     columnItem9.Name = "buyMatchVol";
     columnItem9.Text = "Matched";
     columnItem9.ValueFormat = FormatType.Volume;
     columnItem9.Visible = true;
     columnItem9.Width = 17;
     columnItem10.Alignment = StringAlignment.Center;
     columnItem10.BackColor = Color.FromArgb(64, 64, 64);
     columnItem10.ColumnAlignment = StringAlignment.Center;
     columnItem10.FontColor = Color.Yellow;
     columnItem10.MyStyle = FontStyle.Regular;
     columnItem10.Name = "price";
     columnItem10.Text = "Price";
     columnItem10.ValueFormat = FormatType.Price;
     columnItem10.Visible = true;
     columnItem10.Width = 16;
     columnItem11.Alignment = StringAlignment.Far;
     columnItem11.BackColor = Color.FromArgb(64, 64, 64);
     columnItem11.ColumnAlignment = StringAlignment.Center;
     columnItem11.FontColor = Color.LightGray;
     columnItem11.MyStyle = FontStyle.Regular;
     columnItem11.Name = "sellMatchVol";
     columnItem11.Text = "Matched";
     columnItem11.ValueFormat = FormatType.Volume;
     columnItem11.Visible = true;
     columnItem11.Width = 17;
     columnItem12.Alignment = StringAlignment.Far;
     columnItem12.BackColor = Color.FromArgb(64, 64, 64);
     columnItem12.ColumnAlignment = StringAlignment.Center;
     columnItem12.FontColor = Color.LightGray;
     columnItem12.MyStyle = FontStyle.Regular;
     columnItem12.Name = "sellVol";
     columnItem12.Text = "SellVol";
     columnItem12.ValueFormat = FormatType.Volume;
     columnItem12.Visible = true;
     columnItem12.Width = 17;
     columnItem13.Alignment = StringAlignment.Center;
     columnItem13.BackColor = Color.FromArgb(64, 64, 64);
     columnItem13.ColumnAlignment = StringAlignment.Center;
     columnItem13.FontColor = Color.LightGray;
     columnItem13.MyStyle = FontStyle.Regular;
     columnItem13.Name = "sellDeal";
     columnItem13.Text = "Trans";
     columnItem13.ValueFormat = FormatType.Volume;
     columnItem13.Visible = true;
     columnItem13.Width = 8;
     this.tableDetail.Columns.Add(columnItem7);
     this.tableDetail.Columns.Add(columnItem8);
     this.tableDetail.Columns.Add(columnItem9);
     this.tableDetail.Columns.Add(columnItem10);
     this.tableDetail.Columns.Add(columnItem11);
     this.tableDetail.Columns.Add(columnItem12);
     this.tableDetail.Columns.Add(columnItem13);
     this.tableDetail.CurrentScroll = 0;
     this.tableDetail.FocusItemIndex = -1;
     this.tableDetail.ForeColor = Color.Black;
     this.tableDetail.GridColor = Color.FromArgb(45, 45, 45);
     this.tableDetail.HeaderPctHeight = 80f;
     this.tableDetail.IsAutoRepaint = true;
     this.tableDetail.IsDrawFullRow = false;
     this.tableDetail.IsDrawGrid = true;
     this.tableDetail.IsDrawHeader = true;
     this.tableDetail.IsScrollable = true;
     this.tableDetail.Location = new Point(186, 28);
     this.tableDetail.MainColumn = "";
     this.tableDetail.Name = "tableDetail";
     this.tableDetail.Rows = 0;
     this.tableDetail.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.tableDetail.RowSelectType = 0;
     this.tableDetail.RowsVisible = 0;
     this.tableDetail.Size = new Size(591, 186);
     this.tableDetail.SortColumnName = "";
     this.tableDetail.SortType = SortType.Desc;
     this.tableDetail.TabIndex = 2;
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = SystemColors.ControlDark;
     base.Controls.Add(this.monthCalendar1);
     base.Controls.Add(this.tStripMenu);
     base.Controls.Add(this.lbLoading);
     base.Controls.Add(this.intzaSum);
     base.Controls.Add(this.tableStockList);
     base.Controls.Add(this.tableDetail);
     base.Margin = new Padding(3, 4, 3, 4);
     base.Name = "ucOrderStat";
     base.Size = new Size(780, 313);
     this.tStripMenu.ResumeLayout(false);
     this.tStripMenu.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
示例#23
0
 private void InitializeComponent()
 {
     ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmBatchOrder));
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ColumnItem columnItem5 = new ColumnItem();
     ColumnItem columnItem6 = new ColumnItem();
     ColumnItem columnItem7 = new ColumnItem();
     ColumnItem columnItem8 = new ColumnItem();
     ColumnItem columnItem9 = new ColumnItem();
     ColumnItem columnItem10 = new ColumnItem();
     ColumnItem columnItem11 = new ColumnItem();
     ColumnItem columnItem12 = new ColumnItem();
     this.toolStrip1 = new ToolStrip();
     this.tsbtnClearAll = new ToolStripButton();
     this.toolStripSeparator4 = new ToolStripSeparator();
     this.tsbtnClear = new ToolStripButton();
     this.tsImportCSV = new ToolStripButton();
     this.toolStripSeparator6 = new ToolStripSeparator();
     this.tsExportCSV = new ToolStripButton();
     this.toolStripSeparator1 = new ToolStripSeparator();
     this.tsSendSelected = new ToolStripButton();
     this.toolStripSeparator3 = new ToolStripSeparator();
     this.tsbtnSendAllOrder = new ToolStripButton();
     this.toolStripSeparator2 = new ToolStripSeparator();
     this.tsbtnValidateOrder = new ToolStripButton();
     this.toolStripSeparator5 = new ToolStripSeparator();
     this.tsbtnStopSending = new ToolStripButton();
     this.cbText = new ComboBox();
     this.orderQueueDS1 = new OrderQueueDS();
     this.statusStrip1 = new StatusStrip();
     this.toolStripStatusLabel2 = new ToolStripStatusLabel();
     this.toolStripStatusLabel1 = new ToolStripStatusLabel();
     this.toolStripStatusLabel4 = new ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new ToolStripStatusLabel();
     this.tslbTotAmount = new ToolStripStatusLabel();
     this.sortGrid1 = new SortGrid();
     this.toolStrip1.SuspendLayout();
     ((ISupportInitialize)this.orderQueueDS1).BeginInit();
     this.statusStrip1.SuspendLayout();
     base.SuspendLayout();
     this.toolStrip1.BackColor = Color.FromArgb(30, 30, 30);
     this.toolStrip1.GripMargin = new Padding(0);
     this.toolStrip1.GripStyle = ToolStripGripStyle.Hidden;
     this.toolStrip1.Items.AddRange(new ToolStripItem[]
     {
         this.tsbtnClearAll,
         this.toolStripSeparator4,
         this.tsbtnClear,
         this.tsImportCSV,
         this.toolStripSeparator6,
         this.tsExportCSV,
         this.toolStripSeparator1,
         this.tsSendSelected,
         this.toolStripSeparator3,
         this.tsbtnSendAllOrder,
         this.toolStripSeparator2,
         this.tsbtnValidateOrder,
         this.toolStripSeparator5,
         this.tsbtnStopSending
     });
     this.toolStrip1.Location = new Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Padding = new Padding(1, 1, 1, 2);
     this.toolStrip1.RenderMode = ToolStripRenderMode.Professional;
     this.toolStrip1.Size = new Size(685, 26);
     this.toolStrip1.TabIndex = 8;
     this.tsbtnClearAll.Alignment = ToolStripItemAlignment.Right;
     this.tsbtnClearAll.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnClearAll.ForeColor = Color.WhiteSmoke;
     this.tsbtnClearAll.ImageTransparentColor = Color.Magenta;
     this.tsbtnClearAll.Name = "tsbtnClearAll";
     this.tsbtnClearAll.Size = new Size(55, 20);
     this.tsbtnClearAll.Text = "Clear All";
     this.tsbtnClearAll.Click += new EventHandler(this.tsbtnRemoveAll_Click);
     this.toolStripSeparator4.Alignment = ToolStripItemAlignment.Right;
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new Size(6, 23);
     this.tsbtnClear.Alignment = ToolStripItemAlignment.Right;
     this.tsbtnClear.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnClear.ForeColor = Color.WhiteSmoke;
     this.tsbtnClear.ImageTransparentColor = Color.Magenta;
     this.tsbtnClear.Name = "tsbtnClear";
     this.tsbtnClear.Size = new Size(38, 20);
     this.tsbtnClear.Text = "Clear";
     this.tsbtnClear.ToolTipText = "Clear [Ctrl+Insert]";
     this.tsbtnClear.Click += new EventHandler(this.tsbtnRemove_Click);
     this.tsImportCSV.ForeColor = Color.WhiteSmoke;
     this.tsImportCSV.Image = (Image)componentResourceManager.GetObject("tsImportCSV.Image");
     this.tsImportCSV.ImageTransparentColor = Color.Magenta;
     this.tsImportCSV.Margin = new Padding(5, 1, 0, 2);
     this.tsImportCSV.Name = "tsImportCSV";
     this.tsImportCSV.Size = new Size(96, 20);
     this.tsImportCSV.Text = "Import Order";
     this.tsImportCSV.Click += new EventHandler(this.tsImportCSV_Click);
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new Size(6, 23);
     this.tsExportCSV.ForeColor = Color.WhiteSmoke;
     this.tsExportCSV.Image = (Image)componentResourceManager.GetObject("tsExportCSV.Image");
     this.tsExportCSV.ImageTransparentColor = Color.Magenta;
     this.tsExportCSV.Margin = new Padding(2, 1, 0, 2);
     this.tsExportCSV.Name = "tsExportCSV";
     this.tsExportCSV.Size = new Size(93, 20);
     this.tsExportCSV.Text = "Export Order";
     this.tsExportCSV.Click += new EventHandler(this.tsExportCSV_Click);
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new Size(6, 23);
     this.tsSendSelected.ForeColor = Color.WhiteSmoke;
     this.tsSendSelected.ImageTransparentColor = Color.Magenta;
     this.tsSendSelected.Margin = new Padding(20, 1, 0, 2);
     this.tsSendSelected.Name = "tsSendSelected";
     this.tsSendSelected.Size = new Size(84, 20);
     this.tsSendSelected.Text = "Send Selected";
     this.tsSendSelected.Click += new EventHandler(this.tsSendSelected_Click);
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new Size(6, 23);
     this.tsbtnSendAllOrder.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnSendAllOrder.ForeColor = Color.WhiteSmoke;
     this.tsbtnSendAllOrder.ImageTransparentColor = Color.Magenta;
     this.tsbtnSendAllOrder.Margin = new Padding(2, 1, 0, 2);
     this.tsbtnSendAllOrder.Name = "tsbtnSendAllOrder";
     this.tsbtnSendAllOrder.Size = new Size(54, 20);
     this.tsbtnSendAllOrder.Text = "Send All";
     this.tsbtnSendAllOrder.Click += new EventHandler(this.tsbtnSendAllOrder_Click);
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new Size(6, 23);
     this.tsbtnValidateOrder.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnValidateOrder.ForeColor = Color.WhiteSmoke;
     this.tsbtnValidateOrder.Image = (Image)componentResourceManager.GetObject("tsbtnValidateOrder.Image");
     this.tsbtnValidateOrder.ImageTransparentColor = Color.Magenta;
     this.tsbtnValidateOrder.Margin = new Padding(2, 1, 0, 2);
     this.tsbtnValidateOrder.Name = "tsbtnValidateOrder";
     this.tsbtnValidateOrder.Size = new Size(86, 20);
     this.tsbtnValidateOrder.Text = "Validate Order";
     this.tsbtnValidateOrder.Click += new EventHandler(this.tsbtnValidateOrder_Click);
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new Size(6, 23);
     this.tsbtnStopSending.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnStopSending.ForeColor = Color.WhiteSmoke;
     this.tsbtnStopSending.Image = (Image)componentResourceManager.GetObject("tsbtnStopSending.Image");
     this.tsbtnStopSending.ImageTransparentColor = Color.Magenta;
     this.tsbtnStopSending.Name = "tsbtnStopSending";
     this.tsbtnStopSending.Size = new Size(35, 20);
     this.tsbtnStopSending.Text = "Stop";
     this.tsbtnStopSending.Click += new EventHandler(this.tsbtnStopSending_Click);
     this.cbText.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
     this.cbText.AutoCompleteSource = AutoCompleteSource.ListItems;
     this.cbText.FlatStyle = FlatStyle.Flat;
     this.cbText.FormattingEnabled = true;
     this.cbText.Location = new Point(581, 373);
     this.cbText.Margin = new Padding(0);
     this.cbText.MaxDropDownItems = 10;
     this.cbText.MaxLength = 20;
     this.cbText.Name = "cbText";
     this.cbText.Size = new Size(95, 21);
     this.cbText.TabIndex = 11;
     this.cbText.Visible = false;
     this.cbText.Leave += new EventHandler(this.cbText_Leave);
     this.cbText.KeyPress += new KeyPressEventHandler(this.cbText_KeyPress);
     this.cbText.KeyUp += new KeyEventHandler(this.cbText_KeyUp);
     this.cbText.KeyDown += new KeyEventHandler(this.cbStock_KeyDown);
     this.cbText.TextChanged += new EventHandler(this.cbText_TextChanged);
     this.orderQueueDS1.DataSetName = "OrderQueueDS";
     this.orderQueueDS1.SchemaSerializationMode = SchemaSerializationMode.IncludeSchema;
     this.statusStrip1.BackColor = Color.FromArgb(30, 30, 30);
     this.statusStrip1.Items.AddRange(new ToolStripItem[]
     {
         this.toolStripStatusLabel2,
         this.toolStripStatusLabel1,
         this.toolStripStatusLabel4,
         this.toolStripStatusLabel3,
         this.tslbTotAmount
     });
     this.statusStrip1.Location = new Point(0, 414);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new Size(685, 22);
     this.statusStrip1.TabIndex = 12;
     this.statusStrip1.Text = "statusStrip1";
     this.toolStripStatusLabel2.BackColor = Color.Transparent;
     this.toolStripStatusLabel2.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.toolStripStatusLabel2.ForeColor = Color.Violet;
     this.toolStripStatusLabel2.LinkColor = Color.Blue;
     this.toolStripStatusLabel2.Margin = new Padding(5, 3, 0, 2);
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new Size(115, 17);
     this.toolStripStatusLabel2.Text = "[ Home ] Select Item";
     this.toolStripStatusLabel2.Visible = false;
     this.toolStripStatusLabel1.BackColor = Color.Transparent;
     this.toolStripStatusLabel1.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.toolStripStatusLabel1.ForeColor = SystemColors.ActiveCaption;
     this.toolStripStatusLabel1.LinkColor = Color.Blue;
     this.toolStripStatusLabel1.Margin = new Padding(5, 3, 0, 2);
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new Size(177, 17);
     this.toolStripStatusLabel1.Text = "[ Space/Double Click ]  Edit Item";
     this.toolStripStatusLabel4.BackColor = Color.Transparent;
     this.toolStripStatusLabel4.Name = "toolStripStatusLabel4";
     this.toolStripStatusLabel4.Size = new Size(237, 17);
     this.toolStripStatusLabel4.Spring = true;
     this.toolStripStatusLabel3.BackColor = Color.Transparent;
     this.toolStripStatusLabel3.ForeColor = Color.Gainsboro;
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new Size(87, 17);
     this.toolStripStatusLabel3.Text = "Total Amount :";
     this.tslbTotAmount.ForeColor = Color.Yellow;
     this.tslbTotAmount.Name = "tslbTotAmount";
     this.tslbTotAmount.Size = new Size(13, 17);
     this.tslbTotAmount.Text = "0";
     this.sortGrid1.AllowDrop = true;
     this.sortGrid1.BackColor = Color.FromArgb(30, 30, 30);
     this.sortGrid1.CanBlink = false;
     this.sortGrid1.CanDrag = false;
     this.sortGrid1.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Center;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "no";
     columnItem.Text = "#";
     columnItem.ValueFormat = FormatType.RecordNumber;
     columnItem.Visible = true;
     columnItem.Width = 3;
     columnItem2.Alignment = StringAlignment.Center;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "checkbox";
     columnItem2.Text = "";
     columnItem2.ValueFormat = FormatType.CheckBox;
     columnItem2.Visible = true;
     columnItem2.Width = 3;
     columnItem3.Alignment = StringAlignment.Center;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "side";
     columnItem3.Text = "B/S";
     columnItem3.ValueFormat = FormatType.Text;
     columnItem3.Visible = true;
     columnItem3.Width = 5;
     columnItem4.Alignment = StringAlignment.Near;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "stock";
     columnItem4.Text = "Stock";
     columnItem4.ValueFormat = FormatType.Text;
     columnItem4.Visible = true;
     columnItem4.Width = 13;
     columnItem5.Alignment = StringAlignment.Center;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.LightGray;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "ttf";
     columnItem5.Text = "TTF";
     columnItem5.ValueFormat = FormatType.Text;
     columnItem5.Visible = true;
     columnItem5.Width = 5;
     columnItem6.Alignment = StringAlignment.Far;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.ColumnAlignment = StringAlignment.Center;
     columnItem6.FontColor = Color.LightGray;
     columnItem6.MyStyle = FontStyle.Regular;
     columnItem6.Name = "volume";
     columnItem6.Text = "Volume";
     columnItem6.ValueFormat = FormatType.Text;
     columnItem6.Visible = true;
     columnItem6.Width = 10;
     columnItem7.Alignment = StringAlignment.Far;
     columnItem7.BackColor = Color.FromArgb(64, 64, 64);
     columnItem7.ColumnAlignment = StringAlignment.Center;
     columnItem7.FontColor = Color.LightGray;
     columnItem7.MyStyle = FontStyle.Regular;
     columnItem7.Name = "price";
     columnItem7.Text = "Price";
     columnItem7.ValueFormat = FormatType.Text;
     columnItem7.Visible = true;
     columnItem7.Width = 9;
     columnItem8.Alignment = StringAlignment.Center;
     columnItem8.BackColor = Color.FromArgb(64, 64, 64);
     columnItem8.ColumnAlignment = StringAlignment.Center;
     columnItem8.FontColor = Color.LightGray;
     columnItem8.MyStyle = FontStyle.Regular;
     columnItem8.Name = "condition";
     columnItem8.Text = "Cond";
     columnItem8.ValueFormat = FormatType.Text;
     columnItem8.Visible = true;
     columnItem8.Width = 6;
     columnItem9.Alignment = StringAlignment.Far;
     columnItem9.BackColor = Color.FromArgb(64, 64, 64);
     columnItem9.ColumnAlignment = StringAlignment.Center;
     columnItem9.FontColor = Color.LightGray;
     columnItem9.MyStyle = FontStyle.Regular;
     columnItem9.Name = "pubvol";
     columnItem9.Text = "P/B Vol";
     columnItem9.ValueFormat = FormatType.Text;
     columnItem9.Visible = true;
     columnItem9.Width = 10;
     columnItem10.Alignment = StringAlignment.Center;
     columnItem10.BackColor = Color.FromArgb(64, 64, 64);
     columnItem10.ColumnAlignment = StringAlignment.Center;
     columnItem10.FontColor = Color.LightGray;
     columnItem10.MyStyle = FontStyle.Regular;
     columnItem10.Name = "deposit";
     columnItem10.Text = "Dep";
     columnItem10.ValueFormat = FormatType.Text;
     columnItem10.Visible = true;
     columnItem10.Width = 4;
     columnItem11.Alignment = StringAlignment.Far;
     columnItem11.BackColor = Color.FromArgb(64, 64, 64);
     columnItem11.ColumnAlignment = StringAlignment.Center;
     columnItem11.FontColor = Color.LightGray;
     columnItem11.MyStyle = FontStyle.Regular;
     columnItem11.Name = "amount";
     columnItem11.Text = "Amount";
     columnItem11.ValueFormat = FormatType.Price;
     columnItem11.Visible = true;
     columnItem11.Width = 12;
     columnItem12.Alignment = StringAlignment.Near;
     columnItem12.BackColor = Color.FromArgb(64, 64, 64);
     columnItem12.ColumnAlignment = StringAlignment.Center;
     columnItem12.FontColor = Color.LightGray;
     columnItem12.MyStyle = FontStyle.Regular;
     columnItem12.Name = "processstatus";
     columnItem12.Text = "Status";
     columnItem12.ValueFormat = FormatType.Text;
     columnItem12.Visible = true;
     columnItem12.Width = 20;
     this.sortGrid1.Columns.Add(columnItem);
     this.sortGrid1.Columns.Add(columnItem2);
     this.sortGrid1.Columns.Add(columnItem3);
     this.sortGrid1.Columns.Add(columnItem4);
     this.sortGrid1.Columns.Add(columnItem5);
     this.sortGrid1.Columns.Add(columnItem6);
     this.sortGrid1.Columns.Add(columnItem7);
     this.sortGrid1.Columns.Add(columnItem8);
     this.sortGrid1.Columns.Add(columnItem9);
     this.sortGrid1.Columns.Add(columnItem10);
     this.sortGrid1.Columns.Add(columnItem11);
     this.sortGrid1.Columns.Add(columnItem12);
     this.sortGrid1.CurrentScroll = 0;
     this.sortGrid1.Dock = DockStyle.Fill;
     this.sortGrid1.FocusItemIndex = -1;
     this.sortGrid1.ForeColor = Color.Black;
     this.sortGrid1.GridColor = Color.FromArgb(45, 45, 45);
     this.sortGrid1.HeaderPctHeight = 80f;
     this.sortGrid1.IsAutoRepaint = true;
     this.sortGrid1.IsDrawFullRow = false;
     this.sortGrid1.IsDrawGrid = true;
     this.sortGrid1.IsDrawHeader = true;
     this.sortGrid1.IsScrollable = true;
     this.sortGrid1.Location = new Point(0, 26);
     this.sortGrid1.MainColumn = "";
     this.sortGrid1.Name = "sortGrid1";
     this.sortGrid1.Rows = 50;
     this.sortGrid1.RowSelectColor = Color.Navy;
     this.sortGrid1.RowSelectType = 3;
     this.sortGrid1.RowsVisible = 50;
     this.sortGrid1.Size = new Size(685, 388);
     this.sortGrid1.SortColumnName = "";
     this.sortGrid1.SortType = SortType.Desc;
     this.sortGrid1.TabIndex = 17;
     this.sortGrid1.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.sortGrid1_TableMouseClick);
     this.sortGrid1.TableMouseDoubleClick += new SortGrid.TableMouseDoubleClickEventHandler(this.sortGrid1_TableMouseDoubleClick);
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = Color.FromArgb(20, 20, 20);
     base.ClientSize = new Size(685, 436);
     base.Controls.Add(this.sortGrid1);
     base.Controls.Add(this.cbText);
     base.Controls.Add(this.statusStrip1);
     base.Controls.Add(this.toolStrip1);
     base.KeyPreview = true;
     base.Name = "frmBatchOrder";
     this.Text = "Smart Order Queue";
     base.IDoShownDelay += new ClientBaseForm.OnShownDelayEventHandler(this.frmSmartOrder_IDoShownDelay);
     base.IDoLoadData += new ClientBaseForm.OnIDoLoadDataEventHandler(this.frmSmartOrder_IDoLoadData);
     base.IDoFontChanged += new ClientBaseForm.OnFontChangedEventHandler(this.frmSmartOrder_IDoFontChanged);
     base.IDoCustomSizeChanged += new ClientBaseForm.CustomSizeChangedEventHandler(this.frmSmartOrder_IDoCustomSizeChanged);
     base.IDoMainFormKeyUp += new ClientBaseForm.OnFormKeyUpEventHandler(this.frmSmartOrder_IDoMainFormKeyUp);
     base.IDoReActivated += new ClientBaseForm.OnReActiveEventHandler(this.frmSmartOrder_IDoReActivated);
     base.Controls.SetChildIndex(this.toolStrip1, 0);
     base.Controls.SetChildIndex(this.statusStrip1, 0);
     base.Controls.SetChildIndex(this.cbText, 0);
     base.Controls.SetChildIndex(this.sortGrid1, 0);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((ISupportInitialize)this.orderQueueDS1).EndInit();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
示例#24
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ColumnItem columnItem5 = new ColumnItem();
     ColumnItem columnItem6 = new ColumnItem();
     ColumnItem columnItem7 = new ColumnItem();
     ColumnItem columnItem8 = new ColumnItem();
     ColumnItem columnItem9 = new ColumnItem();
     ColumnItem columnItem10 = new ColumnItem();
     ColumnItem columnItem11 = new ColumnItem();
     ColumnItem columnItem12 = new ColumnItem();
     ColumnItem columnItem13 = new ColumnItem();
     ColumnItem columnItem14 = new ColumnItem();
     ColumnItem columnItem15 = new ColumnItem();
     ColumnItem columnItem16 = new ColumnItem();
     ColumnItem columnItem17 = new ColumnItem();
     ColumnItem columnItem18 = new ColumnItem();
     ColumnItem columnItem19 = new ColumnItem();
     ColumnItem columnItem20 = new ColumnItem();
     ColumnItem columnItem21 = new ColumnItem();
     ColumnItem columnItem22 = new ColumnItem();
     ColumnItem columnItem23 = new ColumnItem();
     ColumnItem columnItem24 = new ColumnItem();
     ColumnItem columnItem25 = new ColumnItem();
     ColumnItem columnItem26 = new ColumnItem();
     ColumnItem columnItem27 = new ColumnItem();
     ColumnItem columnItem28 = new ColumnItem();
     ColumnItem columnItem29 = new ColumnItem();
     ColumnItem columnItem30 = new ColumnItem();
     ColumnItem columnItem31 = new ColumnItem();
     ColumnItem columnItem32 = new ColumnItem();
     ColumnItem columnItem33 = new ColumnItem();
     ColumnItem columnItem34 = new ColumnItem();
     ColumnItem columnItem35 = new ColumnItem();
     ColumnItem columnItem36 = new ColumnItem();
     ColumnItem columnItem37 = new ColumnItem();
     ColumnItem columnItem38 = new ColumnItem();
     ColumnItem columnItem39 = new ColumnItem();
     ColumnItem columnItem40 = new ColumnItem();
     ColumnItem columnItem41 = new ColumnItem();
     ColumnItem columnItem42 = new ColumnItem();
     ColumnItem columnItem43 = new ColumnItem();
     ColumnItem columnItem44 = new ColumnItem();
     ColumnItem columnItem45 = new ColumnItem();
     this.tStripMenu = new ToolStrip();
     this.toolStripLabel10 = new ToolStripLabel();
     this.tscbSelection = new ToolStripComboBox();
     this.tslbTopActiveType = new ToolStripLabel();
     this.tscbTopActiveType = new ToolStripComboBox();
     this.tslbTopActiveMkt = new ToolStripLabel();
     this.tscbTopActiveMkt = new ToolStripComboBox();
     this.tslbBoard = new ToolStripLabel();
     this.tscbBoard = new ToolStripComboBox();
     this.tslbSort = new ToolStripLabel();
     this.tscbSort = new ToolStripComboBox();
     this.tslbBestOpenMktSession = new ToolStripLabel();
     this.tscbBestOpenMktSession = new ToolStripComboBox();
     this.intzaBestOpen = new SortGrid();
     this.intzaProjectedOpen = new SortGrid();
     this.intzaProjectedClose = new SortGrid();
     this.intzaTopActive = new SortGrid();
     this.contextLink = new ContextMenuStrip(this.components);
     this.tsmCallHistoricalChart = new ToolStripMenuItem();
     this.tsmCallNews = new ToolStripMenuItem();
     this.toolStripMenuItem1 = new ToolStripSeparator();
     this.tsmCallMarketWatch = new ToolStripMenuItem();
     this.tsmCallStockInPlay = new ToolStripMenuItem();
     this.tsmCallSaleByPrice = new ToolStripMenuItem();
     this.tsmCallSaleByTime = new ToolStripMenuItem();
     this.tsmCallOddlot = new ToolStripMenuItem();
     this.tStripMenu.SuspendLayout();
     this.contextLink.SuspendLayout();
     base.SuspendLayout();
     this.tStripMenu.AllowMerge = false;
     this.tStripMenu.BackColor = Color.FromArgb(30, 30, 30);
     this.tStripMenu.GripStyle = ToolStripGripStyle.Hidden;
     this.tStripMenu.Items.AddRange(new ToolStripItem[]
     {
         this.toolStripLabel10,
         this.tscbSelection,
         this.tslbTopActiveType,
         this.tscbTopActiveType,
         this.tslbTopActiveMkt,
         this.tscbTopActiveMkt,
         this.tslbBoard,
         this.tscbBoard,
         this.tslbSort,
         this.tscbSort,
         this.tslbBestOpenMktSession,
         this.tscbBestOpenMktSession
     });
     this.tStripMenu.Location = new Point(0, 0);
     this.tStripMenu.Name = "tStripMenu";
     this.tStripMenu.Padding = new Padding(1, 1, 1, 2);
     this.tStripMenu.RenderMode = ToolStripRenderMode.System;
     this.tStripMenu.Size = new Size(1252, 26);
     this.tStripMenu.TabIndex = 0;
     this.tStripMenu.TabStop = true;
     this.tStripMenu.Tag = "-1";
     this.toolStripLabel10.ForeColor = Color.LightGray;
     this.toolStripLabel10.Margin = new Padding(3, 1, 0, 2);
     this.toolStripLabel10.Name = "toolStripLabel10";
     this.toolStripLabel10.Size = new Size(33, 20);
     this.toolStripLabel10.Text = "Page";
     this.tscbSelection.BackColor = Color.FromArgb(30, 30, 30);
     this.tscbSelection.DropDownStyle = ComboBoxStyle.DropDownList;
     this.tscbSelection.ForeColor = Color.LightGray;
     this.tscbSelection.Name = "tscbSelection";
     this.tscbSelection.Size = new Size(170, 23);
     this.tscbSelection.SelectedIndexChanged += new EventHandler(this.CallPage);
     this.tslbTopActiveType.ForeColor = Color.LightGray;
     this.tslbTopActiveType.Margin = new Padding(5, 1, 0, 2);
     this.tslbTopActiveType.Name = "tslbTopActiveType";
     this.tslbTopActiveType.Size = new Size(41, 20);
     this.tslbTopActiveType.Text = "View : ";
     this.tscbTopActiveType.AutoCompleteCustomSource.AddRange(new string[]
     {
         "Most Active",
         "Biglot",
         "Gainer",
         "Loser",
         "Most Swing"
     });
     this.tscbTopActiveType.AutoCompleteSource = AutoCompleteSource.CustomSource;
     this.tscbTopActiveType.AutoSize = false;
     this.tscbTopActiveType.BackColor = Color.FromArgb(30, 30, 30);
     this.tscbTopActiveType.DropDownStyle = ComboBoxStyle.DropDownList;
     this.tscbTopActiveType.ForeColor = Color.LightGray;
     this.tscbTopActiveType.Items.AddRange(new object[]
     {
         "Most Active - Main",
         "Most Active - Foreign",
         "Biglot",
         "Gainer - Main",
         "Gainer - Foreign",
         "Loser - Main",
         "Loser - Foreign",
         "Most Swing - Main",
         "Most Swing - Foreign"
     });
     this.tscbTopActiveType.Name = "tscbTopActiveType";
     this.tscbTopActiveType.Size = new Size(160, 23);
     this.tscbTopActiveType.SelectedIndexChanged += new EventHandler(this.tscbTopActiveType_SelectedIndexChanged);
     this.tslbTopActiveMkt.ForeColor = Color.LightGray;
     this.tslbTopActiveMkt.Margin = new Padding(5, 1, 0, 2);
     this.tslbTopActiveMkt.Name = "tslbTopActiveMkt";
     this.tslbTopActiveMkt.Size = new Size(53, 20);
     this.tslbTopActiveMkt.Text = "Market : ";
     this.tscbTopActiveMkt.BackColor = Color.FromArgb(30, 30, 30);
     this.tscbTopActiveMkt.DropDownStyle = ComboBoxStyle.DropDownList;
     this.tscbTopActiveMkt.ForeColor = Color.LightGray;
     this.tscbTopActiveMkt.Items.AddRange(new object[]
     {
         "SET",
         "MAI"
     });
     this.tscbTopActiveMkt.Name = "tscbTopActiveMkt";
     this.tscbTopActiveMkt.Size = new Size(90, 23);
     this.tscbTopActiveMkt.SelectedIndexChanged += new EventHandler(this.tscbTopActiveMkt_SelectedIndexChanged);
     this.tslbBoard.ForeColor = Color.LightGray;
     this.tslbBoard.Margin = new Padding(5, 1, 0, 2);
     this.tslbBoard.Name = "tslbBoard";
     this.tslbBoard.Size = new Size(47, 20);
     this.tslbBoard.Text = "Board : ";
     this.tscbBoard.BackColor = Color.FromArgb(30, 30, 30);
     this.tscbBoard.DropDownStyle = ComboBoxStyle.DropDownList;
     this.tscbBoard.ForeColor = Color.LightGray;
     this.tscbBoard.Items.AddRange(new object[]
     {
         "Main",
         "Foreign"
     });
     this.tscbBoard.Name = "tscbBoard";
     this.tscbBoard.Size = new Size(90, 23);
     this.tscbBoard.SelectedIndexChanged += new EventHandler(this.tscbBoard_SelectedIndexChanged);
     this.tslbSort.ForeColor = Color.LightGray;
     this.tslbSort.Margin = new Padding(5, 1, 0, 2);
     this.tslbSort.Name = "tslbSort";
     this.tslbSort.Size = new Size(53, 20);
     this.tslbSort.Text = "Sort by : ";
     this.tscbSort.BackColor = Color.FromArgb(30, 30, 30);
     this.tscbSort.DropDownStyle = ComboBoxStyle.DropDownList;
     this.tscbSort.ForeColor = Color.LightGray;
     this.tscbSort.Items.AddRange(new object[]
     {
         "Gainer",
         "Loser"
     });
     this.tscbSort.Name = "tscbSort";
     this.tscbSort.Size = new Size(90, 23);
     this.tscbSort.SelectedIndexChanged += new EventHandler(this.tscbSort_SelectedIndexChanged);
     this.tslbBestOpenMktSession.ForeColor = Color.LightGray;
     this.tslbBestOpenMktSession.Margin = new Padding(5, 1, 0, 2);
     this.tslbBestOpenMktSession.Name = "tslbBestOpenMktSession";
     this.tslbBestOpenMktSession.Size = new Size(95, 20);
     this.tslbBestOpenMktSession.Text = "Market Session : ";
     this.tscbBestOpenMktSession.BackColor = Color.FromArgb(30, 30, 30);
     this.tscbBestOpenMktSession.DropDownStyle = ComboBoxStyle.DropDownList;
     this.tscbBestOpenMktSession.ForeColor = Color.LightGray;
     this.tscbBestOpenMktSession.Items.AddRange(new object[]
     {
         "1",
         "2"
     });
     this.tscbBestOpenMktSession.Name = "tscbBestOpenMktSession";
     this.tscbBestOpenMktSession.Size = new Size(75, 23);
     this.tscbBestOpenMktSession.SelectedIndexChanged += new EventHandler(this.tscbBestOpenMktSession_SelectedIndexChanged);
     this.intzaBestOpen.AllowDrop = true;
     this.intzaBestOpen.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaBestOpen.CanBlink = true;
     this.intzaBestOpen.CanDrag = false;
     this.intzaBestOpen.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Center;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "no";
     columnItem.Text = "No.";
     columnItem.ValueFormat = FormatType.RecordNumber;
     columnItem.Visible = true;
     columnItem.Width = 4;
     columnItem2.Alignment = StringAlignment.Near;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "stock";
     columnItem2.Text = "Symbol";
     columnItem2.ValueFormat = FormatType.Symbol;
     columnItem2.Visible = true;
     columnItem2.Width = 16;
     columnItem3.Alignment = StringAlignment.Far;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "last";
     columnItem3.Text = "Last";
     columnItem3.ValueFormat = FormatType.Price;
     columnItem3.Visible = true;
     columnItem3.Width = 8;
     columnItem4.Alignment = StringAlignment.Far;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "high";
     columnItem4.Text = "High";
     columnItem4.ValueFormat = FormatType.Price;
     columnItem4.Visible = true;
     columnItem4.Width = 8;
     columnItem5.Alignment = StringAlignment.Far;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.LightGray;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "low";
     columnItem5.Text = "Low";
     columnItem5.ValueFormat = FormatType.Price;
     columnItem5.Visible = true;
     columnItem5.Width = 8;
     columnItem6.Alignment = StringAlignment.Far;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.ColumnAlignment = StringAlignment.Center;
     columnItem6.FontColor = Color.LightGray;
     columnItem6.MyStyle = FontStyle.Regular;
     columnItem6.Name = "avg";
     columnItem6.Text = "Avg";
     columnItem6.ValueFormat = FormatType.Price;
     columnItem6.Visible = true;
     columnItem6.Width = 9;
     columnItem7.Alignment = StringAlignment.Far;
     columnItem7.BackColor = Color.FromArgb(64, 64, 64);
     columnItem7.ColumnAlignment = StringAlignment.Center;
     columnItem7.FontColor = Color.LightGray;
     columnItem7.MyStyle = FontStyle.Regular;
     columnItem7.Name = "open_volume";
     columnItem7.Text = "OpenVol-1";
     columnItem7.ValueFormat = FormatType.Volume;
     columnItem7.Visible = true;
     columnItem7.Width = 13;
     columnItem8.Alignment = StringAlignment.Far;
     columnItem8.BackColor = Color.FromArgb(64, 64, 64);
     columnItem8.ColumnAlignment = StringAlignment.Center;
     columnItem8.FontColor = Color.LightGray;
     columnItem8.MyStyle = FontStyle.Regular;
     columnItem8.Name = "open_price";
     columnItem8.Text = "Open-1";
     columnItem8.ValueFormat = FormatType.Price;
     columnItem8.Visible = true;
     columnItem8.Width = 8;
     columnItem9.Alignment = StringAlignment.Far;
     columnItem9.BackColor = Color.FromArgb(64, 64, 64);
     columnItem9.ColumnAlignment = StringAlignment.Center;
     columnItem9.FontColor = Color.LightGray;
     columnItem9.MyStyle = FontStyle.Regular;
     columnItem9.Name = "prior";
     columnItem9.Text = "Prior";
     columnItem9.ValueFormat = FormatType.Price;
     columnItem9.Visible = true;
     columnItem9.Width = 8;
     columnItem10.Alignment = StringAlignment.Far;
     columnItem10.BackColor = Color.FromArgb(64, 64, 64);
     columnItem10.ColumnAlignment = StringAlignment.Center;
     columnItem10.FontColor = Color.LightGray;
     columnItem10.MyStyle = FontStyle.Regular;
     columnItem10.Name = "chg";
     columnItem10.Text = "Chg";
     columnItem10.ValueFormat = FormatType.ChangePrice;
     columnItem10.Visible = true;
     columnItem10.Width = 9;
     columnItem11.Alignment = StringAlignment.Far;
     columnItem11.BackColor = Color.FromArgb(64, 64, 64);
     columnItem11.ColumnAlignment = StringAlignment.Center;
     columnItem11.FontColor = Color.LightGray;
     columnItem11.MyStyle = FontStyle.Regular;
     columnItem11.Name = "pchg";
     columnItem11.Text = "%Chg";
     columnItem11.ValueFormat = FormatType.ChangePrice;
     columnItem11.Visible = true;
     columnItem11.Width = 9;
     this.intzaBestOpen.Columns.Add(columnItem);
     this.intzaBestOpen.Columns.Add(columnItem2);
     this.intzaBestOpen.Columns.Add(columnItem3);
     this.intzaBestOpen.Columns.Add(columnItem4);
     this.intzaBestOpen.Columns.Add(columnItem5);
     this.intzaBestOpen.Columns.Add(columnItem6);
     this.intzaBestOpen.Columns.Add(columnItem7);
     this.intzaBestOpen.Columns.Add(columnItem8);
     this.intzaBestOpen.Columns.Add(columnItem9);
     this.intzaBestOpen.Columns.Add(columnItem10);
     this.intzaBestOpen.Columns.Add(columnItem11);
     this.intzaBestOpen.CurrentScroll = 0;
     this.intzaBestOpen.FocusItemIndex = -1;
     this.intzaBestOpen.ForeColor = Color.Black;
     this.intzaBestOpen.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaBestOpen.HeaderPctHeight = 80f;
     this.intzaBestOpen.IsAutoRepaint = true;
     this.intzaBestOpen.IsDrawFullRow = false;
     this.intzaBestOpen.IsDrawGrid = true;
     this.intzaBestOpen.IsDrawHeader = true;
     this.intzaBestOpen.IsScrollable = true;
     this.intzaBestOpen.Location = new Point(59, 146);
     this.intzaBestOpen.MainColumn = "";
     this.intzaBestOpen.Name = "intzaBestOpen";
     this.intzaBestOpen.Rows = 45;
     this.intzaBestOpen.RowSelectColor = Color.FromArgb(50, 50, 50);
     this.intzaBestOpen.RowSelectType = 2;
     this.intzaBestOpen.RowsVisible = 40;
     this.intzaBestOpen.Size = new Size(697, 38);
     this.intzaBestOpen.SortColumnName = "";
     this.intzaBestOpen.SortType = SortType.Desc;
     this.intzaBestOpen.TabIndex = 1;
     this.intzaBestOpen.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaBestOpen_TableMouseClick);
     this.intzaProjectedOpen.AllowDrop = true;
     this.intzaProjectedOpen.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaProjectedOpen.CanBlink = true;
     this.intzaProjectedOpen.CanDrag = false;
     this.intzaProjectedOpen.CanGetMouseMove = false;
     columnItem12.Alignment = StringAlignment.Center;
     columnItem12.BackColor = Color.FromArgb(64, 64, 64);
     columnItem12.ColumnAlignment = StringAlignment.Center;
     columnItem12.FontColor = Color.LightGray;
     columnItem12.MyStyle = FontStyle.Regular;
     columnItem12.Name = "no";
     columnItem12.Text = "No.";
     columnItem12.ValueFormat = FormatType.RecordNumber;
     columnItem12.Visible = true;
     columnItem12.Width = 4;
     columnItem13.Alignment = StringAlignment.Near;
     columnItem13.BackColor = Color.FromArgb(64, 64, 64);
     columnItem13.ColumnAlignment = StringAlignment.Center;
     columnItem13.FontColor = Color.LightGray;
     columnItem13.MyStyle = FontStyle.Regular;
     columnItem13.Name = "stock";
     columnItem13.Text = "Symbol";
     columnItem13.ValueFormat = FormatType.Symbol;
     columnItem13.Visible = true;
     columnItem13.Width = 16;
     columnItem14.Alignment = StringAlignment.Far;
     columnItem14.BackColor = Color.FromArgb(64, 64, 64);
     columnItem14.ColumnAlignment = StringAlignment.Center;
     columnItem14.FontColor = Color.LightGray;
     columnItem14.MyStyle = FontStyle.Regular;
     columnItem14.Name = "avg";
     columnItem14.Text = "Avg";
     columnItem14.ValueFormat = FormatType.Price;
     columnItem14.Visible = true;
     columnItem14.Width = 8;
     columnItem15.Alignment = StringAlignment.Far;
     columnItem15.BackColor = Color.FromArgb(64, 64, 64);
     columnItem15.ColumnAlignment = StringAlignment.Center;
     columnItem15.FontColor = Color.LightGray;
     columnItem15.MyStyle = FontStyle.Regular;
     columnItem15.Name = "high";
     columnItem15.Text = "High";
     columnItem15.ValueFormat = FormatType.Price;
     columnItem15.Visible = true;
     columnItem15.Width = 8;
     columnItem16.Alignment = StringAlignment.Far;
     columnItem16.BackColor = Color.FromArgb(64, 64, 64);
     columnItem16.ColumnAlignment = StringAlignment.Center;
     columnItem16.FontColor = Color.LightGray;
     columnItem16.MyStyle = FontStyle.Regular;
     columnItem16.Name = "low";
     columnItem16.Text = "Low";
     columnItem16.ValueFormat = FormatType.Price;
     columnItem16.Visible = true;
     columnItem16.Width = 8;
     columnItem17.Alignment = StringAlignment.Far;
     columnItem17.BackColor = Color.FromArgb(64, 64, 64);
     columnItem17.ColumnAlignment = StringAlignment.Center;
     columnItem17.FontColor = Color.LightGray;
     columnItem17.MyStyle = FontStyle.Regular;
     columnItem17.Name = "open1";
     columnItem17.Text = "Open-1";
     columnItem17.ValueFormat = FormatType.Price;
     columnItem17.Visible = true;
     columnItem17.Width = 8;
     columnItem18.Alignment = StringAlignment.Far;
     columnItem18.BackColor = Color.FromArgb(64, 64, 64);
     columnItem18.ColumnAlignment = StringAlignment.Center;
     columnItem18.FontColor = Color.LightGray;
     columnItem18.MyStyle = FontStyle.Regular;
     columnItem18.Name = "ovolume1";
     columnItem18.Text = "OpenVol-1";
     columnItem18.ValueFormat = FormatType.Volume;
     columnItem18.Visible = true;
     columnItem18.Width = 14;
     columnItem19.Alignment = StringAlignment.Far;
     columnItem19.BackColor = Color.FromArgb(64, 64, 64);
     columnItem19.ColumnAlignment = StringAlignment.Center;
     columnItem19.FontColor = Color.LightGray;
     columnItem19.MyStyle = FontStyle.Regular;
     columnItem19.Name = "prior";
     columnItem19.Text = "Prior";
     columnItem19.ValueFormat = FormatType.Text;
     columnItem19.Visible = true;
     columnItem19.Width = 8;
     columnItem20.Alignment = StringAlignment.Far;
     columnItem20.BackColor = Color.FromArgb(64, 64, 64);
     columnItem20.ColumnAlignment = StringAlignment.Center;
     columnItem20.FontColor = Color.LightGray;
     columnItem20.MyStyle = FontStyle.Regular;
     columnItem20.Name = "po";
     columnItem20.Text = "PrjOpn";
     columnItem20.ValueFormat = FormatType.Price;
     columnItem20.Visible = true;
     columnItem20.Width = 8;
     columnItem21.Alignment = StringAlignment.Far;
     columnItem21.BackColor = Color.FromArgb(64, 64, 64);
     columnItem21.ColumnAlignment = StringAlignment.Center;
     columnItem21.FontColor = Color.LightGray;
     columnItem21.MyStyle = FontStyle.Regular;
     columnItem21.Name = "chg";
     columnItem21.Text = "Chg";
     columnItem21.ValueFormat = FormatType.ChangePrice;
     columnItem21.Visible = true;
     columnItem21.Width = 9;
     columnItem22.Alignment = StringAlignment.Far;
     columnItem22.BackColor = Color.FromArgb(64, 64, 64);
     columnItem22.ColumnAlignment = StringAlignment.Center;
     columnItem22.FontColor = Color.LightGray;
     columnItem22.MyStyle = FontStyle.Regular;
     columnItem22.Name = "pchg";
     columnItem22.Text = "%Chg";
     columnItem22.ValueFormat = FormatType.ChangePrice;
     columnItem22.Visible = true;
     columnItem22.Width = 9;
     this.intzaProjectedOpen.Columns.Add(columnItem12);
     this.intzaProjectedOpen.Columns.Add(columnItem13);
     this.intzaProjectedOpen.Columns.Add(columnItem14);
     this.intzaProjectedOpen.Columns.Add(columnItem15);
     this.intzaProjectedOpen.Columns.Add(columnItem16);
     this.intzaProjectedOpen.Columns.Add(columnItem17);
     this.intzaProjectedOpen.Columns.Add(columnItem18);
     this.intzaProjectedOpen.Columns.Add(columnItem19);
     this.intzaProjectedOpen.Columns.Add(columnItem20);
     this.intzaProjectedOpen.Columns.Add(columnItem21);
     this.intzaProjectedOpen.Columns.Add(columnItem22);
     this.intzaProjectedOpen.CurrentScroll = 0;
     this.intzaProjectedOpen.FocusItemIndex = -1;
     this.intzaProjectedOpen.ForeColor = Color.Black;
     this.intzaProjectedOpen.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaProjectedOpen.HeaderPctHeight = 80f;
     this.intzaProjectedOpen.IsAutoRepaint = true;
     this.intzaProjectedOpen.IsDrawFullRow = false;
     this.intzaProjectedOpen.IsDrawGrid = true;
     this.intzaProjectedOpen.IsDrawHeader = true;
     this.intzaProjectedOpen.IsScrollable = true;
     this.intzaProjectedOpen.Location = new Point(59, 205);
     this.intzaProjectedOpen.MainColumn = "";
     this.intzaProjectedOpen.Name = "intzaProjectedOpen";
     this.intzaProjectedOpen.Rows = 45;
     this.intzaProjectedOpen.RowSelectColor = Color.FromArgb(50, 50, 50);
     this.intzaProjectedOpen.RowSelectType = 2;
     this.intzaProjectedOpen.RowsVisible = 40;
     this.intzaProjectedOpen.Size = new Size(705, 53);
     this.intzaProjectedOpen.SortColumnName = "";
     this.intzaProjectedOpen.SortType = SortType.Desc;
     this.intzaProjectedOpen.TabIndex = 2;
     this.intzaProjectedOpen.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaProjectedOpen_TableMouseClick);
     this.intzaProjectedClose.AllowDrop = true;
     this.intzaProjectedClose.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaProjectedClose.CanBlink = true;
     this.intzaProjectedClose.CanDrag = false;
     this.intzaProjectedClose.CanGetMouseMove = false;
     columnItem23.Alignment = StringAlignment.Center;
     columnItem23.BackColor = Color.FromArgb(64, 64, 64);
     columnItem23.ColumnAlignment = StringAlignment.Center;
     columnItem23.FontColor = Color.LightGray;
     columnItem23.MyStyle = FontStyle.Regular;
     columnItem23.Name = "no";
     columnItem23.Text = "No.";
     columnItem23.ValueFormat = FormatType.RecordNumber;
     columnItem23.Visible = true;
     columnItem23.Width = 4;
     columnItem24.Alignment = StringAlignment.Near;
     columnItem24.BackColor = Color.FromArgb(64, 64, 64);
     columnItem24.ColumnAlignment = StringAlignment.Center;
     columnItem24.FontColor = Color.LightGray;
     columnItem24.MyStyle = FontStyle.Regular;
     columnItem24.Name = "stock";
     columnItem24.Text = "Symbol";
     columnItem24.ValueFormat = FormatType.Symbol;
     columnItem24.Visible = true;
     columnItem24.Width = 16;
     columnItem25.Alignment = StringAlignment.Far;
     columnItem25.BackColor = Color.FromArgb(64, 64, 64);
     columnItem25.ColumnAlignment = StringAlignment.Center;
     columnItem25.FontColor = Color.LightGray;
     columnItem25.MyStyle = FontStyle.Regular;
     columnItem25.Name = "avg";
     columnItem25.Text = "Avg";
     columnItem25.ValueFormat = FormatType.Price;
     columnItem25.Visible = true;
     columnItem25.Width = 10;
     columnItem26.Alignment = StringAlignment.Far;
     columnItem26.BackColor = Color.FromArgb(64, 64, 64);
     columnItem26.ColumnAlignment = StringAlignment.Center;
     columnItem26.FontColor = Color.LightGray;
     columnItem26.MyStyle = FontStyle.Regular;
     columnItem26.Name = "high";
     columnItem26.Text = "High";
     columnItem26.ValueFormat = FormatType.Price;
     columnItem26.Visible = true;
     columnItem26.Width = 10;
     columnItem27.Alignment = StringAlignment.Far;
     columnItem27.BackColor = Color.FromArgb(64, 64, 64);
     columnItem27.ColumnAlignment = StringAlignment.Center;
     columnItem27.FontColor = Color.LightGray;
     columnItem27.MyStyle = FontStyle.Regular;
     columnItem27.Name = "low";
     columnItem27.Text = "Low";
     columnItem27.ValueFormat = FormatType.Price;
     columnItem27.Visible = true;
     columnItem27.Width = 10;
     columnItem28.Alignment = StringAlignment.Far;
     columnItem28.BackColor = Color.FromArgb(64, 64, 64);
     columnItem28.ColumnAlignment = StringAlignment.Center;
     columnItem28.FontColor = Color.LightGray;
     columnItem28.MyStyle = FontStyle.Regular;
     columnItem28.Name = "prior";
     columnItem28.Text = "Prior";
     columnItem28.ValueFormat = FormatType.Price;
     columnItem28.Visible = true;
     columnItem28.Width = 10;
     columnItem29.Alignment = StringAlignment.Far;
     columnItem29.BackColor = Color.FromArgb(64, 64, 64);
     columnItem29.ColumnAlignment = StringAlignment.Center;
     columnItem29.FontColor = Color.LightGray;
     columnItem29.MyStyle = FontStyle.Regular;
     columnItem29.Name = "last";
     columnItem29.Text = "Last";
     columnItem29.ValueFormat = FormatType.Price;
     columnItem29.Visible = true;
     columnItem29.Width = 10;
     columnItem30.Alignment = StringAlignment.Far;
     columnItem30.BackColor = Color.FromArgb(64, 64, 64);
     columnItem30.ColumnAlignment = StringAlignment.Center;
     columnItem30.FontColor = Color.LightGray;
     columnItem30.MyStyle = FontStyle.Regular;
     columnItem30.Name = "poclose";
     columnItem30.Text = "PrjCls";
     columnItem30.ValueFormat = FormatType.Price;
     columnItem30.Visible = true;
     columnItem30.Width = 10;
     columnItem31.Alignment = StringAlignment.Far;
     columnItem31.BackColor = Color.FromArgb(64, 64, 64);
     columnItem31.ColumnAlignment = StringAlignment.Center;
     columnItem31.FontColor = Color.LightGray;
     columnItem31.MyStyle = FontStyle.Regular;
     columnItem31.Name = "chg";
     columnItem31.Text = "Chg";
     columnItem31.ValueFormat = FormatType.ChangePrice;
     columnItem31.Visible = true;
     columnItem31.Width = 10;
     columnItem32.Alignment = StringAlignment.Far;
     columnItem32.BackColor = Color.FromArgb(64, 64, 64);
     columnItem32.ColumnAlignment = StringAlignment.Center;
     columnItem32.FontColor = Color.LightGray;
     columnItem32.MyStyle = FontStyle.Regular;
     columnItem32.Name = "pchg";
     columnItem32.Text = "%Chg";
     columnItem32.ValueFormat = FormatType.ChangePrice;
     columnItem32.Visible = true;
     columnItem32.Width = 10;
     this.intzaProjectedClose.Columns.Add(columnItem23);
     this.intzaProjectedClose.Columns.Add(columnItem24);
     this.intzaProjectedClose.Columns.Add(columnItem25);
     this.intzaProjectedClose.Columns.Add(columnItem26);
     this.intzaProjectedClose.Columns.Add(columnItem27);
     this.intzaProjectedClose.Columns.Add(columnItem28);
     this.intzaProjectedClose.Columns.Add(columnItem29);
     this.intzaProjectedClose.Columns.Add(columnItem30);
     this.intzaProjectedClose.Columns.Add(columnItem31);
     this.intzaProjectedClose.Columns.Add(columnItem32);
     this.intzaProjectedClose.CurrentScroll = 0;
     this.intzaProjectedClose.FocusItemIndex = -1;
     this.intzaProjectedClose.ForeColor = Color.Black;
     this.intzaProjectedClose.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaProjectedClose.HeaderPctHeight = 80f;
     this.intzaProjectedClose.IsAutoRepaint = true;
     this.intzaProjectedClose.IsDrawFullRow = false;
     this.intzaProjectedClose.IsDrawGrid = true;
     this.intzaProjectedClose.IsDrawHeader = true;
     this.intzaProjectedClose.IsScrollable = true;
     this.intzaProjectedClose.Location = new Point(59, 286);
     this.intzaProjectedClose.MainColumn = "";
     this.intzaProjectedClose.Name = "intzaProjectedClose";
     this.intzaProjectedClose.Rows = 45;
     this.intzaProjectedClose.RowSelectColor = Color.FromArgb(50, 50, 50);
     this.intzaProjectedClose.RowSelectType = 2;
     this.intzaProjectedClose.RowsVisible = 40;
     this.intzaProjectedClose.Size = new Size(705, 46);
     this.intzaProjectedClose.SortColumnName = "";
     this.intzaProjectedClose.SortType = SortType.Desc;
     this.intzaProjectedClose.TabIndex = 3;
     this.intzaProjectedClose.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaProjectedClose_TableMouseClick);
     this.intzaTopActive.AllowDrop = true;
     this.intzaTopActive.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaTopActive.CanBlink = true;
     this.intzaTopActive.CanDrag = false;
     this.intzaTopActive.CanGetMouseMove = false;
     columnItem33.Alignment = StringAlignment.Center;
     columnItem33.BackColor = Color.FromArgb(64, 64, 64);
     columnItem33.ColumnAlignment = StringAlignment.Center;
     columnItem33.FontColor = Color.LightGray;
     columnItem33.MyStyle = FontStyle.Regular;
     columnItem33.Name = "No";
     columnItem33.Text = "No.";
     columnItem33.ValueFormat = FormatType.RecordNumber;
     columnItem33.Visible = true;
     columnItem33.Width = 4;
     columnItem34.Alignment = StringAlignment.Near;
     columnItem34.BackColor = Color.FromArgb(64, 64, 64);
     columnItem34.ColumnAlignment = StringAlignment.Center;
     columnItem34.FontColor = Color.LightGray;
     columnItem34.MyStyle = FontStyle.Regular;
     columnItem34.Name = "stock";
     columnItem34.Text = "Symbol";
     columnItem34.ValueFormat = FormatType.Symbol;
     columnItem34.Visible = true;
     columnItem34.Width = 11;
     columnItem35.Alignment = StringAlignment.Far;
     columnItem35.BackColor = Color.FromArgb(64, 64, 64);
     columnItem35.ColumnAlignment = StringAlignment.Center;
     columnItem35.FontColor = Color.LightGray;
     columnItem35.MyStyle = FontStyle.Regular;
     columnItem35.Name = "deals";
     columnItem35.Text = "Deals";
     columnItem35.ValueFormat = FormatType.Volume;
     columnItem35.Visible = true;
     columnItem35.Width = 6;
     columnItem36.Alignment = StringAlignment.Far;
     columnItem36.BackColor = Color.FromArgb(64, 64, 64);
     columnItem36.ColumnAlignment = StringAlignment.Center;
     columnItem36.FontColor = Color.LightGray;
     columnItem36.MyStyle = FontStyle.Regular;
     columnItem36.Name = "volume";
     columnItem36.Text = "Volume";
     columnItem36.ValueFormat = FormatType.Volume;
     columnItem36.Visible = true;
     columnItem36.Width = 11;
     columnItem37.Alignment = StringAlignment.Far;
     columnItem37.BackColor = Color.FromArgb(64, 64, 64);
     columnItem37.ColumnAlignment = StringAlignment.Center;
     columnItem37.FontColor = Color.LightGray;
     columnItem37.MyStyle = FontStyle.Regular;
     columnItem37.Name = "value";
     columnItem37.Text = "Value";
     columnItem37.ValueFormat = FormatType.Volume;
     columnItem37.Visible = true;
     columnItem37.Width = 12;
     columnItem38.Alignment = StringAlignment.Far;
     columnItem38.BackColor = Color.FromArgb(64, 64, 64);
     columnItem38.ColumnAlignment = StringAlignment.Center;
     columnItem38.FontColor = Color.LightGray;
     columnItem38.MyStyle = FontStyle.Regular;
     columnItem38.Name = "avg";
     columnItem38.Text = "Avg";
     columnItem38.ValueFormat = FormatType.Price;
     columnItem38.Visible = true;
     columnItem38.Width = 7;
     columnItem39.Alignment = StringAlignment.Far;
     columnItem39.BackColor = Color.FromArgb(64, 64, 64);
     columnItem39.ColumnAlignment = StringAlignment.Center;
     columnItem39.FontColor = Color.LightGray;
     columnItem39.MyStyle = FontStyle.Regular;
     columnItem39.Name = "high";
     columnItem39.Text = "High";
     columnItem39.ValueFormat = FormatType.Price;
     columnItem39.Visible = true;
     columnItem39.Width = 7;
     columnItem40.Alignment = StringAlignment.Far;
     columnItem40.BackColor = Color.FromArgb(64, 64, 64);
     columnItem40.ColumnAlignment = StringAlignment.Center;
     columnItem40.FontColor = Color.LightGray;
     columnItem40.MyStyle = FontStyle.Regular;
     columnItem40.Name = "low";
     columnItem40.Text = "Low";
     columnItem40.ValueFormat = FormatType.Price;
     columnItem40.Visible = true;
     columnItem40.Width = 7;
     columnItem41.Alignment = StringAlignment.Far;
     columnItem41.BackColor = Color.FromArgb(64, 64, 64);
     columnItem41.ColumnAlignment = StringAlignment.Center;
     columnItem41.FontColor = Color.LightGray;
     columnItem41.MyStyle = FontStyle.Regular;
     columnItem41.Name = "last";
     columnItem41.Text = "Last";
     columnItem41.ValueFormat = FormatType.Price;
     columnItem41.Visible = true;
     columnItem41.Width = 7;
     columnItem42.Alignment = StringAlignment.Far;
     columnItem42.BackColor = Color.FromArgb(64, 64, 64);
     columnItem42.ColumnAlignment = StringAlignment.Center;
     columnItem42.FontColor = Color.LightGray;
     columnItem42.MyStyle = FontStyle.Regular;
     columnItem42.Name = "chg";
     columnItem42.Text = "Chg";
     columnItem42.ValueFormat = FormatType.ChangePrice;
     columnItem42.Visible = true;
     columnItem42.Width = 7;
     columnItem43.Alignment = StringAlignment.Far;
     columnItem43.BackColor = Color.FromArgb(64, 64, 64);
     columnItem43.ColumnAlignment = StringAlignment.Center;
     columnItem43.FontColor = Color.LightGray;
     columnItem43.MyStyle = FontStyle.Regular;
     columnItem43.Name = "pchg";
     columnItem43.Text = "%Chg";
     columnItem43.ValueFormat = FormatType.ChangePrice;
     columnItem43.Visible = true;
     columnItem43.Width = 7;
     columnItem44.Alignment = StringAlignment.Far;
     columnItem44.BackColor = Color.FromArgb(64, 64, 64);
     columnItem44.ColumnAlignment = StringAlignment.Center;
     columnItem44.FontColor = Color.LightGray;
     columnItem44.MyStyle = FontStyle.Regular;
     columnItem44.Name = "swing";
     columnItem44.Text = "Swing";
     columnItem44.ValueFormat = FormatType.Price;
     columnItem44.Visible = true;
     columnItem44.Width = 7;
     columnItem45.Alignment = StringAlignment.Far;
     columnItem45.BackColor = Color.FromArgb(64, 64, 64);
     columnItem45.ColumnAlignment = StringAlignment.Center;
     columnItem45.FontColor = Color.LightGray;
     columnItem45.MyStyle = FontStyle.Regular;
     columnItem45.Name = "pswing";
     columnItem45.Text = "%Swing";
     columnItem45.ValueFormat = FormatType.Price;
     columnItem45.Visible = true;
     columnItem45.Width = 7;
     this.intzaTopActive.Columns.Add(columnItem33);
     this.intzaTopActive.Columns.Add(columnItem34);
     this.intzaTopActive.Columns.Add(columnItem35);
     this.intzaTopActive.Columns.Add(columnItem36);
     this.intzaTopActive.Columns.Add(columnItem37);
     this.intzaTopActive.Columns.Add(columnItem38);
     this.intzaTopActive.Columns.Add(columnItem39);
     this.intzaTopActive.Columns.Add(columnItem40);
     this.intzaTopActive.Columns.Add(columnItem41);
     this.intzaTopActive.Columns.Add(columnItem42);
     this.intzaTopActive.Columns.Add(columnItem43);
     this.intzaTopActive.Columns.Add(columnItem44);
     this.intzaTopActive.Columns.Add(columnItem45);
     this.intzaTopActive.CurrentScroll = 0;
     this.intzaTopActive.FocusItemIndex = -1;
     this.intzaTopActive.ForeColor = Color.Black;
     this.intzaTopActive.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaTopActive.HeaderPctHeight = 80f;
     this.intzaTopActive.IsAutoRepaint = true;
     this.intzaTopActive.IsDrawFullRow = false;
     this.intzaTopActive.IsDrawGrid = true;
     this.intzaTopActive.IsDrawHeader = true;
     this.intzaTopActive.IsScrollable = true;
     this.intzaTopActive.Location = new Point(29, 354);
     this.intzaTopActive.MainColumn = "stock";
     this.intzaTopActive.Name = "intzaTopActive";
     this.intzaTopActive.Rows = 45;
     this.intzaTopActive.RowSelectColor = Color.FromArgb(50, 50, 50);
     this.intzaTopActive.RowSelectType = 2;
     this.intzaTopActive.RowsVisible = 40;
     this.intzaTopActive.Size = new Size(708, 55);
     this.intzaTopActive.SortColumnName = "pchg";
     this.intzaTopActive.SortType = SortType.Desc;
     this.intzaTopActive.TabIndex = 4;
     this.intzaTopActive.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaTopActive_TableMouseClick);
     this.contextLink.Items.AddRange(new ToolStripItem[]
     {
         this.tsmCallHistoricalChart,
         this.tsmCallNews,
         this.toolStripMenuItem1,
         this.tsmCallMarketWatch,
         this.tsmCallStockInPlay,
         this.tsmCallSaleByPrice,
         this.tsmCallSaleByTime,
         this.tsmCallOddlot
     });
     this.contextLink.Name = "contextMenuStrip1";
     this.contextLink.Size = new Size(212, 164);
     this.tsmCallHistoricalChart.Name = "tsmCallHistoricalChart";
     this.tsmCallHistoricalChart.Size = new Size(211, 22);
     this.tsmCallHistoricalChart.Text = "Historical Chart";
     this.tsmCallHistoricalChart.Click += new EventHandler(this.tsmCallHistoricalChart_Click);
     this.tsmCallNews.Name = "tsmCallNews";
     this.tsmCallNews.Size = new Size(211, 22);
     this.tsmCallNews.Text = "News - ข่าวตลาดหลักทรัพย์ฯ";
     this.tsmCallNews.Click += new EventHandler(this.tsmCallNews_Click);
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new Size(208, 6);
     this.tsmCallMarketWatch.Name = "tsmCallMarketWatch";
     this.tsmCallMarketWatch.Size = new Size(211, 22);
     this.tsmCallMarketWatch.Text = "Market Watch";
     this.tsmCallMarketWatch.Click += new EventHandler(this.tsmCallMarketWatch_Click);
     this.tsmCallStockInPlay.Name = "tsmCallStockInPlay";
     this.tsmCallStockInPlay.Size = new Size(211, 22);
     this.tsmCallStockInPlay.Text = "Stock in Play";
     this.tsmCallStockInPlay.Click += new EventHandler(this.tsmCallStockSummary_Click);
     this.tsmCallSaleByPrice.Name = "tsmCallSaleByPrice";
     this.tsmCallSaleByPrice.Size = new Size(211, 22);
     this.tsmCallSaleByPrice.Text = "Sale by Price";
     this.tsmCallSaleByPrice.Click += new EventHandler(this.tsmCallSaleByPrice_Click);
     this.tsmCallSaleByTime.Name = "tsmCallSaleByTime";
     this.tsmCallSaleByTime.Size = new Size(211, 22);
     this.tsmCallSaleByTime.Text = "Sale by Time";
     this.tsmCallSaleByTime.Click += new EventHandler(this.tsmCallSaleByTime_Click);
     this.tsmCallOddlot.Name = "tsmCallOddlot";
     this.tsmCallOddlot.Size = new Size(211, 22);
     this.tsmCallOddlot.Text = "View Oddlot";
     this.tsmCallOddlot.Click += new EventHandler(this.tsmCallOddlot_Click);
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = Color.FromArgb(20, 20, 20);
     base.ClientSize = new Size(1252, 421);
     base.Controls.Add(this.intzaBestOpen);
     base.Controls.Add(this.intzaProjectedOpen);
     base.Controls.Add(this.intzaProjectedClose);
     base.Controls.Add(this.intzaTopActive);
     base.Controls.Add(this.tStripMenu);
     base.FormBorderStyle = FormBorderStyle.FixedToolWindow;
     base.Name = "frmStockRanking";
     this.Text = "Stock Ranking";
     base.IDoShownDelay += new ClientBaseForm.OnShownDelayEventHandler(this.frmStockRanking_IDoShownDelay);
     base.IDoLoadData += new ClientBaseForm.OnIDoLoadDataEventHandler(this.frmStockRanking_IDoLoadData);
     base.IDoFontChanged += new ClientBaseForm.OnFontChangedEventHandler(this.frmStockRanking_IDoFontChanged);
     base.IDoCustomSizeChanged += new ClientBaseForm.CustomSizeChangedEventHandler(this.frmStockRanking_IDoCustomSizeChanged);
     base.IDoMainFormKeyUp += new ClientBaseForm.OnFormKeyUpEventHandler(this.frmStockRanking_IDoMainFormKeyUp);
     base.IDoReActivated += new ClientBaseForm.OnReActiveEventHandler(this.frmStockRanking_IDoReActivated);
     base.Controls.SetChildIndex(this.tStripMenu, 0);
     base.Controls.SetChildIndex(this.intzaTopActive, 0);
     base.Controls.SetChildIndex(this.intzaProjectedClose, 0);
     base.Controls.SetChildIndex(this.intzaProjectedOpen, 0);
     base.Controls.SetChildIndex(this.intzaBestOpen, 0);
     this.tStripMenu.ResumeLayout(false);
     this.tStripMenu.PerformLayout();
     this.contextLink.ResumeLayout(false);
     base.ResumeLayout(false);
     base.PerformLayout();
 }
示例#25
0
 private void InitializeComponent()
 {
     STIControl.SortTableGrid.ColumnItem columnItem = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem2 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem3 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem4 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem5 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem6 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem7 = new STIControl.SortTableGrid.ColumnItem();
     ItemGrid itemGrid = new ItemGrid();
     ItemGrid itemGrid2 = new ItemGrid();
     ItemGrid itemGrid3 = new ItemGrid();
     ItemGrid itemGrid4 = new ItemGrid();
     ItemGrid itemGrid5 = new ItemGrid();
     ItemGrid itemGrid6 = new ItemGrid();
     ItemGrid itemGrid7 = new ItemGrid();
     ItemGrid itemGrid8 = new ItemGrid();
     ItemGrid itemGrid9 = new ItemGrid();
     ItemGrid itemGrid10 = new ItemGrid();
     ItemGrid itemGrid11 = new ItemGrid();
     ItemGrid itemGrid12 = new ItemGrid();
     ItemGrid itemGrid13 = new ItemGrid();
     ItemGrid itemGrid14 = new ItemGrid();
     ItemGrid itemGrid15 = new ItemGrid();
     ItemGrid itemGrid16 = new ItemGrid();
     this.txtStock = new TextBox();
     this.intzaTP1 = new SortGrid();
     this.intzaLS1 = new SortGrid();
     this.intzaHeader1 = new IntzaCustomGrid();
     this.intzaVolumeByBoard1 = new IntzaCustomGrid();
     base.SuspendLayout();
     this.txtStock.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
     this.txtStock.AutoCompleteSource = AutoCompleteSource.CustomSource;
     this.txtStock.BackColor = Color.WhiteSmoke;
     this.txtStock.BorderStyle = BorderStyle.FixedSingle;
     this.txtStock.CharacterCasing = CharacterCasing.Upper;
     this.txtStock.ForeColor = Color.Black;
     this.txtStock.Location = new Point(67, 106);
     this.txtStock.Margin = new Padding(1);
     this.txtStock.MaxLength = 12;
     this.txtStock.Name = "txtStock";
     this.txtStock.Size = new Size(83, 20);
     this.txtStock.TabIndex = 70;
     this.txtStock.Visible = false;
     this.txtStock.KeyDown += new KeyEventHandler(this.txtStock_KeyDown);
     this.intzaTP1.AllowDrop = true;
     this.intzaTP1.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaTP1.CanBlink = true;
     this.intzaTP1.CanDrag = false;
     this.intzaTP1.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Far;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "bidvolume";
     columnItem.Text = "Volume";
     columnItem.ValueFormat = FormatType.BidOfferVolume;
     columnItem.Visible = true;
     columnItem.Width = 30;
     columnItem2.Alignment = StringAlignment.Far;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "bid";
     columnItem2.Text = "Bid";
     columnItem2.ValueFormat = FormatType.Text;
     columnItem2.Visible = true;
     columnItem2.Width = 20;
     columnItem3.Alignment = StringAlignment.Far;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.LightGray;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "offer";
     columnItem3.Text = "Offer";
     columnItem3.ValueFormat = FormatType.Text;
     columnItem3.Visible = true;
     columnItem3.Width = 20;
     columnItem4.Alignment = StringAlignment.Far;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "offervolume";
     columnItem4.Text = "Volume";
     columnItem4.ValueFormat = FormatType.BidOfferVolume;
     columnItem4.Visible = true;
     columnItem4.Width = 30;
     this.intzaTP1.Columns.Add(columnItem);
     this.intzaTP1.Columns.Add(columnItem2);
     this.intzaTP1.Columns.Add(columnItem3);
     this.intzaTP1.Columns.Add(columnItem4);
     this.intzaTP1.CurrentScroll = 0;
     this.intzaTP1.FocusItemIndex = -1;
     this.intzaTP1.ForeColor = Color.Black;
     this.intzaTP1.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaTP1.HeaderPctHeight = 80f;
     this.intzaTP1.IsAutoRepaint = true;
     this.intzaTP1.IsDrawFullRow = false;
     this.intzaTP1.IsDrawGrid = false;
     this.intzaTP1.IsDrawHeader = true;
     this.intzaTP1.IsScrollable = false;
     this.intzaTP1.Location = new Point(14, 36);
     this.intzaTP1.MainColumn = "";
     this.intzaTP1.Margin = new Padding(1);
     this.intzaTP1.Name = "intzaTP1";
     this.intzaTP1.Rows = 5;
     this.intzaTP1.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaTP1.RowSelectType = 0;
     this.intzaTP1.RowsVisible = 5;
     this.intzaTP1.Size = new Size(220, 45);
     this.intzaTP1.SortColumnName = "";
     this.intzaTP1.SortType = SortType.Desc;
     this.intzaTP1.TabIndex = 66;
     this.intzaTP1.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaTP_TableMouseClick);
     this.intzaLS1.AllowDrop = true;
     this.intzaLS1.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaLS1.CanBlink = false;
     this.intzaLS1.CanDrag = false;
     this.intzaLS1.CanGetMouseMove = false;
     columnItem5.Alignment = StringAlignment.Center;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.LightGray;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "side";
     columnItem5.Text = "B/S";
     columnItem5.ValueFormat = FormatType.Text;
     columnItem5.Visible = true;
     columnItem5.Width = 20;
     columnItem6.Alignment = StringAlignment.Far;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.ColumnAlignment = StringAlignment.Center;
     columnItem6.FontColor = Color.LightGray;
     columnItem6.MyStyle = FontStyle.Regular;
     columnItem6.Name = "volume";
     columnItem6.Text = "Volume";
     columnItem6.ValueFormat = FormatType.Volume;
     columnItem6.Visible = true;
     columnItem6.Width = 48;
     columnItem7.Alignment = StringAlignment.Far;
     columnItem7.BackColor = Color.FromArgb(64, 64, 64);
     columnItem7.ColumnAlignment = StringAlignment.Center;
     columnItem7.FontColor = Color.LightGray;
     columnItem7.MyStyle = FontStyle.Regular;
     columnItem7.Name = "price";
     columnItem7.Text = "Price";
     columnItem7.ValueFormat = FormatType.Text;
     columnItem7.Visible = true;
     columnItem7.Width = 32;
     this.intzaLS1.Columns.Add(columnItem5);
     this.intzaLS1.Columns.Add(columnItem6);
     this.intzaLS1.Columns.Add(columnItem7);
     this.intzaLS1.CurrentScroll = 0;
     this.intzaLS1.FocusItemIndex = -1;
     this.intzaLS1.ForeColor = Color.Black;
     this.intzaLS1.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaLS1.HeaderPctHeight = 80f;
     this.intzaLS1.IsAutoRepaint = true;
     this.intzaLS1.IsDrawFullRow = true;
     this.intzaLS1.IsDrawGrid = false;
     this.intzaLS1.IsDrawHeader = true;
     this.intzaLS1.IsScrollable = false;
     this.intzaLS1.Location = new Point(261, 37);
     this.intzaLS1.MainColumn = "";
     this.intzaLS1.Margin = new Padding(1);
     this.intzaLS1.Name = "intzaLS1";
     this.intzaLS1.Rows = 5;
     this.intzaLS1.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaLS1.RowSelectType = 0;
     this.intzaLS1.RowsVisible = 5;
     this.intzaLS1.Size = new Size(149, 38);
     this.intzaLS1.SortColumnName = "";
     this.intzaLS1.SortType = SortType.Desc;
     this.intzaLS1.TabIndex = 65;
     this.intzaHeader1.AllowDrop = true;
     this.intzaHeader1.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaHeader1.CanDrag = false;
     this.intzaHeader1.IsAutoRepaint = true;
     this.intzaHeader1.IsDroped = false;
     itemGrid.AdjustFontSize = 0f;
     itemGrid.Alignment = StringAlignment.Near;
     itemGrid.BackColor = Color.FromArgb(40, 40, 40);
     itemGrid.Changed = false;
     itemGrid.FieldType = ItemType.Text;
     itemGrid.FontColor = Color.Yellow;
     itemGrid.FontStyle = FontStyle.Regular;
     itemGrid.Height = 1f;
     itemGrid.IsBlink = 0;
     itemGrid.Name = "stock";
     itemGrid.Text = "";
     itemGrid.ValueFormat = FormatType.Text;
     itemGrid.Visible = true;
     itemGrid.Width = 18;
     itemGrid.X = 0;
     itemGrid.Y = 0f;
     itemGrid2.AdjustFontSize = 0f;
     itemGrid2.Alignment = StringAlignment.Near;
     itemGrid2.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid2.Changed = false;
     itemGrid2.FieldType = ItemType.Text;
     itemGrid2.FontColor = Color.Yellow;
     itemGrid2.FontStyle = FontStyle.Regular;
     itemGrid2.Height = 1f;
     itemGrid2.IsBlink = 0;
     itemGrid2.Name = "price";
     itemGrid2.Text = "";
     itemGrid2.ValueFormat = FormatType.Price;
     itemGrid2.Visible = true;
     itemGrid2.Width = 13;
     itemGrid2.X = 18;
     itemGrid2.Y = 0f;
     itemGrid3.AdjustFontSize = 0f;
     itemGrid3.Alignment = StringAlignment.Near;
     itemGrid3.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid3.Changed = false;
     itemGrid3.FieldType = ItemType.Text;
     itemGrid3.FontColor = Color.Yellow;
     itemGrid3.FontStyle = FontStyle.Regular;
     itemGrid3.Height = 1f;
     itemGrid3.IsBlink = 0;
     itemGrid3.Name = "chg";
     itemGrid3.Text = "";
     itemGrid3.ValueFormat = FormatType.ChangePrice;
     itemGrid3.Visible = true;
     itemGrid3.Width = 11;
     itemGrid3.X = 31;
     itemGrid3.Y = 0f;
     itemGrid4.AdjustFontSize = 0f;
     itemGrid4.Alignment = StringAlignment.Near;
     itemGrid4.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid4.Changed = false;
     itemGrid4.FieldType = ItemType.Text;
     itemGrid4.FontColor = Color.Yellow;
     itemGrid4.FontStyle = FontStyle.Regular;
     itemGrid4.Height = 1f;
     itemGrid4.IsBlink = 0;
     itemGrid4.Name = "pchg";
     itemGrid4.Text = "";
     itemGrid4.ValueFormat = FormatType.PercentChange;
     itemGrid4.Visible = true;
     itemGrid4.Width = 14;
     itemGrid4.X = 42;
     itemGrid4.Y = 0f;
     itemGrid5.AdjustFontSize = 0f;
     itemGrid5.Alignment = StringAlignment.Near;
     itemGrid5.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid5.Changed = false;
     itemGrid5.FieldType = ItemType.Label;
     itemGrid5.FontColor = Color.LightGray;
     itemGrid5.FontStyle = FontStyle.Regular;
     itemGrid5.Height = 1f;
     itemGrid5.IsBlink = 0;
     itemGrid5.Name = "col3";
     itemGrid5.Text = "High";
     itemGrid5.ValueFormat = FormatType.Text;
     itemGrid5.Visible = true;
     itemGrid5.Width = 10;
     itemGrid5.X = 56;
     itemGrid5.Y = 0f;
     itemGrid6.AdjustFontSize = 0f;
     itemGrid6.Alignment = StringAlignment.Near;
     itemGrid6.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid6.Changed = false;
     itemGrid6.FieldType = ItemType.Text;
     itemGrid6.FontColor = Color.Yellow;
     itemGrid6.FontStyle = FontStyle.Regular;
     itemGrid6.Height = 1f;
     itemGrid6.IsBlink = 0;
     itemGrid6.Name = "high";
     itemGrid6.Text = "";
     itemGrid6.ValueFormat = FormatType.Price;
     itemGrid6.Visible = true;
     itemGrid6.Width = 12;
     itemGrid6.X = 66;
     itemGrid6.Y = 0f;
     itemGrid7.AdjustFontSize = 0f;
     itemGrid7.Alignment = StringAlignment.Near;
     itemGrid7.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid7.Changed = false;
     itemGrid7.FieldType = ItemType.Label;
     itemGrid7.FontColor = Color.LightGray;
     itemGrid7.FontStyle = FontStyle.Regular;
     itemGrid7.Height = 1f;
     itemGrid7.IsBlink = 0;
     itemGrid7.Name = "col4";
     itemGrid7.Text = "Low";
     itemGrid7.ValueFormat = FormatType.Text;
     itemGrid7.Visible = true;
     itemGrid7.Width = 10;
     itemGrid7.X = 78;
     itemGrid7.Y = 0f;
     itemGrid8.AdjustFontSize = 0f;
     itemGrid8.Alignment = StringAlignment.Near;
     itemGrid8.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid8.Changed = false;
     itemGrid8.FieldType = ItemType.Text;
     itemGrid8.FontColor = Color.Yellow;
     itemGrid8.FontStyle = FontStyle.Regular;
     itemGrid8.Height = 1f;
     itemGrid8.IsBlink = 0;
     itemGrid8.Name = "low";
     itemGrid8.Text = "";
     itemGrid8.ValueFormat = FormatType.Price;
     itemGrid8.Visible = true;
     itemGrid8.Width = 12;
     itemGrid8.X = 88;
     itemGrid8.Y = 0f;
     this.intzaHeader1.Items.Add(itemGrid);
     this.intzaHeader1.Items.Add(itemGrid2);
     this.intzaHeader1.Items.Add(itemGrid3);
     this.intzaHeader1.Items.Add(itemGrid4);
     this.intzaHeader1.Items.Add(itemGrid5);
     this.intzaHeader1.Items.Add(itemGrid6);
     this.intzaHeader1.Items.Add(itemGrid7);
     this.intzaHeader1.Items.Add(itemGrid8);
     this.intzaHeader1.LineColor = Color.Red;
     this.intzaHeader1.Location = new Point(1, 1);
     this.intzaHeader1.Margin = new Padding(1);
     this.intzaHeader1.Name = "intzaHeader1";
     this.intzaHeader1.Padding = new Padding(1);
     this.intzaHeader1.Size = new Size(397, 17);
     this.intzaHeader1.TabIndex = 64;
     this.intzaHeader1.Tag = "1";
     this.intzaHeader1.GridMouseClick += new IntzaCustomGrid.GridMouseClickEventHandler(this.intzaHeader_GridMouseClick);
     this.intzaVolumeByBoard1.AllowDrop = true;
     this.intzaVolumeByBoard1.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaVolumeByBoard1.CanDrag = false;
     this.intzaVolumeByBoard1.IsAutoRepaint = true;
     this.intzaVolumeByBoard1.IsDroped = false;
     itemGrid9.AdjustFontSize = -1f;
     itemGrid9.Alignment = StringAlignment.Near;
     itemGrid9.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid9.Changed = false;
     itemGrid9.FieldType = ItemType.Label2;
     itemGrid9.FontColor = Color.LightGray;
     itemGrid9.FontStyle = FontStyle.Regular;
     itemGrid9.Height = 1f;
     itemGrid9.IsBlink = 0;
     itemGrid9.Name = "col1";
     itemGrid9.Text = "OpenV";
     itemGrid9.ValueFormat = FormatType.Text;
     itemGrid9.Visible = true;
     itemGrid9.Width = 10;
     itemGrid9.X = 0;
     itemGrid9.Y = 0f;
     itemGrid10.AdjustFontSize = 0f;
     itemGrid10.Alignment = StringAlignment.Near;
     itemGrid10.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid10.Changed = false;
     itemGrid10.FieldType = ItemType.Text;
     itemGrid10.FontColor = Color.Yellow;
     itemGrid10.FontStyle = FontStyle.Regular;
     itemGrid10.Height = 1f;
     itemGrid10.IsBlink = 0;
     itemGrid10.Name = "open_vol";
     itemGrid10.Text = "";
     itemGrid10.ValueFormat = FormatType.Volume;
     itemGrid10.Visible = true;
     itemGrid10.Width = 16;
     itemGrid10.X = 10;
     itemGrid10.Y = 0f;
     itemGrid11.AdjustFontSize = -1f;
     itemGrid11.Alignment = StringAlignment.Near;
     itemGrid11.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid11.Changed = false;
     itemGrid11.FieldType = ItemType.Label2;
     itemGrid11.FontColor = Color.LightGray;
     itemGrid11.FontStyle = FontStyle.Regular;
     itemGrid11.Height = 1f;
     itemGrid11.IsBlink = 0;
     itemGrid11.Name = "col2";
     itemGrid11.Text = "BuyV";
     itemGrid11.ValueFormat = FormatType.Text;
     itemGrid11.Visible = true;
     itemGrid11.Width = 10;
     itemGrid11.X = 26;
     itemGrid11.Y = 0f;
     itemGrid12.AdjustFontSize = 0f;
     itemGrid12.Alignment = StringAlignment.Near;
     itemGrid12.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid12.Changed = false;
     itemGrid12.FieldType = ItemType.Text;
     itemGrid12.FontColor = Color.Yellow;
     itemGrid12.FontStyle = FontStyle.Regular;
     itemGrid12.Height = 1f;
     itemGrid12.IsBlink = 0;
     itemGrid12.Name = "buy_vol";
     itemGrid12.Text = "";
     itemGrid12.ValueFormat = FormatType.Volume;
     itemGrid12.Visible = true;
     itemGrid12.Width = 19;
     itemGrid12.X = 36;
     itemGrid12.Y = 0f;
     itemGrid13.AdjustFontSize = -1f;
     itemGrid13.Alignment = StringAlignment.Near;
     itemGrid13.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid13.Changed = false;
     itemGrid13.FieldType = ItemType.Label2;
     itemGrid13.FontColor = Color.LightGray;
     itemGrid13.FontStyle = FontStyle.Regular;
     itemGrid13.Height = 1f;
     itemGrid13.IsBlink = 0;
     itemGrid13.Name = "col3";
     itemGrid13.Text = "SellV";
     itemGrid13.ValueFormat = FormatType.Text;
     itemGrid13.Visible = true;
     itemGrid13.Width = 9;
     itemGrid13.X = 55;
     itemGrid13.Y = 0f;
     itemGrid14.AdjustFontSize = 0f;
     itemGrid14.Alignment = StringAlignment.Near;
     itemGrid14.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid14.Changed = false;
     itemGrid14.FieldType = ItemType.Text;
     itemGrid14.FontColor = Color.Yellow;
     itemGrid14.FontStyle = FontStyle.Regular;
     itemGrid14.Height = 1f;
     itemGrid14.IsBlink = 0;
     itemGrid14.Name = "sell_vol";
     itemGrid14.Text = "";
     itemGrid14.ValueFormat = FormatType.Volume;
     itemGrid14.Visible = true;
     itemGrid14.Width = 19;
     itemGrid14.X = 64;
     itemGrid14.Y = 0f;
     itemGrid15.AdjustFontSize = -1f;
     itemGrid15.Alignment = StringAlignment.Near;
     itemGrid15.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid15.Changed = false;
     itemGrid15.FieldType = ItemType.Label2;
     itemGrid15.FontColor = Color.White;
     itemGrid15.FontStyle = FontStyle.Regular;
     itemGrid15.Height = 1f;
     itemGrid15.IsBlink = 0;
     itemGrid15.Name = "col4";
     itemGrid15.Text = "OI";
     itemGrid15.ValueFormat = FormatType.Text;
     itemGrid15.Visible = true;
     itemGrid15.Width = 7;
     itemGrid15.X = 83;
     itemGrid15.Y = 0f;
     itemGrid16.AdjustFontSize = 0f;
     itemGrid16.Alignment = StringAlignment.Near;
     itemGrid16.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid16.Changed = false;
     itemGrid16.FieldType = ItemType.Text;
     itemGrid16.FontColor = Color.Yellow;
     itemGrid16.FontStyle = FontStyle.Regular;
     itemGrid16.Height = 1f;
     itemGrid16.IsBlink = 0;
     itemGrid16.Name = "OI_vol";
     itemGrid16.Text = "";
     itemGrid16.ValueFormat = FormatType.Text;
     itemGrid16.Visible = true;
     itemGrid16.Width = 10;
     itemGrid16.X = 90;
     itemGrid16.Y = 0f;
     this.intzaVolumeByBoard1.Items.Add(itemGrid9);
     this.intzaVolumeByBoard1.Items.Add(itemGrid10);
     this.intzaVolumeByBoard1.Items.Add(itemGrid11);
     this.intzaVolumeByBoard1.Items.Add(itemGrid12);
     this.intzaVolumeByBoard1.Items.Add(itemGrid13);
     this.intzaVolumeByBoard1.Items.Add(itemGrid14);
     this.intzaVolumeByBoard1.Items.Add(itemGrid15);
     this.intzaVolumeByBoard1.Items.Add(itemGrid16);
     this.intzaVolumeByBoard1.LineColor = Color.Red;
     this.intzaVolumeByBoard1.Location = new Point(16, 86);
     this.intzaVolumeByBoard1.Margin = new Padding(1);
     this.intzaVolumeByBoard1.Name = "intzaVolumeByBoard1";
     this.intzaVolumeByBoard1.Padding = new Padding(1);
     this.intzaVolumeByBoard1.Size = new Size(457, 18);
     this.intzaVolumeByBoard1.TabIndex = 62;
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = Color.FromArgb(20, 20, 20);
     base.Controls.Add(this.txtStock);
     base.Controls.Add(this.intzaTP1);
     base.Controls.Add(this.intzaLS1);
     base.Controls.Add(this.intzaHeader1);
     base.Controls.Add(this.intzaVolumeByBoard1);
     base.Name = "ucBids";
     base.Size = new Size(474, 161);
     base.SizeChanged += new EventHandler(this.ucBids_SizeChanged);
     base.ResumeLayout(false);
     base.PerformLayout();
 }
 private void InitializeComponent()
 {
     this.components = new Container();
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     this.panelDetail = new Panel();
     this.btnClose = new Button();
     this.txtMessage = new TextBox();
     this.lbLoading = new Label();
     this.intza1 = new SortGrid();
     this.contextMenuStrip2 = new ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new ToolStripMenuItem();
     this.panelDetail.SuspendLayout();
     this.contextMenuStrip2.SuspendLayout();
     base.SuspendLayout();
     this.panelDetail.BackColor = Color.Black;
     this.panelDetail.Controls.Add(this.btnClose);
     this.panelDetail.Controls.Add(this.txtMessage);
     this.panelDetail.Location = new Point(-1, 54);
     this.panelDetail.Name = "panelDetail";
     this.panelDetail.Size = new Size(438, 86);
     this.panelDetail.TabIndex = 22;
     this.panelDetail.TabStop = true;
     this.panelDetail.Visible = false;
     this.btnClose.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.btnClose.Font = new Font("Wingdings", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 2);
     this.btnClose.Location = new Point(414, 1);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new Size(24, 23);
     this.btnClose.TabIndex = 1;
     this.btnClose.TabStop = false;
     this.btnClose.Text = "x";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new EventHandler(this.btnClose_Click);
     this.txtMessage.Anchor = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right);
     this.txtMessage.BackColor = Color.FromArgb(30, 30, 30);
     this.txtMessage.BorderStyle = BorderStyle.None;
     this.txtMessage.ForeColor = Color.Yellow;
     this.txtMessage.Location = new Point(0, 0);
     this.txtMessage.MaxLength = 500;
     this.txtMessage.Multiline = true;
     this.txtMessage.Name = "txtMessage";
     this.txtMessage.ReadOnly = true;
     this.txtMessage.Size = new Size(412, 86);
     this.txtMessage.TabIndex = 0;
     this.txtMessage.TabStop = false;
     this.txtMessage.Enter += new EventHandler(this.txtMessage_Enter);
     this.lbLoading.AutoSize = true;
     this.lbLoading.BackColor = Color.FromArgb(64, 64, 64);
     this.lbLoading.BorderStyle = BorderStyle.FixedSingle;
     this.lbLoading.ForeColor = Color.Yellow;
     this.lbLoading.Location = new Point(262, 79);
     this.lbLoading.Name = "lbLoading";
     this.lbLoading.Padding = new Padding(5, 3, 5, 3);
     this.lbLoading.Size = new Size(69, 21);
     this.lbLoading.TabIndex = 62;
     this.lbLoading.Text = "Loading ...";
     this.lbLoading.Visible = false;
     this.intza1.AllowDrop = true;
     this.intza1.BackColor = Color.FromArgb(30, 30, 30);
     this.intza1.CanBlink = false;
     this.intza1.CanDrag = false;
     this.intza1.CanGetMouseMove = true;
     columnItem.Alignment = StringAlignment.Near;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "message";
     columnItem.Text = "None";
     columnItem.ValueFormat = FormatType.Text;
     columnItem.Visible = true;
     columnItem.Width = 100;
     columnItem2.Alignment = StringAlignment.Near;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "url";
     columnItem2.Text = "None";
     columnItem2.ValueFormat = FormatType.Text;
     columnItem2.Visible = false;
     columnItem2.Width = 10;
     this.intza1.Columns.Add(columnItem);
     this.intza1.Columns.Add(columnItem2);
     this.intza1.CurrentScroll = 0;
     this.intza1.FocusItemIndex = -1;
     this.intza1.ForeColor = Color.Black;
     this.intza1.GridColor = Color.FromArgb(45, 45, 45);
     this.intza1.HeaderPctHeight = 100f;
     this.intza1.IsAutoRepaint = true;
     this.intza1.IsDrawFullRow = true;
     this.intza1.IsDrawGrid = false;
     this.intza1.IsDrawHeader = false;
     this.intza1.IsScrollable = true;
     this.intza1.Location = new Point(1, 1);
     this.intza1.MainColumn = "";
     this.intza1.Name = "intza1";
     this.intza1.Rows = 0;
     this.intza1.RowSelectColor = Color.FromArgb(64, 64, 64);
     this.intza1.RowSelectType = 0;
     this.intza1.RowsVisible = 0;
     this.intza1.Size = new Size(436, 53);
     this.intza1.SortColumnName = "";
     this.intza1.SortType = SortType.Desc;
     this.intza1.TabIndex = 63;
     this.intza1.MouseClick += new MouseEventHandler(this.intza1_MouseClick);
     this.intza1.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaTableGrid1_TableMouseClick);
     this.intza1.TableMouseDoubleClick += new SortGrid.TableMouseDoubleClickEventHandler(this.intzaTableGrid1_TableMouseDoubleClick);
     this.contextMenuStrip2.Items.AddRange(new ToolStripItem[]
     {
         this.toolStripMenuItem1
     });
     this.contextMenuStrip2.Name = "contextMenuStrip1";
     this.contextMenuStrip2.Size = new Size(111, 26);
     this.toolStripMenuItem1.Image = Resources.refresh;
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new Size(110, 22);
     this.toolStripMenuItem1.Text = "Reload";
     this.toolStripMenuItem1.Click += new EventHandler(this.toolStripMenuItem1_Click);
     this.BackColor = Color.DimGray;
     base.Controls.Add(this.lbLoading);
     base.Controls.Add(this.intza1);
     base.Controls.Add(this.panelDetail);
     base.Margin = new Padding(1);
     base.Name = "ucBroadcastMessage";
     base.Padding = new Padding(1);
     base.Size = new Size(439, 141);
     this.panelDetail.ResumeLayout(false);
     this.panelDetail.PerformLayout();
     this.contextMenuStrip2.ResumeLayout(false);
     base.ResumeLayout(false);
     base.PerformLayout();
 }
示例#27
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmMarketWatch));
     STIControl.ExpandTableGrid.ColumnItem columnItem = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem2 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem3 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem4 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem5 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem6 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem7 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem8 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem9 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem10 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem11 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem12 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem13 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem14 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem15 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem16 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem17 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem18 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem19 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem20 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem21 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem22 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem23 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem24 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem25 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem26 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem27 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem28 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem29 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem30 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem31 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem32 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem33 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem34 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem35 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem36 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem37 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem38 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem39 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem40 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem41 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem42 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem43 = new STIControl.ExpandTableGrid.ColumnItem();
     STIControl.ExpandTableGrid.ColumnItem columnItem44 = new STIControl.ExpandTableGrid.ColumnItem();
     ItemGrid itemGrid = new ItemGrid();
     ItemGrid itemGrid2 = new ItemGrid();
     ItemGrid itemGrid3 = new ItemGrid();
     ItemGrid itemGrid4 = new ItemGrid();
     ItemGrid itemGrid5 = new ItemGrid();
     ItemGrid itemGrid6 = new ItemGrid();
     ItemGrid itemGrid7 = new ItemGrid();
     ItemGrid itemGrid8 = new ItemGrid();
     ItemGrid itemGrid9 = new ItemGrid();
     ItemGrid itemGrid10 = new ItemGrid();
     ItemGrid itemGrid11 = new ItemGrid();
     ItemGrid itemGrid12 = new ItemGrid();
     ItemGrid itemGrid13 = new ItemGrid();
     ItemGrid itemGrid14 = new ItemGrid();
     ItemGrid itemGrid15 = new ItemGrid();
     ItemGrid itemGrid16 = new ItemGrid();
     ItemGrid itemGrid17 = new ItemGrid();
     ItemGrid itemGrid18 = new ItemGrid();
     ItemGrid itemGrid19 = new ItemGrid();
     ItemGrid itemGrid20 = new ItemGrid();
     ItemGrid itemGrid21 = new ItemGrid();
     ItemGrid itemGrid22 = new ItemGrid();
     ItemGrid itemGrid23 = new ItemGrid();
     ItemGrid itemGrid24 = new ItemGrid();
     ItemGrid itemGrid25 = new ItemGrid();
     ItemGrid itemGrid26 = new ItemGrid();
     ItemGrid itemGrid27 = new ItemGrid();
     ItemGrid itemGrid28 = new ItemGrid();
     ItemGrid itemGrid29 = new ItemGrid();
     ItemGrid itemGrid30 = new ItemGrid();
     ItemGrid itemGrid31 = new ItemGrid();
     ItemGrid itemGrid32 = new ItemGrid();
     ItemGrid itemGrid33 = new ItemGrid();
     ItemGrid itemGrid34 = new ItemGrid();
     ItemGrid itemGrid35 = new ItemGrid();
     ItemGrid itemGrid36 = new ItemGrid();
     ItemGrid itemGrid37 = new ItemGrid();
     ItemGrid itemGrid38 = new ItemGrid();
     ItemGrid itemGrid39 = new ItemGrid();
     ItemGrid itemGrid40 = new ItemGrid();
     ItemGrid itemGrid41 = new ItemGrid();
     ItemGrid itemGrid42 = new ItemGrid();
     STIControl.SortTableGrid.ColumnItem columnItem45 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem46 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem47 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem48 = new STIControl.SortTableGrid.ColumnItem();
     ItemGrid itemGrid43 = new ItemGrid();
     ItemGrid itemGrid44 = new ItemGrid();
     ItemGrid itemGrid45 = new ItemGrid();
     ItemGrid itemGrid46 = new ItemGrid();
     ItemGrid itemGrid47 = new ItemGrid();
     ItemGrid itemGrid48 = new ItemGrid();
     ItemGrid itemGrid49 = new ItemGrid();
     ItemGrid itemGrid50 = new ItemGrid();
     ItemGrid itemGrid51 = new ItemGrid();
     ItemGrid itemGrid52 = new ItemGrid();
     ItemGrid itemGrid53 = new ItemGrid();
     ItemGrid itemGrid54 = new ItemGrid();
     ItemGrid itemGrid55 = new ItemGrid();
     ItemGrid itemGrid56 = new ItemGrid();
     ItemGrid itemGrid57 = new ItemGrid();
     ItemGrid itemGrid58 = new ItemGrid();
     ItemGrid itemGrid59 = new ItemGrid();
     ItemGrid itemGrid60 = new ItemGrid();
     ItemGrid itemGrid61 = new ItemGrid();
     ItemGrid itemGrid62 = new ItemGrid();
     ItemGrid itemGrid63 = new ItemGrid();
     ItemGrid itemGrid64 = new ItemGrid();
     ItemGrid itemGrid65 = new ItemGrid();
     ItemGrid itemGrid66 = new ItemGrid();
     ItemGrid itemGrid67 = new ItemGrid();
     ItemGrid itemGrid68 = new ItemGrid();
     ItemGrid itemGrid69 = new ItemGrid();
     ItemGrid itemGrid70 = new ItemGrid();
     ItemGrid itemGrid71 = new ItemGrid();
     ItemGrid itemGrid72 = new ItemGrid();
     ItemGrid itemGrid73 = new ItemGrid();
     ItemGrid itemGrid74 = new ItemGrid();
     ItemGrid itemGrid75 = new ItemGrid();
     ItemGrid itemGrid76 = new ItemGrid();
     ItemGrid itemGrid77 = new ItemGrid();
     ItemGrid itemGrid78 = new ItemGrid();
     ItemGrid itemGrid79 = new ItemGrid();
     ItemGrid itemGrid80 = new ItemGrid();
     ItemGrid itemGrid81 = new ItemGrid();
     ItemGrid itemGrid82 = new ItemGrid();
     ItemGrid itemGrid83 = new ItemGrid();
     ItemGrid itemGrid84 = new ItemGrid();
     STIControl.SortTableGrid.ColumnItem columnItem49 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem50 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem51 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem52 = new STIControl.SortTableGrid.ColumnItem();
     ItemGrid itemGrid85 = new ItemGrid();
     STIControl.SortTableGrid.ColumnItem columnItem53 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem54 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem55 = new STIControl.SortTableGrid.ColumnItem();
     STIControl.SortTableGrid.ColumnItem columnItem56 = new STIControl.SortTableGrid.ColumnItem();
     clsPermission clsPermission = new clsPermission();
     clsPermission clsPermission2 = new clsPermission();
     this.tStripMenu = new ToolStrip();
     this.tsStockLable = new ToolStripLabel();
     this.tstbStock = new ToolStripComboBox();
     this.tslbCompare = new ToolStripLabel();
     this.tsPrice = new ToolStripLabel();
     this.tsbtnRefreshChart = new ToolStripButton();
     this.tsbtnSwitchChart = new ToolStripButton();
     this.tsbtnHChart = new ToolStripButton();
     this.tsbtnSETNews = new ToolStripButton();
     this.tslbTfexHigh = new ToolStripLabel();
     this.tstbTfexHigh = new ToolStripLabel();
     this.tslbTfexLow = new ToolStripLabel();
     this.tstbTfexLow = new ToolStripLabel();
     this.tslbTfexAvg = new ToolStripLabel();
     this.tstbTfexAvg = new ToolStripLabel();
     this.tsbtnVolAs = new ToolStripButton();
     this.tsSectorName = new ToolStripLabel();
     this.tsSectorIndex = new ToolStripLabel();
     this.lbSplashInfo = new Label();
     this.tbStockBBO = new TextBox();
     this.lbBBOLoading = new Label();
     this.panelBidOffer = new Panel();
     this.intzaCMPR = new ExpandGrid();
     this.intzaBBO = new ExpandGrid();
     this.intzaOption = new ExpandGrid();
     this.tStripCP = new ToolStrip();
     this.tStripCall = new ToolStripLabel();
     this.tStripPUT = new ToolStripLabel();
     this.tStripBBO = new ToolStrip();
     this.tslbSelection = new ToolStripLabel();
     this.tscbBBOSelectionMain = new ToolStripComboBox();
     this.tscbBBOSelection = new ToolStripComboBox();
     this.tsbtnBBOAddStock = new ToolStripButton();
     this.tsbtnBBODelStock = new ToolStripButton();
     this.tsbtnColumnSetup = new ToolStripButton();
     this.contextMenuStrip1 = new ContextMenuStrip(this.components);
     this.tsmiShowBestBO = new ToolStripMenuItem();
     this.tsmiShow3BO = new ToolStripMenuItem();
     this.tsmiShow5BO = new ToolStripMenuItem();
     this.pictureBox1 = new PictureBox();
     this.lbChartLoading = new Label();
     this.contextLink = new ContextMenuStrip(this.components);
     this.tsmCallHistoricalChart = new ToolStripMenuItem();
     this.tsmCallNews = new ToolStripMenuItem();
     this.toolStripMenuItem1 = new ToolStripSeparator();
     this.tsmCallStockInPlay = new ToolStripMenuItem();
     this.tsmCallSaleByPrice = new ToolStripMenuItem();
     this.tsmCallSaleByTime = new ToolStripMenuItem();
     this.tsmCallOddlot = new ToolStripMenuItem();
     this.btnCloseChart = new Button();
     this.intzaInfoTFEX = new IntzaCustomGrid();
     this.intzaVolumeByBoard = new SortGrid();
     this.intzaInfo = new IntzaCustomGrid();
     this.intzaLS = new SortGrid();
     this.intzaBF = new IntzaCustomGrid();
     this.intzaTP = new SortGrid();
     this.toolTip1 = new ToolTip(this.components);
     this.wcGraphVolume = new ucVolumeAtPrice();
     this.panelVolAs = new Panel();
     this.btnVolAsClose = new Button();
     this.tStripMenu.SuspendLayout();
     this.panelBidOffer.SuspendLayout();
     this.tStripCP.SuspendLayout();
     this.tStripBBO.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((ISupportInitialize)this.pictureBox1).BeginInit();
     this.contextLink.SuspendLayout();
     this.panelVolAs.SuspendLayout();
     base.SuspendLayout();
     this.tStripMenu.BackColor = Color.FromArgb(30, 30, 30);
     this.tStripMenu.BackgroundImageLayout = ImageLayout.None;
     this.tStripMenu.GripMargin = new Padding(0);
     this.tStripMenu.GripStyle = ToolStripGripStyle.Hidden;
     this.tStripMenu.Items.AddRange(new ToolStripItem[]
     {
         this.tsStockLable,
         this.tstbStock,
         this.tslbCompare,
         this.tsPrice,
         this.tsbtnRefreshChart,
         this.tsbtnSwitchChart,
         this.tsbtnHChart,
         this.tsbtnSETNews,
         this.tslbTfexHigh,
         this.tstbTfexHigh,
         this.tslbTfexLow,
         this.tstbTfexLow,
         this.tslbTfexAvg,
         this.tstbTfexAvg,
         this.tsbtnVolAs,
         this.tsSectorName,
         this.tsSectorIndex
     });
     this.tStripMenu.Location = new Point(0, 0);
     this.tStripMenu.Name = "tStripMenu";
     this.tStripMenu.Padding = new Padding(1, 1, 1, 2);
     this.tStripMenu.RenderMode = ToolStripRenderMode.System;
     this.tStripMenu.Size = new Size(963, 26);
     this.tStripMenu.TabIndex = 21;
     this.tStripMenu.TabStop = true;
     this.tsStockLable.BackColor = Color.Transparent;
     this.tsStockLable.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsStockLable.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tsStockLable.ForeColor = Color.LightGray;
     this.tsStockLable.ImageTransparentColor = Color.Magenta;
     this.tsStockLable.Name = "tsStockLable";
     this.tsStockLable.Padding = new Padding(1, 0, 2, 0);
     this.tsStockLable.Size = new Size(44, 20);
     this.tsStockLable.Text = "Symbol";
     this.tstbStock.BackColor = Color.FromArgb(30, 30, 30);
     this.tstbStock.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tstbStock.ForeColor = Color.Yellow;
     this.tstbStock.Name = "tstbStock";
     this.tstbStock.Size = new Size(120, 23);
     this.tstbStock.SelectedIndexChanged += new EventHandler(this.tstbStock_SelectedIndexChanged);
     this.tstbStock.KeyUp += new KeyEventHandler(this.tstbStock_KeyUp);
     this.tstbStock.KeyDown += new KeyEventHandler(this.tstbStock_KeyDown);
     this.tstbStock.Leave += new EventHandler(this.tstbStock_Leave);
     this.tstbStock.KeyPress += new KeyPressEventHandler(this.tstbStock_KeyPress);
     this.tslbCompare.BackColor = Color.Transparent;
     this.tslbCompare.Font = new Font("Wingdings", 9f, FontStyle.Regular, GraphicsUnit.Point, 2);
     this.tslbCompare.ForeColor = Color.Lime;
     this.tslbCompare.Margin = new Padding(5, 1, 0, 2);
     this.tslbCompare.Name = "tslbCompare";
     this.tslbCompare.Size = new Size(0, 20);
     this.tslbCompare.Tag = "0";
     this.tsPrice.BackColor = Color.Transparent;
     this.tsPrice.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsPrice.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tsPrice.ForeColor = Color.Yellow;
     this.tsPrice.Margin = new Padding(0, 1, 5, 2);
     this.tsPrice.Name = "tsPrice";
     this.tsPrice.Padding = new Padding(0, 0, 2, 0);
     this.tsPrice.Size = new Size(30, 20);
     this.tsPrice.Text = "0.00";
     this.tsbtnRefreshChart.Alignment = ToolStripItemAlignment.Right;
     this.tsbtnRefreshChart.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnRefreshChart.Image = Resources.refresh;
     this.tsbtnRefreshChart.ImageTransparentColor = Color.Magenta;
     this.tsbtnRefreshChart.Name = "tsbtnRefreshChart";
     this.tsbtnRefreshChart.Size = new Size(23, 20);
     this.tsbtnRefreshChart.Text = "Reload Chart";
     this.tsbtnRefreshChart.Click += new EventHandler(this.tsbtnRefreshChart_Click);
     this.tsbtnSwitchChart.Alignment = ToolStripItemAlignment.Right;
     this.tsbtnSwitchChart.BackColor = Color.Transparent;
     this.tsbtnSwitchChart.ForeColor = Color.LightGray;
     this.tsbtnSwitchChart.Image = (Image)componentResourceManager.GetObject("tsbtnSwitchChart.Image");
     this.tsbtnSwitchChart.ImageTransparentColor = Color.Magenta;
     this.tsbtnSwitchChart.Margin = new Padding(2, 1, 2, 2);
     this.tsbtnSwitchChart.Name = "tsbtnSwitchChart";
     this.tsbtnSwitchChart.Size = new Size(23, 20);
     this.tsbtnSwitchChart.ToolTipText = "Intraday Chart";
     this.tsbtnSwitchChart.Click += new EventHandler(this.tsbtnSwitchChart_Click);
     this.tsbtnHChart.Alignment = ToolStripItemAlignment.Right;
     this.tsbtnHChart.ForeColor = Color.WhiteSmoke;
     this.tsbtnHChart.Image = (Image)componentResourceManager.GetObject("tsbtnHChart.Image");
     this.tsbtnHChart.ImageTransparentColor = Color.Magenta;
     this.tsbtnHChart.Margin = new Padding(2, 1, 2, 2);
     this.tsbtnHChart.Name = "tsbtnHChart";
     this.tsbtnHChart.Size = new Size(23, 20);
     this.tsbtnHChart.ToolTipText = "Historical Chart";
     this.tsbtnHChart.Click += new EventHandler(this.tsbtnHChart_Click);
     this.tsbtnSETNews.Alignment = ToolStripItemAlignment.Right;
     this.tsbtnSETNews.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnSETNews.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsbtnSETNews.ForeColor = Color.SandyBrown;
     this.tsbtnSETNews.Image = (Image)componentResourceManager.GetObject("tsbtnSETNews.Image");
     this.tsbtnSETNews.ImageTransparentColor = Color.Magenta;
     this.tsbtnSETNews.Margin = new Padding(2, 1, 2, 2);
     this.tsbtnSETNews.Name = "tsbtnSETNews";
     this.tsbtnSETNews.Size = new Size(23, 20);
     this.tsbtnSETNews.Tag = "S";
     this.tsbtnSETNews.Text = "News";
     this.tsbtnSETNews.ToolTipText = "SET News";
     this.tsbtnSETNews.Click += new EventHandler(this.tsbtnSETNews_Click);
     this.tslbTfexHigh.BackColor = Color.Transparent;
     this.tslbTfexHigh.ForeColor = Color.Gainsboro;
     this.tslbTfexHigh.Margin = new Padding(1, 1, 5, 2);
     this.tslbTfexHigh.Name = "tslbTfexHigh";
     this.tslbTfexHigh.Size = new Size(33, 20);
     this.tslbTfexHigh.Text = "High";
     this.tstbTfexHigh.BackColor = Color.Transparent;
     this.tstbTfexHigh.ForeColor = Color.Yellow;
     this.tstbTfexHigh.Name = "tstbTfexHigh";
     this.tstbTfexHigh.Padding = new Padding(1, 0, 1, 0);
     this.tstbTfexHigh.Size = new Size(30, 20);
     this.tstbTfexHigh.Text = "0.00";
     this.tslbTfexLow.BackColor = Color.Transparent;
     this.tslbTfexLow.ForeColor = Color.Gainsboro;
     this.tslbTfexLow.Margin = new Padding(1, 1, 5, 2);
     this.tslbTfexLow.Name = "tslbTfexLow";
     this.tslbTfexLow.Size = new Size(29, 20);
     this.tslbTfexLow.Text = "Low";
     this.tstbTfexLow.BackColor = Color.Transparent;
     this.tstbTfexLow.ForeColor = Color.Yellow;
     this.tstbTfexLow.Name = "tstbTfexLow";
     this.tstbTfexLow.Padding = new Padding(1, 0, 1, 0);
     this.tstbTfexLow.Size = new Size(30, 20);
     this.tstbTfexLow.Text = "0.00";
     this.tslbTfexAvg.BackColor = Color.Transparent;
     this.tslbTfexAvg.ForeColor = Color.Gainsboro;
     this.tslbTfexAvg.Margin = new Padding(1, 1, 5, 2);
     this.tslbTfexAvg.Name = "tslbTfexAvg";
     this.tslbTfexAvg.Size = new Size(28, 20);
     this.tslbTfexAvg.Text = "Avg";
     this.tstbTfexAvg.BackColor = Color.Transparent;
     this.tstbTfexAvg.ForeColor = Color.Yellow;
     this.tstbTfexAvg.Name = "tstbTfexAvg";
     this.tstbTfexAvg.Padding = new Padding(1, 0, 1, 0);
     this.tstbTfexAvg.Size = new Size(30, 20);
     this.tstbTfexAvg.Text = "0.00";
     this.tsbtnVolAs.Alignment = ToolStripItemAlignment.Right;
     this.tsbtnVolAs.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnVolAs.Image = (Image)componentResourceManager.GetObject("tsbtnVolAs.Image");
     this.tsbtnVolAs.ImageTransparentColor = Color.Magenta;
     this.tsbtnVolAs.Name = "tsbtnVolAs";
     this.tsbtnVolAs.Size = new Size(23, 20);
     this.tsbtnVolAs.ToolTipText = "Volume Analysis";
     this.tsbtnVolAs.Click += new EventHandler(this.tsbtnVolAs_Click);
     this.tsSectorName.BackColor = Color.Transparent;
     this.tsSectorName.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsSectorName.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tsSectorName.ForeColor = Color.Aqua;
     this.tsSectorName.Margin = new Padding(2, 1, 2, 2);
     this.tsSectorName.Name = "tsSectorName";
     this.tsSectorName.Padding = new Padding(2, 0, 2, 0);
     this.tsSectorName.Size = new Size(42, 20);
     this.tsSectorName.Text = "Sector";
     this.tsSectorIndex.BackColor = Color.Transparent;
     this.tsSectorIndex.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsSectorIndex.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tsSectorIndex.ForeColor = Color.Yellow;
     this.tsSectorIndex.Name = "tsSectorIndex";
     this.tsSectorIndex.Padding = new Padding(2, 0, 3, 0);
     this.tsSectorIndex.Size = new Size(33, 20);
     this.tsSectorIndex.Text = "0.00";
     this.lbSplashInfo.AutoSize = true;
     this.lbSplashInfo.BackColor = Color.FromArgb(64, 64, 64);
     this.lbSplashInfo.BorderStyle = BorderStyle.FixedSingle;
     this.lbSplashInfo.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbSplashInfo.ForeColor = Color.Yellow;
     this.lbSplashInfo.Location = new Point(602, 140);
     this.lbSplashInfo.Name = "lbSplashInfo";
     this.lbSplashInfo.Padding = new Padding(5, 3, 5, 3);
     this.lbSplashInfo.Size = new Size(69, 21);
     this.lbSplashInfo.TabIndex = 75;
     this.lbSplashInfo.Text = "Loading ...";
     this.lbSplashInfo.TextAlign = ContentAlignment.MiddleCenter;
     this.lbSplashInfo.Visible = false;
     this.tbStockBBO.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
     this.tbStockBBO.AutoCompleteSource = AutoCompleteSource.CustomSource;
     this.tbStockBBO.BackColor = Color.WhiteSmoke;
     this.tbStockBBO.BorderStyle = BorderStyle.FixedSingle;
     this.tbStockBBO.CharacterCasing = CharacterCasing.Upper;
     this.tbStockBBO.ForeColor = Color.Black;
     this.tbStockBBO.Location = new Point(8, 80);
     this.tbStockBBO.Margin = new Padding(0);
     this.tbStockBBO.MaxLength = 12;
     this.tbStockBBO.Name = "tbStockBBO";
     this.tbStockBBO.Size = new Size(83, 20);
     this.tbStockBBO.TabIndex = 68;
     this.tbStockBBO.Visible = false;
     this.tbStockBBO.KeyDown += new KeyEventHandler(this.tbStockBBO_KeyDown);
     this.tbStockBBO.Leave += new EventHandler(this.tbStockBBO_Leave);
     this.tbStockBBO.Enter += new EventHandler(this.tbStockBBO_Enter);
     this.lbBBOLoading.AutoSize = true;
     this.lbBBOLoading.BackColor = Color.FromArgb(64, 64, 64);
     this.lbBBOLoading.BorderStyle = BorderStyle.FixedSingle;
     this.lbBBOLoading.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbBBOLoading.ForeColor = Color.Yellow;
     this.lbBBOLoading.Location = new Point(602, 166);
     this.lbBBOLoading.Name = "lbBBOLoading";
     this.lbBBOLoading.Padding = new Padding(5, 3, 5, 3);
     this.lbBBOLoading.Size = new Size(69, 21);
     this.lbBBOLoading.TabIndex = 73;
     this.lbBBOLoading.Text = "Loading ...";
     this.lbBBOLoading.TextAlign = ContentAlignment.MiddleCenter;
     this.lbBBOLoading.Visible = false;
     this.panelBidOffer.BackColor = Color.FromArgb(20, 20, 20);
     this.panelBidOffer.Controls.Add(this.intzaCMPR);
     this.panelBidOffer.Controls.Add(this.intzaBBO);
     this.panelBidOffer.Controls.Add(this.intzaOption);
     this.panelBidOffer.Controls.Add(this.tStripCP);
     this.panelBidOffer.Controls.Add(this.tStripBBO);
     this.panelBidOffer.Controls.Add(this.tbStockBBO);
     this.panelBidOffer.Location = new Point(2, 192);
     this.panelBidOffer.Margin = new Padding(0);
     this.panelBidOffer.Name = "panelBidOffer";
     this.panelBidOffer.Size = new Size(952, 197);
     this.panelBidOffer.TabIndex = 1;
     this.panelBidOffer.Leave += new EventHandler(this.panelBidOffer_Leave);
     this.panelBidOffer.Enter += new EventHandler(this.panelBidOffer_Enter);
     this.intzaCMPR.AllowDrop = true;
     this.intzaCMPR.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaCMPR.CanBlink = true;
     this.intzaCMPR.CanDrag = true;
     this.intzaCMPR.CanGetMouseMove = true;
     columnItem.Alignment = StringAlignment.Center;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.FontColor = Color.LightGray;
     columnItem.IsExpand = false;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "no";
     columnItem.Text = "No.";
     columnItem.ValueFormat = FormatType.RecordNumber;
     columnItem.Visible = true;
     columnItem.Width = 6;
     columnItem2.Alignment = StringAlignment.Near;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.FontColor = Color.LightGray;
     columnItem2.IsExpand = false;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "stock";
     columnItem2.Text = "Symbol";
     columnItem2.ValueFormat = FormatType.Text;
     columnItem2.Visible = true;
     columnItem2.Width = 16;
     columnItem3.Alignment = StringAlignment.Far;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.FontColor = Color.LightGray;
     columnItem3.IsExpand = false;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "avgvol5";
     columnItem3.Text = "AVG Vol5";
     columnItem3.ValueFormat = FormatType.Volume;
     columnItem3.Visible = true;
     columnItem3.Width = 14;
     columnItem4.Alignment = StringAlignment.Far;
     columnItem4.BackColor = Color.FromArgb(64, 64, 100);
     columnItem4.FontColor = Color.LightGray;
     columnItem4.IsExpand = false;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "trade_vol";
     columnItem4.Text = "TradeVol";
     columnItem4.ValueFormat = FormatType.Volume;
     columnItem4.Visible = true;
     columnItem4.Width = 14;
     columnItem5.Alignment = StringAlignment.Far;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.FontColor = Color.LightGray;
     columnItem5.IsExpand = false;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "cmpr";
     columnItem5.Text = "%CMPR";
     columnItem5.ValueFormat = FormatType.Price;
     columnItem5.Visible = true;
     columnItem5.Width = 10;
     columnItem6.Alignment = StringAlignment.Far;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.FontColor = Color.LightGray;
     columnItem6.IsExpand = false;
     columnItem6.MyStyle = FontStyle.Regular;
     columnItem6.Name = "prev";
     columnItem6.Text = "Prev";
     columnItem6.ValueFormat = FormatType.Price;
     columnItem6.Visible = true;
     columnItem6.Width = 10;
     columnItem7.Alignment = StringAlignment.Far;
     columnItem7.BackColor = Color.FromArgb(64, 64, 64);
     columnItem7.FontColor = Color.LightGray;
     columnItem7.IsExpand = false;
     columnItem7.MyStyle = FontStyle.Regular;
     columnItem7.Name = "last";
     columnItem7.Text = "Last";
     columnItem7.ValueFormat = FormatType.PriceAndCompare;
     columnItem7.Visible = true;
     columnItem7.Width = 10;
     columnItem8.Alignment = StringAlignment.Far;
     columnItem8.BackColor = Color.FromArgb(64, 64, 64);
     columnItem8.FontColor = Color.LightGray;
     columnItem8.IsExpand = false;
     columnItem8.MyStyle = FontStyle.Regular;
     columnItem8.Name = "chg";
     columnItem8.Text = "Chg";
     columnItem8.ValueFormat = FormatType.ChangePrice;
     columnItem8.Visible = true;
     columnItem8.Width = 10;
     columnItem9.Alignment = StringAlignment.Far;
     columnItem9.BackColor = Color.FromArgb(64, 64, 64);
     columnItem9.FontColor = Color.LightGray;
     columnItem9.IsExpand = false;
     columnItem9.MyStyle = FontStyle.Regular;
     columnItem9.Name = "chg_pct";
     columnItem9.Text = "%Chg";
     columnItem9.ValueFormat = FormatType.ChangePrice;
     columnItem9.Visible = true;
     columnItem9.Width = 10;
     this.intzaCMPR.Columns.Add(columnItem);
     this.intzaCMPR.Columns.Add(columnItem2);
     this.intzaCMPR.Columns.Add(columnItem3);
     this.intzaCMPR.Columns.Add(columnItem4);
     this.intzaCMPR.Columns.Add(columnItem5);
     this.intzaCMPR.Columns.Add(columnItem6);
     this.intzaCMPR.Columns.Add(columnItem7);
     this.intzaCMPR.Columns.Add(columnItem8);
     this.intzaCMPR.Columns.Add(columnItem9);
     this.intzaCMPR.CurrentScroll = 0;
     this.intzaCMPR.Cursor = Cursors.Hand;
     this.intzaCMPR.FocusItemIndex = -1;
     this.intzaCMPR.ForeColor = Color.Black;
     this.intzaCMPR.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaCMPR.HeaderPctHeight = 80f;
     this.intzaCMPR.IsAutoRepaint = true;
     this.intzaCMPR.IsDrawGrid = true;
     this.intzaCMPR.IsDrawHeader = true;
     this.intzaCMPR.IsScrollable = true;
     this.intzaCMPR.Location = new Point(242, 64);
     this.intzaCMPR.MainColumn = "";
     this.intzaCMPR.Margin = new Padding(0);
     this.intzaCMPR.Name = "intzaCMPR";
     this.intzaCMPR.Rows = 0;
     this.intzaCMPR.RowSelectColor = Color.FromArgb(50, 50, 50);
     this.intzaCMPR.RowSelectType = 2;
     this.intzaCMPR.Size = new Size(684, 65);
     this.intzaCMPR.SortColumnName = "";
     this.intzaCMPR.SortType = SortType.Desc;
     this.intzaCMPR.TabIndex = 82;
     this.intzaCMPR.TableMouseClick += new ExpandGrid.TableMouseClickEventHandler(this.intzaCMPR_TableMouseClick);
     this.intzaBBO.AllowDrop = true;
     this.intzaBBO.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaBBO.CanBlink = true;
     this.intzaBBO.CanDrag = true;
     this.intzaBBO.CanGetMouseMove = true;
     columnItem10.Alignment = StringAlignment.Near;
     columnItem10.BackColor = Color.FromArgb(64, 64, 64);
     columnItem10.FontColor = Color.LightGray;
     columnItem10.IsExpand = true;
     columnItem10.MyStyle = FontStyle.Regular;
     columnItem10.Name = "stock";
     columnItem10.Text = "Symbol";
     columnItem10.ValueFormat = FormatType.Symbol;
     columnItem10.Visible = true;
     columnItem10.Width = 15;
     columnItem11.Alignment = StringAlignment.Far;
     columnItem11.BackColor = Color.FromArgb(64, 64, 64);
     columnItem11.FontColor = Color.LightGray;
     columnItem11.IsExpand = false;
     columnItem11.MyStyle = FontStyle.Regular;
     columnItem11.Name = "last";
     columnItem11.Text = "Last";
     columnItem11.ValueFormat = FormatType.PriceAndCompare;
     columnItem11.Visible = true;
     columnItem11.Width = 10;
     columnItem12.Alignment = StringAlignment.Far;
     columnItem12.BackColor = Color.FromArgb(64, 64, 64);
     columnItem12.FontColor = Color.LightGray;
     columnItem12.IsExpand = false;
     columnItem12.MyStyle = FontStyle.Underline;
     columnItem12.Name = "chg";
     columnItem12.Text = "Chg";
     columnItem12.ValueFormat = FormatType.ChangePrice;
     columnItem12.Visible = true;
     columnItem12.Width = 8;
     columnItem13.Alignment = StringAlignment.Far;
     columnItem13.BackColor = Color.FromArgb(64, 64, 64);
     columnItem13.FontColor = Color.LightGray;
     columnItem13.IsExpand = false;
     columnItem13.MyStyle = FontStyle.Regular;
     columnItem13.Name = "prior";
     columnItem13.Text = "Prev";
     columnItem13.ValueFormat = FormatType.Price;
     columnItem13.Visible = false;
     columnItem13.Width = 8;
     columnItem14.Alignment = StringAlignment.Far;
     columnItem14.BackColor = Color.FromArgb(64, 64, 64);
     columnItem14.FontColor = Color.LightGray;
     columnItem14.IsExpand = false;
     columnItem14.MyStyle = FontStyle.Underline;
     columnItem14.Name = "po";
     columnItem14.Text = "PO";
     columnItem14.ValueFormat = FormatType.Price;
     columnItem14.Visible = false;
     columnItem14.Width = 9;
     columnItem15.Alignment = StringAlignment.Far;
     columnItem15.BackColor = Color.FromArgb(64, 64, 64);
     columnItem15.FontColor = Color.LightGray;
     columnItem15.IsExpand = false;
     columnItem15.MyStyle = FontStyle.Underline;
     columnItem15.Name = "avg";
     columnItem15.Text = "Avg";
     columnItem15.ValueFormat = FormatType.Price;
     columnItem15.Visible = true;
     columnItem15.Width = 9;
     columnItem16.Alignment = StringAlignment.Far;
     columnItem16.BackColor = Color.FromArgb(64, 64, 64);
     columnItem16.FontColor = Color.LightGray;
     columnItem16.IsExpand = false;
     columnItem16.MyStyle = FontStyle.Regular;
     columnItem16.Name = "bidvol";
     columnItem16.Text = "BidVol";
     columnItem16.ValueFormat = FormatType.BidOfferVolume;
     columnItem16.Visible = true;
     columnItem16.Width = 11;
     columnItem17.Alignment = StringAlignment.Far;
     columnItem17.BackColor = Color.FromArgb(64, 64, 64);
     columnItem17.FontColor = Color.LightGray;
     columnItem17.IsExpand = false;
     columnItem17.MyStyle = FontStyle.Regular;
     columnItem17.Name = "bid";
     columnItem17.Text = "Bid";
     columnItem17.ValueFormat = FormatType.Text;
     columnItem17.Visible = true;
     columnItem17.Width = 8;
     columnItem18.Alignment = StringAlignment.Far;
     columnItem18.BackColor = Color.FromArgb(64, 64, 64);
     columnItem18.FontColor = Color.LightGray;
     columnItem18.IsExpand = false;
     columnItem18.MyStyle = FontStyle.Regular;
     columnItem18.Name = "offer";
     columnItem18.Text = "Offer";
     columnItem18.ValueFormat = FormatType.Text;
     columnItem18.Visible = true;
     columnItem18.Width = 8;
     columnItem19.Alignment = StringAlignment.Far;
     columnItem19.BackColor = Color.FromArgb(64, 64, 64);
     columnItem19.FontColor = Color.LightGray;
     columnItem19.IsExpand = false;
     columnItem19.MyStyle = FontStyle.Regular;
     columnItem19.Name = "offvol";
     columnItem19.Text = "OffVol";
     columnItem19.ValueFormat = FormatType.BidOfferVolume;
     columnItem19.Visible = true;
     columnItem19.Width = 11;
     columnItem20.Alignment = StringAlignment.Far;
     columnItem20.BackColor = Color.FromArgb(64, 64, 64);
     columnItem20.FontColor = Color.LightGray;
     columnItem20.IsExpand = false;
     columnItem20.MyStyle = FontStyle.Regular;
     columnItem20.Name = "high";
     columnItem20.Text = "High";
     columnItem20.ValueFormat = FormatType.Price;
     columnItem20.Visible = false;
     columnItem20.Width = 8;
     columnItem21.Alignment = StringAlignment.Far;
     columnItem21.BackColor = Color.FromArgb(64, 64, 64);
     columnItem21.FontColor = Color.LightGray;
     columnItem21.IsExpand = false;
     columnItem21.MyStyle = FontStyle.Regular;
     columnItem21.Name = "low";
     columnItem21.Text = "Low";
     columnItem21.ValueFormat = FormatType.Price;
     columnItem21.Visible = false;
     columnItem21.Width = 8;
     columnItem22.Alignment = StringAlignment.Far;
     columnItem22.BackColor = Color.FromArgb(64, 64, 64);
     columnItem22.FontColor = Color.LightGray;
     columnItem22.IsExpand = false;
     columnItem22.MyStyle = FontStyle.Underline;
     columnItem22.Name = "pchg";
     columnItem22.Text = "%Chg";
     columnItem22.ValueFormat = FormatType.ChangePrice;
     columnItem22.Visible = false;
     columnItem22.Width = 8;
     columnItem23.Alignment = StringAlignment.Far;
     columnItem23.BackColor = Color.FromArgb(64, 64, 64);
     columnItem23.FontColor = Color.LightGray;
     columnItem23.IsExpand = false;
     columnItem23.MyStyle = FontStyle.Regular;
     columnItem23.Name = "deals";
     columnItem23.Text = "Deals";
     columnItem23.ValueFormat = FormatType.Volume;
     columnItem23.Visible = false;
     columnItem23.Width = 8;
     columnItem24.Alignment = StringAlignment.Near;
     columnItem24.BackColor = Color.FromArgb(64, 64, 64);
     columnItem24.FontColor = Color.LightGray;
     columnItem24.IsExpand = false;
     columnItem24.MyStyle = FontStyle.Regular;
     columnItem24.Name = "bidofferpct";
     columnItem24.Text = "%Bids";
     columnItem24.ValueFormat = FormatType.BidOfferPct;
     columnItem24.Visible = true;
     columnItem24.Width = 8;
     columnItem25.Alignment = StringAlignment.Far;
     columnItem25.BackColor = Color.FromArgb(64, 64, 64);
     columnItem25.FontColor = Color.LightGray;
     columnItem25.IsExpand = false;
     columnItem25.MyStyle = FontStyle.Underline;
     columnItem25.Name = "mval";
     columnItem25.Text = "Value(K฿)";
     columnItem25.ValueFormat = FormatType.Volume;
     columnItem25.Visible = true;
     columnItem25.Width = 12;
     columnItem26.Alignment = StringAlignment.Far;
     columnItem26.BackColor = Color.FromArgb(64, 64, 64);
     columnItem26.FontColor = Color.LightGray;
     columnItem26.IsExpand = false;
     columnItem26.MyStyle = FontStyle.Underline;
     columnItem26.Name = "mvol";
     columnItem26.Text = "Volume";
     columnItem26.ValueFormat = FormatType.Volume;
     columnItem26.Visible = false;
     columnItem26.Width = 12;
     columnItem27.Alignment = StringAlignment.Far;
     columnItem27.BackColor = Color.FromArgb(64, 64, 100);
     columnItem27.FontColor = Color.LightGray;
     columnItem27.IsExpand = false;
     columnItem27.MyStyle = FontStyle.Underline;
     columnItem27.Name = "pc";
     columnItem27.Text = "PC";
     columnItem27.ValueFormat = FormatType.Price;
     columnItem27.Visible = false;
     columnItem27.Width = 9;
     columnItem28.Alignment = StringAlignment.Far;
     columnItem28.BackColor = Color.FromArgb(64, 64, 64);
     columnItem28.FontColor = Color.LightGray;
     columnItem28.IsExpand = false;
     columnItem28.MyStyle = FontStyle.Regular;
     columnItem28.Name = "buyvolpct";
     columnItem28.Text = "BVol%";
     columnItem28.ValueFormat = FormatType.Price;
     columnItem28.Visible = false;
     columnItem28.Width = 8;
     columnItem29.Alignment = StringAlignment.Far;
     columnItem29.BackColor = Color.FromArgb(64, 64, 64);
     columnItem29.FontColor = Color.LightGray;
     columnItem29.IsExpand = false;
     columnItem29.MyStyle = FontStyle.Regular;
     columnItem29.Name = "selvolpct";
     columnItem29.Text = "SVol%";
     columnItem29.ValueFormat = FormatType.Price;
     columnItem29.Visible = false;
     columnItem29.Width = 8;
     this.intzaBBO.Columns.Add(columnItem10);
     this.intzaBBO.Columns.Add(columnItem11);
     this.intzaBBO.Columns.Add(columnItem12);
     this.intzaBBO.Columns.Add(columnItem13);
     this.intzaBBO.Columns.Add(columnItem14);
     this.intzaBBO.Columns.Add(columnItem15);
     this.intzaBBO.Columns.Add(columnItem16);
     this.intzaBBO.Columns.Add(columnItem17);
     this.intzaBBO.Columns.Add(columnItem18);
     this.intzaBBO.Columns.Add(columnItem19);
     this.intzaBBO.Columns.Add(columnItem20);
     this.intzaBBO.Columns.Add(columnItem21);
     this.intzaBBO.Columns.Add(columnItem22);
     this.intzaBBO.Columns.Add(columnItem23);
     this.intzaBBO.Columns.Add(columnItem24);
     this.intzaBBO.Columns.Add(columnItem25);
     this.intzaBBO.Columns.Add(columnItem26);
     this.intzaBBO.Columns.Add(columnItem27);
     this.intzaBBO.Columns.Add(columnItem28);
     this.intzaBBO.Columns.Add(columnItem29);
     this.intzaBBO.CurrentScroll = 0;
     this.intzaBBO.Cursor = Cursors.Hand;
     this.intzaBBO.FocusItemIndex = -1;
     this.intzaBBO.ForeColor = Color.Black;
     this.intzaBBO.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaBBO.HeaderPctHeight = 80f;
     this.intzaBBO.IsAutoRepaint = true;
     this.intzaBBO.IsDrawGrid = true;
     this.intzaBBO.IsDrawHeader = true;
     this.intzaBBO.IsScrollable = true;
     this.intzaBBO.Location = new Point(4, 35);
     this.intzaBBO.MainColumn = "";
     this.intzaBBO.Margin = new Padding(0);
     this.intzaBBO.Name = "intzaBBO";
     this.intzaBBO.Rows = 0;
     this.intzaBBO.RowSelectColor = Color.FromArgb(50, 50, 50);
     this.intzaBBO.RowSelectType = 2;
     this.intzaBBO.Size = new Size(684, 65);
     this.intzaBBO.SortColumnName = "";
     this.intzaBBO.SortType = SortType.Desc;
     this.intzaBBO.TabIndex = 74;
     this.intzaBBO.TableClickExpand += new ExpandGrid.TableClickExpandEventHandler(this.intzaBBO_TableClickExpand);
     this.intzaBBO.TableMouseClick += new ExpandGrid.TableMouseClickEventHandler(this.intzaBBO_TableMouseClick);
     this.intzaBBO.ItemDragDrop += new ExpandGrid.ItemDragDropEventHandler(this.intzaBBO_ItemDragDrop);
     this.intzaBBO.TableHeaderMouseMove += new ExpandGrid.TableHeaderMouseMoveEventHandler(this.intzaBBO_TableHeaderMouseMove);
     this.intzaBBO.TableMouseDoubleClick += new ExpandGrid.TableMouseDoubleClickEventHandler(this.intzaBBO_TableMouseDoubleClick);
     this.intzaOption.AllowDrop = true;
     this.intzaOption.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaOption.CanBlink = true;
     this.intzaOption.CanDrag = false;
     this.intzaOption.CanGetMouseMove = false;
     columnItem30.Alignment = StringAlignment.Near;
     columnItem30.BackColor = Color.FromArgb(64, 64, 64);
     columnItem30.FontColor = Color.LightGray;
     columnItem30.IsExpand = false;
     columnItem30.MyStyle = FontStyle.Regular;
     columnItem30.Name = "callbidvol";
     columnItem30.Text = "Vol";
     columnItem30.ValueFormat = FormatType.BidOfferVolume;
     columnItem30.Visible = true;
     columnItem30.Width = 5;
     columnItem31.Alignment = StringAlignment.Near;
     columnItem31.BackColor = Color.FromArgb(64, 64, 64);
     columnItem31.FontColor = Color.LightGray;
     columnItem31.IsExpand = false;
     columnItem31.MyStyle = FontStyle.Regular;
     columnItem31.Name = "callbid";
     columnItem31.Text = "Bid";
     columnItem31.ValueFormat = FormatType.Price;
     columnItem31.Visible = true;
     columnItem31.Width = 9;
     columnItem32.Alignment = StringAlignment.Near;
     columnItem32.BackColor = Color.FromArgb(64, 64, 64);
     columnItem32.FontColor = Color.LightGray;
     columnItem32.IsExpand = false;
     columnItem32.MyStyle = FontStyle.Regular;
     columnItem32.Name = "calloffer";
     columnItem32.Text = "Ask";
     columnItem32.ValueFormat = FormatType.Text;
     columnItem32.Visible = true;
     columnItem32.Width = 9;
     columnItem33.Alignment = StringAlignment.Near;
     columnItem33.BackColor = Color.FromArgb(64, 64, 64);
     columnItem33.FontColor = Color.LightGray;
     columnItem33.IsExpand = false;
     columnItem33.MyStyle = FontStyle.Regular;
     columnItem33.Name = "calloffvol";
     columnItem33.Text = "Vol";
     columnItem33.ValueFormat = FormatType.BidOfferVolume;
     columnItem33.Visible = true;
     columnItem33.Width = 5;
     columnItem34.Alignment = StringAlignment.Near;
     columnItem34.BackColor = Color.FromArgb(64, 64, 64);
     columnItem34.FontColor = Color.LightGray;
     columnItem34.IsExpand = false;
     columnItem34.MyStyle = FontStyle.Regular;
     columnItem34.Name = "calllast";
     columnItem34.Text = "Last";
     columnItem34.ValueFormat = FormatType.Price;
     columnItem34.Visible = true;
     columnItem34.Width = 8;
     columnItem35.Alignment = StringAlignment.Near;
     columnItem35.BackColor = Color.FromArgb(64, 64, 64);
     columnItem35.FontColor = Color.LightGray;
     columnItem35.IsExpand = false;
     columnItem35.MyStyle = FontStyle.Regular;
     columnItem35.Name = "callchg";
     columnItem35.Text = "Chg";
     columnItem35.ValueFormat = FormatType.ChangePrice;
     columnItem35.Visible = true;
     columnItem35.Width = 8;
     columnItem36.Alignment = StringAlignment.Center;
     columnItem36.BackColor = Color.FromArgb(64, 64, 64);
     columnItem36.FontColor = Color.LightGray;
     columnItem36.IsExpand = false;
     columnItem36.MyStyle = FontStyle.Regular;
     columnItem36.Name = "strike";
     columnItem36.Text = "Strike Price";
     columnItem36.ValueFormat = FormatType.Price;
     columnItem36.Visible = true;
     columnItem36.Width = 12;
     columnItem37.Alignment = StringAlignment.Near;
     columnItem37.BackColor = Color.FromArgb(64, 64, 64);
     columnItem37.FontColor = Color.LightGray;
     columnItem37.IsExpand = false;
     columnItem37.MyStyle = FontStyle.Regular;
     columnItem37.Name = "putbidvol";
     columnItem37.Text = "Vol";
     columnItem37.ValueFormat = FormatType.BidOfferVolume;
     columnItem37.Visible = true;
     columnItem37.Width = 5;
     columnItem38.Alignment = StringAlignment.Near;
     columnItem38.BackColor = Color.FromArgb(64, 64, 64);
     columnItem38.FontColor = Color.LightGray;
     columnItem38.IsExpand = false;
     columnItem38.MyStyle = FontStyle.Regular;
     columnItem38.Name = "putbid";
     columnItem38.Text = "Bid";
     columnItem38.ValueFormat = FormatType.Text;
     columnItem38.Visible = true;
     columnItem38.Width = 9;
     columnItem39.Alignment = StringAlignment.Near;
     columnItem39.BackColor = Color.FromArgb(64, 64, 64);
     columnItem39.FontColor = Color.LightGray;
     columnItem39.IsExpand = false;
     columnItem39.MyStyle = FontStyle.Regular;
     columnItem39.Name = "putoffer";
     columnItem39.Text = "Ask";
     columnItem39.ValueFormat = FormatType.Text;
     columnItem39.Visible = true;
     columnItem39.Width = 9;
     columnItem40.Alignment = StringAlignment.Near;
     columnItem40.BackColor = Color.FromArgb(64, 64, 64);
     columnItem40.FontColor = Color.LightGray;
     columnItem40.IsExpand = false;
     columnItem40.MyStyle = FontStyle.Regular;
     columnItem40.Name = "putoffvol";
     columnItem40.Text = "Vol";
     columnItem40.ValueFormat = FormatType.BidOfferVolume;
     columnItem40.Visible = true;
     columnItem40.Width = 5;
     columnItem41.Alignment = StringAlignment.Near;
     columnItem41.BackColor = Color.FromArgb(64, 64, 64);
     columnItem41.FontColor = Color.LightGray;
     columnItem41.IsExpand = false;
     columnItem41.MyStyle = FontStyle.Regular;
     columnItem41.Name = "putlast";
     columnItem41.Text = "Last";
     columnItem41.ValueFormat = FormatType.Price;
     columnItem41.Visible = true;
     columnItem41.Width = 8;
     columnItem42.Alignment = StringAlignment.Near;
     columnItem42.BackColor = Color.FromArgb(64, 64, 64);
     columnItem42.FontColor = Color.LightGray;
     columnItem42.IsExpand = false;
     columnItem42.MyStyle = FontStyle.Regular;
     columnItem42.Name = "putchg";
     columnItem42.Text = "Chg";
     columnItem42.ValueFormat = FormatType.ChangePrice;
     columnItem42.Visible = true;
     columnItem42.Width = 8;
     columnItem43.Alignment = StringAlignment.Near;
     columnItem43.BackColor = Color.FromArgb(64, 64, 64);
     columnItem43.FontColor = Color.LightGray;
     columnItem43.IsExpand = false;
     columnItem43.MyStyle = FontStyle.Regular;
     columnItem43.Name = "sSeriesOC";
     columnItem43.Text = "IntzaItem";
     columnItem43.ValueFormat = FormatType.Text;
     columnItem43.Visible = false;
     columnItem43.Width = 10;
     columnItem44.Alignment = StringAlignment.Near;
     columnItem44.BackColor = Color.FromArgb(64, 64, 64);
     columnItem44.FontColor = Color.LightGray;
     columnItem44.IsExpand = false;
     columnItem44.MyStyle = FontStyle.Regular;
     columnItem44.Name = "sSeriesOP";
     columnItem44.Text = "IntzaItem";
     columnItem44.ValueFormat = FormatType.Text;
     columnItem44.Visible = false;
     columnItem44.Width = 10;
     this.intzaOption.Columns.Add(columnItem30);
     this.intzaOption.Columns.Add(columnItem31);
     this.intzaOption.Columns.Add(columnItem32);
     this.intzaOption.Columns.Add(columnItem33);
     this.intzaOption.Columns.Add(columnItem34);
     this.intzaOption.Columns.Add(columnItem35);
     this.intzaOption.Columns.Add(columnItem36);
     this.intzaOption.Columns.Add(columnItem37);
     this.intzaOption.Columns.Add(columnItem38);
     this.intzaOption.Columns.Add(columnItem39);
     this.intzaOption.Columns.Add(columnItem40);
     this.intzaOption.Columns.Add(columnItem41);
     this.intzaOption.Columns.Add(columnItem42);
     this.intzaOption.Columns.Add(columnItem43);
     this.intzaOption.Columns.Add(columnItem44);
     this.intzaOption.CurrentScroll = 0;
     this.intzaOption.Cursor = Cursors.Hand;
     this.intzaOption.FocusItemIndex = -1;
     this.intzaOption.ForeColor = Color.Black;
     this.intzaOption.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaOption.HeaderPctHeight = 80f;
     this.intzaOption.IsAutoRepaint = true;
     this.intzaOption.IsDrawGrid = true;
     this.intzaOption.IsDrawHeader = true;
     this.intzaOption.IsScrollable = true;
     this.intzaOption.Location = new Point(134, 114);
     this.intzaOption.MainColumn = "";
     this.intzaOption.Margin = new Padding(0);
     this.intzaOption.Name = "intzaOption";
     this.intzaOption.Rows = 0;
     this.intzaOption.RowSelectColor = Color.FromArgb(50, 50, 50);
     this.intzaOption.RowSelectType = 2;
     this.intzaOption.Size = new Size(684, 56);
     this.intzaOption.SortColumnName = "";
     this.intzaOption.SortType = SortType.Desc;
     this.intzaOption.TabIndex = 80;
     this.intzaOption.TableMouseClick += new ExpandGrid.TableMouseClickEventHandler(this.intzaOption_TableMouseClick);
     this.tStripCP.AllowMerge = false;
     this.tStripCP.BackColor = Color.FromArgb(20, 20, 20);
     this.tStripCP.GripMargin = new Padding(0);
     this.tStripCP.GripStyle = ToolStripGripStyle.Hidden;
     this.tStripCP.Items.AddRange(new ToolStripItem[]
     {
         this.tStripCall,
         this.tStripPUT
     });
     this.tStripCP.Location = new Point(0, 26);
     this.tStripCP.Name = "tStripCP";
     this.tStripCP.Padding = new Padding(0);
     this.tStripCP.RenderMode = ToolStripRenderMode.System;
     this.tStripCP.Size = new Size(952, 25);
     this.tStripCP.TabIndex = 81;
     this.tStripCP.Text = "toolStrip1";
     this.tStripCP.Visible = false;
     this.tStripCall.BackColor = Color.Black;
     this.tStripCall.ForeColor = Color.Cyan;
     this.tStripCall.Margin = new Padding(0, 1, 3, 2);
     this.tStripCall.Name = "tStripCall";
     this.tStripCall.Padding = new Padding(2, 0, 2, 0);
     this.tStripCall.Size = new Size(16, 22);
     this.tStripCall.Text = "-";
     this.tStripPUT.Alignment = ToolStripItemAlignment.Right;
     this.tStripPUT.BackColor = Color.Black;
     this.tStripPUT.ForeColor = Color.Cyan;
     this.tStripPUT.Margin = new Padding(0, 1, 3, 2);
     this.tStripPUT.Name = "tStripPUT";
     this.tStripPUT.Padding = new Padding(2, 0, 2, 0);
     this.tStripPUT.Size = new Size(16, 22);
     this.tStripPUT.Text = "-";
     this.tStripBBO.AllowMerge = false;
     this.tStripBBO.BackColor = Color.FromArgb(30, 30, 30);
     this.tStripBBO.GripMargin = new Padding(0);
     this.tStripBBO.GripStyle = ToolStripGripStyle.Hidden;
     this.tStripBBO.Items.AddRange(new ToolStripItem[]
     {
         this.tslbSelection,
         this.tscbBBOSelectionMain,
         this.tscbBBOSelection,
         this.tsbtnBBOAddStock,
         this.tsbtnBBODelStock,
         this.tsbtnColumnSetup
     });
     this.tStripBBO.Location = new Point(0, 0);
     this.tStripBBO.Name = "tStripBBO";
     this.tStripBBO.Padding = new Padding(1, 1, 1, 2);
     this.tStripBBO.RenderMode = ToolStripRenderMode.System;
     this.tStripBBO.Size = new Size(952, 26);
     this.tStripBBO.TabIndex = 78;
     this.tslbSelection.ForeColor = Color.LightGray;
     this.tslbSelection.Margin = new Padding(5, 1, 2, 2);
     this.tslbSelection.Name = "tslbSelection";
     this.tslbSelection.Size = new Size(61, 20);
     this.tslbSelection.Text = "Selection :";
     this.tscbBBOSelectionMain.BackColor = Color.FromArgb(30, 30, 30);
     this.tscbBBOSelectionMain.DropDownStyle = ComboBoxStyle.DropDownList;
     this.tscbBBOSelectionMain.ForeColor = Color.LightGray;
     this.tscbBBOSelectionMain.Items.AddRange(new object[]
     {
         "My Port",
         "Favorite",
         "SET",
         "MAI",
         "Warrant",
         "%CMPR"
     });
     this.tscbBBOSelectionMain.Name = "tscbBBOSelectionMain";
     this.tscbBBOSelectionMain.Size = new Size(110, 23);
     this.tscbBBOSelectionMain.SelectedIndexChanged += new EventHandler(this.tscbBBOSelectionMain_SelectedIndexChanged);
     this.tscbBBOSelectionMain.KeyDown += new KeyEventHandler(this.tscbBBOSelectionMain_KeyDown);
     this.tscbBBOSelection.AutoSize = false;
     this.tscbBBOSelection.BackColor = Color.FromArgb(30, 30, 30);
     this.tscbBBOSelection.DropDownStyle = ComboBoxStyle.DropDownList;
     this.tscbBBOSelection.ForeColor = Color.LightGray;
     this.tscbBBOSelection.Margin = new Padding(5, 0, 1, 0);
     this.tscbBBOSelection.Name = "tscbBBOSelection";
     this.tscbBBOSelection.Size = new Size(180, 23);
     this.tscbBBOSelection.SelectedIndexChanged += new EventHandler(this.tscbSelection_SelectedIndexChanged);
     this.tscbBBOSelection.KeyDown += new KeyEventHandler(this.tscbBBOSelection_KeyDown);
     this.tsbtnBBOAddStock.ForeColor = Color.LightGray;
     this.tsbtnBBOAddStock.ImageTransparentColor = Color.Magenta;
     this.tsbtnBBOAddStock.Margin = new Padding(10, 1, 0, 2);
     this.tsbtnBBOAddStock.Name = "tsbtnBBOAddStock";
     this.tsbtnBBOAddStock.Size = new Size(33, 20);
     this.tsbtnBBOAddStock.Text = "Add";
     this.tsbtnBBOAddStock.Click += new EventHandler(this.tsbtnAddStock_Click);
     this.tsbtnBBODelStock.ForeColor = Color.LightGray;
     this.tsbtnBBODelStock.ImageTransparentColor = Color.Magenta;
     this.tsbtnBBODelStock.Name = "tsbtnBBODelStock";
     this.tsbtnBBODelStock.Size = new Size(44, 20);
     this.tsbtnBBODelStock.Text = "Delete";
     this.tsbtnBBODelStock.Click += new EventHandler(this.tsbtnBBODelStock_Click);
     this.tsbtnColumnSetup.Alignment = ToolStripItemAlignment.Right;
     this.tsbtnColumnSetup.ForeColor = Color.LightGray;
     this.tsbtnColumnSetup.ImageTransparentColor = Color.Magenta;
     this.tsbtnColumnSetup.Name = "tsbtnColumnSetup";
     this.tsbtnColumnSetup.Size = new Size(59, 20);
     this.tsbtnColumnSetup.Text = "Columns";
     this.tsbtnColumnSetup.Visible = false;
     this.tsbtnColumnSetup.Click += new EventHandler(this.tsbtnColEdit_Click);
     this.contextMenuStrip1.Items.AddRange(new ToolStripItem[]
     {
         this.tsmiShowBestBO,
         this.tsmiShow3BO,
         this.tsmiShow5BO
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new Size(106, 70);
     this.contextMenuStrip1.Opening += new CancelEventHandler(this.contextMenuStrip1_Opening);
     this.tsmiShowBestBO.Name = "tsmiShowBestBO";
     this.tsmiShowBestBO.Size = new Size(105, 22);
     this.tsmiShowBestBO.Text = "1 Bids";
     this.tsmiShowBestBO.Click += new EventHandler(this.tsmiShowExpandBBO_Click);
     this.tsmiShow3BO.Name = "tsmiShow3BO";
     this.tsmiShow3BO.Size = new Size(105, 22);
     this.tsmiShow3BO.Text = "3 Bids";
     this.tsmiShow3BO.Click += new EventHandler(this.tsmiShowExpandBBO_Click);
     this.tsmiShow5BO.Name = "tsmiShow5BO";
     this.tsmiShow5BO.Size = new Size(105, 22);
     this.tsmiShow5BO.Text = "5 Bids";
     this.tsmiShow5BO.Click += new EventHandler(this.tsmiShowExpandBBO_Click);
     this.pictureBox1.BackColor = Color.FromArgb(30, 30, 30);
     this.pictureBox1.Location = new Point(511, 29);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new Size(58, 64);
     this.pictureBox1.TabIndex = 81;
     this.pictureBox1.TabStop = false;
     this.lbChartLoading.AutoSize = true;
     this.lbChartLoading.BackColor = Color.FromArgb(64, 64, 64);
     this.lbChartLoading.BorderStyle = BorderStyle.FixedSingle;
     this.lbChartLoading.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbChartLoading.ForeColor = Color.Yellow;
     this.lbChartLoading.Location = new Point(602, 118);
     this.lbChartLoading.Name = "lbChartLoading";
     this.lbChartLoading.Padding = new Padding(5, 3, 5, 3);
     this.lbChartLoading.Size = new Size(69, 21);
     this.lbChartLoading.TabIndex = 82;
     this.lbChartLoading.Text = "Loading ...";
     this.lbChartLoading.TextAlign = ContentAlignment.MiddleCenter;
     this.lbChartLoading.Visible = false;
     this.contextLink.Items.AddRange(new ToolStripItem[]
     {
         this.tsmCallHistoricalChart,
         this.tsmCallNews,
         this.toolStripMenuItem1,
         this.tsmCallStockInPlay,
         this.tsmCallSaleByPrice,
         this.tsmCallSaleByTime,
         this.tsmCallOddlot
     });
     this.contextLink.Name = "contextMenuStrip1";
     this.contextLink.Size = new Size(212, 142);
     this.tsmCallHistoricalChart.Name = "tsmCallHistoricalChart";
     this.tsmCallHistoricalChart.Size = new Size(211, 22);
     this.tsmCallHistoricalChart.Text = "Chart";
     this.tsmCallHistoricalChart.Click += new EventHandler(this.tsmCallHistoricalChart_Click);
     this.tsmCallNews.Name = "tsmCallNews";
     this.tsmCallNews.Size = new Size(211, 22);
     this.tsmCallNews.Text = "News - ข่าวตลาดหลักทรัพย์ฯ";
     this.tsmCallNews.Click += new EventHandler(this.tsmCallNews_Click);
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new Size(208, 6);
     this.tsmCallStockInPlay.Name = "tsmCallStockInPlay";
     this.tsmCallStockInPlay.Size = new Size(211, 22);
     this.tsmCallStockInPlay.Text = "Stock in Play";
     this.tsmCallStockInPlay.Click += new EventHandler(this.tsmCallStockSummary_Click);
     this.tsmCallSaleByPrice.Name = "tsmCallSaleByPrice";
     this.tsmCallSaleByPrice.Size = new Size(211, 22);
     this.tsmCallSaleByPrice.Text = "Sale by Price";
     this.tsmCallSaleByPrice.Click += new EventHandler(this.tsmCallSaleByPrice_Click);
     this.tsmCallSaleByTime.Name = "tsmCallSaleByTime";
     this.tsmCallSaleByTime.Size = new Size(211, 22);
     this.tsmCallSaleByTime.Text = "Sale by Time";
     this.tsmCallSaleByTime.Click += new EventHandler(this.tsmCallSaleByTime_Click);
     this.tsmCallOddlot.Name = "tsmCallOddlot";
     this.tsmCallOddlot.Size = new Size(211, 22);
     this.tsmCallOddlot.Text = "View Oddlot";
     this.tsmCallOddlot.Click += new EventHandler(this.tsmCallOddlot_Click);
     this.btnCloseChart.BackColor = Color.FromArgb(30, 30, 30);
     this.btnCloseChart.FlatAppearance.BorderSize = 0;
     this.btnCloseChart.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnCloseChart.FlatAppearance.MouseOverBackColor = Color.Teal;
     this.btnCloseChart.FlatStyle = FlatStyle.Flat;
     this.btnCloseChart.Image = (Image)componentResourceManager.GetObject("btnCloseChart.Image");
     this.btnCloseChart.Location = new Point(523, 70);
     this.btnCloseChart.Name = "btnCloseChart";
     this.btnCloseChart.Size = new Size(19, 19);
     this.btnCloseChart.TabIndex = 88;
     this.btnCloseChart.UseVisualStyleBackColor = false;
     this.btnCloseChart.Visible = false;
     this.btnCloseChart.Click += new EventHandler(this.tsbtnSwitchChart_Click);
     this.intzaInfoTFEX.AllowDrop = true;
     this.intzaInfoTFEX.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaInfoTFEX.CanDrag = false;
     this.intzaInfoTFEX.IsAutoRepaint = true;
     this.intzaInfoTFEX.IsDroped = false;
     itemGrid.AdjustFontSize = 0f;
     itemGrid.Alignment = StringAlignment.Near;
     itemGrid.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid.Changed = false;
     itemGrid.FieldType = ItemType.Label2;
     itemGrid.FontColor = Color.Gainsboro;
     itemGrid.FontStyle = FontStyle.Regular;
     itemGrid.Height = 1f;
     itemGrid.IsBlink = 0;
     itemGrid.Name = "open_label";
     itemGrid.Text = "Open";
     itemGrid.ValueFormat = FormatType.Text;
     itemGrid.Visible = true;
     itemGrid.Width = 25;
     itemGrid.X = 0;
     itemGrid.Y = 0f;
     itemGrid2.AdjustFontSize = -1f;
     itemGrid2.Alignment = StringAlignment.Far;
     itemGrid2.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid2.Changed = false;
     itemGrid2.FieldType = ItemType.Text;
     itemGrid2.FontColor = Color.Yellow;
     itemGrid2.FontStyle = FontStyle.Regular;
     itemGrid2.Height = 1f;
     itemGrid2.IsBlink = 0;
     itemGrid2.Name = "open_vol";
     itemGrid2.Text = "";
     itemGrid2.ValueFormat = FormatType.Volume;
     itemGrid2.Visible = true;
     itemGrid2.Width = 35;
     itemGrid2.X = 25;
     itemGrid2.Y = 0f;
     itemGrid3.AdjustFontSize = 0f;
     itemGrid3.Alignment = StringAlignment.Far;
     itemGrid3.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid3.Changed = false;
     itemGrid3.FieldType = ItemType.Text;
     itemGrid3.FontColor = Color.Yellow;
     itemGrid3.FontStyle = FontStyle.Regular;
     itemGrid3.Height = 1f;
     itemGrid3.IsBlink = 0;
     itemGrid3.Name = "open_avg";
     itemGrid3.Text = "";
     itemGrid3.ValueFormat = FormatType.Text;
     itemGrid3.Visible = false;
     itemGrid3.Width = 27;
     itemGrid3.X = 73;
     itemGrid3.Y = 0f;
     itemGrid4.AdjustFontSize = 0f;
     itemGrid4.Alignment = StringAlignment.Near;
     itemGrid4.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid4.Changed = false;
     itemGrid4.FieldType = ItemType.Label2;
     itemGrid4.FontColor = Color.Gainsboro;
     itemGrid4.FontStyle = FontStyle.Regular;
     itemGrid4.Height = 1f;
     itemGrid4.IsBlink = 0;
     itemGrid4.Name = "long_label";
     itemGrid4.Text = "Long";
     itemGrid4.ValueFormat = FormatType.Text;
     itemGrid4.Visible = true;
     itemGrid4.Width = 25;
     itemGrid4.X = 0;
     itemGrid4.Y = 1.2f;
     itemGrid5.AdjustFontSize = -1f;
     itemGrid5.Alignment = StringAlignment.Far;
     itemGrid5.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid5.Changed = false;
     itemGrid5.FieldType = ItemType.Text;
     itemGrid5.FontColor = Color.Lime;
     itemGrid5.FontStyle = FontStyle.Regular;
     itemGrid5.Height = 1f;
     itemGrid5.IsBlink = 0;
     itemGrid5.Name = "long_vol";
     itemGrid5.Text = "";
     itemGrid5.ValueFormat = FormatType.Volume;
     itemGrid5.Visible = true;
     itemGrid5.Width = 35;
     itemGrid5.X = 25;
     itemGrid5.Y = 1.2f;
     itemGrid6.AdjustFontSize = 0f;
     itemGrid6.Alignment = StringAlignment.Far;
     itemGrid6.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid6.Changed = false;
     itemGrid6.FieldType = ItemType.Text;
     itemGrid6.FontColor = Color.Yellow;
     itemGrid6.FontStyle = FontStyle.Regular;
     itemGrid6.Height = 1f;
     itemGrid6.IsBlink = 0;
     itemGrid6.Name = "long_avg";
     itemGrid6.Text = "";
     itemGrid6.ValueFormat = FormatType.Text;
     itemGrid6.Visible = false;
     itemGrid6.Width = 27;
     itemGrid6.X = 73;
     itemGrid6.Y = 1.2f;
     itemGrid7.AdjustFontSize = 0f;
     itemGrid7.Alignment = StringAlignment.Near;
     itemGrid7.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid7.Changed = false;
     itemGrid7.FieldType = ItemType.Label2;
     itemGrid7.FontColor = Color.Gainsboro;
     itemGrid7.FontStyle = FontStyle.Regular;
     itemGrid7.Height = 1f;
     itemGrid7.IsBlink = 0;
     itemGrid7.Name = "short_label";
     itemGrid7.Text = "Short";
     itemGrid7.ValueFormat = FormatType.Text;
     itemGrid7.Visible = true;
     itemGrid7.Width = 25;
     itemGrid7.X = 0;
     itemGrid7.Y = 2.4f;
     itemGrid8.AdjustFontSize = -1f;
     itemGrid8.Alignment = StringAlignment.Far;
     itemGrid8.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid8.Changed = false;
     itemGrid8.FieldType = ItemType.Text;
     itemGrid8.FontColor = Color.Red;
     itemGrid8.FontStyle = FontStyle.Regular;
     itemGrid8.Height = 1f;
     itemGrid8.IsBlink = 0;
     itemGrid8.Name = "short_vol";
     itemGrid8.Text = "";
     itemGrid8.ValueFormat = FormatType.Volume;
     itemGrid8.Visible = true;
     itemGrid8.Width = 35;
     itemGrid8.X = 25;
     itemGrid8.Y = 2.4f;
     itemGrid9.AdjustFontSize = 0f;
     itemGrid9.Alignment = StringAlignment.Far;
     itemGrid9.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid9.Changed = false;
     itemGrid9.FieldType = ItemType.Text;
     itemGrid9.FontColor = Color.Yellow;
     itemGrid9.FontStyle = FontStyle.Regular;
     itemGrid9.Height = 1f;
     itemGrid9.IsBlink = 0;
     itemGrid9.Name = "short_avg";
     itemGrid9.Text = "";
     itemGrid9.ValueFormat = FormatType.Text;
     itemGrid9.Visible = false;
     itemGrid9.Width = 27;
     itemGrid9.X = 73;
     itemGrid9.Y = 2.4f;
     itemGrid10.AdjustFontSize = 0f;
     itemGrid10.Alignment = StringAlignment.Near;
     itemGrid10.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid10.Changed = false;
     itemGrid10.FieldType = ItemType.Text;
     itemGrid10.FontColor = Color.White;
     itemGrid10.FontStyle = FontStyle.Regular;
     itemGrid10.Height = 3.4f;
     itemGrid10.IsBlink = 0;
     itemGrid10.Name = "pie";
     itemGrid10.Text = "";
     itemGrid10.ValueFormat = FormatType.PieChartNew;
     itemGrid10.Visible = true;
     itemGrid10.Width = 40;
     itemGrid10.X = 60;
     itemGrid10.Y = 0f;
     itemGrid11.AdjustFontSize = 0f;
     itemGrid11.Alignment = StringAlignment.Near;
     itemGrid11.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid11.Changed = false;
     itemGrid11.FieldType = ItemType.Label2;
     itemGrid11.FontColor = Color.Gainsboro;
     itemGrid11.FontStyle = FontStyle.Regular;
     itemGrid11.Height = 1f;
     itemGrid11.IsBlink = 0;
     itemGrid11.Name = "oi_lable";
     itemGrid11.Text = "OI";
     itemGrid11.ValueFormat = FormatType.Text;
     itemGrid11.Visible = true;
     itemGrid11.Width = 25;
     itemGrid11.X = 0;
     itemGrid11.Y = 3.6f;
     itemGrid12.AdjustFontSize = 0f;
     itemGrid12.Alignment = StringAlignment.Near;
     itemGrid12.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid12.Changed = false;
     itemGrid12.FieldType = ItemType.Text;
     itemGrid12.FontColor = Color.Yellow;
     itemGrid12.FontStyle = FontStyle.Regular;
     itemGrid12.Height = 1f;
     itemGrid12.IsBlink = 0;
     itemGrid12.Name = "oi";
     itemGrid12.Text = "";
     itemGrid12.ValueFormat = FormatType.Price;
     itemGrid12.Visible = true;
     itemGrid12.Width = 24;
     itemGrid12.X = 25;
     itemGrid12.Y = 3.6f;
     itemGrid13.AdjustFontSize = 0f;
     itemGrid13.Alignment = StringAlignment.Near;
     itemGrid13.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid13.Changed = false;
     itemGrid13.FieldType = ItemType.Label2;
     itemGrid13.FontColor = Color.Gainsboro;
     itemGrid13.FontStyle = FontStyle.Regular;
     itemGrid13.Height = 1f;
     itemGrid13.IsBlink = 0;
     itemGrid13.Name = "psettle_label";
     itemGrid13.Text = "P.Settle";
     itemGrid13.ValueFormat = FormatType.Text;
     itemGrid13.Visible = true;
     itemGrid13.Width = 25;
     itemGrid13.X = 0;
     itemGrid13.Y = 4.6f;
     itemGrid14.AdjustFontSize = 0f;
     itemGrid14.Alignment = StringAlignment.Near;
     itemGrid14.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid14.Changed = false;
     itemGrid14.FieldType = ItemType.Text;
     itemGrid14.FontColor = Color.Yellow;
     itemGrid14.FontStyle = FontStyle.Regular;
     itemGrid14.Height = 1f;
     itemGrid14.IsBlink = 0;
     itemGrid14.Name = "psettle";
     itemGrid14.Text = "";
     itemGrid14.ValueFormat = FormatType.Text;
     itemGrid14.Visible = true;
     itemGrid14.Width = 24;
     itemGrid14.X = 25;
     itemGrid14.Y = 4.6f;
     itemGrid15.AdjustFontSize = 0f;
     itemGrid15.Alignment = StringAlignment.Near;
     itemGrid15.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid15.Changed = false;
     itemGrid15.FieldType = ItemType.Label2;
     itemGrid15.FontColor = Color.Gainsboro;
     itemGrid15.FontStyle = FontStyle.Regular;
     itemGrid15.Height = 1f;
     itemGrid15.IsBlink = 0;
     itemGrid15.Name = "settle_label";
     itemGrid15.Text = "Settle";
     itemGrid15.ValueFormat = FormatType.Text;
     itemGrid15.Visible = true;
     itemGrid15.Width = 25;
     itemGrid15.X = 0;
     itemGrid15.Y = 5.6f;
     itemGrid16.AdjustFontSize = 0f;
     itemGrid16.Alignment = StringAlignment.Near;
     itemGrid16.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid16.Changed = false;
     itemGrid16.FieldType = ItemType.Text;
     itemGrid16.FontColor = Color.Yellow;
     itemGrid16.FontStyle = FontStyle.Regular;
     itemGrid16.Height = 1f;
     itemGrid16.IsBlink = 0;
     itemGrid16.Name = "settle";
     itemGrid16.Text = "";
     itemGrid16.ValueFormat = FormatType.Text;
     itemGrid16.Visible = true;
     itemGrid16.Width = 24;
     itemGrid16.X = 25;
     itemGrid16.Y = 5.6f;
     itemGrid17.AdjustFontSize = 0f;
     itemGrid17.Alignment = StringAlignment.Near;
     itemGrid17.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid17.Changed = false;
     itemGrid17.FieldType = ItemType.Label2;
     itemGrid17.FontColor = Color.Gainsboro;
     itemGrid17.FontStyle = FontStyle.Regular;
     itemGrid17.Height = 1f;
     itemGrid17.IsBlink = 0;
     itemGrid17.Name = "ceiling_lable";
     itemGrid17.Text = "Ceiling";
     itemGrid17.ValueFormat = FormatType.Text;
     itemGrid17.Visible = true;
     itemGrid17.Width = 25;
     itemGrid17.X = 0;
     itemGrid17.Y = 6.6f;
     itemGrid18.AdjustFontSize = 0f;
     itemGrid18.Alignment = StringAlignment.Near;
     itemGrid18.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid18.Changed = false;
     itemGrid18.FieldType = ItemType.Text;
     itemGrid18.FontColor = Color.Cyan;
     itemGrid18.FontStyle = FontStyle.Regular;
     itemGrid18.Height = 1f;
     itemGrid18.IsBlink = 0;
     itemGrid18.Name = "ceiling";
     itemGrid18.Text = "";
     itemGrid18.ValueFormat = FormatType.Text;
     itemGrid18.Visible = true;
     itemGrid18.Width = 24;
     itemGrid18.X = 25;
     itemGrid18.Y = 6.6f;
     itemGrid19.AdjustFontSize = 0f;
     itemGrid19.Alignment = StringAlignment.Near;
     itemGrid19.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid19.Changed = false;
     itemGrid19.FieldType = ItemType.Label2;
     itemGrid19.FontColor = Color.Gainsboro;
     itemGrid19.FontStyle = FontStyle.Regular;
     itemGrid19.Height = 1f;
     itemGrid19.IsBlink = 0;
     itemGrid19.Name = "floor_label";
     itemGrid19.Text = "Floor";
     itemGrid19.ValueFormat = FormatType.Text;
     itemGrid19.Visible = true;
     itemGrid19.Width = 25;
     itemGrid19.X = 0;
     itemGrid19.Y = 7.6f;
     itemGrid20.AdjustFontSize = 0f;
     itemGrid20.Alignment = StringAlignment.Near;
     itemGrid20.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid20.Changed = false;
     itemGrid20.FieldType = ItemType.Text;
     itemGrid20.FontColor = Color.Magenta;
     itemGrid20.FontStyle = FontStyle.Regular;
     itemGrid20.Height = 1f;
     itemGrid20.IsBlink = 0;
     itemGrid20.Name = "floor";
     itemGrid20.Text = "";
     itemGrid20.ValueFormat = FormatType.Text;
     itemGrid20.Visible = true;
     itemGrid20.Width = 24;
     itemGrid20.X = 25;
     itemGrid20.Y = 7.6f;
     itemGrid21.AdjustFontSize = 0f;
     itemGrid21.Alignment = StringAlignment.Near;
     itemGrid21.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid21.Changed = false;
     itemGrid21.FieldType = ItemType.Label2;
     itemGrid21.FontColor = Color.White;
     itemGrid21.FontStyle = FontStyle.Regular;
     itemGrid21.Height = 1f;
     itemGrid21.IsBlink = 0;
     itemGrid21.Name = "Multiplier";
     itemGrid21.Text = "Multiplier";
     itemGrid21.ValueFormat = FormatType.Text;
     itemGrid21.Visible = true;
     itemGrid21.Width = 25;
     itemGrid21.X = 0;
     itemGrid21.Y = 8.6f;
     itemGrid22.AdjustFontSize = 0f;
     itemGrid22.Alignment = StringAlignment.Near;
     itemGrid22.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid22.Changed = false;
     itemGrid22.FieldType = ItemType.Text;
     itemGrid22.FontColor = Color.Yellow;
     itemGrid22.FontStyle = FontStyle.Regular;
     itemGrid22.Height = 1f;
     itemGrid22.IsBlink = 0;
     itemGrid22.Name = "multiplier";
     itemGrid22.Text = "";
     itemGrid22.ValueFormat = FormatType.Text;
     itemGrid22.Visible = true;
     itemGrid22.Width = 24;
     itemGrid22.X = 25;
     itemGrid22.Y = 8.6f;
     itemGrid23.AdjustFontSize = 0f;
     itemGrid23.Alignment = StringAlignment.Near;
     itemGrid23.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid23.Changed = false;
     itemGrid23.FieldType = ItemType.Label2;
     itemGrid23.FontColor = Color.Gainsboro;
     itemGrid23.FontStyle = FontStyle.Regular;
     itemGrid23.Height = 1f;
     itemGrid23.IsBlink = 0;
     itemGrid23.Name = "tickSize_lable";
     itemGrid23.Text = "Spread";
     itemGrid23.ValueFormat = FormatType.Text;
     itemGrid23.Visible = true;
     itemGrid23.Width = 25;
     itemGrid23.X = 0;
     itemGrid23.Y = 9.6f;
     itemGrid24.AdjustFontSize = 0f;
     itemGrid24.Alignment = StringAlignment.Near;
     itemGrid24.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid24.Changed = false;
     itemGrid24.FieldType = ItemType.Text;
     itemGrid24.FontColor = Color.Yellow;
     itemGrid24.FontStyle = FontStyle.Regular;
     itemGrid24.Height = 1f;
     itemGrid24.IsBlink = 0;
     itemGrid24.Name = "tickSize";
     itemGrid24.Text = "";
     itemGrid24.ValueFormat = FormatType.Text;
     itemGrid24.Visible = true;
     itemGrid24.Width = 24;
     itemGrid24.X = 25;
     itemGrid24.Y = 9.6f;
     itemGrid25.AdjustFontSize = 0f;
     itemGrid25.Alignment = StringAlignment.Near;
     itemGrid25.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid25.Changed = false;
     itemGrid25.FieldType = ItemType.Label;
     itemGrid25.FontColor = Color.Gainsboro;
     itemGrid25.FontStyle = FontStyle.Regular;
     itemGrid25.Height = 1f;
     itemGrid25.IsBlink = 0;
     itemGrid25.Name = "turnover_label";
     itemGrid25.Text = "Turn Over";
     itemGrid25.ValueFormat = FormatType.Text;
     itemGrid25.Visible = false;
     itemGrid25.Width = 23;
     itemGrid25.X = 49;
     itemGrid25.Y = 3.6f;
     itemGrid26.AdjustFontSize = 0f;
     itemGrid26.Alignment = StringAlignment.Near;
     itemGrid26.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid26.Changed = false;
     itemGrid26.FieldType = ItemType.Text;
     itemGrid26.FontColor = Color.Yellow;
     itemGrid26.FontStyle = FontStyle.Regular;
     itemGrid26.Height = 1f;
     itemGrid26.IsBlink = 0;
     itemGrid26.Name = "turnover";
     itemGrid26.Text = "";
     itemGrid26.ValueFormat = FormatType.Price;
     itemGrid26.Visible = false;
     itemGrid26.Width = 29;
     itemGrid26.X = 72;
     itemGrid26.Y = 3.6f;
     itemGrid27.AdjustFontSize = 0f;
     itemGrid27.Alignment = StringAlignment.Near;
     itemGrid27.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid27.Changed = false;
     itemGrid27.FieldType = ItemType.Label2;
     itemGrid27.FontColor = Color.Gainsboro;
     itemGrid27.FontStyle = FontStyle.Regular;
     itemGrid27.Height = 1f;
     itemGrid27.IsBlink = 0;
     itemGrid27.Name = "basis_label";
     itemGrid27.Text = "Basis";
     itemGrid27.ValueFormat = FormatType.Text;
     itemGrid27.Visible = true;
     itemGrid27.Width = 23;
     itemGrid27.X = 49;
     itemGrid27.Y = 3.6f;
     itemGrid28.AdjustFontSize = 0f;
     itemGrid28.Alignment = StringAlignment.Near;
     itemGrid28.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid28.Changed = false;
     itemGrid28.FieldType = ItemType.Text;
     itemGrid28.FontColor = Color.Yellow;
     itemGrid28.FontStyle = FontStyle.Regular;
     itemGrid28.Height = 1f;
     itemGrid28.IsBlink = 0;
     itemGrid28.Name = "basis";
     itemGrid28.Text = "";
     itemGrid28.ValueFormat = FormatType.Price;
     itemGrid28.Visible = true;
     itemGrid28.Width = 29;
     itemGrid28.X = 72;
     itemGrid28.Y = 3.6f;
     itemGrid29.AdjustFontSize = 0f;
     itemGrid29.Alignment = StringAlignment.Near;
     itemGrid29.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid29.Changed = false;
     itemGrid29.FieldType = ItemType.Label2;
     itemGrid29.FontColor = Color.Gainsboro;
     itemGrid29.FontStyle = FontStyle.Regular;
     itemGrid29.Height = 1f;
     itemGrid29.IsBlink = 0;
     itemGrid29.Name = "open1_label";
     itemGrid29.Text = "Open 1";
     itemGrid29.ValueFormat = FormatType.Text;
     itemGrid29.Visible = true;
     itemGrid29.Width = 23;
     itemGrid29.X = 49;
     itemGrid29.Y = 4.6f;
     itemGrid30.AdjustFontSize = 0f;
     itemGrid30.Alignment = StringAlignment.Near;
     itemGrid30.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid30.Changed = false;
     itemGrid30.FieldType = ItemType.Text;
     itemGrid30.FontColor = Color.Yellow;
     itemGrid30.FontStyle = FontStyle.Regular;
     itemGrid30.Height = 1f;
     itemGrid30.IsBlink = 0;
     itemGrid30.Name = "open1";
     itemGrid30.Text = "";
     itemGrid30.ValueFormat = FormatType.Text;
     itemGrid30.Visible = true;
     itemGrid30.Width = 29;
     itemGrid30.X = 72;
     itemGrid30.Y = 4.6f;
     itemGrid31.AdjustFontSize = 0f;
     itemGrid31.Alignment = StringAlignment.Near;
     itemGrid31.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid31.Changed = false;
     itemGrid31.FieldType = ItemType.Label2;
     itemGrid31.FontColor = Color.Gainsboro;
     itemGrid31.FontStyle = FontStyle.Regular;
     itemGrid31.Height = 1f;
     itemGrid31.IsBlink = 0;
     itemGrid31.Name = "open2_label";
     itemGrid31.Text = "Open 2";
     itemGrid31.ValueFormat = FormatType.Text;
     itemGrid31.Visible = true;
     itemGrid31.Width = 23;
     itemGrid31.X = 49;
     itemGrid31.Y = 5.6f;
     itemGrid32.AdjustFontSize = 0f;
     itemGrid32.Alignment = StringAlignment.Near;
     itemGrid32.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid32.Changed = false;
     itemGrid32.FieldType = ItemType.Text;
     itemGrid32.FontColor = Color.Yellow;
     itemGrid32.FontStyle = FontStyle.Regular;
     itemGrid32.Height = 1f;
     itemGrid32.IsBlink = 0;
     itemGrid32.Name = "open2";
     itemGrid32.Text = "";
     itemGrid32.ValueFormat = FormatType.Text;
     itemGrid32.Visible = true;
     itemGrid32.Width = 29;
     itemGrid32.X = 72;
     itemGrid32.Y = 5.6f;
     itemGrid33.AdjustFontSize = 0f;
     itemGrid33.Alignment = StringAlignment.Near;
     itemGrid33.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid33.Changed = false;
     itemGrid33.FieldType = ItemType.Label2;
     itemGrid33.FontColor = Color.Gainsboro;
     itemGrid33.FontStyle = FontStyle.Regular;
     itemGrid33.Height = 1f;
     itemGrid33.IsBlink = 0;
     itemGrid33.Name = "poclose_label";
     itemGrid33.Text = "P.Close";
     itemGrid33.ValueFormat = FormatType.Text;
     itemGrid33.Visible = true;
     itemGrid33.Width = 23;
     itemGrid33.X = 49;
     itemGrid33.Y = 7.6f;
     itemGrid34.AdjustFontSize = 0f;
     itemGrid34.Alignment = StringAlignment.Near;
     itemGrid34.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid34.Changed = false;
     itemGrid34.FieldType = ItemType.Text;
     itemGrid34.FontColor = Color.Yellow;
     itemGrid34.FontStyle = FontStyle.Regular;
     itemGrid34.Height = 1f;
     itemGrid34.IsBlink = 0;
     itemGrid34.Name = "poclose";
     itemGrid34.Text = "";
     itemGrid34.ValueFormat = FormatType.Text;
     itemGrid34.Visible = true;
     itemGrid34.Width = 29;
     itemGrid34.X = 72;
     itemGrid34.Y = 7.6f;
     itemGrid35.AdjustFontSize = 0f;
     itemGrid35.Alignment = StringAlignment.Near;
     itemGrid35.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid35.Changed = false;
     itemGrid35.FieldType = ItemType.Label2;
     itemGrid35.FontColor = Color.Gainsboro;
     itemGrid35.FontStyle = FontStyle.Regular;
     itemGrid35.Height = 1f;
     itemGrid35.IsBlink = 0;
     itemGrid35.Name = "open3_label";
     itemGrid35.Text = "Open 3";
     itemGrid35.ValueFormat = FormatType.Text;
     itemGrid35.Visible = true;
     itemGrid35.Width = 23;
     itemGrid35.X = 49;
     itemGrid35.Y = 6.6f;
     itemGrid36.AdjustFontSize = 0f;
     itemGrid36.Alignment = StringAlignment.Near;
     itemGrid36.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid36.Changed = false;
     itemGrid36.FieldType = ItemType.Text;
     itemGrid36.FontColor = Color.Yellow;
     itemGrid36.FontStyle = FontStyle.Regular;
     itemGrid36.Height = 1f;
     itemGrid36.IsBlink = 0;
     itemGrid36.Name = "open3";
     itemGrid36.Text = "";
     itemGrid36.ValueFormat = FormatType.Text;
     itemGrid36.Visible = true;
     itemGrid36.Width = 29;
     itemGrid36.X = 72;
     itemGrid36.Y = 6.6f;
     itemGrid37.AdjustFontSize = 0f;
     itemGrid37.Alignment = StringAlignment.Near;
     itemGrid37.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid37.Changed = false;
     itemGrid37.FieldType = ItemType.Label2;
     itemGrid37.FontColor = Color.Gainsboro;
     itemGrid37.FontStyle = FontStyle.Regular;
     itemGrid37.Height = 1f;
     itemGrid37.IsBlink = 0;
     itemGrid37.Name = "first_date_label";
     itemGrid37.Text = "First";
     itemGrid37.ValueFormat = FormatType.Text;
     itemGrid37.Visible = false;
     itemGrid37.Width = 23;
     itemGrid37.X = 49;
     itemGrid37.Y = 7.6f;
     itemGrid38.AdjustFontSize = 0f;
     itemGrid38.Alignment = StringAlignment.Near;
     itemGrid38.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid38.Changed = false;
     itemGrid38.FieldType = ItemType.Text;
     itemGrid38.FontColor = Color.Yellow;
     itemGrid38.FontStyle = FontStyle.Regular;
     itemGrid38.Height = 1f;
     itemGrid38.IsBlink = 0;
     itemGrid38.Name = "first_date";
     itemGrid38.Text = "";
     itemGrid38.ValueFormat = FormatType.Text;
     itemGrid38.Visible = false;
     itemGrid38.Width = 29;
     itemGrid38.X = 72;
     itemGrid38.Y = 7.6f;
     itemGrid39.AdjustFontSize = 0f;
     itemGrid39.Alignment = StringAlignment.Near;
     itemGrid39.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid39.Changed = false;
     itemGrid39.FieldType = ItemType.Label2;
     itemGrid39.FontColor = Color.Gainsboro;
     itemGrid39.FontStyle = FontStyle.Regular;
     itemGrid39.Height = 1f;
     itemGrid39.IsBlink = 0;
     itemGrid39.Name = "last_date_label";
     itemGrid39.Text = "Last";
     itemGrid39.ValueFormat = FormatType.Text;
     itemGrid39.Visible = true;
     itemGrid39.Width = 23;
     itemGrid39.X = 49;
     itemGrid39.Y = 8.6f;
     itemGrid40.AdjustFontSize = 0f;
     itemGrid40.Alignment = StringAlignment.Near;
     itemGrid40.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid40.Changed = false;
     itemGrid40.FieldType = ItemType.Text;
     itemGrid40.FontColor = Color.Yellow;
     itemGrid40.FontStyle = FontStyle.Regular;
     itemGrid40.Height = 1f;
     itemGrid40.IsBlink = 0;
     itemGrid40.Name = "last_date";
     itemGrid40.Text = "";
     itemGrid40.ValueFormat = FormatType.Text;
     itemGrid40.Visible = true;
     itemGrid40.Width = 29;
     itemGrid40.X = 72;
     itemGrid40.Y = 8.6f;
     itemGrid41.AdjustFontSize = 0f;
     itemGrid41.Alignment = StringAlignment.Near;
     itemGrid41.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid41.Changed = false;
     itemGrid41.FieldType = ItemType.Label2;
     itemGrid41.FontColor = Color.Gainsboro;
     itemGrid41.FontStyle = FontStyle.Regular;
     itemGrid41.Height = 1f;
     itemGrid41.IsBlink = 0;
     itemGrid41.Name = "lastIndex_label";
     itemGrid41.Text = "Index";
     itemGrid41.ValueFormat = FormatType.Text;
     itemGrid41.Visible = true;
     itemGrid41.Width = 23;
     itemGrid41.X = 49;
     itemGrid41.Y = 9.6f;
     itemGrid42.AdjustFontSize = 0f;
     itemGrid42.Alignment = StringAlignment.Near;
     itemGrid42.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid42.Changed = false;
     itemGrid42.FieldType = ItemType.Text;
     itemGrid42.FontColor = Color.Yellow;
     itemGrid42.FontStyle = FontStyle.Regular;
     itemGrid42.Height = 1f;
     itemGrid42.IsBlink = 0;
     itemGrid42.Name = "lastIndex";
     itemGrid42.Text = "";
     itemGrid42.ValueFormat = FormatType.Text;
     itemGrid42.Visible = true;
     itemGrid42.Width = 29;
     itemGrid42.X = 72;
     itemGrid42.Y = 9.6f;
     this.intzaInfoTFEX.Items.Add(itemGrid);
     this.intzaInfoTFEX.Items.Add(itemGrid2);
     this.intzaInfoTFEX.Items.Add(itemGrid3);
     this.intzaInfoTFEX.Items.Add(itemGrid4);
     this.intzaInfoTFEX.Items.Add(itemGrid5);
     this.intzaInfoTFEX.Items.Add(itemGrid6);
     this.intzaInfoTFEX.Items.Add(itemGrid7);
     this.intzaInfoTFEX.Items.Add(itemGrid8);
     this.intzaInfoTFEX.Items.Add(itemGrid9);
     this.intzaInfoTFEX.Items.Add(itemGrid10);
     this.intzaInfoTFEX.Items.Add(itemGrid11);
     this.intzaInfoTFEX.Items.Add(itemGrid12);
     this.intzaInfoTFEX.Items.Add(itemGrid13);
     this.intzaInfoTFEX.Items.Add(itemGrid14);
     this.intzaInfoTFEX.Items.Add(itemGrid15);
     this.intzaInfoTFEX.Items.Add(itemGrid16);
     this.intzaInfoTFEX.Items.Add(itemGrid17);
     this.intzaInfoTFEX.Items.Add(itemGrid18);
     this.intzaInfoTFEX.Items.Add(itemGrid19);
     this.intzaInfoTFEX.Items.Add(itemGrid20);
     this.intzaInfoTFEX.Items.Add(itemGrid21);
     this.intzaInfoTFEX.Items.Add(itemGrid22);
     this.intzaInfoTFEX.Items.Add(itemGrid23);
     this.intzaInfoTFEX.Items.Add(itemGrid24);
     this.intzaInfoTFEX.Items.Add(itemGrid25);
     this.intzaInfoTFEX.Items.Add(itemGrid26);
     this.intzaInfoTFEX.Items.Add(itemGrid27);
     this.intzaInfoTFEX.Items.Add(itemGrid28);
     this.intzaInfoTFEX.Items.Add(itemGrid29);
     this.intzaInfoTFEX.Items.Add(itemGrid30);
     this.intzaInfoTFEX.Items.Add(itemGrid31);
     this.intzaInfoTFEX.Items.Add(itemGrid32);
     this.intzaInfoTFEX.Items.Add(itemGrid33);
     this.intzaInfoTFEX.Items.Add(itemGrid34);
     this.intzaInfoTFEX.Items.Add(itemGrid35);
     this.intzaInfoTFEX.Items.Add(itemGrid36);
     this.intzaInfoTFEX.Items.Add(itemGrid37);
     this.intzaInfoTFEX.Items.Add(itemGrid38);
     this.intzaInfoTFEX.Items.Add(itemGrid39);
     this.intzaInfoTFEX.Items.Add(itemGrid40);
     this.intzaInfoTFEX.Items.Add(itemGrid41);
     this.intzaInfoTFEX.Items.Add(itemGrid42);
     this.intzaInfoTFEX.LineColor = Color.Red;
     this.intzaInfoTFEX.Location = new Point(653, 29);
     this.intzaInfoTFEX.Margin = new Padding(2);
     this.intzaInfoTFEX.Name = "intzaInfoTFEX";
     this.intzaInfoTFEX.Size = new Size(236, 149);
     this.intzaInfoTFEX.TabIndex = 90;
     this.intzaInfoTFEX.TabStop = false;
     this.intzaVolumeByBoard.AllowDrop = true;
     this.intzaVolumeByBoard.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaVolumeByBoard.CanBlink = true;
     this.intzaVolumeByBoard.CanDrag = false;
     this.intzaVolumeByBoard.CanGetMouseMove = false;
     columnItem45.Alignment = StringAlignment.Near;
     columnItem45.BackColor = Color.FromArgb(64, 64, 64);
     columnItem45.ColumnAlignment = StringAlignment.Center;
     columnItem45.FontColor = Color.LightGray;
     columnItem45.MyStyle = FontStyle.Regular;
     columnItem45.Name = "h1";
     columnItem45.Text = "";
     columnItem45.ValueFormat = FormatType.Label;
     columnItem45.Visible = true;
     columnItem45.Width = 17;
     columnItem46.Alignment = StringAlignment.Far;
     columnItem46.BackColor = Color.DimGray;
     columnItem46.ColumnAlignment = StringAlignment.Center;
     columnItem46.FontColor = Color.White;
     columnItem46.MyStyle = FontStyle.Regular;
     columnItem46.Name = "deals";
     columnItem46.Text = "Deals";
     columnItem46.ValueFormat = FormatType.Volume;
     columnItem46.Visible = true;
     columnItem46.Width = 20;
     columnItem47.Alignment = StringAlignment.Far;
     columnItem47.BackColor = Color.DimGray;
     columnItem47.ColumnAlignment = StringAlignment.Center;
     columnItem47.FontColor = Color.White;
     columnItem47.MyStyle = FontStyle.Regular;
     columnItem47.Name = "volume";
     columnItem47.Text = "Volume";
     columnItem47.ValueFormat = FormatType.Volume;
     columnItem47.Visible = true;
     columnItem47.Width = 29;
     columnItem48.Alignment = StringAlignment.Far;
     columnItem48.BackColor = Color.DimGray;
     columnItem48.ColumnAlignment = StringAlignment.Center;
     columnItem48.FontColor = Color.White;
     columnItem48.MyStyle = FontStyle.Regular;
     columnItem48.Name = "value";
     columnItem48.Text = "Value";
     columnItem48.ValueFormat = FormatType.Text;
     columnItem48.Visible = true;
     columnItem48.Width = 34;
     this.intzaVolumeByBoard.Columns.Add(columnItem45);
     this.intzaVolumeByBoard.Columns.Add(columnItem46);
     this.intzaVolumeByBoard.Columns.Add(columnItem47);
     this.intzaVolumeByBoard.Columns.Add(columnItem48);
     this.intzaVolumeByBoard.CurrentScroll = 0;
     this.intzaVolumeByBoard.FocusItemIndex = -1;
     this.intzaVolumeByBoard.ForeColor = Color.Black;
     this.intzaVolumeByBoard.GridColor = Color.FromArgb(30, 30, 30);
     this.intzaVolumeByBoard.HeaderPctHeight = 80f;
     this.intzaVolumeByBoard.IsAutoRepaint = true;
     this.intzaVolumeByBoard.IsDrawFullRow = false;
     this.intzaVolumeByBoard.IsDrawGrid = false;
     this.intzaVolumeByBoard.IsDrawHeader = true;
     this.intzaVolumeByBoard.IsScrollable = false;
     this.intzaVolumeByBoard.Location = new Point(30, 127);
     this.intzaVolumeByBoard.MainColumn = "";
     this.intzaVolumeByBoard.Margin = new Padding(0);
     this.intzaVolumeByBoard.Name = "intzaVolumeByBoard";
     this.intzaVolumeByBoard.Rows = 2;
     this.intzaVolumeByBoard.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaVolumeByBoard.RowSelectType = 0;
     this.intzaVolumeByBoard.RowsVisible = 2;
     this.intzaVolumeByBoard.Size = new Size(221, 62);
     this.intzaVolumeByBoard.SortColumnName = "";
     this.intzaVolumeByBoard.SortType = SortType.Desc;
     this.intzaVolumeByBoard.TabIndex = 80;
     this.intzaVolumeByBoard.ItemDragDrop += new SortGrid.ItemDragDropEventHandler(this.intzaLS2_ItemDragDrop);
     this.intzaInfo.AllowDrop = true;
     this.intzaInfo.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaInfo.CanDrag = false;
     this.intzaInfo.IsAutoRepaint = true;
     this.intzaInfo.IsDroped = false;
     itemGrid43.AdjustFontSize = 0f;
     itemGrid43.Alignment = StringAlignment.Near;
     itemGrid43.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid43.Changed = false;
     itemGrid43.FieldType = ItemType.Label2;
     itemGrid43.FontColor = Color.Gainsboro;
     itemGrid43.FontStyle = FontStyle.Regular;
     itemGrid43.Height = 1f;
     itemGrid43.IsBlink = 0;
     itemGrid43.Name = "lb_openvol";
     itemGrid43.Text = "OpnVol";
     itemGrid43.ValueFormat = FormatType.Text;
     itemGrid43.Visible = true;
     itemGrid43.Width = 22;
     itemGrid43.X = 0;
     itemGrid43.Y = 0f;
     itemGrid44.AdjustFontSize = 0f;
     itemGrid44.Alignment = StringAlignment.Far;
     itemGrid44.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid44.Changed = false;
     itemGrid44.FieldType = ItemType.Text;
     itemGrid44.FontColor = Color.Yellow;
     itemGrid44.FontStyle = FontStyle.Regular;
     itemGrid44.Height = 1f;
     itemGrid44.IsBlink = 0;
     itemGrid44.Name = "open_vol";
     itemGrid44.Text = "";
     itemGrid44.ValueFormat = FormatType.Volume;
     itemGrid44.Visible = true;
     itemGrid44.Width = 35;
     itemGrid44.X = 25;
     itemGrid44.Y = 0f;
     itemGrid45.AdjustFontSize = -2f;
     itemGrid45.Alignment = StringAlignment.Far;
     itemGrid45.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid45.Changed = false;
     itemGrid45.FieldType = ItemType.Text;
     itemGrid45.FontColor = Color.Yellow;
     itemGrid45.FontStyle = FontStyle.Regular;
     itemGrid45.Height = 1f;
     itemGrid45.IsBlink = 0;
     itemGrid45.Name = "p_open_vol";
     itemGrid45.Text = "";
     itemGrid45.ValueFormat = FormatType.Text;
     itemGrid45.Visible = false;
     itemGrid45.Width = 19;
     itemGrid45.X = 57;
     itemGrid45.Y = 0f;
     itemGrid46.AdjustFontSize = 0f;
     itemGrid46.Alignment = StringAlignment.Near;
     itemGrid46.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid46.Changed = false;
     itemGrid46.FieldType = ItemType.Label2;
     itemGrid46.FontColor = Color.Gainsboro;
     itemGrid46.FontStyle = FontStyle.Regular;
     itemGrid46.Height = 1f;
     itemGrid46.IsBlink = 0;
     itemGrid46.Name = "lb_buyvol";
     itemGrid46.Text = "BuyVol";
     itemGrid46.ValueFormat = FormatType.Text;
     itemGrid46.Visible = true;
     itemGrid46.Width = 22;
     itemGrid46.X = 0;
     itemGrid46.Y = 1.2f;
     itemGrid47.AdjustFontSize = 0f;
     itemGrid47.Alignment = StringAlignment.Far;
     itemGrid47.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid47.Changed = false;
     itemGrid47.FieldType = ItemType.Text;
     itemGrid47.FontColor = Color.Lime;
     itemGrid47.FontStyle = FontStyle.Regular;
     itemGrid47.Height = 1f;
     itemGrid47.IsBlink = 0;
     itemGrid47.Name = "buy_vol";
     itemGrid47.Text = "";
     itemGrid47.ValueFormat = FormatType.Volume;
     itemGrid47.Visible = true;
     itemGrid47.Width = 35;
     itemGrid47.X = 25;
     itemGrid47.Y = 1.2f;
     itemGrid48.AdjustFontSize = -2f;
     itemGrid48.Alignment = StringAlignment.Far;
     itemGrid48.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid48.Changed = false;
     itemGrid48.FieldType = ItemType.Text;
     itemGrid48.FontColor = Color.Lime;
     itemGrid48.FontStyle = FontStyle.Regular;
     itemGrid48.Height = 1f;
     itemGrid48.IsBlink = 0;
     itemGrid48.Name = "p_buy_vol";
     itemGrid48.Text = "";
     itemGrid48.ValueFormat = FormatType.Text;
     itemGrid48.Visible = false;
     itemGrid48.Width = 19;
     itemGrid48.X = 57;
     itemGrid48.Y = 1.2f;
     itemGrid49.AdjustFontSize = 0f;
     itemGrid49.Alignment = StringAlignment.Near;
     itemGrid49.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid49.Changed = false;
     itemGrid49.FieldType = ItemType.Label2;
     itemGrid49.FontColor = Color.Gainsboro;
     itemGrid49.FontStyle = FontStyle.Regular;
     itemGrid49.Height = 1f;
     itemGrid49.IsBlink = 0;
     itemGrid49.Name = "lb_selvol";
     itemGrid49.Text = "SelVol";
     itemGrid49.ValueFormat = FormatType.Text;
     itemGrid49.Visible = true;
     itemGrid49.Width = 22;
     itemGrid49.X = 0;
     itemGrid49.Y = 2.4f;
     itemGrid50.AdjustFontSize = 0f;
     itemGrid50.Alignment = StringAlignment.Far;
     itemGrid50.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid50.Changed = false;
     itemGrid50.FieldType = ItemType.Text;
     itemGrid50.FontColor = Color.Red;
     itemGrid50.FontStyle = FontStyle.Regular;
     itemGrid50.Height = 1f;
     itemGrid50.IsBlink = 0;
     itemGrid50.Name = "sel_vol";
     itemGrid50.Text = "";
     itemGrid50.ValueFormat = FormatType.Volume;
     itemGrid50.Visible = true;
     itemGrid50.Width = 35;
     itemGrid50.X = 25;
     itemGrid50.Y = 2.4f;
     itemGrid51.AdjustFontSize = -2f;
     itemGrid51.Alignment = StringAlignment.Far;
     itemGrid51.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid51.Changed = false;
     itemGrid51.FieldType = ItemType.Text;
     itemGrid51.FontColor = Color.Red;
     itemGrid51.FontStyle = FontStyle.Regular;
     itemGrid51.Height = 1f;
     itemGrid51.IsBlink = 0;
     itemGrid51.Name = "p_sel_vol";
     itemGrid51.Text = "";
     itemGrid51.ValueFormat = FormatType.Text;
     itemGrid51.Visible = false;
     itemGrid51.Width = 19;
     itemGrid51.X = 57;
     itemGrid51.Y = 2.4f;
     itemGrid52.AdjustFontSize = 0f;
     itemGrid52.Alignment = StringAlignment.Near;
     itemGrid52.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid52.Changed = false;
     itemGrid52.FieldType = ItemType.Text;
     itemGrid52.FontColor = Color.White;
     itemGrid52.FontStyle = FontStyle.Regular;
     itemGrid52.Height = 3.4f;
     itemGrid52.IsBlink = 0;
     itemGrid52.Name = "pie";
     itemGrid52.Text = "";
     itemGrid52.ValueFormat = FormatType.PieChartNew;
     itemGrid52.Visible = true;
     itemGrid52.Width = 40;
     itemGrid52.X = 60;
     itemGrid52.Y = 0f;
     itemGrid53.AdjustFontSize = 0f;
     itemGrid53.Alignment = StringAlignment.Near;
     itemGrid53.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid53.Changed = false;
     itemGrid53.FieldType = ItemType.Label2;
     itemGrid53.FontColor = Color.Gainsboro;
     itemGrid53.FontStyle = FontStyle.Regular;
     itemGrid53.Height = 1f;
     itemGrid53.IsBlink = 0;
     itemGrid53.Name = "lb_prior";
     itemGrid53.Text = "Prev";
     itemGrid53.ValueFormat = FormatType.Text;
     itemGrid53.Visible = true;
     itemGrid53.Width = 22;
     itemGrid53.X = 0;
     itemGrid53.Y = 3.6f;
     itemGrid54.AdjustFontSize = 0f;
     itemGrid54.Alignment = StringAlignment.Near;
     itemGrid54.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid54.Changed = false;
     itemGrid54.FieldType = ItemType.Text;
     itemGrid54.FontColor = Color.Yellow;
     itemGrid54.FontStyle = FontStyle.Regular;
     itemGrid54.Height = 1f;
     itemGrid54.IsBlink = 0;
     itemGrid54.Name = "prior";
     itemGrid54.Text = "";
     itemGrid54.ValueFormat = FormatType.Text;
     itemGrid54.Visible = true;
     itemGrid54.Width = 23;
     itemGrid54.X = 22;
     itemGrid54.Y = 3.6f;
     itemGrid55.AdjustFontSize = 0f;
     itemGrid55.Alignment = StringAlignment.Near;
     itemGrid55.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid55.Changed = false;
     itemGrid55.FieldType = ItemType.Label2;
     itemGrid55.FontColor = Color.Gainsboro;
     itemGrid55.FontStyle = FontStyle.Regular;
     itemGrid55.Height = 1f;
     itemGrid55.IsBlink = 0;
     itemGrid55.Name = "lb_avg";
     itemGrid55.Text = "Avg";
     itemGrid55.ValueFormat = FormatType.Text;
     itemGrid55.Visible = false;
     itemGrid55.Width = 25;
     itemGrid55.X = 48;
     itemGrid55.Y = 3.6f;
     itemGrid56.AdjustFontSize = 0f;
     itemGrid56.Alignment = StringAlignment.Near;
     itemGrid56.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid56.Changed = false;
     itemGrid56.FieldType = ItemType.Text;
     itemGrid56.FontColor = Color.White;
     itemGrid56.FontStyle = FontStyle.Regular;
     itemGrid56.Height = 1f;
     itemGrid56.IsBlink = 0;
     itemGrid56.Name = "avg";
     itemGrid56.Text = "";
     itemGrid56.ValueFormat = FormatType.Price;
     itemGrid56.Visible = false;
     itemGrid56.Width = 26;
     itemGrid56.X = 73;
     itemGrid56.Y = 3.6f;
     itemGrid57.AdjustFontSize = 0f;
     itemGrid57.Alignment = StringAlignment.Near;
     itemGrid57.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid57.Changed = false;
     itemGrid57.FieldType = ItemType.Label2;
     itemGrid57.FontColor = Color.Gainsboro;
     itemGrid57.FontStyle = FontStyle.Regular;
     itemGrid57.Height = 1f;
     itemGrid57.IsBlink = 0;
     itemGrid57.Name = "lbOpen";
     itemGrid57.Text = "Open-1";
     itemGrid57.ValueFormat = FormatType.Text;
     itemGrid57.Visible = true;
     itemGrid57.Width = 22;
     itemGrid57.X = 45;
     itemGrid57.Y = 4.6f;
     itemGrid58.AdjustFontSize = 0f;
     itemGrid58.Alignment = StringAlignment.Near;
     itemGrid58.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid58.Changed = false;
     itemGrid58.FieldType = ItemType.Text;
     itemGrid58.FontColor = Color.White;
     itemGrid58.FontStyle = FontStyle.Regular;
     itemGrid58.Height = 1f;
     itemGrid58.IsBlink = 0;
     itemGrid58.Name = "open1";
     itemGrid58.Text = "";
     itemGrid58.ValueFormat = FormatType.Price;
     itemGrid58.Visible = true;
     itemGrid58.Width = 31;
     itemGrid58.X = 67;
     itemGrid58.Y = 4.6f;
     itemGrid59.AdjustFontSize = 0f;
     itemGrid59.Alignment = StringAlignment.Near;
     itemGrid59.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid59.Changed = false;
     itemGrid59.FieldType = ItemType.Label2;
     itemGrid59.FontColor = Color.Gainsboro;
     itemGrid59.FontStyle = FontStyle.Regular;
     itemGrid59.Height = 1f;
     itemGrid59.IsBlink = 0;
     itemGrid59.Name = "lbOpen2";
     itemGrid59.Text = "Open-2";
     itemGrid59.ValueFormat = FormatType.Text;
     itemGrid59.Visible = true;
     itemGrid59.Width = 22;
     itemGrid59.X = 45;
     itemGrid59.Y = 5.6f;
     itemGrid60.AdjustFontSize = 0f;
     itemGrid60.Alignment = StringAlignment.Near;
     itemGrid60.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid60.Changed = false;
     itemGrid60.FieldType = ItemType.Text;
     itemGrid60.FontColor = Color.White;
     itemGrid60.FontStyle = FontStyle.Regular;
     itemGrid60.Height = 1f;
     itemGrid60.IsBlink = 0;
     itemGrid60.Name = "open2";
     itemGrid60.Text = "";
     itemGrid60.ValueFormat = FormatType.Price;
     itemGrid60.Visible = true;
     itemGrid60.Width = 31;
     itemGrid60.X = 67;
     itemGrid60.Y = 5.6f;
     itemGrid61.AdjustFontSize = 0f;
     itemGrid61.Alignment = StringAlignment.Near;
     itemGrid61.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid61.Changed = false;
     itemGrid61.FieldType = ItemType.Label2;
     itemGrid61.FontColor = Color.Gainsboro;
     itemGrid61.FontStyle = FontStyle.Regular;
     itemGrid61.Height = 1f;
     itemGrid61.IsBlink = 0;
     itemGrid61.Name = "lbHigh";
     itemGrid61.Text = "High";
     itemGrid61.ValueFormat = FormatType.Text;
     itemGrid61.Visible = true;
     itemGrid61.Width = 22;
     itemGrid61.X = 0;
     itemGrid61.Y = 4.6f;
     itemGrid62.AdjustFontSize = 0f;
     itemGrid62.Alignment = StringAlignment.Near;
     itemGrid62.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid62.Changed = false;
     itemGrid62.FieldType = ItemType.Text;
     itemGrid62.FontColor = Color.White;
     itemGrid62.FontStyle = FontStyle.Regular;
     itemGrid62.Height = 1f;
     itemGrid62.IsBlink = 0;
     itemGrid62.Name = "high";
     itemGrid62.Text = "";
     itemGrid62.ValueFormat = FormatType.Price;
     itemGrid62.Visible = true;
     itemGrid62.Width = 23;
     itemGrid62.X = 22;
     itemGrid62.Y = 4.6f;
     itemGrid63.AdjustFontSize = 0f;
     itemGrid63.Alignment = StringAlignment.Near;
     itemGrid63.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid63.Changed = false;
     itemGrid63.FieldType = ItemType.Label2;
     itemGrid63.FontColor = Color.Gainsboro;
     itemGrid63.FontStyle = FontStyle.Regular;
     itemGrid63.Height = 1f;
     itemGrid63.IsBlink = 0;
     itemGrid63.Name = "lbLow";
     itemGrid63.Text = "Low";
     itemGrid63.ValueFormat = FormatType.Text;
     itemGrid63.Visible = true;
     itemGrid63.Width = 22;
     itemGrid63.X = 0;
     itemGrid63.Y = 5.6f;
     itemGrid64.AdjustFontSize = 0f;
     itemGrid64.Alignment = StringAlignment.Near;
     itemGrid64.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid64.Changed = false;
     itemGrid64.FieldType = ItemType.Text;
     itemGrid64.FontColor = Color.White;
     itemGrid64.FontStyle = FontStyle.Regular;
     itemGrid64.Height = 1f;
     itemGrid64.IsBlink = 0;
     itemGrid64.Name = "low";
     itemGrid64.Text = "";
     itemGrid64.ValueFormat = FormatType.Price;
     itemGrid64.Visible = true;
     itemGrid64.Width = 23;
     itemGrid64.X = 22;
     itemGrid64.Y = 5.6f;
     itemGrid65.AdjustFontSize = 0f;
     itemGrid65.Alignment = StringAlignment.Near;
     itemGrid65.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid65.Changed = false;
     itemGrid65.FieldType = ItemType.Label2;
     itemGrid65.FontColor = Color.Gainsboro;
     itemGrid65.FontStyle = FontStyle.Regular;
     itemGrid65.Height = 1f;
     itemGrid65.IsBlink = 0;
     itemGrid65.Name = "lb_ceiling";
     itemGrid65.Text = "Ceiling";
     itemGrid65.ValueFormat = FormatType.Text;
     itemGrid65.Visible = true;
     itemGrid65.Width = 22;
     itemGrid65.X = 0;
     itemGrid65.Y = 6.6f;
     itemGrid66.AdjustFontSize = 0f;
     itemGrid66.Alignment = StringAlignment.Near;
     itemGrid66.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid66.Changed = false;
     itemGrid66.FieldType = ItemType.Text;
     itemGrid66.FontColor = Color.Cyan;
     itemGrid66.FontStyle = FontStyle.Regular;
     itemGrid66.Height = 1f;
     itemGrid66.IsBlink = 0;
     itemGrid66.Name = "ceiling";
     itemGrid66.Text = "";
     itemGrid66.ValueFormat = FormatType.Price;
     itemGrid66.Visible = true;
     itemGrid66.Width = 23;
     itemGrid66.X = 22;
     itemGrid66.Y = 6.6f;
     itemGrid67.AdjustFontSize = 0f;
     itemGrid67.Alignment = StringAlignment.Near;
     itemGrid67.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid67.Changed = false;
     itemGrid67.FieldType = ItemType.Label2;
     itemGrid67.FontColor = Color.Gainsboro;
     itemGrid67.FontStyle = FontStyle.Regular;
     itemGrid67.Height = 1f;
     itemGrid67.IsBlink = 0;
     itemGrid67.Name = "lb_floor";
     itemGrid67.Text = "Floor";
     itemGrid67.ValueFormat = FormatType.Text;
     itemGrid67.Visible = true;
     itemGrid67.Width = 22;
     itemGrid67.X = 0;
     itemGrid67.Y = 7.6f;
     itemGrid68.AdjustFontSize = 0f;
     itemGrid68.Alignment = StringAlignment.Near;
     itemGrid68.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid68.Changed = false;
     itemGrid68.FieldType = ItemType.Text;
     itemGrid68.FontColor = Color.FromArgb(187, 44, 189);
     itemGrid68.FontStyle = FontStyle.Regular;
     itemGrid68.Height = 1f;
     itemGrid68.IsBlink = 0;
     itemGrid68.Name = "floor";
     itemGrid68.Text = "";
     itemGrid68.ValueFormat = FormatType.Price;
     itemGrid68.Visible = true;
     itemGrid68.Width = 23;
     itemGrid68.X = 22;
     itemGrid68.Y = 7.6f;
     itemGrid69.AdjustFontSize = 0f;
     itemGrid69.Alignment = StringAlignment.Near;
     itemGrid69.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid69.Changed = false;
     itemGrid69.FieldType = ItemType.Label2;
     itemGrid69.FontColor = Color.Gainsboro;
     itemGrid69.FontStyle = FontStyle.Regular;
     itemGrid69.Height = 1f;
     itemGrid69.IsBlink = 0;
     itemGrid69.Name = "lb_par";
     itemGrid69.Text = "Par";
     itemGrid69.ValueFormat = FormatType.Text;
     itemGrid69.Visible = true;
     itemGrid69.Width = 22;
     itemGrid69.X = 45;
     itemGrid69.Y = 8.6f;
     itemGrid70.AdjustFontSize = 0f;
     itemGrid70.Alignment = StringAlignment.Near;
     itemGrid70.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid70.Changed = false;
     itemGrid70.FieldType = ItemType.Text;
     itemGrid70.FontColor = Color.Yellow;
     itemGrid70.FontStyle = FontStyle.Regular;
     itemGrid70.Height = 1f;
     itemGrid70.IsBlink = 0;
     itemGrid70.Name = "par";
     itemGrid70.Text = "";
     itemGrid70.ValueFormat = FormatType.Text;
     itemGrid70.Visible = true;
     itemGrid70.Width = 31;
     itemGrid70.X = 67;
     itemGrid70.Y = 8.6f;
     itemGrid71.AdjustFontSize = 0f;
     itemGrid71.Alignment = StringAlignment.Near;
     itemGrid71.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid71.Changed = false;
     itemGrid71.FieldType = ItemType.Label2;
     itemGrid71.FontColor = Color.Gainsboro;
     itemGrid71.FontStyle = FontStyle.Regular;
     itemGrid71.Height = 1f;
     itemGrid71.IsBlink = 0;
     itemGrid71.Name = "lbPoClose";
     itemGrid71.Text = "Prj.Close";
     itemGrid71.ValueFormat = FormatType.Text;
     itemGrid71.Visible = true;
     itemGrid71.Width = 22;
     itemGrid71.X = 45;
     itemGrid71.Y = 6.6f;
     itemGrid72.AdjustFontSize = 0f;
     itemGrid72.Alignment = StringAlignment.Near;
     itemGrid72.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid72.Changed = false;
     itemGrid72.FieldType = ItemType.Text;
     itemGrid72.FontColor = Color.White;
     itemGrid72.FontStyle = FontStyle.Regular;
     itemGrid72.Height = 1f;
     itemGrid72.IsBlink = 0;
     itemGrid72.Name = "poclose";
     itemGrid72.Text = "";
     itemGrid72.ValueFormat = FormatType.Price;
     itemGrid72.Visible = true;
     itemGrid72.Width = 31;
     itemGrid72.X = 67;
     itemGrid72.Y = 6.6f;
     itemGrid73.AdjustFontSize = 0f;
     itemGrid73.Alignment = StringAlignment.Near;
     itemGrid73.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid73.Changed = false;
     itemGrid73.FieldType = ItemType.Label2;
     itemGrid73.FontColor = Color.Gainsboro;
     itemGrid73.FontStyle = FontStyle.Regular;
     itemGrid73.Height = 1f;
     itemGrid73.IsBlink = 0;
     itemGrid73.Name = "lb_spread";
     itemGrid73.Text = "Spread";
     itemGrid73.ValueFormat = FormatType.Text;
     itemGrid73.Visible = true;
     itemGrid73.Width = 22;
     itemGrid73.X = 0;
     itemGrid73.Y = 8.6f;
     itemGrid74.AdjustFontSize = 0f;
     itemGrid74.Alignment = StringAlignment.Near;
     itemGrid74.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid74.Changed = false;
     itemGrid74.FieldType = ItemType.Text;
     itemGrid74.FontColor = Color.Yellow;
     itemGrid74.FontStyle = FontStyle.Regular;
     itemGrid74.Height = 1f;
     itemGrid74.IsBlink = 0;
     itemGrid74.Name = "spread";
     itemGrid74.Text = "";
     itemGrid74.ValueFormat = FormatType.Price;
     itemGrid74.Visible = true;
     itemGrid74.Width = 23;
     itemGrid74.X = 22;
     itemGrid74.Y = 8.6f;
     itemGrid75.AdjustFontSize = 0f;
     itemGrid75.Alignment = StringAlignment.Near;
     itemGrid75.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid75.Changed = false;
     itemGrid75.FieldType = ItemType.Label2;
     itemGrid75.FontColor = Color.Gainsboro;
     itemGrid75.FontStyle = FontStyle.Regular;
     itemGrid75.Height = 1f;
     itemGrid75.IsBlink = 0;
     itemGrid75.Name = "lb_povol";
     itemGrid75.Text = "Prj.Vol";
     itemGrid75.ValueFormat = FormatType.Text;
     itemGrid75.Visible = true;
     itemGrid75.Width = 22;
     itemGrid75.X = 45;
     itemGrid75.Y = 7.6f;
     itemGrid76.AdjustFontSize = 0f;
     itemGrid76.Alignment = StringAlignment.Near;
     itemGrid76.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid76.Changed = false;
     itemGrid76.FieldType = ItemType.Text;
     itemGrid76.FontColor = Color.Yellow;
     itemGrid76.FontStyle = FontStyle.Regular;
     itemGrid76.Height = 1f;
     itemGrid76.IsBlink = 0;
     itemGrid76.Name = "povol";
     itemGrid76.Text = "";
     itemGrid76.ValueFormat = FormatType.Text;
     itemGrid76.Visible = true;
     itemGrid76.Width = 31;
     itemGrid76.X = 67;
     itemGrid76.Y = 7.6f;
     itemGrid77.AdjustFontSize = 0f;
     itemGrid77.Alignment = StringAlignment.Near;
     itemGrid77.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid77.Changed = false;
     itemGrid77.FieldType = ItemType.Label2;
     itemGrid77.FontColor = Color.Gainsboro;
     itemGrid77.FontStyle = FontStyle.Regular;
     itemGrid77.Height = 1f;
     itemGrid77.IsBlink = 0;
     itemGrid77.Name = "lbMarginRate";
     itemGrid77.Text = "IM";
     itemGrid77.ValueFormat = FormatType.Text;
     itemGrid77.Visible = true;
     itemGrid77.Width = 22;
     itemGrid77.X = 45;
     itemGrid77.Y = 9.6f;
     itemGrid78.AdjustFontSize = 0f;
     itemGrid78.Alignment = StringAlignment.Near;
     itemGrid78.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid78.Changed = false;
     itemGrid78.FieldType = ItemType.Text;
     itemGrid78.FontColor = Color.Yellow;
     itemGrid78.FontStyle = FontStyle.Regular;
     itemGrid78.Height = 1f;
     itemGrid78.IsBlink = 0;
     itemGrid78.Name = "tbMarginRate";
     itemGrid78.Text = "";
     itemGrid78.ValueFormat = FormatType.Text;
     itemGrid78.Visible = true;
     itemGrid78.Width = 31;
     itemGrid78.X = 67;
     itemGrid78.Y = 9.6f;
     itemGrid79.AdjustFontSize = 0f;
     itemGrid79.Alignment = StringAlignment.Near;
     itemGrid79.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid79.Changed = false;
     itemGrid79.FieldType = ItemType.Label2;
     itemGrid79.FontColor = Color.Gainsboro;
     itemGrid79.FontStyle = FontStyle.Regular;
     itemGrid79.Height = 1f;
     itemGrid79.IsBlink = 0;
     itemGrid79.Name = "lb_flag";
     itemGrid79.Text = "Flag";
     itemGrid79.ValueFormat = FormatType.Text;
     itemGrid79.Visible = true;
     itemGrid79.Width = 22;
     itemGrid79.X = 0;
     itemGrid79.Y = 9.6f;
     itemGrid80.AdjustFontSize = 0f;
     itemGrid80.Alignment = StringAlignment.Near;
     itemGrid80.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid80.Changed = false;
     itemGrid80.FieldType = ItemType.Text;
     itemGrid80.FontColor = Color.Yellow;
     itemGrid80.FontStyle = FontStyle.Regular;
     itemGrid80.Height = 1f;
     itemGrid80.IsBlink = 0;
     itemGrid80.Name = "flag";
     itemGrid80.Text = "";
     itemGrid80.ValueFormat = FormatType.Text;
     itemGrid80.Visible = true;
     itemGrid80.Width = 23;
     itemGrid80.X = 22;
     itemGrid80.Y = 9.6f;
     itemGrid81.AdjustFontSize = 0f;
     itemGrid81.Alignment = StringAlignment.Near;
     itemGrid81.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid81.Changed = false;
     itemGrid81.FieldType = ItemType.Label2;
     itemGrid81.FontColor = Color.Gainsboro;
     itemGrid81.FontStyle = FontStyle.Regular;
     itemGrid81.Height = 1f;
     itemGrid81.IsBlink = 0;
     itemGrid81.Name = "lb_hl52weel";
     itemGrid81.Text = "H/L 52W";
     itemGrid81.ValueFormat = FormatType.Text;
     itemGrid81.Visible = true;
     itemGrid81.Width = 22;
     itemGrid81.X = 45;
     itemGrid81.Y = 3.6f;
     itemGrid82.AdjustFontSize = -1f;
     itemGrid82.Alignment = StringAlignment.Near;
     itemGrid82.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid82.Changed = false;
     itemGrid82.FieldType = ItemType.Text;
     itemGrid82.FontColor = Color.White;
     itemGrid82.FontStyle = FontStyle.Regular;
     itemGrid82.Height = 1f;
     itemGrid82.IsBlink = 0;
     itemGrid82.Name = "h52w";
     itemGrid82.Text = "";
     itemGrid82.ValueFormat = FormatType.Price;
     itemGrid82.Visible = true;
     itemGrid82.Width = 14;
     itemGrid82.X = 67;
     itemGrid82.Y = 3.6f;
     itemGrid83.AdjustFontSize = 0f;
     itemGrid83.Alignment = StringAlignment.Center;
     itemGrid83.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid83.Changed = false;
     itemGrid83.FieldType = ItemType.Label;
     itemGrid83.FontColor = Color.Gainsboro;
     itemGrid83.FontStyle = FontStyle.Regular;
     itemGrid83.Height = 1f;
     itemGrid83.IsBlink = 0;
     itemGrid83.Name = "lb2";
     itemGrid83.Text = "/";
     itemGrid83.ValueFormat = FormatType.Label;
     itemGrid83.Visible = true;
     itemGrid83.Width = 3;
     itemGrid83.X = 81;
     itemGrid83.Y = 3.6f;
     itemGrid84.AdjustFontSize = -1f;
     itemGrid84.Alignment = StringAlignment.Near;
     itemGrid84.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid84.Changed = false;
     itemGrid84.FieldType = ItemType.Text;
     itemGrid84.FontColor = Color.White;
     itemGrid84.FontStyle = FontStyle.Regular;
     itemGrid84.Height = 1f;
     itemGrid84.IsBlink = 0;
     itemGrid84.Name = "l52w";
     itemGrid84.Text = "";
     itemGrid84.ValueFormat = FormatType.Price;
     itemGrid84.Visible = true;
     itemGrid84.Width = 16;
     itemGrid84.X = 84;
     itemGrid84.Y = 3.6f;
     this.intzaInfo.Items.Add(itemGrid43);
     this.intzaInfo.Items.Add(itemGrid44);
     this.intzaInfo.Items.Add(itemGrid45);
     this.intzaInfo.Items.Add(itemGrid46);
     this.intzaInfo.Items.Add(itemGrid47);
     this.intzaInfo.Items.Add(itemGrid48);
     this.intzaInfo.Items.Add(itemGrid49);
     this.intzaInfo.Items.Add(itemGrid50);
     this.intzaInfo.Items.Add(itemGrid51);
     this.intzaInfo.Items.Add(itemGrid52);
     this.intzaInfo.Items.Add(itemGrid53);
     this.intzaInfo.Items.Add(itemGrid54);
     this.intzaInfo.Items.Add(itemGrid55);
     this.intzaInfo.Items.Add(itemGrid56);
     this.intzaInfo.Items.Add(itemGrid57);
     this.intzaInfo.Items.Add(itemGrid58);
     this.intzaInfo.Items.Add(itemGrid59);
     this.intzaInfo.Items.Add(itemGrid60);
     this.intzaInfo.Items.Add(itemGrid61);
     this.intzaInfo.Items.Add(itemGrid62);
     this.intzaInfo.Items.Add(itemGrid63);
     this.intzaInfo.Items.Add(itemGrid64);
     this.intzaInfo.Items.Add(itemGrid65);
     this.intzaInfo.Items.Add(itemGrid66);
     this.intzaInfo.Items.Add(itemGrid67);
     this.intzaInfo.Items.Add(itemGrid68);
     this.intzaInfo.Items.Add(itemGrid69);
     this.intzaInfo.Items.Add(itemGrid70);
     this.intzaInfo.Items.Add(itemGrid71);
     this.intzaInfo.Items.Add(itemGrid72);
     this.intzaInfo.Items.Add(itemGrid73);
     this.intzaInfo.Items.Add(itemGrid74);
     this.intzaInfo.Items.Add(itemGrid75);
     this.intzaInfo.Items.Add(itemGrid76);
     this.intzaInfo.Items.Add(itemGrid77);
     this.intzaInfo.Items.Add(itemGrid78);
     this.intzaInfo.Items.Add(itemGrid79);
     this.intzaInfo.Items.Add(itemGrid80);
     this.intzaInfo.Items.Add(itemGrid81);
     this.intzaInfo.Items.Add(itemGrid82);
     this.intzaInfo.Items.Add(itemGrid83);
     this.intzaInfo.Items.Add(itemGrid84);
     this.intzaInfo.LineColor = Color.Red;
     this.intzaInfo.Location = new Point(253, 26);
     this.intzaInfo.Margin = new Padding(2);
     this.intzaInfo.Name = "intzaInfo";
     this.intzaInfo.Size = new Size(265, 164);
     this.intzaInfo.TabIndex = 61;
     this.intzaInfo.TabStop = false;
     this.intzaInfo.ItemDragDrop += new IntzaCustomGrid.ItemDragDropEventHandler(this.intzaInfo_ItemDragDrop);
     this.intzaLS.AllowDrop = true;
     this.intzaLS.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaLS.CanBlink = true;
     this.intzaLS.CanDrag = false;
     this.intzaLS.CanGetMouseMove = false;
     columnItem49.Alignment = StringAlignment.Center;
     columnItem49.BackColor = Color.FromArgb(64, 64, 64);
     columnItem49.ColumnAlignment = StringAlignment.Center;
     columnItem49.FontColor = Color.LightGray;
     columnItem49.MyStyle = FontStyle.Regular;
     columnItem49.Name = "side";
     columnItem49.Text = "B/S";
     columnItem49.ValueFormat = FormatType.Text;
     columnItem49.Visible = true;
     columnItem49.Width = 13;
     columnItem50.Alignment = StringAlignment.Far;
     columnItem50.BackColor = Color.FromArgb(64, 64, 64);
     columnItem50.ColumnAlignment = StringAlignment.Center;
     columnItem50.FontColor = Color.LightGray;
     columnItem50.MyStyle = FontStyle.Regular;
     columnItem50.Name = "volume";
     columnItem50.Text = "Volume";
     columnItem50.ValueFormat = FormatType.Volume;
     columnItem50.Visible = true;
     columnItem50.Width = 36;
     columnItem51.Alignment = StringAlignment.Far;
     columnItem51.BackColor = Color.FromArgb(64, 64, 64);
     columnItem51.ColumnAlignment = StringAlignment.Center;
     columnItem51.FontColor = Color.LightGray;
     columnItem51.MyStyle = FontStyle.Regular;
     columnItem51.Name = "price";
     columnItem51.Text = "Price";
     columnItem51.ValueFormat = FormatType.Text;
     columnItem51.Visible = true;
     columnItem51.Width = 24;
     columnItem52.Alignment = StringAlignment.Far;
     columnItem52.BackColor = Color.FromArgb(64, 64, 64);
     columnItem52.ColumnAlignment = StringAlignment.Center;
     columnItem52.FontColor = Color.LightGray;
     columnItem52.MyStyle = FontStyle.Regular;
     columnItem52.Name = "time";
     columnItem52.Text = "Time";
     columnItem52.ValueFormat = FormatType.Text;
     columnItem52.Visible = true;
     columnItem52.Width = 27;
     this.intzaLS.Columns.Add(columnItem49);
     this.intzaLS.Columns.Add(columnItem50);
     this.intzaLS.Columns.Add(columnItem51);
     this.intzaLS.Columns.Add(columnItem52);
     this.intzaLS.CurrentScroll = 0;
     this.intzaLS.FocusItemIndex = -1;
     this.intzaLS.ForeColor = Color.Black;
     this.intzaLS.GridColor = Color.FromArgb(30, 30, 30);
     this.intzaLS.HeaderPctHeight = 80f;
     this.intzaLS.IsAutoRepaint = true;
     this.intzaLS.IsDrawFullRow = true;
     this.intzaLS.IsDrawGrid = false;
     this.intzaLS.IsDrawHeader = true;
     this.intzaLS.IsScrollable = false;
     this.intzaLS.Location = new Point(575, 29);
     this.intzaLS.MainColumn = "";
     this.intzaLS.Margin = new Padding(2);
     this.intzaLS.Name = "intzaLS";
     this.intzaLS.Rows = 10;
     this.intzaLS.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaLS.RowSelectType = 0;
     this.intzaLS.RowsVisible = 10;
     this.intzaLS.Size = new Size(121, 77);
     this.intzaLS.SortColumnName = "";
     this.intzaLS.SortType = SortType.Desc;
     this.intzaLS.TabIndex = 85;
     this.intzaLS.ItemDragDrop += new SortGrid.ItemDragDropEventHandler(this.intzaLS2_ItemDragDrop);
     this.intzaBF.AllowDrop = true;
     this.intzaBF.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaBF.CanDrag = false;
     this.intzaBF.IsAutoRepaint = true;
     this.intzaBF.IsDroped = false;
     itemGrid85.AdjustFontSize = 0f;
     itemGrid85.Alignment = StringAlignment.Near;
     itemGrid85.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid85.Changed = false;
     itemGrid85.FieldType = ItemType.Text;
     itemGrid85.FontColor = Color.White;
     itemGrid85.FontStyle = FontStyle.Regular;
     itemGrid85.Height = 1f;
     itemGrid85.IsBlink = 0;
     itemGrid85.Name = "item";
     itemGrid85.Text = "0";
     itemGrid85.ValueFormat = FormatType.BidOfferPct;
     itemGrid85.Visible = true;
     itemGrid85.Width = 100;
     itemGrid85.X = 0;
     itemGrid85.Y = 0f;
     this.intzaBF.Items.Add(itemGrid85);
     this.intzaBF.LineColor = Color.Red;
     this.intzaBF.Location = new Point(2, 107);
     this.intzaBF.Name = "intzaBF";
     this.intzaBF.Size = new Size(221, 17);
     this.intzaBF.TabIndex = 83;
     this.intzaTP.AllowDrop = true;
     this.intzaTP.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaTP.CanBlink = true;
     this.intzaTP.CanDrag = false;
     this.intzaTP.CanGetMouseMove = false;
     columnItem53.Alignment = StringAlignment.Far;
     columnItem53.BackColor = Color.FromArgb(45, 45, 45);
     columnItem53.ColumnAlignment = StringAlignment.Center;
     columnItem53.FontColor = Color.LightGray;
     columnItem53.MyStyle = FontStyle.Regular;
     columnItem53.Name = "bidvolume";
     columnItem53.Text = "Volume";
     columnItem53.ValueFormat = FormatType.BidOfferVolume;
     columnItem53.Visible = true;
     columnItem53.Width = 31;
     columnItem54.Alignment = StringAlignment.Far;
     columnItem54.BackColor = Color.FromArgb(45, 45, 45);
     columnItem54.ColumnAlignment = StringAlignment.Center;
     columnItem54.FontColor = Color.LightGray;
     columnItem54.MyStyle = FontStyle.Regular;
     columnItem54.Name = "bid";
     columnItem54.Text = "Bid";
     columnItem54.ValueFormat = FormatType.Text;
     columnItem54.Visible = true;
     columnItem54.Width = 19;
     columnItem55.Alignment = StringAlignment.Far;
     columnItem55.BackColor = Color.FromArgb(45, 45, 45);
     columnItem55.ColumnAlignment = StringAlignment.Center;
     columnItem55.FontColor = Color.LightGray;
     columnItem55.MyStyle = FontStyle.Regular;
     columnItem55.Name = "offer";
     columnItem55.Text = "Offer";
     columnItem55.ValueFormat = FormatType.Text;
     columnItem55.Visible = true;
     columnItem55.Width = 19;
     columnItem56.Alignment = StringAlignment.Far;
     columnItem56.BackColor = Color.FromArgb(45, 45, 45);
     columnItem56.ColumnAlignment = StringAlignment.Center;
     columnItem56.FontColor = Color.LightGray;
     columnItem56.MyStyle = FontStyle.Regular;
     columnItem56.Name = "offervolume";
     columnItem56.Text = "Volume";
     columnItem56.ValueFormat = FormatType.BidOfferVolume;
     columnItem56.Visible = true;
     columnItem56.Width = 31;
     this.intzaTP.Columns.Add(columnItem53);
     this.intzaTP.Columns.Add(columnItem54);
     this.intzaTP.Columns.Add(columnItem55);
     this.intzaTP.Columns.Add(columnItem56);
     this.intzaTP.CurrentScroll = 0;
     this.intzaTP.FocusItemIndex = -1;
     this.intzaTP.ForeColor = Color.Black;
     this.intzaTP.GridColor = Color.FromArgb(20, 20, 20);
     this.intzaTP.HeaderPctHeight = 80f;
     this.intzaTP.IsAutoRepaint = true;
     this.intzaTP.IsDrawFullRow = false;
     this.intzaTP.IsDrawGrid = false;
     this.intzaTP.IsDrawHeader = true;
     this.intzaTP.IsScrollable = false;
     this.intzaTP.Location = new Point(30, 26);
     this.intzaTP.MainColumn = "";
     this.intzaTP.Margin = new Padding(2);
     this.intzaTP.Name = "intzaTP";
     this.intzaTP.Rows = 5;
     this.intzaTP.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaTP.RowSelectType = 0;
     this.intzaTP.RowsVisible = 5;
     this.intzaTP.Size = new Size(218, 80);
     this.intzaTP.SortColumnName = "";
     this.intzaTP.SortType = SortType.Desc;
     this.intzaTP.TabIndex = 86;
     this.intzaTP.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaTP_TableMouseClick);
     this.intzaTP.ItemDragDrop += new SortGrid.ItemDragDropEventHandler(this.intzaLS2_ItemDragDrop);
     this.toolTip1.AutoPopDelay = 5000;
     this.toolTip1.InitialDelay = 300;
     this.toolTip1.IsBalloon = true;
     this.toolTip1.ReshowDelay = 500;
     this.toolTip1.ShowAlways = true;
     this.toolTip1.ToolTipIcon = ToolTipIcon.Info;
     this.toolTip1.ToolTipTitle = "Info guide";
     clsPermission.DisplayBuySell = enumDisplayBuySell.Yes;
     clsPermission.HistoricalDay = 30.0;
     clsPermission.Permission = enumPermission.Visible;
     clsPermission.VolType = null;
     clsPermission.WordingType = null;
     this.wcGraphVolume.ActiveSET = clsPermission;
     clsPermission2.DisplayBuySell = enumDisplayBuySell.Yes;
     clsPermission2.HistoricalDay = 30.0;
     clsPermission2.Permission = enumPermission.Visible;
     clsPermission2.VolType = null;
     clsPermission2.WordingType = null;
     this.wcGraphVolume.ActiveTFEX = clsPermission2;
     this.wcGraphVolume.BackColor = Color.FromArgb(30, 30, 30);
     this.wcGraphVolume.ColorBg = Color.FromArgb(30, 30, 30);
     this.wcGraphVolume.ColorBuy = Color.Lime;
     this.wcGraphVolume.ColorCeiling = Color.Aqua;
     this.wcGraphVolume.ColorDown = Color.Red;
     this.wcGraphVolume.ColorFloor = Color.Fuchsia;
     this.wcGraphVolume.ColorGrid = Color.DarkGray;
     this.wcGraphVolume.ColorNoChg = Color.Yellow;
     this.wcGraphVolume.ColorSell = Color.Red;
     this.wcGraphVolume.ColorUp = Color.Lime;
     this.wcGraphVolume.ColorValue = Color.White;
     this.wcGraphVolume.ColorVolume = Color.Yellow;
     this.wcGraphVolume.CurDate = null;
     this.wcGraphVolume.dictIPO = (Dictionary<string, float>)componentResourceManager.GetObject("wcGraphVolume.dictIPO");
     this.wcGraphVolume.Dock = DockStyle.Fill;
     this.wcGraphVolume.FontName = "Arial";
     this.wcGraphVolume.FontSize = 10f;
     this.wcGraphVolume.Location = new Point(1, 1);
     this.wcGraphVolume.Mode = 0;
     this.wcGraphVolume.Name = "wcGraphVolume";
     this.wcGraphVolume.Size = new Size(197, 69);
     this.wcGraphVolume.SymbolList = null;
     this.wcGraphVolume.SymbolType = enumType.eSet;
     this.wcGraphVolume.TabIndex = 91;
     this.wcGraphVolume.TextBoxBgColor = Color.Empty;
     this.wcGraphVolume.TextBoxForeColor = Color.Empty;
     this.wcGraphVolume.TypeMode = enumMode.Previous;
     this.panelVolAs.BackColor = Color.Gray;
     this.panelVolAs.Controls.Add(this.btnVolAsClose);
     this.panelVolAs.Controls.Add(this.wcGraphVolume);
     this.panelVolAs.Location = new Point(732, 41);
     this.panelVolAs.Name = "panelVolAs";
     this.panelVolAs.Padding = new Padding(1);
     this.panelVolAs.Size = new Size(199, 71);
     this.panelVolAs.TabIndex = 92;
     this.panelVolAs.Visible = false;
     this.btnVolAsClose.Anchor = (AnchorStyles.Top | AnchorStyles.Right);
     this.btnVolAsClose.BackColor = Color.FromArgb(30, 30, 30);
     this.btnVolAsClose.FlatAppearance.BorderSize = 0;
     this.btnVolAsClose.FlatAppearance.MouseDownBackColor = Color.FromArgb(255, 128, 0);
     this.btnVolAsClose.FlatAppearance.MouseOverBackColor = Color.Teal;
     this.btnVolAsClose.FlatStyle = FlatStyle.Flat;
     this.btnVolAsClose.ForeColor = SystemColors.ControlDark;
     this.btnVolAsClose.Image = (Image)componentResourceManager.GetObject("btnVolAsClose.Image");
     this.btnVolAsClose.Location = new Point(178, 1);
     this.btnVolAsClose.Name = "btnVolAsClose";
     this.btnVolAsClose.Size = new Size(18, 18);
     this.btnVolAsClose.TabIndex = 92;
     this.btnVolAsClose.UseVisualStyleBackColor = false;
     this.btnVolAsClose.Click += new EventHandler(this.btnVolAsClose_Click);
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = Color.FromArgb(20, 20, 20);
     base.ClientSize = new Size(963, 398);
     base.Controls.Add(this.intzaTP);
     base.Controls.Add(this.intzaInfoTFEX);
     base.Controls.Add(this.intzaInfo);
     base.Controls.Add(this.panelVolAs);
     base.Controls.Add(this.btnCloseChart);
     base.Controls.Add(this.intzaVolumeByBoard);
     base.Controls.Add(this.lbBBOLoading);
     base.Controls.Add(this.intzaLS);
     base.Controls.Add(this.intzaBF);
     base.Controls.Add(this.lbSplashInfo);
     base.Controls.Add(this.lbChartLoading);
     base.Controls.Add(this.pictureBox1);
     base.Controls.Add(this.panelBidOffer);
     base.Controls.Add(this.tStripMenu);
     base.FormBorderStyle = FormBorderStyle.FixedToolWindow;
     base.Margin = new Padding(4);
     base.Name = "frmMarketWatch";
     this.Text = "Market Watch";
     base.IDoShownDelay += new ClientBaseForm.OnShownDelayEventHandler(this.frmMarketWatch_IDoShownDelay);
     base.IDoLoadData += new ClientBaseForm.OnIDoLoadDataEventHandler(this.frmMarketWatch_IDoLoadData);
     base.IDoFontChanged += new ClientBaseForm.OnFontChangedEventHandler(this.frmMarketWatch_IDoFontChanged);
     base.IDoCustomSizeChanged += new ClientBaseForm.CustomSizeChangedEventHandler(this.frmMarketWatch_IDoCustomSizeChanged);
     base.IDoSymbolLinked += new ClientBaseForm.OnSymbolLinkEventHandler(this.frmMarketWatch_IDoSymbolLinked);
     base.IDoMainFormKeyUp += new ClientBaseForm.OnFormKeyUpEventHandler(this.frmMarketWatch_IDoMainFormKeyUp);
     base.IDoReActivated += new ClientBaseForm.OnReActiveEventHandler(this.frmMarketWatch_IDoReActivated);
     base.Controls.SetChildIndex(this.tStripMenu, 0);
     base.Controls.SetChildIndex(this.panelBidOffer, 0);
     base.Controls.SetChildIndex(this.pictureBox1, 0);
     base.Controls.SetChildIndex(this.lbChartLoading, 0);
     base.Controls.SetChildIndex(this.lbSplashInfo, 0);
     base.Controls.SetChildIndex(this.intzaBF, 0);
     base.Controls.SetChildIndex(this.intzaLS, 0);
     base.Controls.SetChildIndex(this.lbBBOLoading, 0);
     base.Controls.SetChildIndex(this.intzaVolumeByBoard, 0);
     base.Controls.SetChildIndex(this.btnCloseChart, 0);
     base.Controls.SetChildIndex(this.panelVolAs, 0);
     base.Controls.SetChildIndex(this.intzaInfo, 0);
     base.Controls.SetChildIndex(this.intzaInfoTFEX, 0);
     base.Controls.SetChildIndex(this.intzaTP, 0);
     this.tStripMenu.ResumeLayout(false);
     this.tStripMenu.PerformLayout();
     this.panelBidOffer.ResumeLayout(false);
     this.panelBidOffer.PerformLayout();
     this.tStripCP.ResumeLayout(false);
     this.tStripCP.PerformLayout();
     this.tStripBBO.ResumeLayout(false);
     this.tStripBBO.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((ISupportInitialize)this.pictureBox1).EndInit();
     this.contextLink.ResumeLayout(false);
     this.panelVolAs.ResumeLayout(false);
     base.ResumeLayout(false);
     base.PerformLayout();
 }
示例#28
0
 private void InitializeComponent()
 {
     ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmStockSummary));
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ColumnItem columnItem5 = new ColumnItem();
     ColumnItem columnItem6 = new ColumnItem();
     ColumnItem columnItem7 = new ColumnItem();
     ColumnItem columnItem8 = new ColumnItem();
     ItemGrid itemGrid = new ItemGrid();
     ItemGrid itemGrid2 = new ItemGrid();
     ItemGrid itemGrid3 = new ItemGrid();
     ItemGrid itemGrid4 = new ItemGrid();
     ItemGrid itemGrid5 = new ItemGrid();
     ItemGrid itemGrid6 = new ItemGrid();
     ItemGrid itemGrid7 = new ItemGrid();
     ItemGrid itemGrid8 = new ItemGrid();
     ItemGrid itemGrid9 = new ItemGrid();
     ItemGrid itemGrid10 = new ItemGrid();
     ItemGrid itemGrid11 = new ItemGrid();
     ItemGrid itemGrid12 = new ItemGrid();
     ItemGrid itemGrid13 = new ItemGrid();
     ItemGrid itemGrid14 = new ItemGrid();
     ItemGrid itemGrid15 = new ItemGrid();
     ItemGrid itemGrid16 = new ItemGrid();
     ItemGrid itemGrid17 = new ItemGrid();
     ItemGrid itemGrid18 = new ItemGrid();
     ItemGrid itemGrid19 = new ItemGrid();
     ItemGrid itemGrid20 = new ItemGrid();
     ColumnItem columnItem9 = new ColumnItem();
     ColumnItem columnItem10 = new ColumnItem();
     ColumnItem columnItem11 = new ColumnItem();
     ColumnItem columnItem12 = new ColumnItem();
     ColumnItem columnItem13 = new ColumnItem();
     ColumnItem columnItem14 = new ColumnItem();
     ColumnItem columnItem15 = new ColumnItem();
     ColumnItem columnItem16 = new ColumnItem();
     ColumnItem columnItem17 = new ColumnItem();
     ColumnItem columnItem18 = new ColumnItem();
     ColumnItem columnItem19 = new ColumnItem();
     ColumnItem columnItem20 = new ColumnItem();
     ColumnItem columnItem21 = new ColumnItem();
     ColumnItem columnItem22 = new ColumnItem();
     ColumnItem columnItem23 = new ColumnItem();
     ColumnItem columnItem24 = new ColumnItem();
     ColumnItem columnItem25 = new ColumnItem();
     ColumnItem columnItem26 = new ColumnItem();
     ColumnItem columnItem27 = new ColumnItem();
     ColumnItem columnItem28 = new ColumnItem();
     ColumnItem columnItem29 = new ColumnItem();
     ColumnItem columnItem30 = new ColumnItem();
     ColumnItem columnItem31 = new ColumnItem();
     ColumnItem columnItem32 = new ColumnItem();
     ItemGrid itemGrid21 = new ItemGrid();
     ItemGrid itemGrid22 = new ItemGrid();
     ItemGrid itemGrid23 = new ItemGrid();
     ItemGrid itemGrid24 = new ItemGrid();
     ItemGrid itemGrid25 = new ItemGrid();
     ItemGrid itemGrid26 = new ItemGrid();
     ItemGrid itemGrid27 = new ItemGrid();
     ItemGrid itemGrid28 = new ItemGrid();
     ItemGrid itemGrid29 = new ItemGrid();
     ItemGrid itemGrid30 = new ItemGrid();
     ItemGrid itemGrid31 = new ItemGrid();
     ItemGrid itemGrid32 = new ItemGrid();
     ItemGrid itemGrid33 = new ItemGrid();
     ItemGrid itemGrid34 = new ItemGrid();
     ItemGrid itemGrid35 = new ItemGrid();
     ItemGrid itemGrid36 = new ItemGrid();
     ItemGrid itemGrid37 = new ItemGrid();
     ItemGrid itemGrid38 = new ItemGrid();
     ItemGrid itemGrid39 = new ItemGrid();
     ItemGrid itemGrid40 = new ItemGrid();
     ItemGrid itemGrid41 = new ItemGrid();
     ItemGrid itemGrid42 = new ItemGrid();
     ItemGrid itemGrid43 = new ItemGrid();
     ItemGrid itemGrid44 = new ItemGrid();
     ItemGrid itemGrid45 = new ItemGrid();
     ItemGrid itemGrid46 = new ItemGrid();
     ItemGrid itemGrid47 = new ItemGrid();
     ItemGrid itemGrid48 = new ItemGrid();
     ItemGrid itemGrid49 = new ItemGrid();
     ItemGrid itemGrid50 = new ItemGrid();
     ItemGrid itemGrid51 = new ItemGrid();
     ItemGrid itemGrid52 = new ItemGrid();
     ItemGrid itemGrid53 = new ItemGrid();
     ItemGrid itemGrid54 = new ItemGrid();
     ItemGrid itemGrid55 = new ItemGrid();
     ItemGrid itemGrid56 = new ItemGrid();
     ItemGrid itemGrid57 = new ItemGrid();
     ItemGrid itemGrid58 = new ItemGrid();
     ItemGrid itemGrid59 = new ItemGrid();
     ItemGrid itemGrid60 = new ItemGrid();
     ItemGrid itemGrid61 = new ItemGrid();
     ItemGrid itemGrid62 = new ItemGrid();
     ItemGrid itemGrid63 = new ItemGrid();
     ItemGrid itemGrid64 = new ItemGrid();
     ItemGrid itemGrid65 = new ItemGrid();
     ItemGrid itemGrid66 = new ItemGrid();
     ItemGrid itemGrid67 = new ItemGrid();
     ItemGrid itemGrid68 = new ItemGrid();
     ItemGrid itemGrid69 = new ItemGrid();
     ItemGrid itemGrid70 = new ItemGrid();
     ItemGrid itemGrid71 = new ItemGrid();
     ItemGrid itemGrid72 = new ItemGrid();
     ItemGrid itemGrid73 = new ItemGrid();
     ItemGrid itemGrid74 = new ItemGrid();
     ItemGrid itemGrid75 = new ItemGrid();
     ItemGrid itemGrid76 = new ItemGrid();
     ItemGrid itemGrid77 = new ItemGrid();
     ItemGrid itemGrid78 = new ItemGrid();
     ItemGrid itemGrid79 = new ItemGrid();
     ItemGrid itemGrid80 = new ItemGrid();
     ItemGrid itemGrid81 = new ItemGrid();
     ItemGrid itemGrid82 = new ItemGrid();
     ItemGrid itemGrid83 = new ItemGrid();
     ItemGrid itemGrid84 = new ItemGrid();
     ItemGrid itemGrid85 = new ItemGrid();
     ItemGrid itemGrid86 = new ItemGrid();
     ItemGrid itemGrid87 = new ItemGrid();
     ItemGrid itemGrid88 = new ItemGrid();
     ItemGrid itemGrid89 = new ItemGrid();
     ItemGrid itemGrid90 = new ItemGrid();
     ItemGrid itemGrid91 = new ItemGrid();
     ItemGrid itemGrid92 = new ItemGrid();
     ItemGrid itemGrid93 = new ItemGrid();
     ItemGrid itemGrid94 = new ItemGrid();
     ItemGrid itemGrid95 = new ItemGrid();
     ItemGrid itemGrid96 = new ItemGrid();
     ItemGrid itemGrid97 = new ItemGrid();
     ItemGrid itemGrid98 = new ItemGrid();
     ItemGrid itemGrid99 = new ItemGrid();
     ItemGrid itemGrid100 = new ItemGrid();
     ItemGrid itemGrid101 = new ItemGrid();
     ItemGrid itemGrid102 = new ItemGrid();
     ItemGrid itemGrid103 = new ItemGrid();
     ItemGrid itemGrid104 = new ItemGrid();
     clsPermission clsPermission = new clsPermission();
     clsPermission clsPermission2 = new clsPermission();
     this.tStripMenu = new ToolStrip();
     this.toolStripLabel1 = new ToolStripLabel();
     this.tscbSelection = new ToolStripComboBox();
     this.toolStripSeparator1 = new ToolStripSeparator();
     this.tslblStockInPlayStock = new ToolStripLabel();
     this.tscbStock = new ToolStripComboBox();
     this.tsbtnStockInPlayPrevPage = new ToolStripButton();
     this.tsbtnStockInPlayNextPage = new ToolStripButton();
     this.tslbHour = new ToolStripLabel();
     this.tstxtSaleByTimeSearchTimeHour = new ToolStripTextBox();
     this.tslbMinute = new ToolStripLabel();
     this.tstxtSaleByTimeSearchTimeMinute = new ToolStripTextBox();
     this.tsbtnSaleByTimeClearTime2 = new ToolStripButton();
     this.tssepSaleByTime2 = new ToolStripSeparator();
     this.tsbtnSaleByTimeFirstPage = new ToolStripButton();
     this.tsbtnSaleByTimePrevPage = new ToolStripButton();
     this.tslblSaleByTimePageNo = new ToolStripLabel();
     this.tsbtnSaleByTimeNextPage = new ToolStripButton();
     this.intzaVolumeByBoard = new SortGrid();
     this.intzaLS = new SortGrid();
     this.intzaViewOddLotInfo = new IntzaCustomGrid();
     this.intzaSaleByTime = new SortGrid();
     this.intzaSaleByPrice = new SortGrid();
     this.intzaViewOddLot = new SortGrid();
     this.intzaStockInPlay = new SortGrid();
     this.intzaInfo = new IntzaCustomGrid();
     this.intzaInfoTFEX = new IntzaCustomGrid();
     this.wcGraphVolume = new ucVolumeAtPrice();
     this.tStripMenu.SuspendLayout();
     base.SuspendLayout();
     this.tStripMenu.AllowMerge = false;
     this.tStripMenu.BackColor = Color.FromArgb(30, 30, 30);
     this.tStripMenu.GripStyle = ToolStripGripStyle.Hidden;
     this.tStripMenu.Items.AddRange(new ToolStripItem[]
     {
         this.toolStripLabel1,
         this.tscbSelection,
         this.toolStripSeparator1,
         this.tslblStockInPlayStock,
         this.tscbStock,
         this.tsbtnStockInPlayPrevPage,
         this.tsbtnStockInPlayNextPage,
         this.tslbHour,
         this.tstxtSaleByTimeSearchTimeHour,
         this.tslbMinute,
         this.tstxtSaleByTimeSearchTimeMinute,
         this.tsbtnSaleByTimeClearTime2,
         this.tssepSaleByTime2,
         this.tsbtnSaleByTimeFirstPage,
         this.tsbtnSaleByTimePrevPage,
         this.tslblSaleByTimePageNo,
         this.tsbtnSaleByTimeNextPage
     });
     this.tStripMenu.Location = new Point(0, 0);
     this.tStripMenu.Name = "tStripMenu";
     this.tStripMenu.Padding = new Padding(1, 1, 1, 2);
     this.tStripMenu.RenderMode = ToolStripRenderMode.System;
     this.tStripMenu.Size = new Size(888, 26);
     this.tStripMenu.TabIndex = 17;
     this.tStripMenu.TabStop = true;
     this.toolStripLabel1.ForeColor = Color.LightGray;
     this.toolStripLabel1.Margin = new Padding(2, 1, 2, 2);
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new Size(33, 20);
     this.toolStripLabel1.Text = "Page";
     this.tscbSelection.BackColor = Color.FromArgb(30, 30, 30);
     this.tscbSelection.DropDownStyle = ComboBoxStyle.DropDownList;
     this.tscbSelection.ForeColor = Color.LightGray;
     this.tscbSelection.Items.AddRange(new object[]
     {
         "Stock in Play",
         "Sale by Price",
         "Sale by Time",
         "View Oddlot"
     });
     this.tscbSelection.Name = "tscbSelection";
     this.tscbSelection.Size = new Size(130, 23);
     this.tscbSelection.SelectedIndexChanged += new EventHandler(this.tscbSelection_SelectedIndexChanged);
     this.toolStripSeparator1.Margin = new Padding(5, 0, 5, 0);
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new Size(6, 23);
     this.tslblStockInPlayStock.BackColor = Color.Transparent;
     this.tslblStockInPlayStock.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tslblStockInPlayStock.ForeColor = Color.LightGray;
     this.tslblStockInPlayStock.Margin = new Padding(5, 1, 0, 2);
     this.tslblStockInPlayStock.Name = "tslblStockInPlayStock";
     this.tslblStockInPlayStock.Size = new Size(41, 20);
     this.tslblStockInPlayStock.Text = "Symbol";
     this.tscbStock.AutoCompleteSource = AutoCompleteSource.CustomSource;
     this.tscbStock.BackColor = Color.FromArgb(30, 30, 30);
     this.tscbStock.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.tscbStock.ForeColor = Color.Yellow;
     this.tscbStock.MaxLength = 25;
     this.tscbStock.Name = "tscbStock";
     this.tscbStock.Size = new Size(125, 23);
     this.tscbStock.SelectedIndexChanged += new EventHandler(this.tscbStock_SelectedIndexChanged);
     this.tscbStock.KeyUp += new KeyEventHandler(this.tscbStock_KeyUp);
     this.tscbStock.KeyDown += new KeyEventHandler(this.comboStock_KeyDown);
     this.tscbStock.KeyPress += new KeyPressEventHandler(this.tscbStock_KeyPress);
     this.tsbtnStockInPlayPrevPage.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tsbtnStockInPlayPrevPage.ForeColor = Color.LightGray;
     this.tsbtnStockInPlayPrevPage.Image = (Image)componentResourceManager.GetObject("tsbtnStockInPlayPrevPage.Image");
     this.tsbtnStockInPlayPrevPage.ImageTransparentColor = Color.Magenta;
     this.tsbtnStockInPlayPrevPage.Margin = new Padding(5, 1, 0, 2);
     this.tsbtnStockInPlayPrevPage.Name = "tsbtnStockInPlayPrevPage";
     this.tsbtnStockInPlayPrevPage.Size = new Size(69, 20);
     this.tsbtnStockInPlayPrevPage.Text = "Page Up";
     this.tsbtnStockInPlayPrevPage.ToolTipText = "Up Page";
     this.tsbtnStockInPlayPrevPage.Click += new EventHandler(this.tsbtnStockInPlayPrevPage_Click);
     this.tsbtnStockInPlayNextPage.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tsbtnStockInPlayNextPage.ForeColor = Color.LightGray;
     this.tsbtnStockInPlayNextPage.Image = (Image)componentResourceManager.GetObject("tsbtnStockInPlayNextPage.Image");
     this.tsbtnStockInPlayNextPage.ImageTransparentColor = Color.Magenta;
     this.tsbtnStockInPlayNextPage.Name = "tsbtnStockInPlayNextPage";
     this.tsbtnStockInPlayNextPage.Size = new Size(83, 20);
     this.tsbtnStockInPlayNextPage.Text = "Page Down";
     this.tsbtnStockInPlayNextPage.ToolTipText = "Down Page";
     this.tsbtnStockInPlayNextPage.Click += new EventHandler(this.tsbtnStockInPlayNextPage_Click);
     this.tslbHour.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tslbHour.ForeColor = Color.LightGray;
     this.tslbHour.Name = "tslbHour";
     this.tslbHour.Size = new Size(36, 20);
     this.tslbHour.Text = "Hour :";
     this.tstxtSaleByTimeSearchTimeHour.BackColor = Color.FromArgb(45, 45, 45);
     this.tstxtSaleByTimeSearchTimeHour.BorderStyle = BorderStyle.FixedSingle;
     this.tstxtSaleByTimeSearchTimeHour.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tstxtSaleByTimeSearchTimeHour.ForeColor = Color.LightGray;
     this.tstxtSaleByTimeSearchTimeHour.MaxLength = 2;
     this.tstxtSaleByTimeSearchTimeHour.Name = "tstxtSaleByTimeSearchTimeHour";
     this.tstxtSaleByTimeSearchTimeHour.Size = new Size(26, 23);
     this.tstxtSaleByTimeSearchTimeHour.TextBoxTextAlign = HorizontalAlignment.Center;
     this.tstxtSaleByTimeSearchTimeHour.ToolTipText = "{ เวลา ที่ต้องการค้นหา หน่วยเป็น ชม.}";
     this.tstxtSaleByTimeSearchTimeHour.KeyUp += new KeyEventHandler(this.tstxtSaleByTimeSearchTimeHour_KeyUp);
     this.tslbMinute.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tslbMinute.ForeColor = Color.LightGray;
     this.tslbMinute.Margin = new Padding(2, 1, 0, 2);
     this.tslbMinute.Name = "tslbMinute";
     this.tslbMinute.Size = new Size(45, 20);
     this.tslbMinute.Text = "Minute :";
     this.tstxtSaleByTimeSearchTimeMinute.BackColor = Color.FromArgb(45, 45, 45);
     this.tstxtSaleByTimeSearchTimeMinute.BorderStyle = BorderStyle.FixedSingle;
     this.tstxtSaleByTimeSearchTimeMinute.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tstxtSaleByTimeSearchTimeMinute.ForeColor = Color.LightGray;
     this.tstxtSaleByTimeSearchTimeMinute.MaxLength = 2;
     this.tstxtSaleByTimeSearchTimeMinute.Name = "tstxtSaleByTimeSearchTimeMinute";
     this.tstxtSaleByTimeSearchTimeMinute.Size = new Size(26, 23);
     this.tstxtSaleByTimeSearchTimeMinute.TextBoxTextAlign = HorizontalAlignment.Center;
     this.tstxtSaleByTimeSearchTimeMinute.ToolTipText = "{ เวลา ที่ต้องการค้นหา หน่วยเป็น นาที}";
     this.tstxtSaleByTimeSearchTimeMinute.KeyUp += new KeyEventHandler(this.tstxtSaleByTimeSearchTimeMinute_KeyUp);
     this.tsbtnSaleByTimeClearTime2.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnSaleByTimeClearTime2.ForeColor = Color.LightGray;
     this.tsbtnSaleByTimeClearTime2.ImageTransparentColor = Color.Magenta;
     this.tsbtnSaleByTimeClearTime2.Margin = new Padding(5, 1, 3, 2);
     this.tsbtnSaleByTimeClearTime2.Name = "tsbtnSaleByTimeClearTime2";
     this.tsbtnSaleByTimeClearTime2.Size = new Size(38, 20);
     this.tsbtnSaleByTimeClearTime2.Text = "Clear";
     this.tsbtnSaleByTimeClearTime2.ToolTipText = "Clear Filter";
     this.tsbtnSaleByTimeClearTime2.Click += new EventHandler(this.tsbtnSaleByTimeClearTime_Click);
     this.tssepSaleByTime2.Margin = new Padding(2, 0, 5, 0);
     this.tssepSaleByTime2.Name = "tssepSaleByTime2";
     this.tssepSaleByTime2.Size = new Size(6, 23);
     this.tsbtnSaleByTimeFirstPage.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnSaleByTimeFirstPage.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tsbtnSaleByTimeFirstPage.Image = Resources.MoveFirstHS;
     this.tsbtnSaleByTimeFirstPage.ImageTransparentColor = Color.Magenta;
     this.tsbtnSaleByTimeFirstPage.Name = "tsbtnSaleByTimeFirstPage";
     this.tsbtnSaleByTimeFirstPage.Size = new Size(23, 20);
     this.tsbtnSaleByTimeFirstPage.ToolTipText = "First";
     this.tsbtnSaleByTimeFirstPage.Click += new EventHandler(this.tsbtnSaleByTimeFirstPage_Click);
     this.tsbtnSaleByTimePrevPage.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnSaleByTimePrevPage.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tsbtnSaleByTimePrevPage.Image = Resources.MovePreviousHS;
     this.tsbtnSaleByTimePrevPage.ImageTransparentColor = Color.Magenta;
     this.tsbtnSaleByTimePrevPage.Name = "tsbtnSaleByTimePrevPage";
     this.tsbtnSaleByTimePrevPage.Size = new Size(23, 20);
     this.tsbtnSaleByTimePrevPage.ToolTipText = "Previous";
     this.tsbtnSaleByTimePrevPage.Click += new EventHandler(this.tsbtnSaleByTimePrevPage_Click);
     this.tslblSaleByTimePageNo.BackColor = Color.Transparent;
     this.tslblSaleByTimePageNo.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tslblSaleByTimePageNo.ForeColor = Color.LightGray;
     this.tslblSaleByTimePageNo.Name = "tslblSaleByTimePageNo";
     this.tslblSaleByTimePageNo.Size = new Size(13, 20);
     this.tslblSaleByTimePageNo.Text = "0";
     this.tsbtnSaleByTimeNextPage.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnSaleByTimeNextPage.Font = new Font("Microsoft Sans Serif", 8.25f);
     this.tsbtnSaleByTimeNextPage.Image = Resources.MoveNextHS;
     this.tsbtnSaleByTimeNextPage.ImageTransparentColor = Color.Magenta;
     this.tsbtnSaleByTimeNextPage.Name = "tsbtnSaleByTimeNextPage";
     this.tsbtnSaleByTimeNextPage.Size = new Size(23, 20);
     this.tsbtnSaleByTimeNextPage.ToolTipText = "Next";
     this.tsbtnSaleByTimeNextPage.Click += new EventHandler(this.tsbtnSaleByTimeNextPage_Click);
     this.intzaVolumeByBoard.AllowDrop = true;
     this.intzaVolumeByBoard.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaVolumeByBoard.CanBlink = true;
     this.intzaVolumeByBoard.CanDrag = false;
     this.intzaVolumeByBoard.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Near;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "h1";
     columnItem.Text = "";
     columnItem.ValueFormat = FormatType.Label;
     columnItem.Visible = true;
     columnItem.Width = 17;
     columnItem2.Alignment = StringAlignment.Far;
     columnItem2.BackColor = Color.DimGray;
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.White;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "deals";
     columnItem2.Text = "Deals";
     columnItem2.ValueFormat = FormatType.Volume;
     columnItem2.Visible = true;
     columnItem2.Width = 20;
     columnItem3.Alignment = StringAlignment.Far;
     columnItem3.BackColor = Color.DimGray;
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.White;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "volume";
     columnItem3.Text = "Volume";
     columnItem3.ValueFormat = FormatType.Volume;
     columnItem3.Visible = true;
     columnItem3.Width = 29;
     columnItem4.Alignment = StringAlignment.Far;
     columnItem4.BackColor = Color.DimGray;
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.White;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "value";
     columnItem4.Text = "Value";
     columnItem4.ValueFormat = FormatType.Text;
     columnItem4.Visible = true;
     columnItem4.Width = 34;
     this.intzaVolumeByBoard.Columns.Add(columnItem);
     this.intzaVolumeByBoard.Columns.Add(columnItem2);
     this.intzaVolumeByBoard.Columns.Add(columnItem3);
     this.intzaVolumeByBoard.Columns.Add(columnItem4);
     this.intzaVolumeByBoard.CurrentScroll = 0;
     this.intzaVolumeByBoard.FocusItemIndex = -1;
     this.intzaVolumeByBoard.ForeColor = Color.Black;
     this.intzaVolumeByBoard.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaVolumeByBoard.HeaderPctHeight = 80f;
     this.intzaVolumeByBoard.IsAutoRepaint = true;
     this.intzaVolumeByBoard.IsDrawFullRow = false;
     this.intzaVolumeByBoard.IsDrawGrid = false;
     this.intzaVolumeByBoard.IsDrawHeader = true;
     this.intzaVolumeByBoard.IsScrollable = false;
     this.intzaVolumeByBoard.Location = new Point(612, 278);
     this.intzaVolumeByBoard.MainColumn = "";
     this.intzaVolumeByBoard.Margin = new Padding(0);
     this.intzaVolumeByBoard.Name = "intzaVolumeByBoard";
     this.intzaVolumeByBoard.Rows = 2;
     this.intzaVolumeByBoard.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaVolumeByBoard.RowSelectType = 0;
     this.intzaVolumeByBoard.RowsVisible = 2;
     this.intzaVolumeByBoard.Size = new Size(265, 48);
     this.intzaVolumeByBoard.SortColumnName = "";
     this.intzaVolumeByBoard.SortType = SortType.Desc;
     this.intzaVolumeByBoard.TabIndex = 87;
     this.intzaLS.AllowDrop = true;
     this.intzaLS.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaLS.CanBlink = true;
     this.intzaLS.CanDrag = false;
     this.intzaLS.CanGetMouseMove = false;
     columnItem5.Alignment = StringAlignment.Center;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.LightGray;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "side";
     columnItem5.Text = "B/S";
     columnItem5.ValueFormat = FormatType.Text;
     columnItem5.Visible = true;
     columnItem5.Width = 13;
     columnItem6.Alignment = StringAlignment.Far;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.ColumnAlignment = StringAlignment.Center;
     columnItem6.FontColor = Color.LightGray;
     columnItem6.MyStyle = FontStyle.Regular;
     columnItem6.Name = "volume";
     columnItem6.Text = "Volume";
     columnItem6.ValueFormat = FormatType.Volume;
     columnItem6.Visible = true;
     columnItem6.Width = 36;
     columnItem7.Alignment = StringAlignment.Far;
     columnItem7.BackColor = Color.FromArgb(64, 64, 64);
     columnItem7.ColumnAlignment = StringAlignment.Center;
     columnItem7.FontColor = Color.LightGray;
     columnItem7.MyStyle = FontStyle.Regular;
     columnItem7.Name = "price";
     columnItem7.Text = "Price";
     columnItem7.ValueFormat = FormatType.Text;
     columnItem7.Visible = true;
     columnItem7.Width = 24;
     columnItem8.Alignment = StringAlignment.Far;
     columnItem8.BackColor = Color.FromArgb(64, 64, 64);
     columnItem8.ColumnAlignment = StringAlignment.Center;
     columnItem8.FontColor = Color.LightGray;
     columnItem8.MyStyle = FontStyle.Regular;
     columnItem8.Name = "time";
     columnItem8.Text = "Time";
     columnItem8.ValueFormat = FormatType.Text;
     columnItem8.Visible = true;
     columnItem8.Width = 27;
     this.intzaLS.Columns.Add(columnItem5);
     this.intzaLS.Columns.Add(columnItem6);
     this.intzaLS.Columns.Add(columnItem7);
     this.intzaLS.Columns.Add(columnItem8);
     this.intzaLS.CurrentScroll = 0;
     this.intzaLS.FocusItemIndex = -1;
     this.intzaLS.ForeColor = Color.Black;
     this.intzaLS.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaLS.HeaderPctHeight = 80f;
     this.intzaLS.IsAutoRepaint = true;
     this.intzaLS.IsDrawFullRow = true;
     this.intzaLS.IsDrawGrid = false;
     this.intzaLS.IsDrawHeader = true;
     this.intzaLS.IsScrollable = false;
     this.intzaLS.Location = new Point(612, 199);
     this.intzaLS.MainColumn = "";
     this.intzaLS.Margin = new Padding(2);
     this.intzaLS.Name = "intzaLS";
     this.intzaLS.Rows = 0;
     this.intzaLS.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaLS.RowSelectType = 0;
     this.intzaLS.RowsVisible = 0;
     this.intzaLS.Size = new Size(265, 77);
     this.intzaLS.SortColumnName = "";
     this.intzaLS.SortType = SortType.Desc;
     this.intzaLS.TabIndex = 86;
     this.intzaViewOddLotInfo.AllowDrop = true;
     this.intzaViewOddLotInfo.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaViewOddLotInfo.CanDrag = false;
     this.intzaViewOddLotInfo.IsAutoRepaint = true;
     this.intzaViewOddLotInfo.IsDroped = false;
     itemGrid.AdjustFontSize = 0f;
     itemGrid.Alignment = StringAlignment.Near;
     itemGrid.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid.Changed = false;
     itemGrid.FieldType = ItemType.Label2;
     itemGrid.FontColor = Color.WhiteSmoke;
     itemGrid.FontStyle = FontStyle.Regular;
     itemGrid.Height = 1f;
     itemGrid.IsBlink = 0;
     itemGrid.Name = "lboddavg";
     itemGrid.Text = "Oddlot Avg";
     itemGrid.ValueFormat = FormatType.Text;
     itemGrid.Visible = true;
     itemGrid.Width = 25;
     itemGrid.X = 0;
     itemGrid.Y = 0f;
     itemGrid2.AdjustFontSize = 0f;
     itemGrid2.Alignment = StringAlignment.Near;
     itemGrid2.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid2.Changed = false;
     itemGrid2.FieldType = ItemType.Text;
     itemGrid2.FontColor = Color.White;
     itemGrid2.FontStyle = FontStyle.Regular;
     itemGrid2.Height = 1f;
     itemGrid2.IsBlink = 0;
     itemGrid2.Name = "oddavg";
     itemGrid2.Text = "";
     itemGrid2.ValueFormat = FormatType.Text;
     itemGrid2.Visible = true;
     itemGrid2.Width = 25;
     itemGrid2.X = 25;
     itemGrid2.Y = 0f;
     itemGrid3.AdjustFontSize = 0f;
     itemGrid3.Alignment = StringAlignment.Near;
     itemGrid3.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid3.Changed = false;
     itemGrid3.FieldType = ItemType.Label2;
     itemGrid3.FontColor = Color.WhiteSmoke;
     itemGrid3.FontStyle = FontStyle.Regular;
     itemGrid3.Height = 1f;
     itemGrid3.IsBlink = 0;
     itemGrid3.Name = "lbodddeal";
     itemGrid3.Text = "Oddlot Deal";
     itemGrid3.ValueFormat = FormatType.Text;
     itemGrid3.Visible = true;
     itemGrid3.Width = 25;
     itemGrid3.X = 0;
     itemGrid3.Y = 1f;
     itemGrid4.AdjustFontSize = 0f;
     itemGrid4.Alignment = StringAlignment.Near;
     itemGrid4.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid4.Changed = false;
     itemGrid4.FieldType = ItemType.Text;
     itemGrid4.FontColor = Color.Yellow;
     itemGrid4.FontStyle = FontStyle.Regular;
     itemGrid4.Height = 1f;
     itemGrid4.IsBlink = 0;
     itemGrid4.Name = "odddeal";
     itemGrid4.Text = "";
     itemGrid4.ValueFormat = FormatType.Text;
     itemGrid4.Visible = true;
     itemGrid4.Width = 25;
     itemGrid4.X = 25;
     itemGrid4.Y = 1f;
     itemGrid5.AdjustFontSize = 0f;
     itemGrid5.Alignment = StringAlignment.Near;
     itemGrid5.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid5.Changed = false;
     itemGrid5.FieldType = ItemType.Label2;
     itemGrid5.FontColor = Color.WhiteSmoke;
     itemGrid5.FontStyle = FontStyle.Regular;
     itemGrid5.Height = 1f;
     itemGrid5.IsBlink = 0;
     itemGrid5.Name = "lboddvol";
     itemGrid5.Text = "Oddlot Volume";
     itemGrid5.ValueFormat = FormatType.Text;
     itemGrid5.Visible = true;
     itemGrid5.Width = 25;
     itemGrid5.X = 0;
     itemGrid5.Y = 2f;
     itemGrid6.AdjustFontSize = 0f;
     itemGrid6.Alignment = StringAlignment.Near;
     itemGrid6.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid6.Changed = false;
     itemGrid6.FieldType = ItemType.Text;
     itemGrid6.FontColor = Color.Yellow;
     itemGrid6.FontStyle = FontStyle.Regular;
     itemGrid6.Height = 1f;
     itemGrid6.IsBlink = 0;
     itemGrid6.Name = "oddvol";
     itemGrid6.Text = "";
     itemGrid6.ValueFormat = FormatType.Text;
     itemGrid6.Visible = true;
     itemGrid6.Width = 25;
     itemGrid6.X = 25;
     itemGrid6.Y = 2f;
     itemGrid7.AdjustFontSize = 0f;
     itemGrid7.Alignment = StringAlignment.Near;
     itemGrid7.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid7.Changed = false;
     itemGrid7.FieldType = ItemType.Label2;
     itemGrid7.FontColor = Color.WhiteSmoke;
     itemGrid7.FontStyle = FontStyle.Regular;
     itemGrid7.Height = 1f;
     itemGrid7.IsBlink = 0;
     itemGrid7.Name = "lboddvalue";
     itemGrid7.Text = "Oddlot Value";
     itemGrid7.ValueFormat = FormatType.Text;
     itemGrid7.Visible = true;
     itemGrid7.Width = 25;
     itemGrid7.X = 50;
     itemGrid7.Y = 2f;
     itemGrid8.AdjustFontSize = 0f;
     itemGrid8.Alignment = StringAlignment.Near;
     itemGrid8.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid8.Changed = false;
     itemGrid8.FieldType = ItemType.Text;
     itemGrid8.FontColor = Color.Yellow;
     itemGrid8.FontStyle = FontStyle.Regular;
     itemGrid8.Height = 1f;
     itemGrid8.IsBlink = 0;
     itemGrid8.Name = "oddval";
     itemGrid8.Text = "";
     itemGrid8.ValueFormat = FormatType.Text;
     itemGrid8.Visible = true;
     itemGrid8.Width = 25;
     itemGrid8.X = 75;
     itemGrid8.Y = 2f;
     itemGrid9.AdjustFontSize = 0f;
     itemGrid9.Alignment = StringAlignment.Near;
     itemGrid9.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid9.Changed = false;
     itemGrid9.FieldType = ItemType.Label2;
     itemGrid9.FontColor = Color.WhiteSmoke;
     itemGrid9.FontStyle = FontStyle.Regular;
     itemGrid9.Height = 1f;
     itemGrid9.IsBlink = 0;
     itemGrid9.Name = "lbceiling";
     itemGrid9.Text = "Ceiling";
     itemGrid9.ValueFormat = FormatType.Text;
     itemGrid9.Visible = true;
     itemGrid9.Width = 25;
     itemGrid9.X = 0;
     itemGrid9.Y = 3f;
     itemGrid10.AdjustFontSize = 0f;
     itemGrid10.Alignment = StringAlignment.Near;
     itemGrid10.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid10.Changed = false;
     itemGrid10.FieldType = ItemType.Text;
     itemGrid10.FontColor = Color.Cyan;
     itemGrid10.FontStyle = FontStyle.Regular;
     itemGrid10.Height = 1f;
     itemGrid10.IsBlink = 0;
     itemGrid10.Name = "ceiling";
     itemGrid10.Text = "";
     itemGrid10.ValueFormat = FormatType.Price;
     itemGrid10.Visible = true;
     itemGrid10.Width = 25;
     itemGrid10.X = 25;
     itemGrid10.Y = 3f;
     itemGrid11.AdjustFontSize = 0f;
     itemGrid11.Alignment = StringAlignment.Near;
     itemGrid11.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid11.Changed = false;
     itemGrid11.FieldType = ItemType.Label2;
     itemGrid11.FontColor = Color.WhiteSmoke;
     itemGrid11.FontStyle = FontStyle.Regular;
     itemGrid11.Height = 1f;
     itemGrid11.IsBlink = 0;
     itemGrid11.Name = "lbfloor";
     itemGrid11.Text = "Floor";
     itemGrid11.ValueFormat = FormatType.Text;
     itemGrid11.Visible = true;
     itemGrid11.Width = 25;
     itemGrid11.X = 50;
     itemGrid11.Y = 3f;
     itemGrid12.AdjustFontSize = 0f;
     itemGrid12.Alignment = StringAlignment.Near;
     itemGrid12.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid12.Changed = false;
     itemGrid12.FieldType = ItemType.Text;
     itemGrid12.FontColor = Color.Magenta;
     itemGrid12.FontStyle = FontStyle.Regular;
     itemGrid12.Height = 1f;
     itemGrid12.IsBlink = 0;
     itemGrid12.Name = "floor";
     itemGrid12.Text = "";
     itemGrid12.ValueFormat = FormatType.Price;
     itemGrid12.Visible = true;
     itemGrid12.Width = 25;
     itemGrid12.X = 75;
     itemGrid12.Y = 3f;
     itemGrid13.AdjustFontSize = 0f;
     itemGrid13.Alignment = StringAlignment.Near;
     itemGrid13.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid13.Changed = false;
     itemGrid13.FieldType = ItemType.Label2;
     itemGrid13.FontColor = Color.WhiteSmoke;
     itemGrid13.FontStyle = FontStyle.Regular;
     itemGrid13.Height = 1f;
     itemGrid13.IsBlink = 0;
     itemGrid13.Name = "lbTotOddMktVol";
     itemGrid13.Text = "Total Odd Mkt Volume";
     itemGrid13.ValueFormat = FormatType.Text;
     itemGrid13.Visible = true;
     itemGrid13.Width = 30;
     itemGrid13.X = 50;
     itemGrid13.Y = 0f;
     itemGrid14.AdjustFontSize = 0f;
     itemGrid14.Alignment = StringAlignment.Near;
     itemGrid14.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid14.Changed = false;
     itemGrid14.FieldType = ItemType.Text;
     itemGrid14.FontColor = Color.Yellow;
     itemGrid14.FontStyle = FontStyle.Regular;
     itemGrid14.Height = 1f;
     itemGrid14.IsBlink = 0;
     itemGrid14.Name = "totvolume";
     itemGrid14.Text = "";
     itemGrid14.ValueFormat = FormatType.Volume;
     itemGrid14.Visible = true;
     itemGrid14.Width = 20;
     itemGrid14.X = 80;
     itemGrid14.Y = 0f;
     itemGrid15.AdjustFontSize = 0f;
     itemGrid15.Alignment = StringAlignment.Near;
     itemGrid15.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid15.Changed = false;
     itemGrid15.FieldType = ItemType.Label2;
     itemGrid15.FontColor = Color.WhiteSmoke;
     itemGrid15.FontStyle = FontStyle.Regular;
     itemGrid15.Height = 1f;
     itemGrid15.IsBlink = 0;
     itemGrid15.Name = "lbTotOddMktVal";
     itemGrid15.Text = "Total Odd Mkt Value";
     itemGrid15.ValueFormat = FormatType.Text;
     itemGrid15.Visible = true;
     itemGrid15.Width = 30;
     itemGrid15.X = 50;
     itemGrid15.Y = 1f;
     itemGrid16.AdjustFontSize = 0f;
     itemGrid16.Alignment = StringAlignment.Near;
     itemGrid16.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid16.Changed = false;
     itemGrid16.FieldType = ItemType.Text;
     itemGrid16.FontColor = Color.Yellow;
     itemGrid16.FontStyle = FontStyle.Regular;
     itemGrid16.Height = 1f;
     itemGrid16.IsBlink = 0;
     itemGrid16.Name = "totvalue";
     itemGrid16.Text = "";
     itemGrid16.ValueFormat = FormatType.Volume;
     itemGrid16.Visible = true;
     itemGrid16.Width = 20;
     itemGrid16.X = 80;
     itemGrid16.Y = 1f;
     itemGrid17.AdjustFontSize = 0f;
     itemGrid17.Alignment = StringAlignment.Near;
     itemGrid17.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid17.Changed = false;
     itemGrid17.FieldType = ItemType.Label2;
     itemGrid17.FontColor = Color.WhiteSmoke;
     itemGrid17.FontStyle = FontStyle.Regular;
     itemGrid17.Height = 1f;
     itemGrid17.IsBlink = 0;
     itemGrid17.Name = "lblast";
     itemGrid17.Text = "Last";
     itemGrid17.ValueFormat = FormatType.Text;
     itemGrid17.Visible = true;
     itemGrid17.Width = 25;
     itemGrid17.X = 0;
     itemGrid17.Y = 4f;
     itemGrid18.AdjustFontSize = 0f;
     itemGrid18.Alignment = StringAlignment.Near;
     itemGrid18.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid18.Changed = false;
     itemGrid18.FieldType = ItemType.Text;
     itemGrid18.FontColor = Color.White;
     itemGrid18.FontStyle = FontStyle.Regular;
     itemGrid18.Height = 1f;
     itemGrid18.IsBlink = 0;
     itemGrid18.Name = "oddlast";
     itemGrid18.Text = "";
     itemGrid18.ValueFormat = FormatType.Text;
     itemGrid18.Visible = true;
     itemGrid18.Width = 25;
     itemGrid18.X = 25;
     itemGrid18.Y = 4f;
     itemGrid19.AdjustFontSize = 0f;
     itemGrid19.Alignment = StringAlignment.Near;
     itemGrid19.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid19.Changed = false;
     itemGrid19.FieldType = ItemType.Label2;
     itemGrid19.FontColor = Color.White;
     itemGrid19.FontStyle = FontStyle.Regular;
     itemGrid19.Height = 1f;
     itemGrid19.IsBlink = 0;
     itemGrid19.Name = "lbprior";
     itemGrid19.Text = "Prev";
     itemGrid19.ValueFormat = FormatType.Text;
     itemGrid19.Visible = true;
     itemGrid19.Width = 25;
     itemGrid19.X = 50;
     itemGrid19.Y = 4f;
     itemGrid20.AdjustFontSize = 0f;
     itemGrid20.Alignment = StringAlignment.Near;
     itemGrid20.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid20.Changed = false;
     itemGrid20.FieldType = ItemType.Text;
     itemGrid20.FontColor = Color.Yellow;
     itemGrid20.FontStyle = FontStyle.Regular;
     itemGrid20.Height = 1f;
     itemGrid20.IsBlink = 0;
     itemGrid20.Name = "prior";
     itemGrid20.Text = "";
     itemGrid20.ValueFormat = FormatType.Price;
     itemGrid20.Visible = true;
     itemGrid20.Width = 25;
     itemGrid20.X = 75;
     itemGrid20.Y = 4f;
     this.intzaViewOddLotInfo.Items.Add(itemGrid);
     this.intzaViewOddLotInfo.Items.Add(itemGrid2);
     this.intzaViewOddLotInfo.Items.Add(itemGrid3);
     this.intzaViewOddLotInfo.Items.Add(itemGrid4);
     this.intzaViewOddLotInfo.Items.Add(itemGrid5);
     this.intzaViewOddLotInfo.Items.Add(itemGrid6);
     this.intzaViewOddLotInfo.Items.Add(itemGrid7);
     this.intzaViewOddLotInfo.Items.Add(itemGrid8);
     this.intzaViewOddLotInfo.Items.Add(itemGrid9);
     this.intzaViewOddLotInfo.Items.Add(itemGrid10);
     this.intzaViewOddLotInfo.Items.Add(itemGrid11);
     this.intzaViewOddLotInfo.Items.Add(itemGrid12);
     this.intzaViewOddLotInfo.Items.Add(itemGrid13);
     this.intzaViewOddLotInfo.Items.Add(itemGrid14);
     this.intzaViewOddLotInfo.Items.Add(itemGrid15);
     this.intzaViewOddLotInfo.Items.Add(itemGrid16);
     this.intzaViewOddLotInfo.Items.Add(itemGrid17);
     this.intzaViewOddLotInfo.Items.Add(itemGrid18);
     this.intzaViewOddLotInfo.Items.Add(itemGrid19);
     this.intzaViewOddLotInfo.Items.Add(itemGrid20);
     this.intzaViewOddLotInfo.LineColor = Color.Red;
     this.intzaViewOddLotInfo.Location = new Point(38, 43);
     this.intzaViewOddLotInfo.Margin = new Padding(0);
     this.intzaViewOddLotInfo.Name = "intzaViewOddLotInfo";
     this.intzaViewOddLotInfo.Size = new Size(572, 87);
     this.intzaViewOddLotInfo.TabIndex = 10;
     this.intzaSaleByTime.AllowDrop = true;
     this.intzaSaleByTime.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaSaleByTime.CanBlink = true;
     this.intzaSaleByTime.CanDrag = false;
     this.intzaSaleByTime.CanGetMouseMove = false;
     columnItem9.Alignment = StringAlignment.Center;
     columnItem9.BackColor = Color.FromArgb(64, 64, 64);
     columnItem9.ColumnAlignment = StringAlignment.Center;
     columnItem9.FontColor = Color.LightGray;
     columnItem9.MyStyle = FontStyle.Regular;
     columnItem9.Name = "time";
     columnItem9.Text = "Time";
     columnItem9.ValueFormat = FormatType.Text;
     columnItem9.Visible = true;
     columnItem9.Width = 22;
     columnItem10.Alignment = StringAlignment.Center;
     columnItem10.BackColor = Color.FromArgb(64, 64, 64);
     columnItem10.ColumnAlignment = StringAlignment.Center;
     columnItem10.FontColor = Color.LightGray;
     columnItem10.MyStyle = FontStyle.Regular;
     columnItem10.Name = "side";
     columnItem10.Text = "B/S";
     columnItem10.ValueFormat = FormatType.Text;
     columnItem10.Visible = true;
     columnItem10.Width = 11;
     columnItem11.Alignment = StringAlignment.Far;
     columnItem11.BackColor = Color.FromArgb(64, 64, 64);
     columnItem11.ColumnAlignment = StringAlignment.Center;
     columnItem11.FontColor = Color.LightGray;
     columnItem11.MyStyle = FontStyle.Regular;
     columnItem11.Name = "volume";
     columnItem11.Text = "Volume";
     columnItem11.ValueFormat = FormatType.Volume;
     columnItem11.Visible = true;
     columnItem11.Width = 22;
     columnItem12.Alignment = StringAlignment.Far;
     columnItem12.BackColor = Color.FromArgb(64, 64, 64);
     columnItem12.ColumnAlignment = StringAlignment.Center;
     columnItem12.FontColor = Color.LightGray;
     columnItem12.MyStyle = FontStyle.Regular;
     columnItem12.Name = "price";
     columnItem12.Text = "Price";
     columnItem12.ValueFormat = FormatType.Price;
     columnItem12.Visible = true;
     columnItem12.Width = 15;
     columnItem13.Alignment = StringAlignment.Far;
     columnItem13.BackColor = Color.FromArgb(64, 64, 64);
     columnItem13.ColumnAlignment = StringAlignment.Center;
     columnItem13.FontColor = Color.LightGray;
     columnItem13.MyStyle = FontStyle.Regular;
     columnItem13.Name = "chg";
     columnItem13.Text = "Change";
     columnItem13.ValueFormat = FormatType.ChangePrice;
     columnItem13.Visible = true;
     columnItem13.Width = 15;
     columnItem14.Alignment = StringAlignment.Far;
     columnItem14.BackColor = Color.FromArgb(64, 64, 64);
     columnItem14.ColumnAlignment = StringAlignment.Center;
     columnItem14.FontColor = Color.LightGray;
     columnItem14.MyStyle = FontStyle.Regular;
     columnItem14.Name = "avg";
     columnItem14.Text = "Average";
     columnItem14.ValueFormat = FormatType.Price;
     columnItem14.Visible = true;
     columnItem14.Width = 15;
     this.intzaSaleByTime.Columns.Add(columnItem9);
     this.intzaSaleByTime.Columns.Add(columnItem10);
     this.intzaSaleByTime.Columns.Add(columnItem11);
     this.intzaSaleByTime.Columns.Add(columnItem12);
     this.intzaSaleByTime.Columns.Add(columnItem13);
     this.intzaSaleByTime.Columns.Add(columnItem14);
     this.intzaSaleByTime.CurrentScroll = 0;
     this.intzaSaleByTime.FocusItemIndex = -1;
     this.intzaSaleByTime.ForeColor = Color.Black;
     this.intzaSaleByTime.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaSaleByTime.HeaderPctHeight = 100f;
     this.intzaSaleByTime.IsAutoRepaint = true;
     this.intzaSaleByTime.IsDrawFullRow = false;
     this.intzaSaleByTime.IsDrawGrid = true;
     this.intzaSaleByTime.IsDrawHeader = true;
     this.intzaSaleByTime.IsScrollable = false;
     this.intzaSaleByTime.Location = new Point(12, 74);
     this.intzaSaleByTime.MainColumn = "";
     this.intzaSaleByTime.Name = "intzaSaleByTime";
     this.intzaSaleByTime.Rows = 0;
     this.intzaSaleByTime.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaSaleByTime.RowSelectType = 0;
     this.intzaSaleByTime.RowsVisible = 0;
     this.intzaSaleByTime.Size = new Size(540, 85);
     this.intzaSaleByTime.SortColumnName = "";
     this.intzaSaleByTime.SortType = SortType.Desc;
     this.intzaSaleByTime.TabIndex = 28;
     this.intzaSaleByTime.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaSaleByTime_TableMouseClick);
     this.intzaSaleByPrice.AllowDrop = true;
     this.intzaSaleByPrice.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaSaleByPrice.CanBlink = true;
     this.intzaSaleByPrice.CanDrag = false;
     this.intzaSaleByPrice.CanGetMouseMove = false;
     columnItem15.Alignment = StringAlignment.Far;
     columnItem15.BackColor = Color.FromArgb(64, 64, 64);
     columnItem15.ColumnAlignment = StringAlignment.Center;
     columnItem15.FontColor = Color.LightGray;
     columnItem15.MyStyle = FontStyle.Regular;
     columnItem15.Name = "buy_deal";
     columnItem15.Text = "Deals";
     columnItem15.ValueFormat = FormatType.Volume;
     columnItem15.Visible = true;
     columnItem15.Width = 10;
     columnItem16.Alignment = StringAlignment.Far;
     columnItem16.BackColor = Color.FromArgb(64, 64, 64);
     columnItem16.ColumnAlignment = StringAlignment.Center;
     columnItem16.FontColor = Color.LightGray;
     columnItem16.MyStyle = FontStyle.Regular;
     columnItem16.Name = "buy_vol";
     columnItem16.Text = "Buy Volume";
     columnItem16.ValueFormat = FormatType.Volume;
     columnItem16.Visible = true;
     columnItem16.Width = 17;
     columnItem17.Alignment = StringAlignment.Center;
     columnItem17.BackColor = Color.FromArgb(64, 64, 64);
     columnItem17.ColumnAlignment = StringAlignment.Center;
     columnItem17.FontColor = Color.LightGray;
     columnItem17.MyStyle = FontStyle.Regular;
     columnItem17.Name = "price";
     columnItem17.Text = "Price";
     columnItem17.ValueFormat = FormatType.Text;
     columnItem17.Visible = true;
     columnItem17.Width = 12;
     columnItem18.Alignment = StringAlignment.Far;
     columnItem18.BackColor = Color.FromArgb(64, 64, 64);
     columnItem18.ColumnAlignment = StringAlignment.Center;
     columnItem18.FontColor = Color.LightGray;
     columnItem18.MyStyle = FontStyle.Regular;
     columnItem18.Name = "sell_vol";
     columnItem18.Text = "Sell Volume";
     columnItem18.ValueFormat = FormatType.Volume;
     columnItem18.Visible = true;
     columnItem18.Width = 17;
     columnItem19.Alignment = StringAlignment.Far;
     columnItem19.BackColor = Color.FromArgb(64, 64, 64);
     columnItem19.ColumnAlignment = StringAlignment.Center;
     columnItem19.FontColor = Color.LightGray;
     columnItem19.MyStyle = FontStyle.Regular;
     columnItem19.Name = "sell_deal";
     columnItem19.Text = "Deals";
     columnItem19.ValueFormat = FormatType.Volume;
     columnItem19.Visible = true;
     columnItem19.Width = 10;
     columnItem20.Alignment = StringAlignment.Far;
     columnItem20.BackColor = Color.FromArgb(64, 64, 64);
     columnItem20.ColumnAlignment = StringAlignment.Center;
     columnItem20.FontColor = Color.LightGray;
     columnItem20.MyStyle = FontStyle.Regular;
     columnItem20.Name = "mvol";
     columnItem20.Text = "Volume";
     columnItem20.ValueFormat = FormatType.Volume;
     columnItem20.Visible = true;
     columnItem20.Width = 15;
     columnItem21.Alignment = StringAlignment.Far;
     columnItem21.BackColor = Color.FromArgb(64, 64, 64);
     columnItem21.ColumnAlignment = StringAlignment.Center;
     columnItem21.FontColor = Color.LightGray;
     columnItem21.MyStyle = FontStyle.Regular;
     columnItem21.Name = "mval";
     columnItem21.Text = "Value";
     columnItem21.ValueFormat = FormatType.Volume;
     columnItem21.Visible = true;
     columnItem21.Width = 19;
     this.intzaSaleByPrice.Columns.Add(columnItem15);
     this.intzaSaleByPrice.Columns.Add(columnItem16);
     this.intzaSaleByPrice.Columns.Add(columnItem17);
     this.intzaSaleByPrice.Columns.Add(columnItem18);
     this.intzaSaleByPrice.Columns.Add(columnItem19);
     this.intzaSaleByPrice.Columns.Add(columnItem20);
     this.intzaSaleByPrice.Columns.Add(columnItem21);
     this.intzaSaleByPrice.CurrentScroll = 0;
     this.intzaSaleByPrice.FocusItemIndex = -1;
     this.intzaSaleByPrice.ForeColor = Color.Black;
     this.intzaSaleByPrice.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaSaleByPrice.HeaderPctHeight = 80f;
     this.intzaSaleByPrice.IsAutoRepaint = true;
     this.intzaSaleByPrice.IsDrawFullRow = false;
     this.intzaSaleByPrice.IsDrawGrid = true;
     this.intzaSaleByPrice.IsDrawHeader = true;
     this.intzaSaleByPrice.IsScrollable = true;
     this.intzaSaleByPrice.Location = new Point(12, 165);
     this.intzaSaleByPrice.MainColumn = "";
     this.intzaSaleByPrice.Name = "intzaSaleByPrice";
     this.intzaSaleByPrice.Rows = 0;
     this.intzaSaleByPrice.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaSaleByPrice.RowSelectType = 0;
     this.intzaSaleByPrice.RowsVisible = 0;
     this.intzaSaleByPrice.Size = new Size(540, 53);
     this.intzaSaleByPrice.SortColumnName = "";
     this.intzaSaleByPrice.SortType = SortType.Desc;
     this.intzaSaleByPrice.TabIndex = 27;
     this.intzaSaleByPrice.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaSaleByPrice_TableMouseClick);
     this.intzaViewOddLot.AllowDrop = true;
     this.intzaViewOddLot.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaViewOddLot.CanBlink = true;
     this.intzaViewOddLot.CanDrag = false;
     this.intzaViewOddLot.CanGetMouseMove = false;
     columnItem22.Alignment = StringAlignment.Center;
     columnItem22.BackColor = Color.FromArgb(64, 64, 64);
     columnItem22.ColumnAlignment = StringAlignment.Center;
     columnItem22.FontColor = Color.LightGray;
     columnItem22.MyStyle = FontStyle.Regular;
     columnItem22.Name = "bid_vol";
     columnItem22.Text = "Volume";
     columnItem22.ValueFormat = FormatType.Volume;
     columnItem22.Visible = true;
     columnItem22.Width = 30;
     columnItem23.Alignment = StringAlignment.Center;
     columnItem23.BackColor = Color.FromArgb(64, 64, 64);
     columnItem23.ColumnAlignment = StringAlignment.Center;
     columnItem23.FontColor = Color.LightGray;
     columnItem23.MyStyle = FontStyle.Regular;
     columnItem23.Name = "bid";
     columnItem23.Text = "Bid";
     columnItem23.ValueFormat = FormatType.Price;
     columnItem23.Visible = true;
     columnItem23.Width = 20;
     columnItem24.Alignment = StringAlignment.Center;
     columnItem24.BackColor = Color.FromArgb(64, 64, 64);
     columnItem24.ColumnAlignment = StringAlignment.Center;
     columnItem24.FontColor = Color.LightGray;
     columnItem24.MyStyle = FontStyle.Regular;
     columnItem24.Name = "offer";
     columnItem24.Text = "Offer";
     columnItem24.ValueFormat = FormatType.Price;
     columnItem24.Visible = true;
     columnItem24.Width = 20;
     columnItem25.Alignment = StringAlignment.Center;
     columnItem25.BackColor = Color.FromArgb(64, 64, 64);
     columnItem25.ColumnAlignment = StringAlignment.Center;
     columnItem25.FontColor = Color.LightGray;
     columnItem25.MyStyle = FontStyle.Regular;
     columnItem25.Name = "offer_vol";
     columnItem25.Text = "Volume";
     columnItem25.ValueFormat = FormatType.Volume;
     columnItem25.Visible = true;
     columnItem25.Width = 30;
     this.intzaViewOddLot.Columns.Add(columnItem22);
     this.intzaViewOddLot.Columns.Add(columnItem23);
     this.intzaViewOddLot.Columns.Add(columnItem24);
     this.intzaViewOddLot.Columns.Add(columnItem25);
     this.intzaViewOddLot.CurrentScroll = 0;
     this.intzaViewOddLot.FocusItemIndex = -1;
     this.intzaViewOddLot.ForeColor = Color.Black;
     this.intzaViewOddLot.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaViewOddLot.HeaderPctHeight = 100f;
     this.intzaViewOddLot.IsAutoRepaint = true;
     this.intzaViewOddLot.IsDrawFullRow = false;
     this.intzaViewOddLot.IsDrawGrid = true;
     this.intzaViewOddLot.IsDrawHeader = true;
     this.intzaViewOddLot.IsScrollable = true;
     this.intzaViewOddLot.Location = new Point(9, 336);
     this.intzaViewOddLot.MainColumn = "";
     this.intzaViewOddLot.Name = "intzaViewOddLot";
     this.intzaViewOddLot.Rows = 5;
     this.intzaViewOddLot.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaViewOddLot.RowSelectType = 0;
     this.intzaViewOddLot.RowsVisible = 5;
     this.intzaViewOddLot.Size = new Size(543, 73);
     this.intzaViewOddLot.SortColumnName = "";
     this.intzaViewOddLot.SortType = SortType.Desc;
     this.intzaViewOddLot.TabIndex = 26;
     this.intzaStockInPlay.AllowDrop = true;
     this.intzaStockInPlay.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaStockInPlay.CanBlink = true;
     this.intzaStockInPlay.CanDrag = false;
     this.intzaStockInPlay.CanGetMouseMove = false;
     columnItem26.Alignment = StringAlignment.Center;
     columnItem26.BackColor = Color.FromArgb(64, 64, 64);
     columnItem26.ColumnAlignment = StringAlignment.Center;
     columnItem26.FontColor = Color.LightGray;
     columnItem26.MyStyle = FontStyle.Regular;
     columnItem26.Name = "buy_deal";
     columnItem26.Text = "Deals";
     columnItem26.ValueFormat = FormatType.Volume;
     columnItem26.Visible = true;
     columnItem26.Width = 10;
     columnItem27.Alignment = StringAlignment.Far;
     columnItem27.BackColor = Color.FromArgb(64, 64, 64);
     columnItem27.ColumnAlignment = StringAlignment.Center;
     columnItem27.FontColor = Color.LightGray;
     columnItem27.MyStyle = FontStyle.Regular;
     columnItem27.Name = "buy_volume";
     columnItem27.Text = "Buy Volume";
     columnItem27.ValueFormat = FormatType.Volume;
     columnItem27.Visible = true;
     columnItem27.Width = 17;
     columnItem28.Alignment = StringAlignment.Far;
     columnItem28.BackColor = Color.FromArgb(64, 64, 64);
     columnItem28.ColumnAlignment = StringAlignment.Center;
     columnItem28.FontColor = Color.LightGray;
     columnItem28.MyStyle = FontStyle.Regular;
     columnItem28.Name = "bid";
     columnItem28.Text = "Bid Volume";
     columnItem28.ValueFormat = FormatType.BidOfferVolume;
     columnItem28.Visible = true;
     columnItem28.Width = 17;
     columnItem29.Alignment = StringAlignment.Center;
     columnItem29.BackColor = Color.FromArgb(64, 64, 64);
     columnItem29.ColumnAlignment = StringAlignment.Center;
     columnItem29.FontColor = Color.LightGray;
     columnItem29.MyStyle = FontStyle.Regular;
     columnItem29.Name = "price";
     columnItem29.Text = "Price";
     columnItem29.ValueFormat = FormatType.Text;
     columnItem29.Visible = true;
     columnItem29.Width = 12;
     columnItem30.Alignment = StringAlignment.Far;
     columnItem30.BackColor = Color.FromArgb(64, 64, 64);
     columnItem30.ColumnAlignment = StringAlignment.Center;
     columnItem30.FontColor = Color.LightGray;
     columnItem30.MyStyle = FontStyle.Regular;
     columnItem30.Name = "offer";
     columnItem30.Text = "Offer Volume";
     columnItem30.ValueFormat = FormatType.BidOfferVolume;
     columnItem30.Visible = true;
     columnItem30.Width = 17;
     columnItem31.Alignment = StringAlignment.Far;
     columnItem31.BackColor = Color.FromArgb(64, 64, 64);
     columnItem31.ColumnAlignment = StringAlignment.Center;
     columnItem31.FontColor = Color.LightGray;
     columnItem31.MyStyle = FontStyle.Regular;
     columnItem31.Name = "sell_vol";
     columnItem31.Text = "Sell Volume";
     columnItem31.ValueFormat = FormatType.Volume;
     columnItem31.Visible = true;
     columnItem31.Width = 17;
     columnItem32.Alignment = StringAlignment.Center;
     columnItem32.BackColor = Color.FromArgb(64, 64, 64);
     columnItem32.ColumnAlignment = StringAlignment.Center;
     columnItem32.FontColor = Color.LightGray;
     columnItem32.MyStyle = FontStyle.Regular;
     columnItem32.Name = "sell_deal";
     columnItem32.Text = "Deals";
     columnItem32.ValueFormat = FormatType.Volume;
     columnItem32.Visible = true;
     columnItem32.Width = 10;
     this.intzaStockInPlay.Columns.Add(columnItem26);
     this.intzaStockInPlay.Columns.Add(columnItem27);
     this.intzaStockInPlay.Columns.Add(columnItem28);
     this.intzaStockInPlay.Columns.Add(columnItem29);
     this.intzaStockInPlay.Columns.Add(columnItem30);
     this.intzaStockInPlay.Columns.Add(columnItem31);
     this.intzaStockInPlay.Columns.Add(columnItem32);
     this.intzaStockInPlay.CurrentScroll = 0;
     this.intzaStockInPlay.FocusItemIndex = -1;
     this.intzaStockInPlay.ForeColor = Color.Black;
     this.intzaStockInPlay.GridColor = Color.FromArgb(45, 45, 45);
     this.intzaStockInPlay.HeaderPctHeight = 80f;
     this.intzaStockInPlay.IsAutoRepaint = true;
     this.intzaStockInPlay.IsDrawFullRow = false;
     this.intzaStockInPlay.IsDrawGrid = true;
     this.intzaStockInPlay.IsDrawHeader = true;
     this.intzaStockInPlay.IsScrollable = false;
     this.intzaStockInPlay.Location = new Point(12, 252);
     this.intzaStockInPlay.MainColumn = "";
     this.intzaStockInPlay.Name = "intzaStockInPlay";
     this.intzaStockInPlay.Rows = 0;
     this.intzaStockInPlay.RowSelectColor = Color.FromArgb(95, 158, 160);
     this.intzaStockInPlay.RowSelectType = 0;
     this.intzaStockInPlay.RowsVisible = 0;
     this.intzaStockInPlay.Size = new Size(540, 53);
     this.intzaStockInPlay.SortColumnName = "";
     this.intzaStockInPlay.SortType = SortType.Desc;
     this.intzaStockInPlay.TabIndex = 25;
     this.intzaStockInPlay.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.intzaStockInPlay_TableMouseClick);
     this.intzaInfo.AllowDrop = true;
     this.intzaInfo.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaInfo.CanDrag = false;
     this.intzaInfo.IsAutoRepaint = true;
     this.intzaInfo.IsDroped = false;
     itemGrid21.AdjustFontSize = 0f;
     itemGrid21.Alignment = StringAlignment.Near;
     itemGrid21.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid21.Changed = false;
     itemGrid21.FieldType = ItemType.Label2;
     itemGrid21.FontColor = Color.Gainsboro;
     itemGrid21.FontStyle = FontStyle.Regular;
     itemGrid21.Height = 1f;
     itemGrid21.IsBlink = 0;
     itemGrid21.Name = "lb_openvol";
     itemGrid21.Text = "OpnVol";
     itemGrid21.ValueFormat = FormatType.Text;
     itemGrid21.Visible = true;
     itemGrid21.Width = 22;
     itemGrid21.X = 0;
     itemGrid21.Y = 0f;
     itemGrid22.AdjustFontSize = 0f;
     itemGrid22.Alignment = StringAlignment.Far;
     itemGrid22.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid22.Changed = false;
     itemGrid22.FieldType = ItemType.Text;
     itemGrid22.FontColor = Color.Yellow;
     itemGrid22.FontStyle = FontStyle.Regular;
     itemGrid22.Height = 1f;
     itemGrid22.IsBlink = 0;
     itemGrid22.Name = "open_vol";
     itemGrid22.Text = "";
     itemGrid22.ValueFormat = FormatType.Volume;
     itemGrid22.Visible = true;
     itemGrid22.Width = 35;
     itemGrid22.X = 25;
     itemGrid22.Y = 0f;
     itemGrid23.AdjustFontSize = -2f;
     itemGrid23.Alignment = StringAlignment.Far;
     itemGrid23.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid23.Changed = false;
     itemGrid23.FieldType = ItemType.Text;
     itemGrid23.FontColor = Color.Yellow;
     itemGrid23.FontStyle = FontStyle.Regular;
     itemGrid23.Height = 1f;
     itemGrid23.IsBlink = 0;
     itemGrid23.Name = "p_open_vol";
     itemGrid23.Text = "";
     itemGrid23.ValueFormat = FormatType.Text;
     itemGrid23.Visible = false;
     itemGrid23.Width = 19;
     itemGrid23.X = 57;
     itemGrid23.Y = 0f;
     itemGrid24.AdjustFontSize = 0f;
     itemGrid24.Alignment = StringAlignment.Near;
     itemGrid24.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid24.Changed = false;
     itemGrid24.FieldType = ItemType.Label2;
     itemGrid24.FontColor = Color.Gainsboro;
     itemGrid24.FontStyle = FontStyle.Regular;
     itemGrid24.Height = 1f;
     itemGrid24.IsBlink = 0;
     itemGrid24.Name = "lb_buyvol";
     itemGrid24.Text = "BuyVol";
     itemGrid24.ValueFormat = FormatType.Text;
     itemGrid24.Visible = true;
     itemGrid24.Width = 22;
     itemGrid24.X = 0;
     itemGrid24.Y = 1.2f;
     itemGrid25.AdjustFontSize = 0f;
     itemGrid25.Alignment = StringAlignment.Far;
     itemGrid25.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid25.Changed = false;
     itemGrid25.FieldType = ItemType.Text;
     itemGrid25.FontColor = Color.Lime;
     itemGrid25.FontStyle = FontStyle.Regular;
     itemGrid25.Height = 1f;
     itemGrid25.IsBlink = 0;
     itemGrid25.Name = "buy_vol";
     itemGrid25.Text = "";
     itemGrid25.ValueFormat = FormatType.Volume;
     itemGrid25.Visible = true;
     itemGrid25.Width = 35;
     itemGrid25.X = 25;
     itemGrid25.Y = 1.2f;
     itemGrid26.AdjustFontSize = -2f;
     itemGrid26.Alignment = StringAlignment.Far;
     itemGrid26.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid26.Changed = false;
     itemGrid26.FieldType = ItemType.Text;
     itemGrid26.FontColor = Color.Lime;
     itemGrid26.FontStyle = FontStyle.Regular;
     itemGrid26.Height = 1f;
     itemGrid26.IsBlink = 0;
     itemGrid26.Name = "p_buy_vol";
     itemGrid26.Text = "";
     itemGrid26.ValueFormat = FormatType.Text;
     itemGrid26.Visible = false;
     itemGrid26.Width = 19;
     itemGrid26.X = 57;
     itemGrid26.Y = 1.2f;
     itemGrid27.AdjustFontSize = 0f;
     itemGrid27.Alignment = StringAlignment.Near;
     itemGrid27.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid27.Changed = false;
     itemGrid27.FieldType = ItemType.Label2;
     itemGrid27.FontColor = Color.Gainsboro;
     itemGrid27.FontStyle = FontStyle.Regular;
     itemGrid27.Height = 1f;
     itemGrid27.IsBlink = 0;
     itemGrid27.Name = "lb_selvol";
     itemGrid27.Text = "SelVol";
     itemGrid27.ValueFormat = FormatType.Text;
     itemGrid27.Visible = true;
     itemGrid27.Width = 22;
     itemGrid27.X = 0;
     itemGrid27.Y = 2.4f;
     itemGrid28.AdjustFontSize = 0f;
     itemGrid28.Alignment = StringAlignment.Far;
     itemGrid28.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid28.Changed = false;
     itemGrid28.FieldType = ItemType.Text;
     itemGrid28.FontColor = Color.Red;
     itemGrid28.FontStyle = FontStyle.Regular;
     itemGrid28.Height = 1f;
     itemGrid28.IsBlink = 0;
     itemGrid28.Name = "sel_vol";
     itemGrid28.Text = "";
     itemGrid28.ValueFormat = FormatType.Volume;
     itemGrid28.Visible = true;
     itemGrid28.Width = 35;
     itemGrid28.X = 25;
     itemGrid28.Y = 2.4f;
     itemGrid29.AdjustFontSize = -2f;
     itemGrid29.Alignment = StringAlignment.Far;
     itemGrid29.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid29.Changed = false;
     itemGrid29.FieldType = ItemType.Text;
     itemGrid29.FontColor = Color.Red;
     itemGrid29.FontStyle = FontStyle.Regular;
     itemGrid29.Height = 1f;
     itemGrid29.IsBlink = 0;
     itemGrid29.Name = "p_sel_vol";
     itemGrid29.Text = "";
     itemGrid29.ValueFormat = FormatType.Text;
     itemGrid29.Visible = false;
     itemGrid29.Width = 19;
     itemGrid29.X = 57;
     itemGrid29.Y = 2.4f;
     itemGrid30.AdjustFontSize = 0f;
     itemGrid30.Alignment = StringAlignment.Near;
     itemGrid30.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid30.Changed = false;
     itemGrid30.FieldType = ItemType.Text;
     itemGrid30.FontColor = Color.White;
     itemGrid30.FontStyle = FontStyle.Regular;
     itemGrid30.Height = 3.4f;
     itemGrid30.IsBlink = 0;
     itemGrid30.Name = "pie";
     itemGrid30.Text = "";
     itemGrid30.ValueFormat = FormatType.PieChartNew;
     itemGrid30.Visible = true;
     itemGrid30.Width = 40;
     itemGrid30.X = 60;
     itemGrid30.Y = 0f;
     itemGrid31.AdjustFontSize = 0f;
     itemGrid31.Alignment = StringAlignment.Near;
     itemGrid31.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid31.Changed = false;
     itemGrid31.FieldType = ItemType.Label2;
     itemGrid31.FontColor = Color.Gainsboro;
     itemGrid31.FontStyle = FontStyle.Regular;
     itemGrid31.Height = 1f;
     itemGrid31.IsBlink = 0;
     itemGrid31.Name = "lb_prior";
     itemGrid31.Text = "Prev";
     itemGrid31.ValueFormat = FormatType.Text;
     itemGrid31.Visible = true;
     itemGrid31.Width = 22;
     itemGrid31.X = 0;
     itemGrid31.Y = 3.6f;
     itemGrid32.AdjustFontSize = 0f;
     itemGrid32.Alignment = StringAlignment.Near;
     itemGrid32.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid32.Changed = false;
     itemGrid32.FieldType = ItemType.Text;
     itemGrid32.FontColor = Color.Yellow;
     itemGrid32.FontStyle = FontStyle.Regular;
     itemGrid32.Height = 1f;
     itemGrid32.IsBlink = 0;
     itemGrid32.Name = "prior";
     itemGrid32.Text = "";
     itemGrid32.ValueFormat = FormatType.Text;
     itemGrid32.Visible = true;
     itemGrid32.Width = 23;
     itemGrid32.X = 22;
     itemGrid32.Y = 3.6f;
     itemGrid33.AdjustFontSize = 0f;
     itemGrid33.Alignment = StringAlignment.Near;
     itemGrid33.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid33.Changed = false;
     itemGrid33.FieldType = ItemType.Label2;
     itemGrid33.FontColor = Color.Gainsboro;
     itemGrid33.FontStyle = FontStyle.Regular;
     itemGrid33.Height = 1f;
     itemGrid33.IsBlink = 0;
     itemGrid33.Name = "lb_avg";
     itemGrid33.Text = "Avg";
     itemGrid33.ValueFormat = FormatType.Text;
     itemGrid33.Visible = false;
     itemGrid33.Width = 25;
     itemGrid33.X = 48;
     itemGrid33.Y = 3.6f;
     itemGrid34.AdjustFontSize = 0f;
     itemGrid34.Alignment = StringAlignment.Near;
     itemGrid34.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid34.Changed = false;
     itemGrid34.FieldType = ItemType.Text;
     itemGrid34.FontColor = Color.White;
     itemGrid34.FontStyle = FontStyle.Regular;
     itemGrid34.Height = 1f;
     itemGrid34.IsBlink = 0;
     itemGrid34.Name = "avg";
     itemGrid34.Text = "";
     itemGrid34.ValueFormat = FormatType.Price;
     itemGrid34.Visible = false;
     itemGrid34.Width = 26;
     itemGrid34.X = 73;
     itemGrid34.Y = 3.6f;
     itemGrid35.AdjustFontSize = 0f;
     itemGrid35.Alignment = StringAlignment.Near;
     itemGrid35.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid35.Changed = false;
     itemGrid35.FieldType = ItemType.Label2;
     itemGrid35.FontColor = Color.Gainsboro;
     itemGrid35.FontStyle = FontStyle.Regular;
     itemGrid35.Height = 1f;
     itemGrid35.IsBlink = 0;
     itemGrid35.Name = "lbOpen";
     itemGrid35.Text = "Open-1";
     itemGrid35.ValueFormat = FormatType.Text;
     itemGrid35.Visible = true;
     itemGrid35.Width = 22;
     itemGrid35.X = 45;
     itemGrid35.Y = 4.6f;
     itemGrid36.AdjustFontSize = 0f;
     itemGrid36.Alignment = StringAlignment.Near;
     itemGrid36.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid36.Changed = false;
     itemGrid36.FieldType = ItemType.Text;
     itemGrid36.FontColor = Color.White;
     itemGrid36.FontStyle = FontStyle.Regular;
     itemGrid36.Height = 1f;
     itemGrid36.IsBlink = 0;
     itemGrid36.Name = "open1";
     itemGrid36.Text = "";
     itemGrid36.ValueFormat = FormatType.Price;
     itemGrid36.Visible = true;
     itemGrid36.Width = 31;
     itemGrid36.X = 67;
     itemGrid36.Y = 4.6f;
     itemGrid37.AdjustFontSize = 0f;
     itemGrid37.Alignment = StringAlignment.Near;
     itemGrid37.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid37.Changed = false;
     itemGrid37.FieldType = ItemType.Label2;
     itemGrid37.FontColor = Color.Gainsboro;
     itemGrid37.FontStyle = FontStyle.Regular;
     itemGrid37.Height = 1f;
     itemGrid37.IsBlink = 0;
     itemGrid37.Name = "lbOpen2";
     itemGrid37.Text = "Open-2";
     itemGrid37.ValueFormat = FormatType.Text;
     itemGrid37.Visible = true;
     itemGrid37.Width = 22;
     itemGrid37.X = 45;
     itemGrid37.Y = 5.6f;
     itemGrid38.AdjustFontSize = 0f;
     itemGrid38.Alignment = StringAlignment.Near;
     itemGrid38.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid38.Changed = false;
     itemGrid38.FieldType = ItemType.Text;
     itemGrid38.FontColor = Color.White;
     itemGrid38.FontStyle = FontStyle.Regular;
     itemGrid38.Height = 1f;
     itemGrid38.IsBlink = 0;
     itemGrid38.Name = "open2";
     itemGrid38.Text = "";
     itemGrid38.ValueFormat = FormatType.Price;
     itemGrid38.Visible = true;
     itemGrid38.Width = 31;
     itemGrid38.X = 67;
     itemGrid38.Y = 5.6f;
     itemGrid39.AdjustFontSize = 0f;
     itemGrid39.Alignment = StringAlignment.Near;
     itemGrid39.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid39.Changed = false;
     itemGrid39.FieldType = ItemType.Label2;
     itemGrid39.FontColor = Color.Gainsboro;
     itemGrid39.FontStyle = FontStyle.Regular;
     itemGrid39.Height = 1f;
     itemGrid39.IsBlink = 0;
     itemGrid39.Name = "lbHigh";
     itemGrid39.Text = "High";
     itemGrid39.ValueFormat = FormatType.Text;
     itemGrid39.Visible = true;
     itemGrid39.Width = 22;
     itemGrid39.X = 0;
     itemGrid39.Y = 4.6f;
     itemGrid40.AdjustFontSize = 0f;
     itemGrid40.Alignment = StringAlignment.Near;
     itemGrid40.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid40.Changed = false;
     itemGrid40.FieldType = ItemType.Text;
     itemGrid40.FontColor = Color.White;
     itemGrid40.FontStyle = FontStyle.Regular;
     itemGrid40.Height = 1f;
     itemGrid40.IsBlink = 0;
     itemGrid40.Name = "high";
     itemGrid40.Text = "";
     itemGrid40.ValueFormat = FormatType.Price;
     itemGrid40.Visible = true;
     itemGrid40.Width = 23;
     itemGrid40.X = 22;
     itemGrid40.Y = 4.6f;
     itemGrid41.AdjustFontSize = 0f;
     itemGrid41.Alignment = StringAlignment.Near;
     itemGrid41.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid41.Changed = false;
     itemGrid41.FieldType = ItemType.Label2;
     itemGrid41.FontColor = Color.Gainsboro;
     itemGrid41.FontStyle = FontStyle.Regular;
     itemGrid41.Height = 1f;
     itemGrid41.IsBlink = 0;
     itemGrid41.Name = "lbLow";
     itemGrid41.Text = "Low";
     itemGrid41.ValueFormat = FormatType.Text;
     itemGrid41.Visible = true;
     itemGrid41.Width = 22;
     itemGrid41.X = 0;
     itemGrid41.Y = 5.6f;
     itemGrid42.AdjustFontSize = 0f;
     itemGrid42.Alignment = StringAlignment.Near;
     itemGrid42.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid42.Changed = false;
     itemGrid42.FieldType = ItemType.Text;
     itemGrid42.FontColor = Color.White;
     itemGrid42.FontStyle = FontStyle.Regular;
     itemGrid42.Height = 1f;
     itemGrid42.IsBlink = 0;
     itemGrid42.Name = "low";
     itemGrid42.Text = "";
     itemGrid42.ValueFormat = FormatType.Price;
     itemGrid42.Visible = true;
     itemGrid42.Width = 23;
     itemGrid42.X = 22;
     itemGrid42.Y = 5.6f;
     itemGrid43.AdjustFontSize = 0f;
     itemGrid43.Alignment = StringAlignment.Near;
     itemGrid43.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid43.Changed = false;
     itemGrid43.FieldType = ItemType.Label2;
     itemGrid43.FontColor = Color.Gainsboro;
     itemGrid43.FontStyle = FontStyle.Regular;
     itemGrid43.Height = 1f;
     itemGrid43.IsBlink = 0;
     itemGrid43.Name = "lb_ceiling";
     itemGrid43.Text = "Ceiling";
     itemGrid43.ValueFormat = FormatType.Text;
     itemGrid43.Visible = true;
     itemGrid43.Width = 22;
     itemGrid43.X = 0;
     itemGrid43.Y = 6.6f;
     itemGrid44.AdjustFontSize = 0f;
     itemGrid44.Alignment = StringAlignment.Near;
     itemGrid44.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid44.Changed = false;
     itemGrid44.FieldType = ItemType.Text;
     itemGrid44.FontColor = Color.Cyan;
     itemGrid44.FontStyle = FontStyle.Regular;
     itemGrid44.Height = 1f;
     itemGrid44.IsBlink = 0;
     itemGrid44.Name = "ceiling";
     itemGrid44.Text = "";
     itemGrid44.ValueFormat = FormatType.Price;
     itemGrid44.Visible = true;
     itemGrid44.Width = 23;
     itemGrid44.X = 22;
     itemGrid44.Y = 6.6f;
     itemGrid45.AdjustFontSize = 0f;
     itemGrid45.Alignment = StringAlignment.Near;
     itemGrid45.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid45.Changed = false;
     itemGrid45.FieldType = ItemType.Label2;
     itemGrid45.FontColor = Color.Gainsboro;
     itemGrid45.FontStyle = FontStyle.Regular;
     itemGrid45.Height = 1f;
     itemGrid45.IsBlink = 0;
     itemGrid45.Name = "lb_floor";
     itemGrid45.Text = "Floor";
     itemGrid45.ValueFormat = FormatType.Text;
     itemGrid45.Visible = true;
     itemGrid45.Width = 22;
     itemGrid45.X = 0;
     itemGrid45.Y = 7.6f;
     itemGrid46.AdjustFontSize = 0f;
     itemGrid46.Alignment = StringAlignment.Near;
     itemGrid46.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid46.Changed = false;
     itemGrid46.FieldType = ItemType.Text;
     itemGrid46.FontColor = Color.FromArgb(187, 44, 189);
     itemGrid46.FontStyle = FontStyle.Regular;
     itemGrid46.Height = 1f;
     itemGrid46.IsBlink = 0;
     itemGrid46.Name = "floor";
     itemGrid46.Text = "";
     itemGrid46.ValueFormat = FormatType.Price;
     itemGrid46.Visible = true;
     itemGrid46.Width = 23;
     itemGrid46.X = 22;
     itemGrid46.Y = 7.6f;
     itemGrid47.AdjustFontSize = 0f;
     itemGrid47.Alignment = StringAlignment.Near;
     itemGrid47.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid47.Changed = false;
     itemGrid47.FieldType = ItemType.Label2;
     itemGrid47.FontColor = Color.Gainsboro;
     itemGrid47.FontStyle = FontStyle.Regular;
     itemGrid47.Height = 1f;
     itemGrid47.IsBlink = 0;
     itemGrid47.Name = "lb_par";
     itemGrid47.Text = "Par";
     itemGrid47.ValueFormat = FormatType.Text;
     itemGrid47.Visible = true;
     itemGrid47.Width = 22;
     itemGrid47.X = 45;
     itemGrid47.Y = 8.6f;
     itemGrid48.AdjustFontSize = 0f;
     itemGrid48.Alignment = StringAlignment.Near;
     itemGrid48.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid48.Changed = false;
     itemGrid48.FieldType = ItemType.Text;
     itemGrid48.FontColor = Color.Yellow;
     itemGrid48.FontStyle = FontStyle.Regular;
     itemGrid48.Height = 1f;
     itemGrid48.IsBlink = 0;
     itemGrid48.Name = "par";
     itemGrid48.Text = "";
     itemGrid48.ValueFormat = FormatType.Text;
     itemGrid48.Visible = true;
     itemGrid48.Width = 31;
     itemGrid48.X = 67;
     itemGrid48.Y = 8.6f;
     itemGrid49.AdjustFontSize = 0f;
     itemGrid49.Alignment = StringAlignment.Near;
     itemGrid49.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid49.Changed = false;
     itemGrid49.FieldType = ItemType.Label2;
     itemGrid49.FontColor = Color.Gainsboro;
     itemGrid49.FontStyle = FontStyle.Regular;
     itemGrid49.Height = 1f;
     itemGrid49.IsBlink = 0;
     itemGrid49.Name = "lbPoClose";
     itemGrid49.Text = "Prj.Close";
     itemGrid49.ValueFormat = FormatType.Text;
     itemGrid49.Visible = true;
     itemGrid49.Width = 22;
     itemGrid49.X = 45;
     itemGrid49.Y = 6.6f;
     itemGrid50.AdjustFontSize = 0f;
     itemGrid50.Alignment = StringAlignment.Near;
     itemGrid50.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid50.Changed = false;
     itemGrid50.FieldType = ItemType.Text;
     itemGrid50.FontColor = Color.White;
     itemGrid50.FontStyle = FontStyle.Regular;
     itemGrid50.Height = 1f;
     itemGrid50.IsBlink = 0;
     itemGrid50.Name = "poclose";
     itemGrid50.Text = "";
     itemGrid50.ValueFormat = FormatType.Price;
     itemGrid50.Visible = true;
     itemGrid50.Width = 31;
     itemGrid50.X = 67;
     itemGrid50.Y = 6.6f;
     itemGrid51.AdjustFontSize = 0f;
     itemGrid51.Alignment = StringAlignment.Near;
     itemGrid51.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid51.Changed = false;
     itemGrid51.FieldType = ItemType.Label2;
     itemGrid51.FontColor = Color.Gainsboro;
     itemGrid51.FontStyle = FontStyle.Regular;
     itemGrid51.Height = 1f;
     itemGrid51.IsBlink = 0;
     itemGrid51.Name = "lb_spread";
     itemGrid51.Text = "Spread";
     itemGrid51.ValueFormat = FormatType.Text;
     itemGrid51.Visible = true;
     itemGrid51.Width = 22;
     itemGrid51.X = 0;
     itemGrid51.Y = 8.6f;
     itemGrid52.AdjustFontSize = 0f;
     itemGrid52.Alignment = StringAlignment.Near;
     itemGrid52.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid52.Changed = false;
     itemGrid52.FieldType = ItemType.Text;
     itemGrid52.FontColor = Color.Yellow;
     itemGrid52.FontStyle = FontStyle.Regular;
     itemGrid52.Height = 1f;
     itemGrid52.IsBlink = 0;
     itemGrid52.Name = "spread";
     itemGrid52.Text = "";
     itemGrid52.ValueFormat = FormatType.Price;
     itemGrid52.Visible = true;
     itemGrid52.Width = 23;
     itemGrid52.X = 22;
     itemGrid52.Y = 8.6f;
     itemGrid53.AdjustFontSize = 0f;
     itemGrid53.Alignment = StringAlignment.Near;
     itemGrid53.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid53.Changed = false;
     itemGrid53.FieldType = ItemType.Label2;
     itemGrid53.FontColor = Color.Gainsboro;
     itemGrid53.FontStyle = FontStyle.Regular;
     itemGrid53.Height = 1f;
     itemGrid53.IsBlink = 0;
     itemGrid53.Name = "lb_povol";
     itemGrid53.Text = "Prj.Vol";
     itemGrid53.ValueFormat = FormatType.Text;
     itemGrid53.Visible = true;
     itemGrid53.Width = 22;
     itemGrid53.X = 45;
     itemGrid53.Y = 7.6f;
     itemGrid54.AdjustFontSize = 0f;
     itemGrid54.Alignment = StringAlignment.Near;
     itemGrid54.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid54.Changed = false;
     itemGrid54.FieldType = ItemType.Text;
     itemGrid54.FontColor = Color.Yellow;
     itemGrid54.FontStyle = FontStyle.Regular;
     itemGrid54.Height = 1f;
     itemGrid54.IsBlink = 0;
     itemGrid54.Name = "povol";
     itemGrid54.Text = "";
     itemGrid54.ValueFormat = FormatType.Text;
     itemGrid54.Visible = true;
     itemGrid54.Width = 31;
     itemGrid54.X = 67;
     itemGrid54.Y = 7.6f;
     itemGrid55.AdjustFontSize = 0f;
     itemGrid55.Alignment = StringAlignment.Near;
     itemGrid55.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid55.Changed = false;
     itemGrid55.FieldType = ItemType.Label2;
     itemGrid55.FontColor = Color.Gainsboro;
     itemGrid55.FontStyle = FontStyle.Regular;
     itemGrid55.Height = 1f;
     itemGrid55.IsBlink = 0;
     itemGrid55.Name = "lbMarginRate";
     itemGrid55.Text = "IM";
     itemGrid55.ValueFormat = FormatType.Text;
     itemGrid55.Visible = true;
     itemGrid55.Width = 22;
     itemGrid55.X = 45;
     itemGrid55.Y = 9.6f;
     itemGrid56.AdjustFontSize = 0f;
     itemGrid56.Alignment = StringAlignment.Near;
     itemGrid56.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid56.Changed = false;
     itemGrid56.FieldType = ItemType.Text;
     itemGrid56.FontColor = Color.Yellow;
     itemGrid56.FontStyle = FontStyle.Regular;
     itemGrid56.Height = 1f;
     itemGrid56.IsBlink = 0;
     itemGrid56.Name = "tbMarginRate";
     itemGrid56.Text = "";
     itemGrid56.ValueFormat = FormatType.Text;
     itemGrid56.Visible = true;
     itemGrid56.Width = 31;
     itemGrid56.X = 67;
     itemGrid56.Y = 9.6f;
     itemGrid57.AdjustFontSize = 0f;
     itemGrid57.Alignment = StringAlignment.Near;
     itemGrid57.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid57.Changed = false;
     itemGrid57.FieldType = ItemType.Label2;
     itemGrid57.FontColor = Color.Gainsboro;
     itemGrid57.FontStyle = FontStyle.Regular;
     itemGrid57.Height = 1f;
     itemGrid57.IsBlink = 0;
     itemGrid57.Name = "lb_flag";
     itemGrid57.Text = "Flag";
     itemGrid57.ValueFormat = FormatType.Text;
     itemGrid57.Visible = true;
     itemGrid57.Width = 22;
     itemGrid57.X = 0;
     itemGrid57.Y = 9.6f;
     itemGrid58.AdjustFontSize = 0f;
     itemGrid58.Alignment = StringAlignment.Near;
     itemGrid58.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid58.Changed = false;
     itemGrid58.FieldType = ItemType.Text;
     itemGrid58.FontColor = Color.Yellow;
     itemGrid58.FontStyle = FontStyle.Regular;
     itemGrid58.Height = 1f;
     itemGrid58.IsBlink = 0;
     itemGrid58.Name = "flag";
     itemGrid58.Text = "";
     itemGrid58.ValueFormat = FormatType.Text;
     itemGrid58.Visible = true;
     itemGrid58.Width = 23;
     itemGrid58.X = 22;
     itemGrid58.Y = 9.6f;
     itemGrid59.AdjustFontSize = 0f;
     itemGrid59.Alignment = StringAlignment.Near;
     itemGrid59.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid59.Changed = false;
     itemGrid59.FieldType = ItemType.Label2;
     itemGrid59.FontColor = Color.Gainsboro;
     itemGrid59.FontStyle = FontStyle.Regular;
     itemGrid59.Height = 1f;
     itemGrid59.IsBlink = 0;
     itemGrid59.Name = "lb_hl52weel";
     itemGrid59.Text = "H/L 52W";
     itemGrid59.ValueFormat = FormatType.Text;
     itemGrid59.Visible = true;
     itemGrid59.Width = 22;
     itemGrid59.X = 45;
     itemGrid59.Y = 3.6f;
     itemGrid60.AdjustFontSize = -1f;
     itemGrid60.Alignment = StringAlignment.Near;
     itemGrid60.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid60.Changed = false;
     itemGrid60.FieldType = ItemType.Text;
     itemGrid60.FontColor = Color.White;
     itemGrid60.FontStyle = FontStyle.Regular;
     itemGrid60.Height = 1f;
     itemGrid60.IsBlink = 0;
     itemGrid60.Name = "h52w";
     itemGrid60.Text = "";
     itemGrid60.ValueFormat = FormatType.Price;
     itemGrid60.Visible = true;
     itemGrid60.Width = 14;
     itemGrid60.X = 67;
     itemGrid60.Y = 3.6f;
     itemGrid61.AdjustFontSize = 0f;
     itemGrid61.Alignment = StringAlignment.Center;
     itemGrid61.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid61.Changed = false;
     itemGrid61.FieldType = ItemType.Label;
     itemGrid61.FontColor = Color.Gainsboro;
     itemGrid61.FontStyle = FontStyle.Regular;
     itemGrid61.Height = 1f;
     itemGrid61.IsBlink = 0;
     itemGrid61.Name = "lb2";
     itemGrid61.Text = "/";
     itemGrid61.ValueFormat = FormatType.Label;
     itemGrid61.Visible = true;
     itemGrid61.Width = 3;
     itemGrid61.X = 81;
     itemGrid61.Y = 3.6f;
     itemGrid62.AdjustFontSize = -1f;
     itemGrid62.Alignment = StringAlignment.Near;
     itemGrid62.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid62.Changed = false;
     itemGrid62.FieldType = ItemType.Text;
     itemGrid62.FontColor = Color.White;
     itemGrid62.FontStyle = FontStyle.Regular;
     itemGrid62.Height = 1f;
     itemGrid62.IsBlink = 0;
     itemGrid62.Name = "l52w";
     itemGrid62.Text = "";
     itemGrid62.ValueFormat = FormatType.Price;
     itemGrid62.Visible = true;
     itemGrid62.Width = 16;
     itemGrid62.X = 84;
     itemGrid62.Y = 3.6f;
     this.intzaInfo.Items.Add(itemGrid21);
     this.intzaInfo.Items.Add(itemGrid22);
     this.intzaInfo.Items.Add(itemGrid23);
     this.intzaInfo.Items.Add(itemGrid24);
     this.intzaInfo.Items.Add(itemGrid25);
     this.intzaInfo.Items.Add(itemGrid26);
     this.intzaInfo.Items.Add(itemGrid27);
     this.intzaInfo.Items.Add(itemGrid28);
     this.intzaInfo.Items.Add(itemGrid29);
     this.intzaInfo.Items.Add(itemGrid30);
     this.intzaInfo.Items.Add(itemGrid31);
     this.intzaInfo.Items.Add(itemGrid32);
     this.intzaInfo.Items.Add(itemGrid33);
     this.intzaInfo.Items.Add(itemGrid34);
     this.intzaInfo.Items.Add(itemGrid35);
     this.intzaInfo.Items.Add(itemGrid36);
     this.intzaInfo.Items.Add(itemGrid37);
     this.intzaInfo.Items.Add(itemGrid38);
     this.intzaInfo.Items.Add(itemGrid39);
     this.intzaInfo.Items.Add(itemGrid40);
     this.intzaInfo.Items.Add(itemGrid41);
     this.intzaInfo.Items.Add(itemGrid42);
     this.intzaInfo.Items.Add(itemGrid43);
     this.intzaInfo.Items.Add(itemGrid44);
     this.intzaInfo.Items.Add(itemGrid45);
     this.intzaInfo.Items.Add(itemGrid46);
     this.intzaInfo.Items.Add(itemGrid47);
     this.intzaInfo.Items.Add(itemGrid48);
     this.intzaInfo.Items.Add(itemGrid49);
     this.intzaInfo.Items.Add(itemGrid50);
     this.intzaInfo.Items.Add(itemGrid51);
     this.intzaInfo.Items.Add(itemGrid52);
     this.intzaInfo.Items.Add(itemGrid53);
     this.intzaInfo.Items.Add(itemGrid54);
     this.intzaInfo.Items.Add(itemGrid55);
     this.intzaInfo.Items.Add(itemGrid56);
     this.intzaInfo.Items.Add(itemGrid57);
     this.intzaInfo.Items.Add(itemGrid58);
     this.intzaInfo.Items.Add(itemGrid59);
     this.intzaInfo.Items.Add(itemGrid60);
     this.intzaInfo.Items.Add(itemGrid61);
     this.intzaInfo.Items.Add(itemGrid62);
     this.intzaInfo.LineColor = Color.Red;
     this.intzaInfo.Location = new Point(612, 28);
     this.intzaInfo.Margin = new Padding(2);
     this.intzaInfo.Name = "intzaInfo";
     this.intzaInfo.Size = new Size(265, 164);
     this.intzaInfo.TabIndex = 92;
     this.intzaInfo.TabStop = false;
     this.intzaInfoTFEX.AllowDrop = true;
     this.intzaInfoTFEX.BackColor = Color.FromArgb(30, 30, 30);
     this.intzaInfoTFEX.CanDrag = false;
     this.intzaInfoTFEX.IsAutoRepaint = true;
     this.intzaInfoTFEX.IsDroped = false;
     itemGrid63.AdjustFontSize = 0f;
     itemGrid63.Alignment = StringAlignment.Near;
     itemGrid63.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid63.Changed = false;
     itemGrid63.FieldType = ItemType.Label;
     itemGrid63.FontColor = Color.Gainsboro;
     itemGrid63.FontStyle = FontStyle.Regular;
     itemGrid63.Height = 1f;
     itemGrid63.IsBlink = 0;
     itemGrid63.Name = "open_label";
     itemGrid63.Text = "Open";
     itemGrid63.ValueFormat = FormatType.Text;
     itemGrid63.Visible = true;
     itemGrid63.Width = 20;
     itemGrid63.X = 0;
     itemGrid63.Y = 0f;
     itemGrid64.AdjustFontSize = -1f;
     itemGrid64.Alignment = StringAlignment.Far;
     itemGrid64.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid64.Changed = false;
     itemGrid64.FieldType = ItemType.Text;
     itemGrid64.FontColor = Color.Yellow;
     itemGrid64.FontStyle = FontStyle.Regular;
     itemGrid64.Height = 1f;
     itemGrid64.IsBlink = 0;
     itemGrid64.Name = "open_vol";
     itemGrid64.Text = "";
     itemGrid64.ValueFormat = FormatType.Volume;
     itemGrid64.Visible = true;
     itemGrid64.Width = 35;
     itemGrid64.X = 20;
     itemGrid64.Y = 0f;
     itemGrid65.AdjustFontSize = 0f;
     itemGrid65.Alignment = StringAlignment.Far;
     itemGrid65.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid65.Changed = false;
     itemGrid65.FieldType = ItemType.Text;
     itemGrid65.FontColor = Color.Yellow;
     itemGrid65.FontStyle = FontStyle.Regular;
     itemGrid65.Height = 1f;
     itemGrid65.IsBlink = 0;
     itemGrid65.Name = "open_avg";
     itemGrid65.Text = "";
     itemGrid65.ValueFormat = FormatType.Text;
     itemGrid65.Visible = false;
     itemGrid65.Width = 27;
     itemGrid65.X = 73;
     itemGrid65.Y = 0f;
     itemGrid66.AdjustFontSize = 0f;
     itemGrid66.Alignment = StringAlignment.Near;
     itemGrid66.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid66.Changed = false;
     itemGrid66.FieldType = ItemType.Label;
     itemGrid66.FontColor = Color.Gainsboro;
     itemGrid66.FontStyle = FontStyle.Regular;
     itemGrid66.Height = 1f;
     itemGrid66.IsBlink = 0;
     itemGrid66.Name = "long_label";
     itemGrid66.Text = "Long";
     itemGrid66.ValueFormat = FormatType.Text;
     itemGrid66.Visible = true;
     itemGrid66.Width = 20;
     itemGrid66.X = 0;
     itemGrid66.Y = 1.2f;
     itemGrid67.AdjustFontSize = -1f;
     itemGrid67.Alignment = StringAlignment.Far;
     itemGrid67.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid67.Changed = false;
     itemGrid67.FieldType = ItemType.Text;
     itemGrid67.FontColor = Color.Lime;
     itemGrid67.FontStyle = FontStyle.Regular;
     itemGrid67.Height = 1f;
     itemGrid67.IsBlink = 0;
     itemGrid67.Name = "long_vol";
     itemGrid67.Text = "";
     itemGrid67.ValueFormat = FormatType.Volume;
     itemGrid67.Visible = true;
     itemGrid67.Width = 35;
     itemGrid67.X = 20;
     itemGrid67.Y = 1.2f;
     itemGrid68.AdjustFontSize = 0f;
     itemGrid68.Alignment = StringAlignment.Far;
     itemGrid68.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid68.Changed = false;
     itemGrid68.FieldType = ItemType.Text;
     itemGrid68.FontColor = Color.Yellow;
     itemGrid68.FontStyle = FontStyle.Regular;
     itemGrid68.Height = 1f;
     itemGrid68.IsBlink = 0;
     itemGrid68.Name = "long_avg";
     itemGrid68.Text = "";
     itemGrid68.ValueFormat = FormatType.Text;
     itemGrid68.Visible = false;
     itemGrid68.Width = 27;
     itemGrid68.X = 73;
     itemGrid68.Y = 1.2f;
     itemGrid69.AdjustFontSize = 0f;
     itemGrid69.Alignment = StringAlignment.Near;
     itemGrid69.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid69.Changed = false;
     itemGrid69.FieldType = ItemType.Label;
     itemGrid69.FontColor = Color.Gainsboro;
     itemGrid69.FontStyle = FontStyle.Regular;
     itemGrid69.Height = 1f;
     itemGrid69.IsBlink = 0;
     itemGrid69.Name = "short_label";
     itemGrid69.Text = "Short";
     itemGrid69.ValueFormat = FormatType.Text;
     itemGrid69.Visible = true;
     itemGrid69.Width = 20;
     itemGrid69.X = 0;
     itemGrid69.Y = 2.4f;
     itemGrid70.AdjustFontSize = -1f;
     itemGrid70.Alignment = StringAlignment.Far;
     itemGrid70.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid70.Changed = false;
     itemGrid70.FieldType = ItemType.Text;
     itemGrid70.FontColor = Color.Red;
     itemGrid70.FontStyle = FontStyle.Regular;
     itemGrid70.Height = 1f;
     itemGrid70.IsBlink = 0;
     itemGrid70.Name = "short_vol";
     itemGrid70.Text = "";
     itemGrid70.ValueFormat = FormatType.Volume;
     itemGrid70.Visible = true;
     itemGrid70.Width = 35;
     itemGrid70.X = 20;
     itemGrid70.Y = 2.4f;
     itemGrid71.AdjustFontSize = 0f;
     itemGrid71.Alignment = StringAlignment.Far;
     itemGrid71.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid71.Changed = false;
     itemGrid71.FieldType = ItemType.Text;
     itemGrid71.FontColor = Color.Yellow;
     itemGrid71.FontStyle = FontStyle.Regular;
     itemGrid71.Height = 1f;
     itemGrid71.IsBlink = 0;
     itemGrid71.Name = "short_avg";
     itemGrid71.Text = "";
     itemGrid71.ValueFormat = FormatType.Text;
     itemGrid71.Visible = false;
     itemGrid71.Width = 27;
     itemGrid71.X = 73;
     itemGrid71.Y = 2.4f;
     itemGrid72.AdjustFontSize = 0f;
     itemGrid72.Alignment = StringAlignment.Near;
     itemGrid72.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid72.Changed = false;
     itemGrid72.FieldType = ItemType.Text;
     itemGrid72.FontColor = Color.White;
     itemGrid72.FontStyle = FontStyle.Regular;
     itemGrid72.Height = 3.4f;
     itemGrid72.IsBlink = 0;
     itemGrid72.Name = "pie";
     itemGrid72.Text = "";
     itemGrid72.ValueFormat = FormatType.PieChartNew;
     itemGrid72.Visible = true;
     itemGrid72.Width = 40;
     itemGrid72.X = 60;
     itemGrid72.Y = 0f;
     itemGrid73.AdjustFontSize = 0f;
     itemGrid73.Alignment = StringAlignment.Near;
     itemGrid73.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid73.Changed = false;
     itemGrid73.FieldType = ItemType.Label;
     itemGrid73.FontColor = Color.Gainsboro;
     itemGrid73.FontStyle = FontStyle.Regular;
     itemGrid73.Height = 1f;
     itemGrid73.IsBlink = 0;
     itemGrid73.Name = "oi_lable";
     itemGrid73.Text = "OI";
     itemGrid73.ValueFormat = FormatType.Text;
     itemGrid73.Visible = true;
     itemGrid73.Width = 23;
     itemGrid73.X = 0;
     itemGrid73.Y = 3.6f;
     itemGrid74.AdjustFontSize = 0f;
     itemGrid74.Alignment = StringAlignment.Near;
     itemGrid74.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid74.Changed = false;
     itemGrid74.FieldType = ItemType.Text;
     itemGrid74.FontColor = Color.Yellow;
     itemGrid74.FontStyle = FontStyle.Regular;
     itemGrid74.Height = 1f;
     itemGrid74.IsBlink = 0;
     itemGrid74.Name = "oi";
     itemGrid74.Text = "";
     itemGrid74.ValueFormat = FormatType.Price;
     itemGrid74.Visible = true;
     itemGrid74.Width = 26;
     itemGrid74.X = 23;
     itemGrid74.Y = 3.6f;
     itemGrid75.AdjustFontSize = 0f;
     itemGrid75.Alignment = StringAlignment.Near;
     itemGrid75.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid75.Changed = false;
     itemGrid75.FieldType = ItemType.Label;
     itemGrid75.FontColor = Color.Gainsboro;
     itemGrid75.FontStyle = FontStyle.Regular;
     itemGrid75.Height = 1f;
     itemGrid75.IsBlink = 0;
     itemGrid75.Name = "psettle_label";
     itemGrid75.Text = "P.Settle";
     itemGrid75.ValueFormat = FormatType.Text;
     itemGrid75.Visible = true;
     itemGrid75.Width = 23;
     itemGrid75.X = 0;
     itemGrid75.Y = 4.6f;
     itemGrid76.AdjustFontSize = 0f;
     itemGrid76.Alignment = StringAlignment.Near;
     itemGrid76.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid76.Changed = false;
     itemGrid76.FieldType = ItemType.Text;
     itemGrid76.FontColor = Color.Yellow;
     itemGrid76.FontStyle = FontStyle.Regular;
     itemGrid76.Height = 1f;
     itemGrid76.IsBlink = 0;
     itemGrid76.Name = "psettle";
     itemGrid76.Text = "";
     itemGrid76.ValueFormat = FormatType.Text;
     itemGrid76.Visible = true;
     itemGrid76.Width = 26;
     itemGrid76.X = 23;
     itemGrid76.Y = 4.6f;
     itemGrid77.AdjustFontSize = 0f;
     itemGrid77.Alignment = StringAlignment.Near;
     itemGrid77.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid77.Changed = false;
     itemGrid77.FieldType = ItemType.Label;
     itemGrid77.FontColor = Color.Gainsboro;
     itemGrid77.FontStyle = FontStyle.Regular;
     itemGrid77.Height = 1f;
     itemGrid77.IsBlink = 0;
     itemGrid77.Name = "settle_label";
     itemGrid77.Text = "Settle";
     itemGrid77.ValueFormat = FormatType.Text;
     itemGrid77.Visible = true;
     itemGrid77.Width = 23;
     itemGrid77.X = 0;
     itemGrid77.Y = 5.6f;
     itemGrid78.AdjustFontSize = 0f;
     itemGrid78.Alignment = StringAlignment.Near;
     itemGrid78.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid78.Changed = false;
     itemGrid78.FieldType = ItemType.Text;
     itemGrid78.FontColor = Color.Yellow;
     itemGrid78.FontStyle = FontStyle.Regular;
     itemGrid78.Height = 1f;
     itemGrid78.IsBlink = 0;
     itemGrid78.Name = "settle";
     itemGrid78.Text = "";
     itemGrid78.ValueFormat = FormatType.Text;
     itemGrid78.Visible = true;
     itemGrid78.Width = 26;
     itemGrid78.X = 23;
     itemGrid78.Y = 5.6f;
     itemGrid79.AdjustFontSize = 0f;
     itemGrid79.Alignment = StringAlignment.Near;
     itemGrid79.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid79.Changed = false;
     itemGrid79.FieldType = ItemType.Label;
     itemGrid79.FontColor = Color.Gainsboro;
     itemGrid79.FontStyle = FontStyle.Regular;
     itemGrid79.Height = 1f;
     itemGrid79.IsBlink = 0;
     itemGrid79.Name = "ceiling_lable";
     itemGrid79.Text = "Ceiling";
     itemGrid79.ValueFormat = FormatType.Text;
     itemGrid79.Visible = true;
     itemGrid79.Width = 23;
     itemGrid79.X = 0;
     itemGrid79.Y = 6.6f;
     itemGrid80.AdjustFontSize = 0f;
     itemGrid80.Alignment = StringAlignment.Near;
     itemGrid80.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid80.Changed = false;
     itemGrid80.FieldType = ItemType.Text;
     itemGrid80.FontColor = Color.Cyan;
     itemGrid80.FontStyle = FontStyle.Regular;
     itemGrid80.Height = 1f;
     itemGrid80.IsBlink = 0;
     itemGrid80.Name = "ceiling";
     itemGrid80.Text = "";
     itemGrid80.ValueFormat = FormatType.Text;
     itemGrid80.Visible = true;
     itemGrid80.Width = 26;
     itemGrid80.X = 23;
     itemGrid80.Y = 6.6f;
     itemGrid81.AdjustFontSize = 0f;
     itemGrid81.Alignment = StringAlignment.Near;
     itemGrid81.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid81.Changed = false;
     itemGrid81.FieldType = ItemType.Label;
     itemGrid81.FontColor = Color.Gainsboro;
     itemGrid81.FontStyle = FontStyle.Regular;
     itemGrid81.Height = 1f;
     itemGrid81.IsBlink = 0;
     itemGrid81.Name = "floor_label";
     itemGrid81.Text = "Floor";
     itemGrid81.ValueFormat = FormatType.Text;
     itemGrid81.Visible = true;
     itemGrid81.Width = 23;
     itemGrid81.X = 0;
     itemGrid81.Y = 7.6f;
     itemGrid82.AdjustFontSize = 0f;
     itemGrid82.Alignment = StringAlignment.Near;
     itemGrid82.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid82.Changed = false;
     itemGrid82.FieldType = ItemType.Text;
     itemGrid82.FontColor = Color.Magenta;
     itemGrid82.FontStyle = FontStyle.Regular;
     itemGrid82.Height = 1f;
     itemGrid82.IsBlink = 0;
     itemGrid82.Name = "floor";
     itemGrid82.Text = "";
     itemGrid82.ValueFormat = FormatType.Text;
     itemGrid82.Visible = true;
     itemGrid82.Width = 26;
     itemGrid82.X = 23;
     itemGrid82.Y = 7.6f;
     itemGrid83.AdjustFontSize = 0f;
     itemGrid83.Alignment = StringAlignment.Near;
     itemGrid83.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid83.Changed = false;
     itemGrid83.FieldType = ItemType.Label;
     itemGrid83.FontColor = Color.White;
     itemGrid83.FontStyle = FontStyle.Regular;
     itemGrid83.Height = 1f;
     itemGrid83.IsBlink = 0;
     itemGrid83.Name = "Multiplier";
     itemGrid83.Text = "Multiplier";
     itemGrid83.ValueFormat = FormatType.Text;
     itemGrid83.Visible = true;
     itemGrid83.Width = 25;
     itemGrid83.X = 0;
     itemGrid83.Y = 8.6f;
     itemGrid84.AdjustFontSize = 0f;
     itemGrid84.Alignment = StringAlignment.Near;
     itemGrid84.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid84.Changed = false;
     itemGrid84.FieldType = ItemType.Text;
     itemGrid84.FontColor = Color.Yellow;
     itemGrid84.FontStyle = FontStyle.Regular;
     itemGrid84.Height = 1f;
     itemGrid84.IsBlink = 0;
     itemGrid84.Name = "multiplier";
     itemGrid84.Text = "";
     itemGrid84.ValueFormat = FormatType.Text;
     itemGrid84.Visible = true;
     itemGrid84.Width = 26;
     itemGrid84.X = 23;
     itemGrid84.Y = 8.6f;
     itemGrid85.AdjustFontSize = 0f;
     itemGrid85.Alignment = StringAlignment.Near;
     itemGrid85.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid85.Changed = false;
     itemGrid85.FieldType = ItemType.Label;
     itemGrid85.FontColor = Color.Gainsboro;
     itemGrid85.FontStyle = FontStyle.Regular;
     itemGrid85.Height = 1f;
     itemGrid85.IsBlink = 0;
     itemGrid85.Name = "tickSize_lable";
     itemGrid85.Text = "Spread";
     itemGrid85.ValueFormat = FormatType.Text;
     itemGrid85.Visible = true;
     itemGrid85.Width = 23;
     itemGrid85.X = 0;
     itemGrid85.Y = 9.6f;
     itemGrid86.AdjustFontSize = 0f;
     itemGrid86.Alignment = StringAlignment.Near;
     itemGrid86.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid86.Changed = false;
     itemGrid86.FieldType = ItemType.Text;
     itemGrid86.FontColor = Color.Yellow;
     itemGrid86.FontStyle = FontStyle.Regular;
     itemGrid86.Height = 1f;
     itemGrid86.IsBlink = 0;
     itemGrid86.Name = "tickSize";
     itemGrid86.Text = "";
     itemGrid86.ValueFormat = FormatType.Text;
     itemGrid86.Visible = true;
     itemGrid86.Width = 26;
     itemGrid86.X = 23;
     itemGrid86.Y = 9.6f;
     itemGrid87.AdjustFontSize = 0f;
     itemGrid87.Alignment = StringAlignment.Near;
     itemGrid87.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid87.Changed = false;
     itemGrid87.FieldType = ItemType.Label;
     itemGrid87.FontColor = Color.Gainsboro;
     itemGrid87.FontStyle = FontStyle.Regular;
     itemGrid87.Height = 1f;
     itemGrid87.IsBlink = 0;
     itemGrid87.Name = "turnover_label";
     itemGrid87.Text = "Turn Over";
     itemGrid87.ValueFormat = FormatType.Text;
     itemGrid87.Visible = false;
     itemGrid87.Width = 23;
     itemGrid87.X = 49;
     itemGrid87.Y = 3.6f;
     itemGrid88.AdjustFontSize = 0f;
     itemGrid88.Alignment = StringAlignment.Near;
     itemGrid88.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid88.Changed = false;
     itemGrid88.FieldType = ItemType.Text;
     itemGrid88.FontColor = Color.Yellow;
     itemGrid88.FontStyle = FontStyle.Regular;
     itemGrid88.Height = 1f;
     itemGrid88.IsBlink = 0;
     itemGrid88.Name = "turnover";
     itemGrid88.Text = "";
     itemGrid88.ValueFormat = FormatType.Price;
     itemGrid88.Visible = false;
     itemGrid88.Width = 29;
     itemGrid88.X = 72;
     itemGrid88.Y = 3.6f;
     itemGrid89.AdjustFontSize = 0f;
     itemGrid89.Alignment = StringAlignment.Near;
     itemGrid89.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid89.Changed = false;
     itemGrid89.FieldType = ItemType.Label;
     itemGrid89.FontColor = Color.Gainsboro;
     itemGrid89.FontStyle = FontStyle.Regular;
     itemGrid89.Height = 1f;
     itemGrid89.IsBlink = 0;
     itemGrid89.Name = "basis_label";
     itemGrid89.Text = "Basis";
     itemGrid89.ValueFormat = FormatType.Text;
     itemGrid89.Visible = true;
     itemGrid89.Width = 23;
     itemGrid89.X = 49;
     itemGrid89.Y = 3.6f;
     itemGrid90.AdjustFontSize = 0f;
     itemGrid90.Alignment = StringAlignment.Near;
     itemGrid90.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid90.Changed = false;
     itemGrid90.FieldType = ItemType.Text;
     itemGrid90.FontColor = Color.Yellow;
     itemGrid90.FontStyle = FontStyle.Regular;
     itemGrid90.Height = 1f;
     itemGrid90.IsBlink = 0;
     itemGrid90.Name = "basis";
     itemGrid90.Text = "";
     itemGrid90.ValueFormat = FormatType.Price;
     itemGrid90.Visible = true;
     itemGrid90.Width = 29;
     itemGrid90.X = 72;
     itemGrid90.Y = 3.6f;
     itemGrid91.AdjustFontSize = 0f;
     itemGrid91.Alignment = StringAlignment.Near;
     itemGrid91.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid91.Changed = false;
     itemGrid91.FieldType = ItemType.Label;
     itemGrid91.FontColor = Color.Gainsboro;
     itemGrid91.FontStyle = FontStyle.Regular;
     itemGrid91.Height = 1f;
     itemGrid91.IsBlink = 0;
     itemGrid91.Name = "open1_label";
     itemGrid91.Text = "Open 1";
     itemGrid91.ValueFormat = FormatType.Text;
     itemGrid91.Visible = true;
     itemGrid91.Width = 23;
     itemGrid91.X = 49;
     itemGrid91.Y = 4.6f;
     itemGrid92.AdjustFontSize = 0f;
     itemGrid92.Alignment = StringAlignment.Near;
     itemGrid92.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid92.Changed = false;
     itemGrid92.FieldType = ItemType.Text;
     itemGrid92.FontColor = Color.Yellow;
     itemGrid92.FontStyle = FontStyle.Regular;
     itemGrid92.Height = 1f;
     itemGrid92.IsBlink = 0;
     itemGrid92.Name = "open1";
     itemGrid92.Text = "";
     itemGrid92.ValueFormat = FormatType.Text;
     itemGrid92.Visible = true;
     itemGrid92.Width = 29;
     itemGrid92.X = 72;
     itemGrid92.Y = 4.6f;
     itemGrid93.AdjustFontSize = 0f;
     itemGrid93.Alignment = StringAlignment.Near;
     itemGrid93.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid93.Changed = false;
     itemGrid93.FieldType = ItemType.Label;
     itemGrid93.FontColor = Color.Gainsboro;
     itemGrid93.FontStyle = FontStyle.Regular;
     itemGrid93.Height = 1f;
     itemGrid93.IsBlink = 0;
     itemGrid93.Name = "open2_label";
     itemGrid93.Text = "Open 2";
     itemGrid93.ValueFormat = FormatType.Text;
     itemGrid93.Visible = true;
     itemGrid93.Width = 23;
     itemGrid93.X = 49;
     itemGrid93.Y = 5.6f;
     itemGrid94.AdjustFontSize = 0f;
     itemGrid94.Alignment = StringAlignment.Near;
     itemGrid94.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid94.Changed = false;
     itemGrid94.FieldType = ItemType.Text;
     itemGrid94.FontColor = Color.Yellow;
     itemGrid94.FontStyle = FontStyle.Regular;
     itemGrid94.Height = 1f;
     itemGrid94.IsBlink = 0;
     itemGrid94.Name = "open2";
     itemGrid94.Text = "";
     itemGrid94.ValueFormat = FormatType.Text;
     itemGrid94.Visible = true;
     itemGrid94.Width = 29;
     itemGrid94.X = 72;
     itemGrid94.Y = 5.6f;
     itemGrid95.AdjustFontSize = 0f;
     itemGrid95.Alignment = StringAlignment.Near;
     itemGrid95.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid95.Changed = false;
     itemGrid95.FieldType = ItemType.Label;
     itemGrid95.FontColor = Color.Gainsboro;
     itemGrid95.FontStyle = FontStyle.Regular;
     itemGrid95.Height = 1f;
     itemGrid95.IsBlink = 0;
     itemGrid95.Name = "poclose_label";
     itemGrid95.Text = "P.Close";
     itemGrid95.ValueFormat = FormatType.Text;
     itemGrid95.Visible = true;
     itemGrid95.Width = 23;
     itemGrid95.X = 49;
     itemGrid95.Y = 7.6f;
     itemGrid96.AdjustFontSize = 0f;
     itemGrid96.Alignment = StringAlignment.Near;
     itemGrid96.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid96.Changed = false;
     itemGrid96.FieldType = ItemType.Text;
     itemGrid96.FontColor = Color.Yellow;
     itemGrid96.FontStyle = FontStyle.Regular;
     itemGrid96.Height = 1f;
     itemGrid96.IsBlink = 0;
     itemGrid96.Name = "poclose";
     itemGrid96.Text = "";
     itemGrid96.ValueFormat = FormatType.Text;
     itemGrid96.Visible = true;
     itemGrid96.Width = 29;
     itemGrid96.X = 72;
     itemGrid96.Y = 7.6f;
     itemGrid97.AdjustFontSize = 0f;
     itemGrid97.Alignment = StringAlignment.Near;
     itemGrid97.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid97.Changed = false;
     itemGrid97.FieldType = ItemType.Label;
     itemGrid97.FontColor = Color.Gainsboro;
     itemGrid97.FontStyle = FontStyle.Regular;
     itemGrid97.Height = 1f;
     itemGrid97.IsBlink = 0;
     itemGrid97.Name = "open3_label";
     itemGrid97.Text = "Open 3";
     itemGrid97.ValueFormat = FormatType.Text;
     itemGrid97.Visible = true;
     itemGrid97.Width = 23;
     itemGrid97.X = 49;
     itemGrid97.Y = 6.6f;
     itemGrid98.AdjustFontSize = 0f;
     itemGrid98.Alignment = StringAlignment.Near;
     itemGrid98.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid98.Changed = false;
     itemGrid98.FieldType = ItemType.Text;
     itemGrid98.FontColor = Color.Yellow;
     itemGrid98.FontStyle = FontStyle.Regular;
     itemGrid98.Height = 1f;
     itemGrid98.IsBlink = 0;
     itemGrid98.Name = "open3";
     itemGrid98.Text = "";
     itemGrid98.ValueFormat = FormatType.Text;
     itemGrid98.Visible = true;
     itemGrid98.Width = 29;
     itemGrid98.X = 72;
     itemGrid98.Y = 6.6f;
     itemGrid99.AdjustFontSize = 0f;
     itemGrid99.Alignment = StringAlignment.Near;
     itemGrid99.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid99.Changed = false;
     itemGrid99.FieldType = ItemType.Label;
     itemGrid99.FontColor = Color.Gainsboro;
     itemGrid99.FontStyle = FontStyle.Regular;
     itemGrid99.Height = 1f;
     itemGrid99.IsBlink = 0;
     itemGrid99.Name = "first_date_label";
     itemGrid99.Text = "First";
     itemGrid99.ValueFormat = FormatType.Text;
     itemGrid99.Visible = false;
     itemGrid99.Width = 23;
     itemGrid99.X = 49;
     itemGrid99.Y = 7.6f;
     itemGrid100.AdjustFontSize = 0f;
     itemGrid100.Alignment = StringAlignment.Near;
     itemGrid100.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid100.Changed = false;
     itemGrid100.FieldType = ItemType.Text;
     itemGrid100.FontColor = Color.Yellow;
     itemGrid100.FontStyle = FontStyle.Regular;
     itemGrid100.Height = 1f;
     itemGrid100.IsBlink = 0;
     itemGrid100.Name = "first_date";
     itemGrid100.Text = "";
     itemGrid100.ValueFormat = FormatType.Text;
     itemGrid100.Visible = false;
     itemGrid100.Width = 29;
     itemGrid100.X = 72;
     itemGrid100.Y = 7.6f;
     itemGrid101.AdjustFontSize = 0f;
     itemGrid101.Alignment = StringAlignment.Near;
     itemGrid101.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid101.Changed = false;
     itemGrid101.FieldType = ItemType.Label;
     itemGrid101.FontColor = Color.Gainsboro;
     itemGrid101.FontStyle = FontStyle.Regular;
     itemGrid101.Height = 1f;
     itemGrid101.IsBlink = 0;
     itemGrid101.Name = "last_date_label";
     itemGrid101.Text = "Last";
     itemGrid101.ValueFormat = FormatType.Text;
     itemGrid101.Visible = true;
     itemGrid101.Width = 23;
     itemGrid101.X = 49;
     itemGrid101.Y = 8.6f;
     itemGrid102.AdjustFontSize = 0f;
     itemGrid102.Alignment = StringAlignment.Near;
     itemGrid102.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid102.Changed = false;
     itemGrid102.FieldType = ItemType.Text;
     itemGrid102.FontColor = Color.Yellow;
     itemGrid102.FontStyle = FontStyle.Regular;
     itemGrid102.Height = 1f;
     itemGrid102.IsBlink = 0;
     itemGrid102.Name = "last_date";
     itemGrid102.Text = "";
     itemGrid102.ValueFormat = FormatType.Text;
     itemGrid102.Visible = true;
     itemGrid102.Width = 29;
     itemGrid102.X = 72;
     itemGrid102.Y = 8.6f;
     itemGrid103.AdjustFontSize = 0f;
     itemGrid103.Alignment = StringAlignment.Near;
     itemGrid103.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid103.Changed = false;
     itemGrid103.FieldType = ItemType.Label;
     itemGrid103.FontColor = Color.Gainsboro;
     itemGrid103.FontStyle = FontStyle.Regular;
     itemGrid103.Height = 1f;
     itemGrid103.IsBlink = 0;
     itemGrid103.Name = "lastIndex_label";
     itemGrid103.Text = "Index";
     itemGrid103.ValueFormat = FormatType.Text;
     itemGrid103.Visible = true;
     itemGrid103.Width = 23;
     itemGrid103.X = 49;
     itemGrid103.Y = 9.6f;
     itemGrid104.AdjustFontSize = 0f;
     itemGrid104.Alignment = StringAlignment.Near;
     itemGrid104.BackColor = Color.FromArgb(30, 30, 30);
     itemGrid104.Changed = false;
     itemGrid104.FieldType = ItemType.Text;
     itemGrid104.FontColor = Color.Yellow;
     itemGrid104.FontStyle = FontStyle.Regular;
     itemGrid104.Height = 1f;
     itemGrid104.IsBlink = 0;
     itemGrid104.Name = "lastIndex";
     itemGrid104.Text = "";
     itemGrid104.ValueFormat = FormatType.Text;
     itemGrid104.Visible = true;
     itemGrid104.Width = 29;
     itemGrid104.X = 72;
     itemGrid104.Y = 9.6f;
     this.intzaInfoTFEX.Items.Add(itemGrid63);
     this.intzaInfoTFEX.Items.Add(itemGrid64);
     this.intzaInfoTFEX.Items.Add(itemGrid65);
     this.intzaInfoTFEX.Items.Add(itemGrid66);
     this.intzaInfoTFEX.Items.Add(itemGrid67);
     this.intzaInfoTFEX.Items.Add(itemGrid68);
     this.intzaInfoTFEX.Items.Add(itemGrid69);
     this.intzaInfoTFEX.Items.Add(itemGrid70);
     this.intzaInfoTFEX.Items.Add(itemGrid71);
     this.intzaInfoTFEX.Items.Add(itemGrid72);
     this.intzaInfoTFEX.Items.Add(itemGrid73);
     this.intzaInfoTFEX.Items.Add(itemGrid74);
     this.intzaInfoTFEX.Items.Add(itemGrid75);
     this.intzaInfoTFEX.Items.Add(itemGrid76);
     this.intzaInfoTFEX.Items.Add(itemGrid77);
     this.intzaInfoTFEX.Items.Add(itemGrid78);
     this.intzaInfoTFEX.Items.Add(itemGrid79);
     this.intzaInfoTFEX.Items.Add(itemGrid80);
     this.intzaInfoTFEX.Items.Add(itemGrid81);
     this.intzaInfoTFEX.Items.Add(itemGrid82);
     this.intzaInfoTFEX.Items.Add(itemGrid83);
     this.intzaInfoTFEX.Items.Add(itemGrid84);
     this.intzaInfoTFEX.Items.Add(itemGrid85);
     this.intzaInfoTFEX.Items.Add(itemGrid86);
     this.intzaInfoTFEX.Items.Add(itemGrid87);
     this.intzaInfoTFEX.Items.Add(itemGrid88);
     this.intzaInfoTFEX.Items.Add(itemGrid89);
     this.intzaInfoTFEX.Items.Add(itemGrid90);
     this.intzaInfoTFEX.Items.Add(itemGrid91);
     this.intzaInfoTFEX.Items.Add(itemGrid92);
     this.intzaInfoTFEX.Items.Add(itemGrid93);
     this.intzaInfoTFEX.Items.Add(itemGrid94);
     this.intzaInfoTFEX.Items.Add(itemGrid95);
     this.intzaInfoTFEX.Items.Add(itemGrid96);
     this.intzaInfoTFEX.Items.Add(itemGrid97);
     this.intzaInfoTFEX.Items.Add(itemGrid98);
     this.intzaInfoTFEX.Items.Add(itemGrid99);
     this.intzaInfoTFEX.Items.Add(itemGrid100);
     this.intzaInfoTFEX.Items.Add(itemGrid101);
     this.intzaInfoTFEX.Items.Add(itemGrid102);
     this.intzaInfoTFEX.Items.Add(itemGrid103);
     this.intzaInfoTFEX.Items.Add(itemGrid104);
     this.intzaInfoTFEX.LineColor = Color.Red;
     this.intzaInfoTFEX.Location = new Point(612, 336);
     this.intzaInfoTFEX.Margin = new Padding(2);
     this.intzaInfoTFEX.Name = "intzaInfoTFEX";
     this.intzaInfoTFEX.Size = new Size(236, 158);
     this.intzaInfoTFEX.TabIndex = 93;
     this.intzaInfoTFEX.TabStop = false;
     clsPermission.DisplayBuySell = enumDisplayBuySell.Yes;
     clsPermission.HistoricalDay = 30.0;
     clsPermission.Permission = enumPermission.Visible;
     clsPermission.VolType = null;
     clsPermission.WordingType = null;
     this.wcGraphVolume.ActiveSET = clsPermission;
     clsPermission2.DisplayBuySell = enumDisplayBuySell.Yes;
     clsPermission2.HistoricalDay = 30.0;
     clsPermission2.Permission = enumPermission.Visible;
     clsPermission2.VolType = null;
     clsPermission2.WordingType = null;
     this.wcGraphVolume.ActiveTFEX = clsPermission2;
     this.wcGraphVolume.BackColor = Color.FromArgb(30, 30, 30);
     this.wcGraphVolume.ColorBg = Color.FromArgb(30, 30, 30);
     this.wcGraphVolume.ColorBuy = Color.Lime;
     this.wcGraphVolume.ColorCeiling = Color.Aqua;
     this.wcGraphVolume.ColorDown = Color.Red;
     this.wcGraphVolume.ColorFloor = Color.Fuchsia;
     this.wcGraphVolume.ColorGrid = Color.DarkGray;
     this.wcGraphVolume.ColorNoChg = Color.Yellow;
     this.wcGraphVolume.ColorSell = Color.Red;
     this.wcGraphVolume.ColorUp = Color.Lime;
     this.wcGraphVolume.ColorValue = Color.White;
     this.wcGraphVolume.ColorVolume = Color.Yellow;
     this.wcGraphVolume.CurDate = null;
     this.wcGraphVolume.dictIPO = (Dictionary<string, float>)componentResourceManager.GetObject("wcGraphVolume.dictIPO");
     this.wcGraphVolume.FontName = "Arial";
     this.wcGraphVolume.FontSize = 10f;
     this.wcGraphVolume.Location = new Point(435, 224);
     this.wcGraphVolume.Mode = 0;
     this.wcGraphVolume.Name = "wcGraphVolume";
     this.wcGraphVolume.Size = new Size(197, 69);
     this.wcGraphVolume.SymbolList = null;
     this.wcGraphVolume.SymbolType = enumType.eSet;
     this.wcGraphVolume.TabIndex = 94;
     this.wcGraphVolume.TextBoxBgColor = Color.Empty;
     this.wcGraphVolume.TextBoxForeColor = Color.Empty;
     this.wcGraphVolume.TypeMode = enumMode.Previous;
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = Color.FromArgb(20, 20, 20);
     base.ClientSize = new Size(888, 419);
     base.Controls.Add(this.wcGraphVolume);
     base.Controls.Add(this.intzaInfoTFEX);
     base.Controls.Add(this.intzaInfo);
     base.Controls.Add(this.intzaVolumeByBoard);
     base.Controls.Add(this.intzaLS);
     base.Controls.Add(this.intzaViewOddLotInfo);
     base.Controls.Add(this.intzaSaleByTime);
     base.Controls.Add(this.intzaSaleByPrice);
     base.Controls.Add(this.intzaViewOddLot);
     base.Controls.Add(this.intzaStockInPlay);
     base.Controls.Add(this.tStripMenu);
     base.FormBorderStyle = FormBorderStyle.FixedToolWindow;
     base.Margin = new Padding(4);
     base.Name = "frmStockSummary";
     this.Text = "Stock Summary";
     base.IDoShownDelay += new ClientBaseForm.OnShownDelayEventHandler(this.frmStockSummary_IDoShownDelay);
     base.IDoLoadData += new ClientBaseForm.OnIDoLoadDataEventHandler(this.frmStockSummary_IDoLoadData);
     base.IDoFontChanged += new ClientBaseForm.OnFontChangedEventHandler(this.frmStockSummary_IDoFontChanged);
     base.IDoCustomSizeChanged += new ClientBaseForm.CustomSizeChangedEventHandler(this.frmStockSummary_IDoCustomSizeChanged);
     base.IDoSymbolLinked += new ClientBaseForm.OnSymbolLinkEventHandler(this.frmStockSummary_IDoSymbolLinked);
     base.IDoMainFormKeyUp += new ClientBaseForm.OnFormKeyUpEventHandler(this.frmStockSummary_IDoMainFormKeyUp);
     base.IDoReActivated += new ClientBaseForm.OnReActiveEventHandler(this.frmStockSummary_IDoReActivated);
     base.Controls.SetChildIndex(this.tStripMenu, 0);
     base.Controls.SetChildIndex(this.intzaStockInPlay, 0);
     base.Controls.SetChildIndex(this.intzaViewOddLot, 0);
     base.Controls.SetChildIndex(this.intzaSaleByPrice, 0);
     base.Controls.SetChildIndex(this.intzaSaleByTime, 0);
     base.Controls.SetChildIndex(this.intzaViewOddLotInfo, 0);
     base.Controls.SetChildIndex(this.intzaLS, 0);
     base.Controls.SetChildIndex(this.intzaVolumeByBoard, 0);
     base.Controls.SetChildIndex(this.intzaInfo, 0);
     base.Controls.SetChildIndex(this.intzaInfoTFEX, 0);
     base.Controls.SetChildIndex(this.wcGraphVolume, 0);
     this.tStripMenu.ResumeLayout(false);
     this.tStripMenu.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
示例#29
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(ucSmart1Click));
     ColumnItem columnItem = new ColumnItem();
     ColumnItem columnItem2 = new ColumnItem();
     ColumnItem columnItem3 = new ColumnItem();
     ColumnItem columnItem4 = new ColumnItem();
     ColumnItem columnItem5 = new ColumnItem();
     ColumnItem columnItem6 = new ColumnItem();
     ColumnItem columnItem7 = new ColumnItem();
     this.toolStrip1 = new ToolStrip();
     this.toolStripLabel1 = new ToolStripLabel();
     this.tstbStock = new ToolStripComboBox();
     this.toolStripDropDownButton1 = new ToolStripDropDownButton();
     this.tsmLink = new ToolStripMenuItem();
     this.tsmSmartClick = new ToolStripMenuItem();
     this.toolStripButton1 = new ToolStripButton();
     this.toolStripSeparator1 = new ToolStripSeparator();
     this.tsbtnRefresh = new ToolStripButton();
     this.tsdbMode = new ToolStripDropDownButton();
     this.tsdbModeBS = new ToolStripMenuItem();
     this.tsdbModeDeposit = new ToolStripMenuItem();
     this.tslbMode = new ToolStripLabel();
     this.toolStrip2 = new ToolStrip();
     this.tsbtnDownPrice = new ToolStripButton();
     this.tstbDefVol = new ToolStripTextBox();
     this.tsbtnUpPrice = new ToolStripButton();
     this.toolStripSeparator2 = new ToolStripSeparator();
     this.tsbtnDefVol100 = new ToolStripButton();
     this.tsbtnDefVol1000 = new ToolStripButton();
     this.tsbtnDefVol200 = new ToolStripButton();
     this.tsbtnDefVol500 = new ToolStripButton();
     this.tsbtnDefVol10K = new ToolStripButton();
     this.tsbtnDefVol20K = new ToolStripButton();
     this.tsbtnDefVol100K = new ToolStripButton();
     this.contextMenuStrip1 = new ContextMenuStrip(this.components);
     this.lbLoading = new Label();
     this.panelTitle = new Panel();
     this.toolTip1 = new ToolTip(this.components);
     this.sortGrid = new SortGrid();
     this.toolStrip1.SuspendLayout();
     this.toolStrip2.SuspendLayout();
     base.SuspendLayout();
     this.toolStrip1.BackColor = Color.FromArgb(30, 30, 30);
     this.toolStrip1.GripStyle = ToolStripGripStyle.Hidden;
     this.toolStrip1.Items.AddRange(new ToolStripItem[]
     {
         this.toolStripLabel1,
         this.tstbStock,
         this.toolStripDropDownButton1,
         this.toolStripButton1,
         this.toolStripSeparator1,
         this.tsbtnRefresh,
         this.tsdbMode,
         this.tslbMode
     });
     this.toolStrip1.Location = new Point(0, 21);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Padding = new Padding(1, 1, 1, 2);
     this.toolStrip1.RenderMode = ToolStripRenderMode.System;
     this.toolStrip1.Size = new Size(348, 29);
     this.toolStrip1.TabIndex = 2;
     this.toolStrip1.Tag = "-1";
     this.toolStrip1.Text = "toolStrip1";
     this.toolStripLabel1.ForeColor = Color.LightGray;
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new Size(47, 23);
     this.toolStripLabel1.Text = "Symbol";
     this.toolStripLabel1.Visible = false;
     this.tstbStock.BackColor = Color.FromArgb(30, 30, 30);
     this.tstbStock.ForeColor = Color.Gainsboro;
     this.tstbStock.Margin = new Padding(2, 1, 1, 2);
     this.tstbStock.Name = "tstbStock";
     this.tstbStock.Size = new Size(110, 23);
     this.tstbStock.SelectedIndexChanged += new EventHandler(this.tstbStock_SelectedIndexChanged);
     this.tstbStock.KeyPress += new KeyPressEventHandler(this.tstbStock_KeyPress);
     this.toolStripDropDownButton1.Alignment = ToolStripItemAlignment.Right;
     this.toolStripDropDownButton1.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.toolStripDropDownButton1.DropDownItems.AddRange(new ToolStripItem[]
     {
         this.tsmLink,
         this.tsmSmartClick
     });
     this.toolStripDropDownButton1.ForeColor = Color.Gainsboro;
     this.toolStripDropDownButton1.ImageTransparentColor = Color.Magenta;
     this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
     this.toolStripDropDownButton1.Size = new Size(62, 23);
     this.toolStripDropDownButton1.Text = "Options";
     this.tsmLink.Name = "tsmLink";
     this.tsmLink.Size = new Size(152, 22);
     this.tsmLink.Text = "Link";
     this.tsmLink.Click += new EventHandler(this.tsmLink_Click);
     this.tsmSmartClick.Name = "tsmSmartClick";
     this.tsmSmartClick.Size = new Size(152, 22);
     this.tsmSmartClick.Text = "Smart Click";
     this.tsmSmartClick.Click += new EventHandler(this.tsmSmartClick_Click);
     this.toolStripButton1.Alignment = ToolStripItemAlignment.Right;
     this.toolStripButton1.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = (Image)componentResourceManager.GetObject("toolStripButton1.Image");
     this.toolStripButton1.ImageTransparentColor = Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new Size(23, 23);
     this.toolStripButton1.ToolTipText = "วิธีการใช้งาน";
     this.toolStripButton1.Visible = false;
     this.toolStripSeparator1.Alignment = ToolStripItemAlignment.Right;
     this.toolStripSeparator1.Margin = new Padding(0, 0, 5, 0);
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new Size(6, 26);
     this.tsbtnRefresh.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnRefresh.Image = Resources.refresh;
     this.tsbtnRefresh.ImageTransparentColor = Color.Magenta;
     this.tsbtnRefresh.Name = "tsbtnRefresh";
     this.tsbtnRefresh.Size = new Size(23, 23);
     this.tsbtnRefresh.Text = "toolStripButton2";
     this.tsbtnRefresh.Click += new EventHandler(this.tsbtnRefresh_Click);
     this.tsdbMode.Alignment = ToolStripItemAlignment.Right;
     this.tsdbMode.BackColor = Color.FromArgb(192, 64, 0);
     this.tsdbMode.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsdbMode.DropDownItems.AddRange(new ToolStripItem[]
     {
         this.tsdbModeBS,
         this.tsdbModeDeposit
     });
     this.tsdbMode.ForeColor = Color.Gainsboro;
     this.tsdbMode.ImageTransparentColor = Color.Magenta;
     this.tsdbMode.Margin = new Padding(3, 1, 5, 2);
     this.tsdbMode.Name = "tsdbMode";
     this.tsdbMode.Size = new Size(38, 23);
     this.tsdbMode.Text = "B/S";
     this.tsdbMode.Visible = false;
     this.tsdbModeBS.Name = "tsdbModeBS";
     this.tsdbModeBS.Size = new Size(152, 22);
     this.tsdbModeBS.Text = "B/S";
     this.tsdbModeDeposit.Name = "tsdbModeDeposit";
     this.tsdbModeDeposit.Size = new Size(152, 22);
     this.tsdbModeDeposit.Text = "Deposit";
     this.tslbMode.Alignment = ToolStripItemAlignment.Right;
     this.tslbMode.ForeColor = Color.LightGray;
     this.tslbMode.Name = "tslbMode";
     this.tslbMode.Size = new Size(44, 23);
     this.tslbMode.Text = "Mode :";
     this.tslbMode.Visible = false;
     this.toolStrip2.BackColor = Color.FromArgb(30, 30, 30);
     this.toolStrip2.GripStyle = ToolStripGripStyle.Hidden;
     this.toolStrip2.Items.AddRange(new ToolStripItem[]
     {
         this.tsbtnDownPrice,
         this.tstbDefVol,
         this.tsbtnUpPrice,
         this.toolStripSeparator2,
         this.tsbtnDefVol100,
         this.tsbtnDefVol1000,
         this.tsbtnDefVol200,
         this.tsbtnDefVol500,
         this.tsbtnDefVol10K,
         this.tsbtnDefVol20K,
         this.tsbtnDefVol100K
     });
     this.toolStrip2.LayoutStyle = ToolStripLayoutStyle.Flow;
     this.toolStrip2.Location = new Point(0, 50);
     this.toolStrip2.Name = "toolStrip2";
     this.toolStrip2.Padding = new Padding(1, 1, 1, 2);
     this.toolStrip2.RenderMode = ToolStripRenderMode.System;
     this.toolStrip2.Size = new Size(348, 48);
     this.toolStrip2.TabIndex = 4;
     this.toolStrip2.Tag = "-1";
     this.tsbtnDownPrice.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnDownPrice.Image = Resources.MovePreviousHS;
     this.tsbtnDownPrice.ImageTransparentColor = Color.Magenta;
     this.tsbtnDownPrice.Name = "tsbtnDownPrice";
     this.tsbtnDownPrice.Padding = new Padding(2, 0, 2, 0);
     this.tsbtnDownPrice.Size = new Size(24, 20);
     this.tsbtnDownPrice.Click += new EventHandler(this.tsbtnUpPrice_Click);
     this.tstbDefVol.BackColor = Color.Gainsboro;
     this.tstbDefVol.BorderStyle = BorderStyle.FixedSingle;
     this.tstbDefVol.ForeColor = Color.Black;
     this.tstbDefVol.MaxLength = 9;
     this.tstbDefVol.Name = "tstbDefVol";
     this.tstbDefVol.Size = new Size(80, 23);
     this.tstbDefVol.Text = "100";
     this.tstbDefVol.TextBoxTextAlign = HorizontalAlignment.Center;
     this.tstbDefVol.Leave += new EventHandler(this.tstbDefVol_Leave);
     this.tstbDefVol.TextChanged += new EventHandler(this.tstbDefVol_TextChanged);
     this.tsbtnUpPrice.DisplayStyle = ToolStripItemDisplayStyle.Image;
     this.tsbtnUpPrice.Image = Resources.MoveNextHS;
     this.tsbtnUpPrice.ImageTransparentColor = Color.Magenta;
     this.tsbtnUpPrice.Name = "tsbtnUpPrice";
     this.tsbtnUpPrice.Padding = new Padding(2, 0, 2, 0);
     this.tsbtnUpPrice.Size = new Size(24, 20);
     this.tsbtnUpPrice.Click += new EventHandler(this.tsbtnUpPrice_Click);
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new Size(6, 23);
     this.tsbtnDefVol100.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnDefVol100.ForeColor = Color.LightGray;
     this.tsbtnDefVol100.ImageTransparentColor = Color.Magenta;
     this.tsbtnDefVol100.Name = "tsbtnDefVol100";
     this.tsbtnDefVol100.Size = new Size(29, 19);
     this.tsbtnDefVol100.Text = "100";
     this.tsbtnDefVol100.Click += new EventHandler(this.changeDefaultVolume_Click);
     this.tsbtnDefVol1000.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnDefVol1000.ForeColor = Color.LightGray;
     this.tsbtnDefVol1000.ImageTransparentColor = Color.Magenta;
     this.tsbtnDefVol1000.Name = "tsbtnDefVol1000";
     this.tsbtnDefVol1000.Size = new Size(38, 19);
     this.tsbtnDefVol1000.Text = "1,000";
     this.tsbtnDefVol1000.Click += new EventHandler(this.changeDefaultVolume_Click);
     this.tsbtnDefVol200.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnDefVol200.ForeColor = Color.LightGray;
     this.tsbtnDefVol200.ImageTransparentColor = Color.Magenta;
     this.tsbtnDefVol200.Name = "tsbtnDefVol200";
     this.tsbtnDefVol200.Size = new Size(35, 19);
     this.tsbtnDefVol200.Text = "2000";
     this.tsbtnDefVol200.Click += new EventHandler(this.changeDefaultVolume_Click);
     this.tsbtnDefVol500.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnDefVol500.ForeColor = Color.LightGray;
     this.tsbtnDefVol500.ImageTransparentColor = Color.Magenta;
     this.tsbtnDefVol500.Name = "tsbtnDefVol500";
     this.tsbtnDefVol500.Size = new Size(35, 19);
     this.tsbtnDefVol500.Text = "5000";
     this.tsbtnDefVol500.Click += new EventHandler(this.changeDefaultVolume_Click);
     this.tsbtnDefVol10K.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnDefVol10K.ForeColor = Color.LightGray;
     this.tsbtnDefVol10K.ImageTransparentColor = Color.Magenta;
     this.tsbtnDefVol10K.Name = "tsbtnDefVol10K";
     this.tsbtnDefVol10K.Size = new Size(44, 19);
     this.tsbtnDefVol10K.Text = "10,000";
     this.tsbtnDefVol10K.Click += new EventHandler(this.changeDefaultVolume_Click);
     this.tsbtnDefVol20K.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnDefVol20K.ForeColor = Color.LightGray;
     this.tsbtnDefVol20K.ImageTransparentColor = Color.Magenta;
     this.tsbtnDefVol20K.Name = "tsbtnDefVol20K";
     this.tsbtnDefVol20K.Size = new Size(44, 19);
     this.tsbtnDefVol20K.Text = "20,000";
     this.tsbtnDefVol20K.Click += new EventHandler(this.changeDefaultVolume_Click);
     this.tsbtnDefVol100K.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsbtnDefVol100K.ForeColor = Color.LightGray;
     this.tsbtnDefVol100K.ImageTransparentColor = Color.Magenta;
     this.tsbtnDefVol100K.Name = "tsbtnDefVol100K";
     this.tsbtnDefVol100K.Size = new Size(50, 19);
     this.tsbtnDefVol100K.Text = "100,000";
     this.tsbtnDefVol100K.Click += new EventHandler(this.changeDefaultVolume_Click);
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new Size(61, 4);
     this.lbLoading.AutoSize = true;
     this.lbLoading.BackColor = Color.FromArgb(64, 64, 64);
     this.lbLoading.BorderStyle = BorderStyle.FixedSingle;
     this.lbLoading.Font = new Font("Microsoft Sans Serif", 9f, FontStyle.Regular, GraphicsUnit.Point, 222);
     this.lbLoading.ForeColor = Color.Yellow;
     this.lbLoading.Location = new Point(109, 254);
     this.lbLoading.Name = "lbLoading";
     this.lbLoading.Padding = new Padding(5, 3, 5, 3);
     this.lbLoading.Size = new Size(76, 23);
     this.lbLoading.TabIndex = 9;
     this.lbLoading.Text = "Loading ...";
     this.lbLoading.TextAlign = ContentAlignment.MiddleCenter;
     this.lbLoading.Visible = false;
     this.panelTitle.BackColor = Color.FromArgb(20, 20, 20);
     this.panelTitle.Dock = DockStyle.Top;
     this.panelTitle.Location = new Point(0, 0);
     this.panelTitle.Name = "panelTitle";
     this.panelTitle.Size = new Size(348, 21);
     this.panelTitle.TabIndex = 88;
     this.panelTitle.Paint += new PaintEventHandler(this.panelTitle_Paint);
     this.sortGrid.AllowDrop = true;
     this.sortGrid.BackColor = Color.FromArgb(30, 30, 30);
     this.sortGrid.CanBlink = true;
     this.sortGrid.CanDrag = false;
     this.sortGrid.CanGetMouseMove = false;
     columnItem.Alignment = StringAlignment.Near;
     columnItem.BackColor = Color.FromArgb(64, 64, 64);
     columnItem.ColumnAlignment = StringAlignment.Center;
     columnItem.FontColor = Color.LightGray;
     columnItem.MyStyle = FontStyle.Regular;
     columnItem.Name = "buycancel";
     columnItem.Text = "";
     columnItem.ValueFormat = FormatType.Bitmap;
     columnItem.Visible = true;
     columnItem.Width = 7;
     columnItem2.Alignment = StringAlignment.Far;
     columnItem2.BackColor = Color.FromArgb(64, 64, 64);
     columnItem2.ColumnAlignment = StringAlignment.Center;
     columnItem2.FontColor = Color.LightGray;
     columnItem2.MyStyle = FontStyle.Regular;
     columnItem2.Name = "buydeal";
     columnItem2.Text = "#";
     columnItem2.ValueFormat = FormatType.Volume;
     columnItem2.Visible = true;
     columnItem2.Width = 10;
     columnItem3.Alignment = StringAlignment.Far;
     columnItem3.BackColor = Color.FromArgb(64, 64, 64);
     columnItem3.ColumnAlignment = StringAlignment.Center;
     columnItem3.FontColor = Color.Cyan;
     columnItem3.MyStyle = FontStyle.Regular;
     columnItem3.Name = "buyvol";
     columnItem3.Text = "Buy";
     columnItem3.ValueFormat = FormatType.BidOfferVolume;
     columnItem3.Visible = true;
     columnItem3.Width = 23;
     columnItem4.Alignment = StringAlignment.Center;
     columnItem4.BackColor = Color.FromArgb(64, 64, 64);
     columnItem4.ColumnAlignment = StringAlignment.Center;
     columnItem4.FontColor = Color.LightGray;
     columnItem4.MyStyle = FontStyle.Regular;
     columnItem4.Name = "price";
     columnItem4.Text = "Price";
     columnItem4.ValueFormat = FormatType.Price;
     columnItem4.Visible = true;
     columnItem4.Width = 20;
     columnItem5.Alignment = StringAlignment.Far;
     columnItem5.BackColor = Color.FromArgb(64, 64, 64);
     columnItem5.ColumnAlignment = StringAlignment.Center;
     columnItem5.FontColor = Color.Magenta;
     columnItem5.MyStyle = FontStyle.Regular;
     columnItem5.Name = "sellvol";
     columnItem5.Text = "Sell";
     columnItem5.ValueFormat = FormatType.BidOfferVolume;
     columnItem5.Visible = true;
     columnItem5.Width = 23;
     columnItem6.Alignment = StringAlignment.Far;
     columnItem6.BackColor = Color.FromArgb(64, 64, 64);
     columnItem6.ColumnAlignment = StringAlignment.Center;
     columnItem6.FontColor = Color.LightGray;
     columnItem6.MyStyle = FontStyle.Regular;
     columnItem6.Name = "selldeal";
     columnItem6.Text = "#";
     columnItem6.ValueFormat = FormatType.Volume;
     columnItem6.Visible = true;
     columnItem6.Width = 10;
     columnItem7.Alignment = StringAlignment.Near;
     columnItem7.BackColor = Color.FromArgb(64, 64, 64);
     columnItem7.ColumnAlignment = StringAlignment.Center;
     columnItem7.FontColor = Color.LightGray;
     columnItem7.MyStyle = FontStyle.Regular;
     columnItem7.Name = "sellcancel";
     columnItem7.Text = "";
     columnItem7.ValueFormat = FormatType.Bitmap;
     columnItem7.Visible = true;
     columnItem7.Width = 7;
     this.sortGrid.Columns.Add(columnItem);
     this.sortGrid.Columns.Add(columnItem2);
     this.sortGrid.Columns.Add(columnItem3);
     this.sortGrid.Columns.Add(columnItem4);
     this.sortGrid.Columns.Add(columnItem5);
     this.sortGrid.Columns.Add(columnItem6);
     this.sortGrid.Columns.Add(columnItem7);
     this.sortGrid.CurrentScroll = 0;
     this.sortGrid.Cursor = Cursors.Hand;
     this.sortGrid.Dock = DockStyle.Fill;
     this.sortGrid.FocusItemIndex = -1;
     this.sortGrid.ForeColor = Color.Black;
     this.sortGrid.GridColor = Color.FromArgb(45, 45, 45);
     this.sortGrid.HeaderPctHeight = 80f;
     this.sortGrid.IsAutoRepaint = true;
     this.sortGrid.IsDrawFullRow = false;
     this.sortGrid.IsDrawGrid = true;
     this.sortGrid.IsDrawHeader = true;
     this.sortGrid.IsScrollable = true;
     this.sortGrid.Location = new Point(0, 98);
     this.sortGrid.MainColumn = "";
     this.sortGrid.Name = "sortGrid";
     this.sortGrid.Rows = 0;
     this.sortGrid.RowSelectColor = Color.FromArgb(64, 64, 64);
     this.sortGrid.RowSelectType = 1;
     this.sortGrid.RowsVisible = 0;
     this.sortGrid.Size = new Size(348, 433);
     this.sortGrid.SortColumnName = "";
     this.sortGrid.SortType = SortType.Desc;
     this.sortGrid.TabIndex = 5;
     this.sortGrid.TableMouseClick += new SortGrid.TableMouseClickEventHandler(this.sortGrid_TableMouseClick);
     this.sortGrid.ItemDragDrop += new SortGrid.ItemDragDropEventHandler(this.sortGrid_ItemDragDrop);
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = Color.FromArgb(20, 20, 20);
     base.Controls.Add(this.lbLoading);
     base.Controls.Add(this.sortGrid);
     base.Controls.Add(this.toolStrip2);
     base.Controls.Add(this.toolStrip1);
     base.Controls.Add(this.panelTitle);
     base.Name = "ucSmart1Click";
     base.Size = new Size(348, 531);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }