private void InitialiseCart()
        {
            try
            {
                var ColId = new BrightIdeasSoftware.OLVColumn("ID", "ID");
                ColId.AspectGetter = x => (x as vmItems).ItemId;
                ColId.Width        = 0;

                var ColQty = new BrightIdeasSoftware.OLVColumn("QTY", "QTY");
                ColQty.AspectGetter = x => (x as vmItems).ItemQty;
                ColQty.Width        = 50;
                ColQty.TextAlign    = HorizontalAlignment.Left;

                var ColName = new BrightIdeasSoftware.OLVColumn("ITEM", "ITEM");
                ColName.AspectGetter = x => (x as vmItems).ItemName;
                ColName.Width        = 150;

                var ColTotal = new BrightIdeasSoftware.OLVColumn("PRICE", "PRICE");
                ColTotal.AspectGetter = x => (x as vmItems).ItemTotal;
                ColTotal.TextAlign    = HorizontalAlignment.Center;

                this.treeListView1.Columns.Add(ColQty);
                this.treeListView1.Columns.Add(ColName);
                this.treeListView1.Columns.Add(ColTotal);
            }
            catch (Exception)
            {
                throw;
            }
        }
Beispiel #2
0
        private void FillTree()
        {
            this.treeListView1.ClearObjects();
            this.treeListView1.CanExpandGetter = x => ((JsonConfigNode)x).Children.Count > 0;
            this.treeListView1.ChildrenGetter  = x => (x as JsonConfigNode)?.Children;
            var keyCol = new BrightIdeasSoftware.OLVColumn("Key", "Key")
            {
                AspectGetter = x => (x as JsonConfigNode)?.Key,
                IsEditable   = false,
            };
            var valueCol = new BrightIdeasSoftware.OLVColumn("Value", "Value")
            {
                AspectGetter         = x => (x as JsonConfigNode)?.Value,
                IsEditable           = true,
                CellEditUseWholeCell = true
            };

            // add the columns to the tree
            this.treeListView1.Columns.Add(keyCol);
            this.treeListView1.Columns.Add(valueCol);
            this.treeListView1.Roots = _rootNode.Children;
            this.treeListView1.ExpandAll();

            this.treeListView1.Font = _defaultFont;
        }
Beispiel #3
0
        //---------------------------------------------------------------------------

        private void vtItemsHeaderClick(object sender, ColumnClickEventArgs e)
        {
            BrightIdeasSoftware.OLVColumn newsortcol = vtItems.GetColumn(e.Column);
            if (vtItems.PrimarySortColumn == newsortcol)
            {
                // already handled by base class
                //if (vtItems.PrimarySortOrder == SortOrder.Ascending)
                //    vtItems.PrimarySortOrder = SortOrder.Descending;
                //else
                //    vtItems.PrimarySortOrder = SortOrder.Ascending;
            }
            else
            {
                if (vtItems.PrimarySortColumn != null)
                {
                    vtItems.PrimarySortColumn.Renderer = null;
                }
                // already handled by base class
                //vtItems.PrimarySortColumn = newsortcol;
                //vtItems.PrimarySortOrder = SortOrder.Ascending;
                newsortcol.Renderer = sortColumnRenderer;
                this.Invalidate();
            }
            // already handled by base class
            //vtItems.Sort(vtItems.PrimarySortColumn, vtItems.PrimarySortOrder);
        }
        private void initTable()
        {
            treeListView      = new BrightIdeasSoftware.TreeListView();
            treeListView.Dock = DockStyle.Fill;
            mainPanel.Controls.Add(treeListView);

            // set the delegate that the tree uses to know if a node is expandable
            this.treeListView.CanExpandGetter = x => (x as NodeData).lstChannel.Count > 0;
            // set the delegate that the tree uses to know the children of a node
            this.treeListView.ChildrenGetter = x => (x as NodeData).lstChannel;

            // create the tree columns and set the delegates to print the desired object proerty
            var nameCol = new BrightIdeasSoftware.OLVColumn("Node", "Name");

            nameCol.AspectGetter = x => (x as NodeData).Name;

            var col1 = new BrightIdeasSoftware.OLVColumn("Sensor", "Column1");

            col1.AspectGetter = x => (x as NodeData).ID;

            var col2 = new BrightIdeasSoftware.OLVColumn("Type", "Column2");

            col2.AspectGetter = x => (x as NodeData).Type;

            var col3 = new BrightIdeasSoftware.OLVColumn("Calib. factor", "Column5");

            col3.AspectGetter = x => (x as NodeData).CalibFactor;

            var col4 = new BrightIdeasSoftware.OLVColumn("Status", "Column3");

            col4.AspectGetter = x => (x as NodeData).State;

            var col5 = new BrightIdeasSoftware.OLVColumn("Time", "Column4");

            col5.AspectGetter = x => (x as NodeData).Time;

            var col6 = new BrightIdeasSoftware.OLVColumn("Temp", "Column5");

            col6.AspectGetter = x => (x as NodeData).Temp;



            // add the columns to the tree

            this.treeListView.Columns.Add(nameCol);
            this.treeListView.Columns.Add(col1);
            this.treeListView.Columns.Add(col2);
            this.treeListView.Columns.Add(col3);
            this.treeListView.Columns.Add(col4);
            this.treeListView.Columns.Add(col5);
            this.treeListView.Columns.Add(col6);

            this.treeListView.Columns[0].Width = 100;
            this.treeListView.Columns[1].Width = 140;
            this.treeListView.Columns[2].Width = 100;
            this.treeListView.Columns[3].Width = 80;
            this.treeListView.Columns[4].Width = 100;
            this.treeListView.Columns[5].Width = 90;
            this.treeListView.Columns[6].Width = 50;
        }
Beispiel #5
0
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).ID); };
            }
            else
            {
                switch (column.Name)
                {
                case "s_cqcs":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_cqcs); };
                    break;

                case "s_csmc":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_csmc); };
                    break;

                case "s_date":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_date.Value.ToString("yyyy-MM-dd HH:mm:ss")); };
                    break;

                case "s_jlr":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_jlr); };
                    break;

                case "s_sd":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_sd); };
                    break;

                case "s_sded":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_sded); };
                    break;

                case "s_sworxw":
                    column.AspectGetter = delegate(object x) { return(GetTimeStrByState((int)((CunChuInfo)x).s_sworxw)); };
                    break;

                case "s_sywdfw":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_sywdfw); };
                    break;

                case "s_syxdsdfw":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_syxdsdfw); };
                    break;

                case "s_wd":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_wd); };
                    break;

                case "s_wded":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_wded); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
    // private methods
    private void FillTree()
    {
        // set the delegate that the tree uses to know if a node is expandable
        this.treeListView.CanExpandGetter = x => (x as Node).Children.Count > 0;
        // set the delegate that the tree uses to know the children of a node
        this.treeListView.ChildrenGetter = x => (x as Node).Children;

        // create the tree columns and set the delegates to print the desired object proerty
        var nameCol = new BrightIdeasSoftware.OLVColumn("Name", "Name");

        nameCol.AspectGetter = x => (x as Node).Name;

        var col1 = new BrightIdeasSoftware.OLVColumn("Column1", "Column1");

        col1.AspectGetter = x => (x as Node).Column1;

        var col2 = new BrightIdeasSoftware.OLVColumn("Column2", "Column2");

        col2.AspectGetter = x => (x as Node).Column2;

        var col3 = new BrightIdeasSoftware.OLVColumn("Column3", "Column3");

        col3.AspectGetter = x => (x as Node).Column3;

        // add the columns to the tree
        this.treeListView.Columns.Add(nameCol);
        this.treeListView.Columns.Add(col1);
        this.treeListView.Columns.Add(col2);
        this.treeListView.Columns.Add(col3);

        // set the tree roots
        this.treeListView.Roots = data;
    }
Beispiel #7
0
        private void FillGridColumns()
        {
            PropertyInfo[] properoties = m_bo.GetBOTable().GetType().GetProperties();
            int            disIdx      = 0;

            foreach (PropertyInfo info in properoties)
            {
                object[] attr = info.GetCustomAttributes(false);
                if (attr.Length <= 0)
                {
                    continue;
                }
                BOFieldAttribute fieldAttr = (BOFieldAttribute)attr[0];
                if (!fieldAttr.CFL)
                {
                    continue;
                }

                BrightIdeasSoftware.OLVColumn col = new BrightIdeasSoftware.OLVColumn();
                col.AspectName        = info.Name;
                col.DisplayIndex      = disIdx++;
                col.Groupable         = false;
                col.Sortable          = false;
                col.IsRowNumberColumn = false;
                col.Text = fieldAttr.Desc;
                objList.AllColumns.Add(col);
            }

            objList.RebuildColumns();
        }
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((Manufacturer)x).manufacturerID); };
            }
            else
            {
                switch (column.Name)
                {
                case "manufacturerName":
                    column.AspectGetter = delegate(object x) { return(((Manufacturer)x).manufacturerName); };
                    break;

                case "manufacturerTel":
                    column.AspectGetter = delegate(object x) { return(((Manufacturer)x).manufacturerTel); };
                    break;

                case "manufacturerAdd":
                    column.AspectGetter = delegate(object x) { return(((Manufacturer)x).manufacturerAdd); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
Beispiel #9
0
        private void FillGridColumns()
        {
            PropertyInfo[] properoties = m_bo.GetBOTable().GetType().GetProperties();
            int disIdx = 0;
            foreach (PropertyInfo info in properoties)
            {
                object[] attr = info.GetCustomAttributes(false);
                if (attr.Length <= 0)
                    continue;
                BOFieldAttribute fieldAttr = (BOFieldAttribute)attr[0];
                if (!fieldAttr.CFL)
                    continue;

                BrightIdeasSoftware.OLVColumn col = new BrightIdeasSoftware.OLVColumn();
                col.AspectName = info.Name;
                col.DisplayIndex = disIdx++;
                col.Groupable = false;
                col.Sortable = false;
                col.IsRowNumberColumn = false;
                col.Text = fieldAttr.Desc;
                objList.AllColumns.Add(col);
            }

            objList.RebuildColumns();
        }
Beispiel #10
0
        // private methods
        private void FillTree()
        {
            treeListView.Clear();

            // set the delegate that the tree uses to know if a node is expandable
            treeListView.CanExpandGetter = x => (x as Node).Children.Count > 0;
            // set the delegate that the tree uses to know the children of a node
            treeListView.ChildrenGetter = x => (x as Node).Children;

            // create the tree columns and set the delegates to print the desired object proerty
            var nameCol = new BrightIdeasSoftware.OLVColumn("Книги", "Name");

            nameCol.Width        = 250;
            nameCol.AspectGetter = x => (x as Node).Name;

            var col1 = new BrightIdeasSoftware.OLVColumn("Завершено", "Column1");

            col1.Width        = 75;
            col1.AspectGetter = x => (x as Node).Column1;


            // add the columns to the tree
            treeListView.Columns.Add(nameCol);
            treeListView.Columns.Add(col1);

            // set the tree roots
            treeListView.Roots = data;
        }
        public static void SetupTree(BrightIdeasSoftware.TreeListView treeListView, object dataObject)
        {
            treeListView.CanExpandGetter = CanExpandGetter;
            treeListView.ChildrenGetter  = ChildrenGetter;

            // Create columns
            var nameCol = new BrightIdeasSoftware.OLVColumn("Name", nameof(Name))
            {
                Width = 300
            };

            treeListView.Columns.Add(nameCol);

            var valueCol = new BrightIdeasSoftware.OLVColumn("Value", nameof(Value))
            {
                Width = 500
            };

            treeListView.Columns.Add(valueCol);

            var typeCol = new BrightIdeasSoftware.OLVColumn("Type", nameof(TypeName))
            {
                Width = 200
            };

            treeListView.Columns.Add(typeCol);

            // Create a dummy root object to hold the top-level class members
            var rootObject = new TreeDataObjectNode(dataObject, "unnamed_dummy_root_node");

            treeListView.Roots = rootObject.Children;
        }
        // Monitors active usb drives and displays them, alternatively displays list of usb devices already provided
        public UsbDriveObjectListView()
        {
            InitializeComponent();

            CreateCommonControls();

            BrightIdeasSoftware.OLVColumn volumeName = new BrightIdeasSoftware.OLVColumn();

            volumeName.AspectName = "DriveId.DriveRootDirectory";
            volumeName.Text       = "Drive";
            volumeName.Width      = 40;
            mTreeView.Columns.Add(volumeName);
            mColumns.Add(volumeName);

            BrightIdeasSoftware.OLVColumn sizeColumn = new BrightIdeasSoftware.OLVColumn();
            sizeColumn.AspectName = "DriveId.SizeString";
            sizeColumn.Text       = "Size";
            sizeColumn.Width      = 80;
            mTreeView.Columns.Add(sizeColumn);
            mColumns.Add(sizeColumn);

            if (PWLib.UsbDrive.UsbDriveList.Instance != null)
            {
                UsbDriveList_OnCreate(null, null);
            }
            else
            {
                PWLib.UsbDrive.UsbDriveList.OnCreate += new EventHandler(UsbDriveList_OnCreate);
            }

            RefreshDynamicList();
        }
Beispiel #13
0
        private void depreciar_Load(object sender, EventArgs e)
        {
            var ListEnv = P.Consultas.ambientes.GetAll();
            int x = 30, y = 20;

            foreach (var envio in ListEnv)
            {
                var opcion = new CheckBox();
                opcion.Name = "opcEnv";
                opcion.Text = envio.name;
                opcion.Tag  = envio;
                EnvChoose.Controls.Add(opcion);
                opcion.Location = new Point(x, y);
                x += (opcion.Width + (y * 2));
            }
            var ListZone = P.Consultas.zonas.All();

            objListZones.View = View.List;
            BrightIdeasSoftware.OLVColumn col1 = new BrightIdeasSoftware.OLVColumn()
            {
                AspectName = "description", Text = "Zonas Disponibles"
            };
            objListZones.Columns.Add(col1);
            objListZones.SetObjects(ListZone);
        }
        // Monitors active usb drives and displays them, alternatively displays list of usb devices already provided
        public UsbDriveObjectListView()
        {
            InitializeComponent();

            CreateCommonControls();

            BrightIdeasSoftware.OLVColumn volumeName = new BrightIdeasSoftware.OLVColumn();

            volumeName.AspectName = "DriveId.DriveRootDirectory";
            volumeName.Text = "Drive";
            volumeName.Width = 40;
            mTreeView.Columns.Add( volumeName );
            mColumns.Add( volumeName );

            BrightIdeasSoftware.OLVColumn sizeColumn = new BrightIdeasSoftware.OLVColumn();
            sizeColumn.AspectName = "DriveId.SizeString";
            sizeColumn.Text = "Size";
            sizeColumn.Width = 80;
            mTreeView.Columns.Add( sizeColumn );
            mColumns.Add( sizeColumn );

            if ( PWLib.UsbDrive.UsbDriveList.Instance != null )
                UsbDriveList_OnCreate( null, null );
            else
                PWLib.UsbDrive.UsbDriveList.OnCreate += new EventHandler( UsbDriveList_OnCreate );

            RefreshDynamicList();
        }
Beispiel #15
0
 private void btOK_Click(object sender, EventArgs e)
 {
     for (int i = 0; i < olv.AllColumns.Count; i++)
     {
         BrightIdeasSoftware.OLVColumn olvc = olv.AllColumns[i] as BrightIdeasSoftware.OLVColumn;
         olvc.IsTileViewColumn = olvAvailable.Items[i].Checked;
     }
     this.DialogResult = System.Windows.Forms.DialogResult.OK;
 }
Beispiel #16
0
        public static void SetupTree(BrightIdeasSoftware.TreeListView treeListView, List <object> childObjects)
        {
            treeListView.CanExpandGetter = CanExpandGetter;
            treeListView.ChildrenGetter  = ChildrenGetter;

            // Create columns
            var typeCol = new BrightIdeasSoftware.OLVColumn("Object", nameof(TypeName))
            {
                Width      = 200,
                IsEditable = false,
            };

            treeListView.Columns.Add(typeCol);

            var nameCol = new BrightIdeasSoftware.OLVColumn("Name", nameof(Name))
            {
                Width      = 200,
                IsEditable = false,
            };

            treeListView.Columns.Add(nameCol);

            var uuidCol = new BrightIdeasSoftware.OLVColumn("UUID", nameof(UUID))
            {
                Width      = 300,
                IsEditable = false,
            };

            treeListView.Columns.Add(uuidCol);

            // Sort object list into each category based on the type name
            var categorizedObjects = new Dictionary <string, List <object> >();

            foreach (var obj in childObjects)
            {
                string typeString = obj.GetType().GetFriendlyName();

                if (!categorizedObjects.TryGetValue(typeString, out List <object> categoryList))
                {
                    categoryList = new List <object>();
                    categorizedObjects.Add(typeString, categoryList);
                }

                categoryList.Add(obj);
            }

            // Register list view categories
            var treeViewRoots = new List <TreeObjectNode>();

            foreach (string key in categorizedObjects.Keys.OrderBy(x => x))
            {
                treeViewRoots.Add(new TreeObjectNode(key, categorizedObjects[key]));
            }

            treeListView.Roots = treeViewRoots;
        }
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessID); };
            }
            else
            {
                switch (column.Name)
                {
                case "ProcessContentInquired":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessContentInquired); };
                    break;

                case "ProcessCustomerUnit":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessCustomerUnit); };
                    break;

                case "ProcessDate":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); };
                    break;

                case "ProcessHandlingSuggestion":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessHandlingSuggestion); };
                    break;

                case "Processlinkman":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).Processlinkman); };
                    break;

                case "ProcessProductName":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessProductName); };
                    break;

                case "ProcessPurchasingDate":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessPurchasingDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); };
                    break;

                case "ProcessServiceUser":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessServiceUser); };
                    break;

                case "ProcessStandard":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessStandard); };
                    break;

                case "Processtel":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).Processtel); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
Beispiel #18
0
        public int SearchText(string value, int first, int last, BrightIdeasSoftware.OLVColumn column)
        {
            string text = (value ?? "").ToLower();

            for (int i = first; i <= last; i++)
            {
                if ((base[i].TitleName ?? "").ToLower() == text)
                {
                    return(i);
                }
            }
            return(-1);
        }
        public void CreateColumns()
        {
            m_olvColumnName            = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            m_olvColumnName.AspectName = "Name";
            m_olvColumnName.Text       = "Process Entities";
            m_olvColumnName.Width      = 350;

            m_olvColumnPartOf            = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            m_olvColumnPartOf.AspectName = "PartOf";
            m_olvColumnPartOf.Text       = "Par of";
            m_olvColumnPartOf.Width      = 0;

            m_treeListView2.AllColumns.Add(m_olvColumnName);
            m_treeListView2.AllColumns.Add(m_olvColumnPartOf);
            m_treeListView2.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { m_olvColumnName, m_olvColumnPartOf });
        }
Beispiel #20
0
 private void btnCancel_Click(object sender, EventArgs e)
 {
     for (int i = 0; i < olv.Columns.Count; i++)
     {
         BrightIdeasSoftware.OLVColumn olvc = olv.Columns[i] as BrightIdeasSoftware.OLVColumn;
         if (lstIsTile[i])
         {
             olvc.IsTileViewColumn = true;
         }
         else
         {
             olvc.IsTileViewColumn = false;
         }
     }
     this.DialogResult = System.Windows.Forms.DialogResult.Cancel;
 }
        UsbDriveObjectListView(List <PWLib.UsbDrive.UsbDriveInfo> driveInfoList)
        {
            InitializeComponent();

            CreateCommonControls();

            BrightIdeasSoftware.OLVColumn volumeName = new BrightIdeasSoftware.OLVColumn();

            volumeName.AspectName = "VolumeName";
            volumeName.Text       = "Volume";
            volumeName.Width      = 150;
            mTreeView.Columns.Add(volumeName);

            mColumns.Add(volumeName);

            RefreshStaticList(driveInfoList);
        }
        void CreateCommonControls()
        {
            mTreeView.SmallImageList = mImageList;
            mTreeView.ItemChecked   += new ItemCheckedEventHandler(mTreeView_ItemChecked);

            mTreeView.CheckStateGetter = new BrightIdeasSoftware.CheckStateGetterDelegate(CheckStateGetterMethod);
            mTreeView.CheckStatePutter = new BrightIdeasSoftware.CheckStatePutterDelegate(CheckStateSetterMethod);

            mModelNameColumn                = new BrightIdeasSoftware.OLVColumn();
            mModelNameColumn.AspectName     = "ModelName";
            mModelNameColumn.AspectName     = "ModelName";
            mModelNameColumn.Text           = "Name";
            mModelNameColumn.Width          = 300;
            mModelNameColumn.FillsFreeSpace = true;

            mTreeView.Columns.Add(mModelNameColumn);
        }
        UsbDriveObjectListView( List<PWLib.UsbDrive.UsbDriveInfo> driveInfoList )
        {
            InitializeComponent();

            CreateCommonControls();

            BrightIdeasSoftware.OLVColumn volumeName = new BrightIdeasSoftware.OLVColumn();

            volumeName.AspectName = "VolumeName";
            volumeName.Text = "Volume";
            volumeName.Width = 150;
            mTreeView.Columns.Add( volumeName );

            mColumns.Add( volumeName );

            RefreshStaticList( driveInfoList );
        }
Beispiel #24
0
        public Variable(long _pouid)
        {
            InitializeComponent();
            tblvariable.VarNameID = -1;
            localPOU = Global.Instance.m_tblSolution.GetPouFromID(_pouid);
            globalPOU = Global.Instance.m_tblSolution.GetGlobaltblPouObjectFromID(_pouid);
            radioButtonGlobal.Checked = true;

            _dataTable = new DataTable();
            _dataSet = new DataSet();

            //initialize bindingsource
            bindingSource_main.DataSource = _dataSet;

            ScanAvailableTypesinPOU();

            SetTestData();

            // set the delegate that the tree uses to know if a node is expandable
            this.treeListView1.CanExpandGetter = x => (x as Node).Children.Count > 0;
            // set the delegate that the tree uses to know the children of a node
            this.treeListView1.ChildrenGetter = x => (x as Node).Children;

            // create the tree columns and set the delegates to print the desired object proerty
            var NameCol = new BrightIdeasSoftware.OLVColumn("Name", "Name");
            NameCol.AspectGetter = x => (x as Node).Name;

            var Descriptioncol = new BrightIdeasSoftware.OLVColumn("Description", "Description");
            Descriptioncol.AspectGetter = x => (x as Node).Column1;

            var Typecol = new BrightIdeasSoftware.OLVColumn("Type", "Type");
            Typecol.AspectGetter = x => (x as Node).Column2;

            var IDcol = new BrightIdeasSoftware.OLVColumn("ID", "ID");
            IDcol.AspectGetter = x => (x as Node).Column3;

            // add the columns to the tree
            this.treeListView1.Columns.Add(NameCol);
            this.treeListView1.Columns.Add(Descriptioncol);
            this.treeListView1.Columns.Add(Typecol);
            this.treeListView1.Columns.Add(IDcol);
            
        }
        public void CreateColumns()
        {
            olvColumnName            = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            olvColumnName.AspectName = "Name";
            olvColumnName.Text       = "Name";
            olvColumnName.Width      = 250;

            olvColumnBMK            = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            olvColumnBMK.AspectName = "BMK";
            olvColumnBMK.Text       = "Tag";
            olvColumnBMK.Width      = 70;

            olvColumnLampSum            = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            olvColumnLampSum.AspectName = "LampSum";
            olvColumnLampSum.Text       = "Lamps";
            olvColumnLampSum.Width      = 60;

            olvColumnCurrent            = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            olvColumnCurrent.AspectName = "Current";
            olvColumnCurrent.Text       = "Current";
            olvColumnCurrent.Width      = 60;

            olvColumnOutputVoltage            = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            olvColumnOutputVoltage.AspectName = "OutputVoltage";
            olvColumnOutputVoltage.Text       = "Voltage";
            olvColumnOutputVoltage.Width      = 65;

            olvColumnCableLength            = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            olvColumnCableLength.AspectName = "CableLength";
            olvColumnCableLength.Text       = "Cable";
            olvColumnCableLength.Width      = 100;


            m_treeListView.AllColumns.Add(olvColumnName);
            m_treeListView.AllColumns.Add(olvColumnBMK);
            m_treeListView.AllColumns.Add(olvColumnLampSum);
            m_treeListView.AllColumns.Add(olvColumnCurrent);
            m_treeListView.AllColumns.Add(olvColumnOutputVoltage);
            m_treeListView.AllColumns.Add(olvColumnCableLength);
            m_treeListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[]
                                            { olvColumnName, olvColumnBMK, olvColumnLampSum, olvColumnCurrent, olvColumnOutputVoltage, olvColumnCableLength });
        }
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((DeviceInfo)x).DeviceID); };
            }
            else
            {
                switch (column.Name)
                {
                case "DeviceType":
                    column.AspectGetter = delegate(object x) { return(((DeviceInfo)x).DeviceType); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
Beispiel #27
0
 private void InitializeComponent()
 {
     this.olvTree = new BrightIdeasSoftware.TreeListView();
     this.olvName = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     ((System.ComponentModel.ISupportInitialize)(this.olvTree)).BeginInit();
     this.SuspendLayout();
     //
     // olvRecent
     //
     this.olvTree.AllColumns.Add(this.olvName);
     this.olvTree.CellEditUseWholeCell = false;
     this.olvTree.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.olvName
     });
     this.olvTree.Cursor        = System.Windows.Forms.Cursors.Default;
     this.olvTree.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.olvTree.FullRowSelect = true;
     this.olvTree.HideSelection = false;
     this.olvTree.Location      = new System.Drawing.Point(0, 0);
     this.olvTree.Name          = "olvRecent";
     this.olvTree.RowHeight     = 19;
     this.olvTree.ShowGroups    = false;
     this.olvTree.Size          = new System.Drawing.Size(487, 518);
     this.olvTree.TabIndex      = 4;
     this.olvTree.UseCompatibleStateImageBehavior = false;
     this.olvTree.View        = System.Windows.Forms.View.Details;
     this.olvTree.VirtualMode = true;
     //
     // olvName
     //
     this.olvName.Groupable = false;
     this.olvName.Text      = "Name";
     //
     // SessionCollectionUI
     //
     this.Controls.Add(this.olvTree);
     this.Name = "SessionCollectionUI";
     this.Size = new System.Drawing.Size(487, 518);
     ((System.ComponentModel.ISupportInitialize)(this.olvTree)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #28
0
 private void chkSelectAll_CheckedChanged(object sender, EventArgs e)
 {
     try
     {
         for (int i = 0; i < olv.AllColumns.Count; i++)
         {
             BrightIdeasSoftware.OLVColumn olvc = olv.AllColumns[i] as BrightIdeasSoftware.OLVColumn;
             if (chkSelectAll.Checked)
             {
                 olvc.IsTileViewColumn = true;
             }
             else
             {
                 olvc.IsTileViewColumn = false;
             }
         }
         olvAvailable.RefreshObjects(olv.AllColumns);
     }
     catch
     { }
 }
        public FileImageListViewHelper(BrightIdeasSoftware.OLVColumn olv, ImageList imageList)
        {
            mListViewColumn = olv;
            mImageList      = imageList;

            mListViewColumn.ImageGetter = new BrightIdeasSoftware.ImageGetterDelegate(ImageGetterMethod);

            mImageList.ColorDepth = ColorDepth.Depth32Bit;

            // Add folder icons and system drive icon
            Icon closedFolderIcon = PWLib.Platform.Windows.IconHelper.GetFolderIcon(PWLib.Platform.Windows.IconHelper.SystemIconSize.Small, PWLib.Platform.Windows.IconHelper.FolderType.Closed);

            if (closedFolderIcon != null)
            {
                mImageList.Images.Add(closedFolderIcon);
                mClosedFolderIndex = mImageList.Images.Count - 1;
            }

            Icon openFolderIcon = PWLib.Platform.Windows.IconHelper.GetFolderIcon(PWLib.Platform.Windows.IconHelper.SystemIconSize.Small, PWLib.Platform.Windows.IconHelper.FolderType.Open);

            if (openFolderIcon != null)
            {
                mImageList.Images.Add(openFolderIcon);
                mOpenFolderIndex = mImageList.Images.Count - 1;
            }

            // Try getting hard disk icon, if it doesn't exist fall back on the closed folder icon
            Icon deviceIcon = PWLib.Platform.Windows.IconHelper.GetFileIcon(System.IO.Path.GetPathRoot(Application.ExecutablePath), PWLib.Platform.Windows.IconHelper.SystemIconSize.Small, false);

            if (deviceIcon != null)
            {
                mImageList.Images.Add(deviceIcon);
                mSystemDriveIndex = mImageList.Images.Count - 1;
            }
            else
            {
                mSystemDriveIndex = mClosedFolderIndex;
            }
        }
        private void FillTree()
        {
            this.treeListView1.CanExpandGetter = delegate(object x) { return(((Node)x).Children.Count > 0); };
            this.treeListView1.ChildrenGetter  = delegate(object x) { return(((Node)x).Children); };

            // create the tree columns and set the delegates to print the desired object proerty
            BrightIdeasSoftware.OLVColumn JIDCol = new BrightIdeasSoftware.OLVColumn("Job ID", "JID");
            JIDCol.AspectGetter = delegate(object x) { return(((Node)x).JID); };

            BrightIdeasSoftware.OLVColumn EntryDatecol = new BrightIdeasSoftware.OLVColumn("Entry Date", "EntryDate");
            EntryDatecol.AspectGetter = delegate(object x) { return(((Node)x).EntryDate); };

            BrightIdeasSoftware.OLVColumn RefundDatecol = new BrightIdeasSoftware.OLVColumn("Refund Date", "RefundDate");
            RefundDatecol.AspectGetter = delegate(object x) { return(((Node)x).RefundDate); };

            BrightIdeasSoftware.OLVColumn ActionBycol2 = new BrightIdeasSoftware.OLVColumn("Action By", "ActionBy");
            ActionBycol2.AspectGetter = delegate(object x) { return(((Node)x).ActionBy); };

            BrightIdeasSoftware.OLVColumn Commentscol3 = new BrightIdeasSoftware.OLVColumn("Comments", "Comments");
            Commentscol3.AspectGetter = delegate(object x) { return(((Node)x).Comments); };

            // add the columns to the tree
            this.treeListView1.Columns.Add(JIDCol);
            this.treeListView1.Columns.Add(EntryDatecol);
            this.treeListView1.Columns.Add(RefundDatecol);
            this.treeListView1.Columns.Add(ActionBycol2);
            this.treeListView1.Columns.Add(Commentscol3);
            // set the tree roots
            this.treeListView1.Roots = data;

            treeListView1.Columns[1].Width = 142;
            treeListView1.Columns[2].Width = 142;
            treeListView1.Columns[3].Width = 179;
            treeListView1.Columns[4].Width = 667;
            treeListView1.Columns[treeListView1.Columns.Count - 1].Width = -2;

            treeListView1.ExpandAll();
        }
        public FileImageListViewHelper( BrightIdeasSoftware.OLVColumn olv, ImageList imageList )
        {
            mListViewColumn = olv;
            mImageList = imageList;

            mListViewColumn.ImageGetter = new BrightIdeasSoftware.ImageGetterDelegate( ImageGetterMethod );

            mImageList.ColorDepth = ColorDepth.Depth32Bit;

            // Add folder icons and system drive icon
            Icon closedFolderIcon = PWLib.Platform.Windows.IconHelper.GetFolderIcon( PWLib.Platform.Windows.IconHelper.SystemIconSize.Small, PWLib.Platform.Windows.IconHelper.FolderType.Closed );
            if (closedFolderIcon != null)
            {
                mImageList.Images.Add(closedFolderIcon);
                mClosedFolderIndex = mImageList.Images.Count - 1;
            }

            Icon openFolderIcon = PWLib.Platform.Windows.IconHelper.GetFolderIcon( PWLib.Platform.Windows.IconHelper.SystemIconSize.Small, PWLib.Platform.Windows.IconHelper.FolderType.Open );
            if (openFolderIcon != null)
            {
                mImageList.Images.Add(openFolderIcon);
                mOpenFolderIndex = mImageList.Images.Count - 1;
            }

            // Try getting hard disk icon, if it doesn't exist fall back on the closed folder icon
            Icon deviceIcon = PWLib.Platform.Windows.IconHelper.GetFileIcon(System.IO.Path.GetPathRoot(Application.ExecutablePath), PWLib.Platform.Windows.IconHelper.SystemIconSize.Small, false);
            if (deviceIcon != null)
            {
                mImageList.Images.Add(deviceIcon);
                mSystemDriveIndex = mImageList.Images.Count - 1;
            }
            else
            {
                mSystemDriveIndex = mClosedFolderIndex;
            }
        }
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((UIModels.DataBaseBackInfo)x).SortNo); };
            }
            else
            {
                switch (column.Name)
                {
                case "BackDataFileName":
                    column.AspectGetter = delegate(object x) { return(((UIModels.DataBaseBackInfo)x).BackDataFileName); };
                    break;

                case "DataBackTime":
                    column.AspectGetter = delegate(object x) { return(((UIModels.DataBaseBackInfo)x).DataBackTime); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((ProductInfo)x).productid); };
            }
            else
            {
                switch (column.Name)
                {
                case "productname":
                    column.AspectGetter = delegate(object x) { return(((ProductInfo)x).productname); };
                    break;

                case "promoney":
                    column.AspectGetter = delegate(object x) { return(((ProductInfo)x).promoney); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
		void InitializeComponent() {
			this.components = new System.ComponentModel.Container();
			this.olvReport = new BrightIdeasSoftware.ObjectListView();
			this.colKpiTitles = new BrightIdeasSoftware.OLVColumn();
			this.collAllTrades = new BrightIdeasSoftware.OLVColumn();
			this.colLongTrades = new BrightIdeasSoftware.OLVColumn();
			this.colShortTrades = new BrightIdeasSoftware.OLVColumn();
			this.colBuyHold = new BrightIdeasSoftware.OLVColumn();
			this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
			((System.ComponentModel.ISupportInitialize)(this.olvReport)).BeginInit();
			this.SuspendLayout();
			// 
			// olvReport
			// 
			this.olvReport.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.olvReport.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
									this.colKpiTitles,
									this.collAllTrades,
									this.colLongTrades,
									this.colShortTrades,
									this.colBuyHold});
			this.olvReport.Dock = System.Windows.Forms.DockStyle.Fill;
			this.olvReport.FullRowSelect = true;
			this.olvReport.HeaderUsesThemes = false;
			this.olvReport.HideSelection = false;
			this.olvReport.IncludeColumnHeadersInCopy = true;
			this.olvReport.Location = new System.Drawing.Point(0, 0);
			this.olvReport.MultiSelect = false;
			this.olvReport.Name = "olvReport";
			this.olvReport.ShowCommandMenuOnRightClick = true;
			this.olvReport.ShowItemToolTips = true;
			this.olvReport.Size = new System.Drawing.Size(654, 374);
			this.olvReport.TabIndex = 3;
			this.olvReport.TintSortColumn = true;
			this.olvReport.UseCompatibleStateImageBehavior = false;
			this.olvReport.UseFilterIndicator = true;
			this.olvReport.View = System.Windows.Forms.View.Details;
			this.olvReport.SelectedIndexChanged += new System.EventHandler(this.lvReport_SelectedIndexChanged);
			// 
			// colKpiTitles
			// 
			this.colKpiTitles.CellPadding = null;
			this.colKpiTitles.Text = "";
			this.colKpiTitles.Width = 85;
			// 
			// collAllTrades
			// 
			this.collAllTrades.CellPadding = null;
			this.collAllTrades.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.collAllTrades.Text = "All Trades";
			this.collAllTrades.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.collAllTrades.Width = 63;
			// 
			// colLongTrades
			// 
			this.colLongTrades.CellPadding = null;
			this.colLongTrades.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.colLongTrades.Text = "Long Trades";
			this.colLongTrades.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.colLongTrades.Width = 63;
			// 
			// colShortTrades
			// 
			this.colShortTrades.CellPadding = null;
			this.colShortTrades.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.colShortTrades.Text = "Short Trades";
			this.colShortTrades.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.colShortTrades.Width = 63;
			// 
			// colBuyHold
			// 
			this.colBuyHold.CellPadding = null;
			this.colBuyHold.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.colBuyHold.Text = "Buy & Hold";
			this.colBuyHold.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.colBuyHold.Width = 63;
			// 
			// Performance
			// 
			this.BackColor = System.Drawing.SystemColors.Window;
			this.Controls.Add(this.olvReport);
			this.Name = "Performance";
			this.Size = new System.Drawing.Size(654, 374);
			((System.ComponentModel.ISupportInitialize)(this.olvReport)).EndInit();
			this.ResumeLayout(false);
		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.refreshButton = new System.Windows.Forms.Button();
     this.closeButton = new System.Windows.Forms.Button();
     this.btnPrintLetters = new System.Windows.Forms.Button();
     this.btnPrintSelectedLetters = new System.Windows.Forms.Button();
     this.lblItemCountSelected = new System.Windows.Forms.Label();
     this.lblItemCountLetters = new System.Windows.Forms.Label();
     this.statusLabel = new System.Windows.Forms.Label();
     this.cancelButton = new System.Windows.Forms.Button();
     this.progressBar = new System.Windows.Forms.ProgressBar();
     this.includePrintedCheckBox = new System.Windows.Forms.CheckBox();
     this.populateBackgroundWorker = new System.ComponentModel.BackgroundWorker();
     this.loadingCircle1 = new MRG.Controls.UI.LoadingCircle();
     this.fastDataListView1 = new BrightIdeasSoftware.FastDataListView();
     this.mrnOlvColumn = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.patientNameOlvColumn = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.dobOlvColumn = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.apptDateOlvColumn = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.documentOlvColumn = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.lastPrintedOlvColumn = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.printSelectedBackgroundWorker = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.fastDataListView1)).BeginInit();
     this.SuspendLayout();
     //
     // refreshButton
     //
     this.refreshButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.refreshButton.Location = new System.Drawing.Point(842, 483);
     this.refreshButton.Name = "refreshButton";
     this.refreshButton.Size = new System.Drawing.Size(75, 31);
     this.refreshButton.TabIndex = 0;
     this.refreshButton.Text = "Refresh";
     this.refreshButton.UseVisualStyleBackColor = true;
     this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
     //
     // closeButton
     //
     this.closeButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.closeButton.Location = new System.Drawing.Point(842, 521);
     this.closeButton.Name = "closeButton";
     this.closeButton.Size = new System.Drawing.Size(75, 31);
     this.closeButton.TabIndex = 1;
     this.closeButton.Text = "Close";
     this.closeButton.UseVisualStyleBackColor = true;
     this.closeButton.MouseClick += new System.Windows.Forms.MouseEventHandler(this.closeButton_MouseClick);
     //
     // btnPrintLetters
     //
     this.btnPrintLetters.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPrintLetters.Location = new System.Drawing.Point(507, 483);
     this.btnPrintLetters.Name = "btnPrintLetters";
     this.btnPrintLetters.Size = new System.Drawing.Size(207, 31);
     this.btnPrintLetters.TabIndex = 17;
     this.btnPrintLetters.Text = "Print All Documents";
     this.btnPrintLetters.UseVisualStyleBackColor = true;
     this.btnPrintLetters.Click += new System.EventHandler(this.btnPrintLetters_Click);
     //
     // btnPrintSelectedLetters
     //
     this.btnPrintSelectedLetters.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPrintSelectedLetters.Location = new System.Drawing.Point(294, 483);
     this.btnPrintSelectedLetters.Name = "btnPrintSelectedLetters";
     this.btnPrintSelectedLetters.Size = new System.Drawing.Size(207, 31);
     this.btnPrintSelectedLetters.TabIndex = 21;
     this.btnPrintSelectedLetters.Text = "Print Selected Documents";
     this.btnPrintSelectedLetters.UseVisualStyleBackColor = true;
     this.btnPrintSelectedLetters.Click += new System.EventHandler(this.btnPrintSelectedLetters_Click);
     //
     // lblItemCountSelected
     //
     this.lblItemCountSelected.AutoSize = true;
     this.lblItemCountSelected.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblItemCountSelected.Location = new System.Drawing.Point(30, 503);
     this.lblItemCountSelected.Name = "lblItemCountSelected";
     this.lblItemCountSelected.Size = new System.Drawing.Size(155, 15);
     this.lblItemCountSelected.TabIndex = 23;
     this.lblItemCountSelected.Text = "0 Documents Selected.";
     //
     // lblItemCountLetters
     //
     this.lblItemCountLetters.AutoSize = true;
     this.lblItemCountLetters.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblItemCountLetters.Location = new System.Drawing.Point(30, 483);
     this.lblItemCountLetters.Name = "lblItemCountLetters";
     this.lblItemCountLetters.Size = new System.Drawing.Size(138, 15);
     this.lblItemCountLetters.TabIndex = 22;
     this.lblItemCountLetters.Text = "0 Documents Listed.";
     //
     // statusLabel
     //
     this.statusLabel.AutoSize = true;
     this.statusLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.statusLabel.Location = new System.Drawing.Point(448, 530);
     this.statusLabel.MaximumSize = new System.Drawing.Size(380, 0);
     this.statusLabel.Name = "statusLabel";
     this.statusLabel.Size = new System.Drawing.Size(72, 13);
     this.statusLabel.TabIndex = 86;
     this.statusLabel.Text = "statusLabel";
     this.statusLabel.Visible = false;
     //
     // cancelButton
     //
     this.cancelButton.Location = new System.Drawing.Point(367, 521);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(75, 31);
     this.cancelButton.TabIndex = 85;
     this.cancelButton.Text = "Cancel";
     this.cancelButton.UseVisualStyleBackColor = true;
     this.cancelButton.Visible = false;
     this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
     //
     // progressBar
     //
     this.progressBar.Location = new System.Drawing.Point(33, 521);
     this.progressBar.MarqueeAnimationSpeed = 40;
     this.progressBar.Name = "progressBar";
     this.progressBar.Size = new System.Drawing.Size(328, 31);
     this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
     this.progressBar.TabIndex = 84;
     this.progressBar.Visible = false;
     //
     // includePrintedCheckBox
     //
     this.includePrintedCheckBox.AutoSize = true;
     this.includePrintedCheckBox.Location = new System.Drawing.Point(699, 14);
     this.includePrintedCheckBox.Name = "includePrintedCheckBox";
     this.includePrintedCheckBox.Size = new System.Drawing.Size(205, 17);
     this.includePrintedCheckBox.TabIndex = 87;
     this.includePrintedCheckBox.Text = "Include Previously Printed Documents";
     this.includePrintedCheckBox.UseVisualStyleBackColor = true;
     this.includePrintedCheckBox.CheckedChanged += new System.EventHandler(this.includePrintedCheckBox_CheckedChanged);
     //
     // populateBackgroundWorker
     //
     this.populateBackgroundWorker.WorkerReportsProgress = true;
     this.populateBackgroundWorker.WorkerSupportsCancellation = true;
     this.populateBackgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.populateBackgroundWorker_DoWork);
     this.populateBackgroundWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.populateBackgroundWorker_ProgressChanged);
     this.populateBackgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.populateBackgroundWorker_RunWorkerCompleted);
     //
     // loadingCircle1
     //
     this.loadingCircle1.Active = false;
     this.loadingCircle1.Color = System.Drawing.Color.DarkGray;
     this.loadingCircle1.InnerCircleRadius = 5;
     this.loadingCircle1.Location = new System.Drawing.Point(421, 194);
     this.loadingCircle1.Name = "loadingCircle1";
     this.loadingCircle1.NumberSpoke = 12;
     this.loadingCircle1.OuterCircleRadius = 11;
     this.loadingCircle1.RotationSpeed = 100;
     this.loadingCircle1.Size = new System.Drawing.Size(87, 62);
     this.loadingCircle1.SpokeThickness = 2;
     this.loadingCircle1.StylePreset = MRG.Controls.UI.LoadingCircle.StylePresets.MacOSX;
     this.loadingCircle1.TabIndex = 89;
     this.loadingCircle1.Text = "loadingCircle1";
     this.loadingCircle1.Visible = false;
     //
     // fastDataListView1
     //
     this.fastDataListView1.AllColumns.Add(this.mrnOlvColumn);
     this.fastDataListView1.AllColumns.Add(this.patientNameOlvColumn);
     this.fastDataListView1.AllColumns.Add(this.dobOlvColumn);
     this.fastDataListView1.AllColumns.Add(this.apptDateOlvColumn);
     this.fastDataListView1.AllColumns.Add(this.documentOlvColumn);
     this.fastDataListView1.AllColumns.Add(this.lastPrintedOlvColumn);
     this.fastDataListView1.AllowColumnReorder = true;
     this.fastDataListView1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.fastDataListView1.CheckBoxes = false;
     this.fastDataListView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.mrnOlvColumn,
     this.patientNameOlvColumn,
     this.dobOlvColumn,
     this.apptDateOlvColumn,
     this.documentOlvColumn,
     this.lastPrintedOlvColumn});
     this.fastDataListView1.Cursor = System.Windows.Forms.Cursors.Default;
     this.fastDataListView1.DataSource = null;
     this.fastDataListView1.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fastDataListView1.FullRowSelect = true;
     this.fastDataListView1.GridLines = true;
     this.fastDataListView1.HeaderWordWrap = true;
     this.fastDataListView1.HideSelection = false;
     this.fastDataListView1.Location = new System.Drawing.Point(12, 40);
     this.fastDataListView1.Name = "fastDataListView1";
     this.fastDataListView1.OwnerDraw = true;
     this.fastDataListView1.SelectedColumnTint = System.Drawing.Color.Transparent;
     this.fastDataListView1.ShowCommandMenuOnRightClick = true;
     this.fastDataListView1.ShowGroups = false;
     this.fastDataListView1.ShowItemToolTips = true;
     this.fastDataListView1.Size = new System.Drawing.Size(904, 426);
     this.fastDataListView1.TabIndex = 88;
     this.fastDataListView1.UseCompatibleStateImageBehavior = false;
     this.fastDataListView1.UseHotItem = true;
     this.fastDataListView1.UseOverlays = false;
     this.fastDataListView1.UseTranslucentHotItem = true;
     this.fastDataListView1.View = System.Windows.Forms.View.Details;
     this.fastDataListView1.VirtualMode = true;
     this.fastDataListView1.SelectionChanged += new System.EventHandler(this.fastDataListView1_SelectionChanged);
     //
     // mrnOlvColumn
     //
     this.mrnOlvColumn.AspectName = "unitnum";
     this.mrnOlvColumn.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.mrnOlvColumn.Text = "MRN";
     this.mrnOlvColumn.Width = 90;
     //
     // patientNameOlvColumn
     //
     this.patientNameOlvColumn.AspectName = "patientName";
     this.patientNameOlvColumn.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.patientNameOlvColumn.Text = "Patient Name";
     this.patientNameOlvColumn.Width = 275;
     //
     // dobOlvColumn
     //
     this.dobOlvColumn.AspectName = "dob";
     this.dobOlvColumn.Text = "DOB";
     this.dobOlvColumn.Width = 80;
     //
     // apptDateOlvColumn
     //
     this.apptDateOlvColumn.AspectName = "apptDate";
     this.apptDateOlvColumn.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.apptDateOlvColumn.Text = "Appt Date";
     this.apptDateOlvColumn.Width = 80;
     //
     // documentOlvColumn
     //
     this.documentOlvColumn.AspectName = "documentName";
     this.documentOlvColumn.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.documentOlvColumn.Text = "Document Name";
     this.documentOlvColumn.Width = 275;
     //
     // lastPrintedOlvColumn
     //
     this.lastPrintedOlvColumn.AspectName = "lastPrinted";
     this.lastPrintedOlvColumn.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.lastPrintedOlvColumn.Text = "Last Printed";
     this.lastPrintedOlvColumn.Width = 100;
     //
     // printSelectedBackgroundWorker
     //
     this.printSelectedBackgroundWorker.WorkerReportsProgress = true;
     this.printSelectedBackgroundWorker.WorkerSupportsCancellation = true;
     this.printSelectedBackgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.printSelectedBackgroundWorker_DoWork);
     this.printSelectedBackgroundWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.printSelectedBackgroundWorker_ProgressChanged);
     this.printSelectedBackgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.printSelectedBackgroundWorker_RunWorkerCompleted);
     //
     // PrintQueueForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(929, 570);
     this.Controls.Add(this.loadingCircle1);
     this.Controls.Add(this.fastDataListView1);
     this.Controls.Add(this.includePrintedCheckBox);
     this.Controls.Add(this.statusLabel);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.progressBar);
     this.Controls.Add(this.lblItemCountSelected);
     this.Controls.Add(this.lblItemCountLetters);
     this.Controls.Add(this.btnPrintSelectedLetters);
     this.Controls.Add(this.btnPrintLetters);
     this.Controls.Add(this.closeButton);
     this.Controls.Add(this.refreshButton);
     this.Name = "PrintQueueForm";
     this.Text = "PrintQueueForm";
     this.Load += new System.EventHandler(this.PrintQueueForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.fastDataListView1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		void InitializeComponent() {
			this.components = new System.ComponentModel.Container();
			//System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Positions));
			//this.tradeTypes = new System.Windows.Forms.ImageList(this.components);
			this.olvPositions = new BrightIdeasSoftware.ObjectListView();
			this.olvcPosition = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcSerno = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcSymbol = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcQuantity = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcEntryDate = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcEntryPrice = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcEntryOrder = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcExitDate = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcExitPrice = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcExitOrder = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcProfitPct = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcProfitDollar = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcBarsHeld = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcProfitPerBar = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcEntrySignalName = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcExitSignalName = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcMaePct = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcMfePct = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcCumProfitPct = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcCumProfitDollar = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcComission = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.ctxPopup = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.mniShowEntriesExits = new System.Windows.Forms.ToolStripMenuItem();
			this.mniShowPercentage = new System.Windows.Forms.ToolStripMenuItem();
			this.mniShowBarsHeld = new System.Windows.Forms.ToolStripMenuItem();
			this.mniShowMaeMfe = new System.Windows.Forms.ToolStripMenuItem();
			this.mniShowSignals = new System.Windows.Forms.ToolStripMenuItem();
			this.mniShowCommission = new System.Windows.Forms.ToolStripMenuItem();
			this.mniColorify = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
			this.mniCopyToClipboard = new System.Windows.Forms.ToolStripMenuItem();
			this.mniSaveToFile = new System.Windows.Forms.ToolStripMenuItem();
			((System.ComponentModel.ISupportInitialize)(this.olvPositions)).BeginInit();
			this.ctxPopup.SuspendLayout();
			this.SuspendLayout();
			// 
			// tradeTypes
			// 
			//this.tradeTypes.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("tradeTypes.ImageStream")));
			//this.tradeTypes.TransparentColor = System.Drawing.Color.Transparent;
			//this.tradeTypes.Images.SetKeyName(0, "45degrees3-LongEntryUnknown.png");
			//this.tradeTypes.Images.SetKeyName(1, "45degrees3-LongEntryProfit.png");
			//this.tradeTypes.Images.SetKeyName(2, "45degrees3-LongEntryLoss.png");
			//this.tradeTypes.Images.SetKeyName(3, "45degrees3-ShortEntryUnknown.png");
			//this.tradeTypes.Images.SetKeyName(4, "45degrees3-ShortEntryProfit.png");
			//this.tradeTypes.Images.SetKeyName(5, "45degrees3-ShortEntryLoss.png");
			// 
			// olvPositions
			// 
			this.olvPositions.BackColor = System.Drawing.SystemColors.Window;
			this.olvPositions.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.olvPositions.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
	            this.olvcPosition,
	            this.olvcSerno,
	            this.olvcSymbol,
	            this.olvcQuantity,
	            this.olvcEntryDate,
	            this.olvcEntryPrice,
	            this.olvcEntryOrder,
	            this.olvcExitDate,
	            this.olvcExitPrice,
	            this.olvcExitOrder,
	            this.olvcProfitPct,
	            this.olvcProfitDollar,
	            this.olvcBarsHeld,
	            this.olvcProfitPerBar,
	            this.olvcEntrySignalName,
	            this.olvcExitSignalName,
	            this.olvcMaePct,
	            this.olvcMfePct,
	            this.olvcCumProfitPct,
	            this.olvcCumProfitDollar,
	            this.olvcComission});
			this.olvPositions.AllColumns.Add(this.olvcPosition);
	        this.olvPositions.AllColumns.Add(this.olvcSerno);
			this.olvPositions.AllColumns.Add(this.olvcSymbol);
			this.olvPositions.AllColumns.Add(this.olvcQuantity);
			this.olvPositions.AllColumns.Add(this.olvcEntryDate);
			this.olvPositions.AllColumns.Add(this.olvcEntryPrice);
			this.olvPositions.AllColumns.Add(this.olvcEntryOrder);
			this.olvPositions.AllColumns.Add(this.olvcExitDate);
			this.olvPositions.AllColumns.Add(this.olvcExitPrice);
			this.olvPositions.AllColumns.Add(this.olvcExitOrder);
			this.olvPositions.AllColumns.Add(this.olvcProfitPct);
			this.olvPositions.AllColumns.Add(this.olvcProfitDollar);
			this.olvPositions.AllColumns.Add(this.olvcBarsHeld);
			this.olvPositions.AllColumns.Add(this.olvcProfitPerBar);
			this.olvPositions.AllColumns.Add(this.olvcEntrySignalName);
			this.olvPositions.AllColumns.Add(this.olvcExitSignalName);
			this.olvPositions.AllColumns.Add(this.olvcMaePct);
			this.olvPositions.AllColumns.Add(this.olvcMfePct);
			this.olvPositions.AllColumns.Add(this.olvcCumProfitPct);
			this.olvPositions.AllColumns.Add(this.olvcCumProfitDollar);
			this.olvPositions.AllColumns.Add(this.olvcComission);
			this.olvPositions.ContextMenuStrip = this.ctxPopup;
			this.olvPositions.Dock = System.Windows.Forms.DockStyle.Fill;
			this.olvPositions.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.olvPositions.FullRowSelect = true;
			this.olvPositions.HeaderUsesThemes = false;
			this.olvPositions.HideSelection = false;
			this.olvPositions.Location = new System.Drawing.Point(0, 0);
			this.olvPositions.MultiSelect = false;
			this.olvPositions.ShowCommandMenuOnRightClick = true;
			this.olvPositions.ShowGroups = false;
			this.olvPositions.TintSortColumn = true;
			this.olvPositions.UnfocusedHighlightBackgroundColor = System.Drawing.SystemColors.GradientActiveCaption;
			this.olvPositions.UseCompatibleStateImageBehavior = false;
			this.olvPositions.UseFilterIndicator = true;
			this.olvPositions.UseFiltering = true;
			this.olvPositions.UseHotItem = true;
			this.olvPositions.UseTranslucentHotItem = true;
			this.olvPositions.Name = "olvPositions";
			this.olvPositions.Size = new System.Drawing.Size(905, 303);
			//this.olvPositions.SmallImageList = this.tradeTypes;
			this.olvPositions.TabIndex = 0;
			this.olvPositions.UseCompatibleStateImageBehavior = false;
			this.olvPositions.View = System.Windows.Forms.View.Details;
			this.olvPositions.DoubleClick += new System.EventHandler(this.olvPositions_DoubleClick);
			// 
			// olvcPosition
			// 
			this.olvcPosition.CellPadding = null;
			this.olvcPosition.Text = "Position";
			this.olvcPosition.Width = 50;
			// 
			// olvcSerno
			// 
			this.olvcSerno.CellPadding = null;
			this.olvcSerno.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcSerno.Text = "Serno";
			this.olvcSerno.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcSerno.Width = 40;
			// 
			// olvcSymbol
			// 
			this.olvcSymbol.CellPadding = null;
			this.olvcSymbol.Text = "Symbol";
			this.olvcSymbol.Width = 20;
			// 
			// olvcQuantity
			// 
			this.olvcQuantity.CellPadding = null;
			this.olvcQuantity.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcQuantity.Text = "Shares";
			this.olvcQuantity.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcQuantity.Width = 19;
			// 
			// olvcEntryDate
			// 
			this.olvcEntryDate.CellPadding = null;
			this.olvcEntryDate.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcEntryDate.Text = "Entry Date";
			this.olvcEntryDate.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcEntryDate.Width = 110;
			// 
			// olvcEntryPrice
			// 
			this.olvcEntryPrice.CellPadding = null;
			this.olvcEntryPrice.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcEntryPrice.Text = "Entry Price";
			this.olvcEntryPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcEntryPrice.Width = 70;
			// 
			// olvcEntryOrder
			// 
			this.olvcEntryOrder.CellPadding = null;
			this.olvcEntryOrder.Text = "EntryOrder";
			this.olvcEntryOrder.Width = 50;
			// 
			// olvcExitDate
			// 
			this.olvcExitDate.CellPadding = null;
			this.olvcExitDate.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcExitDate.Text = "Exit Date";
			this.olvcExitDate.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcExitDate.Width = 110;
			// 
			// olvcExitPrice
			// 
			this.olvcExitPrice.CellPadding = null;
			this.olvcExitPrice.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcExitPrice.Text = "Exit Price";
			this.olvcExitPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcExitPrice.Width = 70;
			// 
			// olvcExitOrder
			// 
			this.olvcExitOrder.CellPadding = null;
			this.olvcExitOrder.Text = "ExitOrder";
			this.olvcExitOrder.Width = 50;
			// 
			// olvcProfitPct
			// 
			this.olvcProfitPct.CellPadding = null;
			this.olvcProfitPct.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcProfitPct.Text = "Profit %";
			this.olvcProfitPct.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcProfitPct.Width = 36;
			// 
			// olvcProfitDollar
			// 
			this.olvcProfitDollar.CellPadding = null;
			this.olvcProfitDollar.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcProfitDollar.Text = "Profit $";
			this.olvcProfitDollar.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcProfitDollar.Width = 69;
			// 
			// olvcBarsHeld
			// 
			this.olvcBarsHeld.CellPadding = null;
			this.olvcBarsHeld.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcBarsHeld.Text = "Bars Held";
			this.olvcBarsHeld.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcBarsHeld.Width = 31;
			// 
			// olvcProfitPerBar
			// 
			this.olvcProfitPerBar.CellPadding = null;
			this.olvcProfitPerBar.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcProfitPerBar.Text = "Profit per Bar";
			this.olvcProfitPerBar.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcProfitPerBar.Width = 60;
			// 
			// olvcEntrySignalName
			// 
			this.olvcEntrySignalName.CellPadding = null;
			this.olvcEntrySignalName.Text = "Entry Signal";
			this.olvcEntrySignalName.Width = 70;
			// 
			// olvcExitSignalName
			// 
			this.olvcExitSignalName.CellPadding = null;
			this.olvcExitSignalName.Text = "Exit Signal";
			this.olvcExitSignalName.Width = 70;
			// 
			// olvcMaePct
			// 
			this.olvcMaePct.CellPadding = null;
			this.olvcMaePct.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcMaePct.Text = "MAE %";
			this.olvcMaePct.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcMaePct.Width = 42;
			// 
			// olvcMfePct
			// 
			this.olvcMfePct.CellPadding = null;
			this.olvcMfePct.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcMfePct.Text = "MFE %";
			this.olvcMfePct.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcMfePct.Width = 42;
			// 
			// olvcCumProfitPct
			// 
			this.olvcCumProfitPct.CellPadding = null;
			this.olvcCumProfitPct.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcCumProfitPct.Text = "%Profit Cumulative";
			this.olvcCumProfitPct.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcCumProfitPct.Width = 41;
			// 
			// olvcCumProfitDollar
			// 
			this.olvcCumProfitDollar.CellPadding = null;
			this.olvcCumProfitDollar.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcCumProfitDollar.Text = "$Profit Cumulative";
			this.olvcCumProfitDollar.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcCumProfitDollar.Width = 76;
			// 
			// olvcComission
			// 
			this.olvcComission.CellPadding = null;
			this.olvcComission.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcComission.Text = "$Commission";
			this.olvcComission.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcComission.Width = 40;
			// 
			// ctxPopup
			// 
			this.ctxPopup.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
	            this.mniShowEntriesExits,
	            this.mniShowPercentage,
	            this.mniShowBarsHeld,
	            this.mniShowMaeMfe,
	            this.mniShowSignals,
	            this.mniShowCommission,
	            this.toolStripSeparator2,
	            this.mniColorify,
	            this.toolStripSeparator1,
	            this.mniCopyToClipboard,
	            this.mniSaveToFile});
			this.ctxPopup.Name = "contextMenuStrip1";
			this.ctxPopup.Size = new System.Drawing.Size(183, 208);
			// 
			// mniShowEntriesExits
			// 
			this.mniShowEntriesExits.Checked = true;
			this.mniShowEntriesExits.CheckOnClick = true;
			this.mniShowEntriesExits.CheckState = System.Windows.Forms.CheckState.Checked;
			this.mniShowEntriesExits.Name = "mniShowEntriesExits";
			this.mniShowEntriesExits.Size = new System.Drawing.Size(182, 22);
			this.mniShowEntriesExits.Text = "Show EntriesExits";
			this.mniShowEntriesExits.Click += new System.EventHandler(this.mniShowEntriesExits_Click);
			// 
			// mniShowPercentage
			// 
			this.mniShowPercentage.Checked = true;
			this.mniShowPercentage.CheckOnClick = true;
			this.mniShowPercentage.CheckState = System.Windows.Forms.CheckState.Checked;
			this.mniShowPercentage.Name = "mniShowPercentage";
			this.mniShowPercentage.Size = new System.Drawing.Size(182, 22);
			this.mniShowPercentage.Text = "Show Percentages";
			this.mniShowPercentage.Click += new System.EventHandler(this.mniShowPercentage_Click);
			// 
			// mniShowBarsHeld
			// 
			this.mniShowBarsHeld.Checked = true;
			this.mniShowBarsHeld.CheckOnClick = true;
			this.mniShowBarsHeld.CheckState = System.Windows.Forms.CheckState.Checked;
			this.mniShowBarsHeld.Name = "mniShowBarsHeld";
			this.mniShowBarsHeld.Size = new System.Drawing.Size(182, 22);
			this.mniShowBarsHeld.Text = "Show BarsHeld";
			this.mniShowBarsHeld.Click += new System.EventHandler(this.mniShowBarsHeld_Click);
			// 
			// mniShowMaeMfe
			// 
			this.mniShowMaeMfe.Checked = true;
			this.mniShowMaeMfe.CheckOnClick = true;
			this.mniShowMaeMfe.CheckState = System.Windows.Forms.CheckState.Checked;
			this.mniShowMaeMfe.Name = "mniShowMaeMfe";
			this.mniShowMaeMfe.Size = new System.Drawing.Size(182, 22);
			this.mniShowMaeMfe.Text = "Show MAE MFE";
			this.mniShowMaeMfe.Click += new System.EventHandler(this.mniShowMaeMfe_Click);
			// 
			// mniShowSignals
			// 
			this.mniShowSignals.Checked = true;
			this.mniShowSignals.CheckOnClick = true;
			this.mniShowSignals.CheckState = System.Windows.Forms.CheckState.Checked;
			this.mniShowSignals.Name = "mniShowSignals";
			this.mniShowSignals.Size = new System.Drawing.Size(182, 22);
			this.mniShowSignals.Text = "Show Signals";
			this.mniShowSignals.Click += new System.EventHandler(this.mniShowSignals_Click);
			// 
			// mniShowCommission
			// 
			this.mniShowCommission.Checked = true;
			this.mniShowCommission.CheckOnClick = true;
			this.mniShowCommission.CheckState = System.Windows.Forms.CheckState.Checked;
			this.mniShowCommission.Name = "mniShowCommission";
			this.mniShowCommission.Size = new System.Drawing.Size(182, 22);
			this.mniShowCommission.Text = "Show Commission";
			this.mniShowCommission.Click += new System.EventHandler(this.mniShowCommission_Click);
			// 
			// mniColorify
			// 
			this.mniColorify.Checked = true;
			this.mniColorify.CheckOnClick = true;
			this.mniColorify.CheckState = System.Windows.Forms.CheckState.Checked;
			this.mniColorify.Name = "mniColorify";
			this.mniColorify.Size = new System.Drawing.Size(182, 22);
			this.mniColorify.Text = "Colorify (slow)";
			this.mniColorify.Click += new System.EventHandler(this.mniColorify_Click);
			// 
			// toolStripSeparator1
			// 
			this.toolStripSeparator1.Name = "toolStripSeparator1";
			this.toolStripSeparator1.Size = new System.Drawing.Size(179, 6);
			// 
			// toolStripSeparator2
			// 
			this.toolStripSeparator2.Name = "toolStripSeparator2";
			this.toolStripSeparator2.Size = new System.Drawing.Size(179, 6);
			// 
			// mniCopyToClipboard
			// 
			this.mniCopyToClipboard.Name = "mniCopyToClipboard";
			this.mniCopyToClipboard.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
			this.mniCopyToClipboard.Size = new System.Drawing.Size(182, 22);
			this.mniCopyToClipboard.Text = "Copy";
			this.mniCopyToClipboard.Click += new System.EventHandler(this.mniCopyToClipboard_Click);
			// 
			// mniSaveToFile
			// 
			this.mniSaveToFile.Name = "mniSaveToFile";
			this.mniSaveToFile.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
			this.mniSaveToFile.Size = new System.Drawing.Size(182, 22);
			this.mniSaveToFile.Text = "Save (GUI-BLOCKING !!!)";
			this.mniSaveToFile.Visible = false;
			this.mniSaveToFile.Click += new System.EventHandler(this.mniSaveToFile_Click);
			// 
			// Positions
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.olvPositions);
			this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.Name = "Positions";
			this.Size = new System.Drawing.Size(905, 303);
			((System.ComponentModel.ISupportInitialize)(this.olvPositions)).EndInit();
			this.ctxPopup.ResumeLayout(false);
			this.ResumeLayout(false);

		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Window));
     this.structureTreeListView = new BrightIdeasSoftware.TreeListView();
     this.fieldColumn = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.valueColumn = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.actualValueColumn = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.descriptionColumn = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     ((System.ComponentModel.ISupportInitialize)(this.structureTreeListView)).BeginInit();
     this.SuspendLayout();
     //
     // structureTreeListView
     //
     this.structureTreeListView.AllColumns.Add(this.fieldColumn);
     this.structureTreeListView.AllColumns.Add(this.valueColumn);
     this.structureTreeListView.AllColumns.Add(this.actualValueColumn);
     this.structureTreeListView.AllColumns.Add(this.descriptionColumn);
     this.structureTreeListView.CellEditActivation = BrightIdeasSoftware.ObjectListView.CellEditActivateMode.SingleClick;
     this.structureTreeListView.CellEditEnterChangesRows = true;
     this.structureTreeListView.CellEditTabChangesRows = true;
     this.structureTreeListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.fieldColumn,
     this.valueColumn,
     this.actualValueColumn,
     this.descriptionColumn});
     this.structureTreeListView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.structureTreeListView.Location = new System.Drawing.Point(0, 0);
     this.structureTreeListView.Name = "structureTreeListView";
     this.structureTreeListView.OwnerDraw = true;
     this.structureTreeListView.ShowGroups = false;
     this.structureTreeListView.Size = new System.Drawing.Size(1100, 446);
     this.structureTreeListView.TabIndex = 0;
     this.structureTreeListView.UseCellFormatEvents = true;
     this.structureTreeListView.UseCompatibleStateImageBehavior = false;
     this.structureTreeListView.View = System.Windows.Forms.View.Details;
     this.structureTreeListView.VirtualMode = true;
     //
     // fieldColumn
     //
     this.fieldColumn.AspectName = "";
     this.fieldColumn.CellPadding = null;
     this.fieldColumn.IsEditable = false;
     this.fieldColumn.Text = "Field name";
     this.fieldColumn.ToolTipText = "The name of the field";
     this.fieldColumn.Width = 180;
     //
     // valueColumn
     //
     this.valueColumn.AspectName = "";
     this.valueColumn.CellPadding = null;
     this.valueColumn.Text = "Value";
     this.valueColumn.Width = 180;
     //
     // actualValueColumn
     //
     this.actualValueColumn.CellPadding = null;
     this.actualValueColumn.IsEditable = false;
     this.actualValueColumn.Text = "Actual value";
     this.actualValueColumn.Width = 180;
     //
     // descriptionColumn
     //
     this.descriptionColumn.AspectName = "";
     this.descriptionColumn.CellPadding = null;
     this.descriptionColumn.FillsFreeSpace = true;
     this.descriptionColumn.IsEditable = false;
     this.descriptionColumn.Text = "Description";
     this.descriptionColumn.Width = 400;
     //
     // Window
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1100, 446);
     this.Controls.Add(this.structureTreeListView);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "Window";
     this.Text = "Structure Editor";
     ((System.ComponentModel.ISupportInitialize)(this.structureTreeListView)).EndInit();
     this.ResumeLayout(false);
 }
        void CreateCommonControls()
        {
            mTreeView.SmallImageList = mImageList;
            mTreeView.ItemChecked += new ItemCheckedEventHandler( mTreeView_ItemChecked );

            mTreeView.CheckStateGetter = new BrightIdeasSoftware.CheckStateGetterDelegate( CheckStateGetterMethod );
            mTreeView.CheckStatePutter = new BrightIdeasSoftware.CheckStatePutterDelegate( CheckStateSetterMethod );

            mModelNameColumn = new BrightIdeasSoftware.OLVColumn();
            mModelNameColumn.AspectName = "ModelName";
            mModelNameColumn.AspectName = "ModelName";
            mModelNameColumn.Text = "Name";
            mModelNameColumn.Width = 300;
            mModelNameColumn.FillsFreeSpace = true;

            mTreeView.Columns.Add( mModelNameColumn );
        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            BrightIdeasSoftware.HeaderStateStyle headerStateStyle1 = new BrightIdeasSoftware.HeaderStateStyle();
            BrightIdeasSoftware.HeaderStateStyle headerStateStyle2 = new BrightIdeasSoftware.HeaderStateStyle();
            BrightIdeasSoftware.HeaderStateStyle headerStateStyle3 = new BrightIdeasSoftware.HeaderStateStyle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.btnParse = new System.Windows.Forms.Button();
            this.headerFormatStyle1 = new BrightIdeasSoftware.HeaderFormatStyle();
            this.treeListView1 = new BrightIdeasSoftware.TreeListView();
            this.colName = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.colId = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.colValue = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.lblMessageType = new System.Windows.Forms.Label();
            this.lblMessageVersion = new System.Windows.Forms.Label();
            this.tbMessage = new System.Windows.Forms.TextBox();
            this.tbVersion = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.treeListView1)).BeginInit();
            this.SuspendLayout();
            // 
            // btnParse
            // 
            this.btnParse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnParse.Location = new System.Drawing.Point(621, 3);
            this.btnParse.Name = "btnParse";
            this.btnParse.Size = new System.Drawing.Size(75, 23);
            this.btnParse.TabIndex = 0;
            this.btnParse.Text = "Parse";
            this.btnParse.UseVisualStyleBackColor = true;
            this.btnParse.Click += new System.EventHandler(this.btnParse_Click);
            // 
            // headerFormatStyle1
            // 
            this.headerFormatStyle1.Hot = headerStateStyle1;
            this.headerFormatStyle1.Normal = headerStateStyle2;
            this.headerFormatStyle1.Pressed = headerStateStyle3;
            // 
            // treeListView1
            // 
            this.treeListView1.AllColumns.Add(this.colName);
            this.treeListView1.AllColumns.Add(this.colId);
            this.treeListView1.AllColumns.Add(this.colValue);
            this.treeListView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.treeListView1.CheckBoxes = false;
            this.treeListView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.colName,
            this.colId,
            this.colValue});
            this.treeListView1.FullRowSelect = true;
            this.treeListView1.GridLines = true;
            this.treeListView1.Location = new System.Drawing.Point(11, 253);
            this.treeListView1.Name = "treeListView1";
            this.treeListView1.OwnerDraw = true;
            this.treeListView1.ShowGroups = false;
            this.treeListView1.Size = new System.Drawing.Size(685, 300);
            this.treeListView1.TabIndex = 6;
            this.treeListView1.UseCompatibleStateImageBehavior = false;
            this.treeListView1.View = System.Windows.Forms.View.Details;
            this.treeListView1.VirtualMode = true;
            // 
            // colName
            // 
            this.colName.AspectName = "Name";
            this.colName.Text = "Name";
            this.colName.Width = 240;
            // 
            // colId
            // 
            this.colId.AspectName = "Id";
            this.colId.Text = "Id";
            // 
            // colValue
            // 
            this.colValue.AspectName = "Value";
            this.colValue.FillsFreeSpace = true;
            this.colValue.Text = "Value";
            this.colValue.Width = 180;
            // 
            // lblMessageType
            // 
            this.lblMessageType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.lblMessageType.AutoSize = true;
            this.lblMessageType.Location = new System.Drawing.Point(11, 233);
            this.lblMessageType.Name = "lblMessageType";
            this.lblMessageType.Size = new System.Drawing.Size(0, 13);
            this.lblMessageType.TabIndex = 7;
            this.lblMessageType.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // lblMessageVersion
            // 
            this.lblMessageVersion.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.lblMessageVersion.AutoSize = true;
            this.lblMessageVersion.Location = new System.Drawing.Point(642, 232);
            this.lblMessageVersion.Name = "lblMessageVersion";
            this.lblMessageVersion.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.lblMessageVersion.Size = new System.Drawing.Size(0, 13);
            this.lblMessageVersion.TabIndex = 8;
            this.lblMessageVersion.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // tbMessage
            // 
            this.tbMessage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tbMessage.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tbMessage.Location = new System.Drawing.Point(14, 32);
            this.tbMessage.MaximumSize = new System.Drawing.Size(10000, 197);
            this.tbMessage.Multiline = true;
            this.tbMessage.Name = "tbMessage";
            this.tbMessage.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.tbMessage.Size = new System.Drawing.Size(681, 197);
            this.tbMessage.TabIndex = 9;
            this.tbMessage.WordWrap = false;
            this.tbMessage.TextChanged += new System.EventHandler(this.tbMessage_TextChanged);
            // 
            // tbVersion
            // 
            this.tbVersion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.tbVersion.Location = new System.Drawing.Point(515, 5);
            this.tbVersion.Name = "tbVersion";
            this.tbVersion.Size = new System.Drawing.Size(100, 20);
            this.tbVersion.TabIndex = 10;
            // 
            // label1
            // 
            this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(466, 8);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(45, 13);
            this.label1.TabIndex = 11;
            this.label1.Text = "Version:";
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(709, 575);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.tbVersion);
            this.Controls.Add(this.tbMessage);
            this.Controls.Add(this.lblMessageVersion);
            this.Controls.Add(this.lblMessageType);
            this.Controls.Add(this.treeListView1);
            this.Controls.Add(this.btnParse);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "MainForm";
            this.Text = "NHapi HL7 Snoop";
            ((System.ComponentModel.ISupportInitialize)(this.treeListView1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.flowMenu = new System.Windows.Forms.FlowLayoutPanel();
            this.btnInstall = new System.Windows.Forms.Button();
            this.chkShowOffline = new System.Windows.Forms.CheckBox();
            this.lstGames = new BrightIdeasSoftware.ObjectListView();
            this.olvName = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.olvPlayers = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.olvColumn2 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.olvColumn3 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.olvColumn4 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.olvPing = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.olvInstallPath = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.olvColumn5 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.statusBar = new System.Windows.Forms.StatusStrip();
            this.statusBarLabel = new System.Windows.Forms.ToolStripStatusLabel();
            this.btnRefresh = new System.Windows.Forms.Button();
            this.linkFoDev = new System.Windows.Forms.LinkLabel();
            this.chkPing = new System.Windows.Forms.CheckBox();
            this.frmMainBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.flowMenu.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.lstGames)).BeginInit();
            this.statusBar.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.frmMainBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // flowMenu
            // 
            this.flowMenu.Controls.Add(this.btnInstall);
            this.flowMenu.Location = new System.Drawing.Point(5, 12);
            this.flowMenu.Name = "flowMenu";
            this.flowMenu.Size = new System.Drawing.Size(119, 389);
            this.flowMenu.TabIndex = 6;
            // 
            // btnInstall
            // 
            this.btnInstall.Enabled = false;
            this.btnInstall.Location = new System.Drawing.Point(3, 3);
            this.btnInstall.Name = "btnInstall";
            this.btnInstall.Size = new System.Drawing.Size(103, 28);
            this.btnInstall.TabIndex = 8;
            this.btnInstall.Text = "Install/Add";
            this.btnInstall.UseVisualStyleBackColor = true;
            // 
            // chkShowOffline
            // 
            this.chkShowOffline.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.chkShowOffline.AutoSize = true;
            this.chkShowOffline.Location = new System.Drawing.Point(715, 97);
            this.chkShowOffline.Name = "chkShowOffline";
            this.chkShowOffline.Size = new System.Drawing.Size(125, 17);
            this.chkShowOffline.TabIndex = 8;
            this.chkShowOffline.Text = "Show Offline Servers";
            this.chkShowOffline.UseVisualStyleBackColor = true;
            // 
            // lstGames
            // 
            this.lstGames.AllColumns.Add(this.olvName);
            this.lstGames.AllColumns.Add(this.olvPlayers);
            this.lstGames.AllColumns.Add(this.olvColumn2);
            this.lstGames.AllColumns.Add(this.olvColumn3);
            this.lstGames.AllColumns.Add(this.olvColumn4);
            this.lstGames.AllColumns.Add(this.olvPing);
            this.lstGames.AllColumns.Add(this.olvInstallPath);
            this.lstGames.AllColumns.Add(this.olvColumn5);
            this.lstGames.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.lstGames.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.olvName,
            this.olvPlayers,
            this.olvColumn2,
            this.olvColumn3,
            this.olvColumn4,
            this.olvPing,
            this.olvInstallPath,
            this.olvColumn5});
            this.lstGames.Cursor = System.Windows.Forms.Cursors.Default;
            this.lstGames.FullRowSelect = true;
            this.lstGames.HasCollapsibleGroups = false;
            this.lstGames.Location = new System.Drawing.Point(130, 12);
            this.lstGames.Name = "lstGames";
            this.lstGames.ShowGroups = false;
            this.lstGames.Size = new System.Drawing.Size(579, 389);
            this.lstGames.TabIndex = 7;
            this.lstGames.UseCompatibleStateImageBehavior = false;
            this.lstGames.UseHyperlinks = true;
            this.lstGames.View = System.Windows.Forms.View.Details;
            // 
            // olvName
            // 
            this.olvName.AspectName = "Name";
            this.olvName.Text = "Name";
            this.olvName.Width = 100;
            // 
            // olvPlayers
            // 
            this.olvPlayers.AspectName = "Status";
            this.olvPlayers.Text = "Players";
            // 
            // olvColumn2
            // 
            this.olvColumn2.AspectName = "Website";
            this.olvColumn2.Hyperlink = true;
            this.olvColumn2.Text = "Website";
            this.olvColumn2.Width = 120;
            // 
            // olvColumn3
            // 
            this.olvColumn3.AspectName = "Host";
            this.olvColumn3.Text = "Host";
            this.olvColumn3.Width = 120;
            // 
            // olvColumn4
            // 
            this.olvColumn4.AspectName = "Port";
            this.olvColumn4.Text = "Port";
            // 
            // olvPing
            // 
            this.olvPing.AspectName = "Status.Latency";
            this.olvPing.Text = "Ping";
            // 
            // olvInstallPath
            // 
            this.olvInstallPath.AspectName = "InstallPath";
            this.olvInstallPath.Text = "Install Path";
            // 
            // olvColumn5
            // 
            this.olvColumn5.AspectName = "Source";
            this.olvColumn5.Hyperlink = true;
            this.olvColumn5.Text = "Source Code";
            // 
            // statusBar
            // 
            this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.statusBarLabel});
            this.statusBar.Location = new System.Drawing.Point(0, 404);
            this.statusBar.Name = "statusBar";
            this.statusBar.Size = new System.Drawing.Size(836, 22);
            this.statusBar.TabIndex = 9;
            this.statusBar.Text = "statusStrip1";
            // 
            // statusBarLabel
            // 
            this.statusBarLabel.Name = "statusBarLabel";
            this.statusBarLabel.Size = new System.Drawing.Size(0, 17);
            // 
            // btnRefresh
            // 
            this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnRefresh.Location = new System.Drawing.Point(715, 35);
            this.btnRefresh.Name = "btnRefresh";
            this.btnRefresh.Size = new System.Drawing.Size(116, 33);
            this.btnRefresh.TabIndex = 10;
            this.btnRefresh.Text = "Update list";
            this.btnRefresh.UseVisualStyleBackColor = true;
            // 
            // linkFoDev
            // 
            this.linkFoDev.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.linkFoDev.AutoSize = true;
            this.linkFoDev.Location = new System.Drawing.Point(715, 12);
            this.linkFoDev.Name = "linkFoDev";
            this.linkFoDev.Size = new System.Drawing.Size(83, 13);
            this.linkFoDev.TabIndex = 14;
            this.linkFoDev.TabStop = true;
            this.linkFoDev.Text = "http://fodev.net";
            // 
            // chkPing
            // 
            this.chkPing.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.chkPing.AutoSize = true;
            this.chkPing.Location = new System.Drawing.Point(715, 74);
            this.chkPing.Name = "chkPing";
            this.chkPing.Size = new System.Drawing.Size(86, 17);
            this.chkPing.TabIndex = 15;
            this.chkPing.Text = "Ping Servers";
            this.chkPing.UseVisualStyleBackColor = true;
            // 
            // frmMainBindingSource
            // 
            this.frmMainBindingSource.DataSource = typeof(PlayFOnline.frmMain);
            // 
            // frmMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(836, 426);
            this.Controls.Add(this.chkPing);
            this.Controls.Add(this.linkFoDev);
            this.Controls.Add(this.btnRefresh);
            this.Controls.Add(this.statusBar);
            this.Controls.Add(this.chkShowOffline);
            this.Controls.Add(this.lstGames);
            this.Controls.Add(this.flowMenu);
            this.MinimumSize = new System.Drawing.Size(460, 250);
            this.Name = "frmMain";
            this.Text = "Play FOnline [Version]";
            this.flowMenu.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.lstGames)).EndInit();
            this.statusBar.ResumeLayout(false);
            this.statusBar.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.frmMainBindingSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MyScheduleView));
     WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
     WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin1 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.editAppointmentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.importExportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsXMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deIdentifiedToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.identifiedToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.loadFromXMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.saveAsHL7ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deIdentifiedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.identifiedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.loadFromHL7ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.markCompleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.markForAutomationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.gedComImportOpenFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.importExportBackgroundWorker = new System.ComponentModel.BackgroundWorker();
     this.exportSaveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this.importOpenFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.buttonApplyTextSearch = new System.Windows.Forms.Button();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.panel1 = new System.Windows.Forms.Panel();
     this.progressBar1 = new System.Windows.Forms.ProgressBar();
     this.comboBox2 = new System.Windows.Forms.ComboBox();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.copyApptButton = new System.Windows.Forms.Button();
     this.editApptButton = new System.Windows.Forms.Button();
     this.addApptButton = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.checkBox2 = new System.Windows.Forms.CheckBox();
     this.label2 = new System.Windows.Forms.Label();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.riskClinic = new System.Windows.Forms.Button();
     this.orders = new System.Windows.Forms.Button();
     this.newTask = new System.Windows.Forms.Button();
     this.pedigree = new System.Windows.Forms.Button();
     this.notes = new System.Windows.Forms.Button();
     this.textBoxFilterData = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.buttonClearTextSearch = new System.Windows.Forms.Button();
     this.todayButton = new System.Windows.Forms.Button();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.fastDataListView1 = new BrightIdeasSoftware.FastDataListView();
     this.olvColumn2 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn3 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn4 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn7 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn5 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn8 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumnCompleted = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn6 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn11 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn9 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumn10 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.NoApptSelectedLabel = new System.Windows.Forms.Label();
     this.patientRecordHeader1 = new RiskApps3.View.PatientRecord.PatientRecordHeader();
     this.theDockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.addToDoNotCallListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.contextMenuStrip1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fastDataListView1)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "GoldenAppt.bmp");
     this.imageList1.Images.SetKeyName(1, "PastAppt.bmp");
     this.imageList1.Images.SetKeyName(2, "FutureAppt.bmp");
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.editAppointmentToolStripMenuItem,
     this.importExportToolStripMenuItem,
     this.toolStripSeparator1,
     this.markCompleteToolStripMenuItem,
     this.toolStripMenuItem1,
     this.markForAutomationToolStripMenuItem,
     this.toolStripSeparator2,
     this.addToDoNotCallListToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(227, 170);
     this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
     //
     // editAppointmentToolStripMenuItem
     //
     this.editAppointmentToolStripMenuItem.Name = "editAppointmentToolStripMenuItem";
     this.editAppointmentToolStripMenuItem.Size = new System.Drawing.Size(226, 22);
     this.editAppointmentToolStripMenuItem.Text = "Edit Appointment";
     this.editAppointmentToolStripMenuItem.Click += new System.EventHandler(this.editAppointmentToolStripMenuItem_Click);
     //
     // importExportToolStripMenuItem
     //
     this.importExportToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.saveAsXMLToolStripMenuItem,
     this.loadFromXMLToolStripMenuItem,
     this.toolStripSeparator3,
     this.saveAsHL7ToolStripMenuItem,
     this.loadFromHL7ToolStripMenuItem});
     this.importExportToolStripMenuItem.Name = "importExportToolStripMenuItem";
     this.importExportToolStripMenuItem.Size = new System.Drawing.Size(226, 22);
     this.importExportToolStripMenuItem.Text = "Import/Export";
     this.importExportToolStripMenuItem.Click += new System.EventHandler(this.importExportToolStripMenuItem_Click);
     //
     // saveAsXMLToolStripMenuItem
     //
     this.saveAsXMLToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.deIdentifiedToolStripMenuItem1,
     this.identifiedToolStripMenuItem1});
     this.saveAsXMLToolStripMenuItem.Name = "saveAsXMLToolStripMenuItem";
     this.saveAsXMLToolStripMenuItem.Size = new System.Drawing.Size(156, 22);
     this.saveAsXMLToolStripMenuItem.Text = "Save as XML";
     this.saveAsXMLToolStripMenuItem.Click += new System.EventHandler(this.saveAsXMLToolStripMenuItem_Click);
     //
     // deIdentifiedToolStripMenuItem1
     //
     this.deIdentifiedToolStripMenuItem1.Name = "deIdentifiedToolStripMenuItem1";
     this.deIdentifiedToolStripMenuItem1.Size = new System.Drawing.Size(143, 22);
     this.deIdentifiedToolStripMenuItem1.Text = "De-Identified";
     this.deIdentifiedToolStripMenuItem1.Click += new System.EventHandler(this.deIdentifiedXMLToolStripMenuItem_Click);
     //
     // identifiedToolStripMenuItem1
     //
     this.identifiedToolStripMenuItem1.Name = "identifiedToolStripMenuItem1";
     this.identifiedToolStripMenuItem1.Size = new System.Drawing.Size(143, 22);
     this.identifiedToolStripMenuItem1.Text = "Identified";
     this.identifiedToolStripMenuItem1.Click += new System.EventHandler(this.identifiedXMLToolStripMenuItem_Click);
     //
     // loadFromXMLToolStripMenuItem
     //
     this.loadFromXMLToolStripMenuItem.Name = "loadFromXMLToolStripMenuItem";
     this.loadFromXMLToolStripMenuItem.Size = new System.Drawing.Size(156, 22);
     this.loadFromXMLToolStripMenuItem.Text = "Load from XML";
     this.loadFromXMLToolStripMenuItem.Click += new System.EventHandler(this.loadFromXMLToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(153, 6);
     //
     // saveAsHL7ToolStripMenuItem
     //
     this.saveAsHL7ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.deIdentifiedToolStripMenuItem,
     this.identifiedToolStripMenuItem});
     this.saveAsHL7ToolStripMenuItem.Name = "saveAsHL7ToolStripMenuItem";
     this.saveAsHL7ToolStripMenuItem.Size = new System.Drawing.Size(156, 22);
     this.saveAsHL7ToolStripMenuItem.Text = "Save as HL7";
     this.saveAsHL7ToolStripMenuItem.Click += new System.EventHandler(this.saveAsHL7ToolStripMenuItem_Click);
     //
     // deIdentifiedToolStripMenuItem
     //
     this.deIdentifiedToolStripMenuItem.Name = "deIdentifiedToolStripMenuItem";
     this.deIdentifiedToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
     this.deIdentifiedToolStripMenuItem.Text = "De-Identified";
     this.deIdentifiedToolStripMenuItem.Click += new System.EventHandler(this.deIdentifiedToolStripMenuItem_Click);
     //
     // identifiedToolStripMenuItem
     //
     this.identifiedToolStripMenuItem.Name = "identifiedToolStripMenuItem";
     this.identifiedToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
     this.identifiedToolStripMenuItem.Text = "Identified";
     this.identifiedToolStripMenuItem.Click += new System.EventHandler(this.identifiedToolStripMenuItem_Click);
     //
     // loadFromHL7ToolStripMenuItem
     //
     this.loadFromHL7ToolStripMenuItem.Name = "loadFromHL7ToolStripMenuItem";
     this.loadFromHL7ToolStripMenuItem.Size = new System.Drawing.Size(156, 22);
     this.loadFromHL7ToolStripMenuItem.Text = "Load from HL7";
     this.loadFromHL7ToolStripMenuItem.Click += new System.EventHandler(this.loadFromHL7ToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(223, 6);
     //
     // markCompleteToolStripMenuItem
     //
     this.markCompleteToolStripMenuItem.Name = "markCompleteToolStripMenuItem";
     this.markCompleteToolStripMenuItem.Size = new System.Drawing.Size(226, 22);
     this.markCompleteToolStripMenuItem.Text = "Mark Complete";
     this.markCompleteToolStripMenuItem.Click += new System.EventHandler(this.markCompleteToolStripMenuItem_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(226, 22);
     this.toolStripMenuItem1.Text = "Mark Incomplete";
     this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
     //
     // markForAutomationToolStripMenuItem
     //
     this.markForAutomationToolStripMenuItem.Name = "markForAutomationToolStripMenuItem";
     this.markForAutomationToolStripMenuItem.Size = new System.Drawing.Size(226, 22);
     this.markForAutomationToolStripMenuItem.Text = "Run Automation Documents";
     this.markForAutomationToolStripMenuItem.Click += new System.EventHandler(this.markForAutomationToolStripMenuItem_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(223, 6);
     //
     // gedComImportOpenFileDialog
     //
     this.gedComImportOpenFileDialog.Filter = "GedCom Files|*.ged";
     //
     // importExportBackgroundWorker
     //
     this.importExportBackgroundWorker.WorkerReportsProgress = true;
     this.importExportBackgroundWorker.WorkerSupportsCancellation = true;
     this.importExportBackgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.importExportBackgroundWorker_DoWork);
     this.importExportBackgroundWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.importExportBackgroundWorker_ProgressChanged);
     this.importExportBackgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.importExportBackgroundWorker_RunWorkerCompleted);
     //
     // importOpenFileDialog
     //
     this.importOpenFileDialog.FileName = "openFileDialog1";
     //
     // buttonApplyTextSearch
     //
     this.buttonApplyTextSearch.AccessibleDescription = "RIGHT(SUSER_SNAME(), LEN(SUSER_SNAME()) - CHARINDEX(\'\\\',SUSER_SNAME()))";
     this.buttonApplyTextSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonApplyTextSearch.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonApplyTextSearch.Location = new System.Drawing.Point(329, 30);
     this.buttonApplyTextSearch.Name = "buttonApplyTextSearch";
     this.buttonApplyTextSearch.Size = new System.Drawing.Size(54, 23);
     this.buttonApplyTextSearch.TabIndex = 15;
     this.buttonApplyTextSearch.Text = "Search";
     this.buttonApplyTextSearch.UseVisualStyleBackColor = true;
     this.buttonApplyTextSearch.Click += new System.EventHandler(this.buttonApplyTextSearch_Click);
     //
     // splitContainer1
     //
     this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.splitContainer1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.splitContainer1.Location = new System.Drawing.Point(5, 12);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.panel1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.NoApptSelectedLabel);
     this.splitContainer1.Panel2.Controls.Add(this.patientRecordHeader1);
     this.splitContainer1.Panel2.Controls.Add(this.theDockPanel);
     this.splitContainer1.Panel2.Resize += new System.EventHandler(this.splitContainer1_Panel2_Resize);
     this.splitContainer1.Size = new System.Drawing.Size(1011, 602);
     this.splitContainer1.SplitterDistance = 400;
     this.splitContainer1.TabIndex = 19;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.Control;
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel1.Controls.Add(this.progressBar1);
     this.panel1.Controls.Add(this.comboBox2);
     this.panel1.Controls.Add(this.flowLayoutPanel1);
     this.panel1.Controls.Add(this.checkBox2);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.tableLayoutPanel1);
     this.panel1.Controls.Add(this.textBoxFilterData);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.buttonClearTextSearch);
     this.panel1.Controls.Add(this.buttonApplyTextSearch);
     this.panel1.Controls.Add(this.todayButton);
     this.panel1.Controls.Add(this.comboBox1);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Controls.Add(this.dateTimePicker1);
     this.panel1.Controls.Add(this.fastDataListView1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(400, 602);
     this.panel1.TabIndex = 18;
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(326, 5);
     this.progressBar1.Name = "progressBar1";
     this.progressBar1.Size = new System.Drawing.Size(150, 23);
     this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
     this.progressBar1.TabIndex = 45;
     this.progressBar1.Visible = false;
     //
     // comboBox2
     //
     this.comboBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBox2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Location = new System.Drawing.Point(106, 55);
     this.comboBox2.Name = "comboBox2";
     this.comboBox2.Size = new System.Drawing.Size(277, 21);
     this.comboBox2.TabIndex = 44;
     this.comboBox2.SelectionChangeCommitted += new System.EventHandler(this.comboBox2_SelectionChangeCommitted);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.copyApptButton);
     this.flowLayoutPanel1.Controls.Add(this.editApptButton);
     this.flowLayoutPanel1.Controls.Add(this.addApptButton);
     this.flowLayoutPanel1.Controls.Add(this.button1);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(51, 494);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(339, 26);
     this.flowLayoutPanel1.TabIndex = 43;
     this.flowLayoutPanel1.WrapContents = false;
     //
     // copyApptButton
     //
     this.copyApptButton.AccessibleDescription = "";
     this.copyApptButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.copyApptButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.copyApptButton.Location = new System.Drawing.Point(258, 3);
     this.copyApptButton.Name = "copyApptButton";
     this.copyApptButton.Size = new System.Drawing.Size(78, 22);
     this.copyApptButton.TabIndex = 29;
     this.copyApptButton.Text = "Copy Appt";
     this.copyApptButton.UseVisualStyleBackColor = true;
     this.copyApptButton.Click += new System.EventHandler(this.copyApptButton_Click);
     //
     // editApptButton
     //
     this.editApptButton.AccessibleDescription = "";
     this.editApptButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.editApptButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.editApptButton.Location = new System.Drawing.Point(174, 3);
     this.editApptButton.Name = "editApptButton";
     this.editApptButton.Size = new System.Drawing.Size(78, 22);
     this.editApptButton.TabIndex = 28;
     this.editApptButton.Text = "Edit Appt";
     this.editApptButton.UseVisualStyleBackColor = true;
     this.editApptButton.Click += new System.EventHandler(this.editApptButton_Click);
     //
     // addApptButton
     //
     this.addApptButton.AccessibleDescription = "";
     this.addApptButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.addApptButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.addApptButton.Location = new System.Drawing.Point(90, 3);
     this.addApptButton.Name = "addApptButton";
     this.addApptButton.Size = new System.Drawing.Size(78, 22);
     this.addApptButton.TabIndex = 27;
     this.addApptButton.Text = "Add Appt";
     this.addApptButton.UseVisualStyleBackColor = true;
     this.addApptButton.Click += new System.EventHandler(this.addApptButton_Click);
     //
     // button1
     //
     this.button1.AccessibleDescription = "";
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.Location = new System.Drawing.Point(6, 3);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(78, 22);
     this.button1.TabIndex = 30;
     this.button1.Text = "Delete Appt";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click_2);
     //
     // checkBox2
     //
     this.checkBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkBox2.AutoSize = true;
     this.checkBox2.Checked = true;
     this.checkBox2.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkBox2.Location = new System.Drawing.Point(258, 9);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.checkBox2.Size = new System.Drawing.Size(132, 17);
     this.checkBox2.TabIndex = 42;
     this.checkBox2.Text = "Include All Appt Dates";
     this.checkBox2.UseVisualStyleBackColor = true;
     this.checkBox2.Visible = false;
     this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.SystemColors.Control;
     this.label2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(8, 37);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(87, 13);
     this.label2.TabIndex = 41;
     this.label2.Text = "Name/MRN/Accn";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel1.ColumnCount = 5;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40.81633F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40.81633F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 6.122449F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 6.122449F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 6.122449F));
     this.tableLayoutPanel1.Controls.Add(this.riskClinic, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.orders, 4, 0);
     this.tableLayoutPanel1.Controls.Add(this.newTask, 3, 0);
     this.tableLayoutPanel1.Controls.Add(this.pedigree, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.notes, 2, 0);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(5, 523);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(385, 72);
     this.tableLayoutPanel1.TabIndex = 38;
     //
     // riskClinic
     //
     this.riskClinic.AccessibleDescription = "";
     this.riskClinic.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.riskClinic.Enabled = false;
     this.riskClinic.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.riskClinic.Location = new System.Drawing.Point(7, 7);
     this.riskClinic.Margin = new System.Windows.Forms.Padding(7);
     this.riskClinic.Name = "riskClinic";
     this.riskClinic.Size = new System.Drawing.Size(143, 58);
     this.riskClinic.TabIndex = 33;
     this.riskClinic.Text = "Risk Clinic";
     this.riskClinic.UseVisualStyleBackColor = true;
     this.riskClinic.Click += new System.EventHandler(this.button1_Click);
     //
     // orders
     //
     this.orders.AccessibleDescription = "";
     this.orders.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.orders.Enabled = false;
     this.orders.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.orders.Location = new System.Drawing.Point(367, 7);
     this.orders.Margin = new System.Windows.Forms.Padding(7);
     this.orders.Name = "orders";
     this.orders.Size = new System.Drawing.Size(11, 58);
     this.orders.TabIndex = 37;
     this.orders.Text = "Orders";
     this.orders.UseVisualStyleBackColor = true;
     this.orders.Visible = false;
     this.orders.Click += new System.EventHandler(this.button5_Click);
     //
     // newTask
     //
     this.newTask.AccessibleDescription = "";
     this.newTask.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.newTask.Enabled = false;
     this.newTask.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.newTask.Location = new System.Drawing.Point(344, 7);
     this.newTask.Margin = new System.Windows.Forms.Padding(7);
     this.newTask.Name = "newTask";
     this.newTask.Size = new System.Drawing.Size(9, 58);
     this.newTask.TabIndex = 36;
     this.newTask.Text = "New Task";
     this.newTask.UseVisualStyleBackColor = true;
     this.newTask.Visible = false;
     this.newTask.Click += new System.EventHandler(this.button4_Click);
     //
     // pedigree
     //
     this.pedigree.AccessibleDescription = "";
     this.pedigree.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.pedigree.Enabled = false;
     this.pedigree.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.pedigree.Location = new System.Drawing.Point(164, 7);
     this.pedigree.Margin = new System.Windows.Forms.Padding(7);
     this.pedigree.Name = "pedigree";
     this.pedigree.Size = new System.Drawing.Size(143, 58);
     this.pedigree.TabIndex = 35;
     this.pedigree.Text = "Pedigree";
     this.pedigree.UseVisualStyleBackColor = true;
     this.pedigree.Click += new System.EventHandler(this.button3_Click);
     //
     // notes
     //
     this.notes.AccessibleDescription = "";
     this.notes.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.notes.Enabled = false;
     this.notes.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.notes.Location = new System.Drawing.Point(321, 7);
     this.notes.Margin = new System.Windows.Forms.Padding(7);
     this.notes.Name = "notes";
     this.notes.Size = new System.Drawing.Size(9, 58);
     this.notes.TabIndex = 34;
     this.notes.Text = "Notes &&\r\nTasks";
     this.notes.UseVisualStyleBackColor = true;
     this.notes.Visible = false;
     this.notes.Click += new System.EventHandler(this.button2_Click);
     //
     // textBoxFilterData
     //
     this.textBoxFilterData.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxFilterData.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxFilterData.Location = new System.Drawing.Point(106, 32);
     this.textBoxFilterData.Name = "textBoxFilterData";
     this.textBoxFilterData.Size = new System.Drawing.Size(216, 21);
     this.textBoxFilterData.TabIndex = 9;
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(8, 495);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(35, 13);
     this.label1.TabIndex = 32;
     this.label1.Text = "label1";
     //
     // buttonClearTextSearch
     //
     this.buttonClearTextSearch.AccessibleDescription = "RIGHT(SUSER_SNAME(), LEN(SUSER_SNAME()) - CHARINDEX(\'\\\',SUSER_SNAME()))";
     this.buttonClearTextSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonClearTextSearch.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonClearTextSearch.Location = new System.Drawing.Point(13, 9);
     this.buttonClearTextSearch.Name = "buttonClearTextSearch";
     this.buttonClearTextSearch.Size = new System.Drawing.Size(18, 23);
     this.buttonClearTextSearch.TabIndex = 16;
     this.buttonClearTextSearch.Text = "Clear";
     this.buttonClearTextSearch.UseVisualStyleBackColor = true;
     this.buttonClearTextSearch.Visible = false;
     this.buttonClearTextSearch.Click += new System.EventHandler(this.buttonClearTextSearch_Click);
     //
     // todayButton
     //
     this.todayButton.AccessibleDescription = "";
     this.todayButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.todayButton.Location = new System.Drawing.Point(197, 9);
     this.todayButton.Name = "todayButton";
     this.todayButton.Size = new System.Drawing.Size(24, 21);
     this.todayButton.TabIndex = 30;
     this.todayButton.Text = "T";
     this.todayButton.UseVisualStyleBackColor = true;
     this.todayButton.Click += new System.EventHandler(this.todayButton_Click);
     //
     // comboBox1
     //
     this.comboBox1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(12, 55);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(30, 21);
     this.comboBox1.TabIndex = 24;
     this.comboBox1.Visible = false;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.SystemColors.Control;
     this.label4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(64, 58);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(31, 13);
     this.label4.TabIndex = 23;
     this.label4.Text = "Clinic";
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Checked = true;
     this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkBox1.Location = new System.Drawing.Point(51, 12);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.checkBox1.Size = new System.Drawing.Size(49, 17);
     this.checkBox1.TabIndex = 18;
     this.checkBox1.Text = "Date";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dateTimePicker1.Location = new System.Drawing.Point(106, 9);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(86, 21);
     this.dateTimePicker1.TabIndex = 17;
     this.dateTimePicker1.ValueChanged += new System.EventHandler(this.dateTimePicker1_ValueChanged);
     //
     // fastDataListView1
     //
     this.fastDataListView1.AllColumns.Add(this.olvColumn2);
     this.fastDataListView1.AllColumns.Add(this.olvColumn3);
     this.fastDataListView1.AllColumns.Add(this.olvColumn4);
     this.fastDataListView1.AllColumns.Add(this.olvColumn7);
     this.fastDataListView1.AllColumns.Add(this.olvColumn5);
     this.fastDataListView1.AllColumns.Add(this.olvColumn8);
     this.fastDataListView1.AllColumns.Add(this.olvColumnCompleted);
     this.fastDataListView1.AllColumns.Add(this.olvColumn6);
     this.fastDataListView1.AllColumns.Add(this.olvColumn11);
     this.fastDataListView1.AllColumns.Add(this.olvColumn9);
     this.fastDataListView1.AllColumns.Add(this.olvColumn10);
     this.fastDataListView1.AllowColumnReorder = true;
     this.fastDataListView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.fastDataListView1.CheckBoxes = false;
     this.fastDataListView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.olvColumn2,
     this.olvColumn3,
     this.olvColumn4,
     this.olvColumn7,
     this.olvColumn5,
     this.olvColumn8,
     this.olvColumnCompleted,
     this.olvColumn6,
     this.olvColumn11,
     this.olvColumn9,
     this.olvColumn10});
     this.fastDataListView1.Cursor = System.Windows.Forms.Cursors.Default;
     this.fastDataListView1.DataSource = null;
     this.fastDataListView1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fastDataListView1.FullRowSelect = true;
     this.fastDataListView1.GridLines = true;
     this.fastDataListView1.HeaderWordWrap = true;
     this.fastDataListView1.HideSelection = false;
     this.fastDataListView1.Location = new System.Drawing.Point(7, 83);
     this.fastDataListView1.MultiSelect = false;
     this.fastDataListView1.Name = "fastDataListView1";
     this.fastDataListView1.OwnerDraw = true;
     this.fastDataListView1.ShowCommandMenuOnRightClick = true;
     this.fastDataListView1.ShowGroups = false;
     this.fastDataListView1.ShowItemToolTips = true;
     this.fastDataListView1.Size = new System.Drawing.Size(383, 405);
     this.fastDataListView1.SmallImageList = this.imageList1;
     this.fastDataListView1.TabIndex = 4;
     this.fastDataListView1.UseCompatibleStateImageBehavior = false;
     this.fastDataListView1.UseFiltering = true;
     this.fastDataListView1.UseHotItem = true;
     this.fastDataListView1.UseOverlays = false;
     this.fastDataListView1.UseTranslucentHotItem = true;
     this.fastDataListView1.View = System.Windows.Forms.View.Details;
     this.fastDataListView1.VirtualMode = true;
     this.fastDataListView1.Visible = false;
     this.fastDataListView1.SelectionChanged += new System.EventHandler(this.fastDataListView1_SelectionChanged);
     this.fastDataListView1.Click += new System.EventHandler(this.fastDataListView1_Click);
     this.fastDataListView1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.fastDataListView1_MouseClick);
     //
     // olvColumn2
     //
     this.olvColumn2.AspectName = "apptdatetime";
     this.olvColumn2.Text = "Appt Date/Time";
     this.olvColumn2.Width = 115;
     //
     // olvColumn3
     //
     this.olvColumn3.AspectName = "patientname";
     this.olvColumn3.Text = "Name";
     this.olvColumn3.Width = 142;
     //
     // olvColumn4
     //
     this.olvColumn4.AspectName = "unitnum";
     this.olvColumn4.Text = "MRN";
     this.olvColumn4.Width = 80;
     //
     // olvColumn7
     //
     this.olvColumn7.AspectName = "dob";
     this.olvColumn7.Text = "DOB";
     this.olvColumn7.Width = 66;
     //
     // olvColumn5
     //
     this.olvColumn5.AspectName = "type";
     this.olvColumn5.Text = "Type";
     this.olvColumn5.Width = 55;
     //
     // olvColumn8
     //
     this.olvColumn8.AspectName = "apptphysname";
     this.olvColumn8.Text = "Provider";
     this.olvColumn8.Width = 120;
     //
     // olvColumnCompleted
     //
     this.olvColumnCompleted.AspectName = "riskdatacompleted";
     this.olvColumnCompleted.Text = "Date Completed";
     //
     // olvColumn6
     //
     this.olvColumn6.AspectName = "diseases";
     this.olvColumn6.Text = "Disease Hx";
     this.olvColumn6.Width = 140;
     //
     // olvColumn11
     //
     this.olvColumn11.AspectName = "surveyType";
     this.olvColumn11.Text = "Survey";
     //
     // olvColumn9
     //
     this.olvColumn9.AspectName = "formattedFamilyNumber";
     this.olvColumn9.Text = "Family Number";
     //
     // olvColumn10
     //
     this.olvColumn10.AspectName = "accession";
     this.olvColumn10.Text = "Accession";
     //
     // NoApptSelectedLabel
     //
     this.NoApptSelectedLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.NoApptSelectedLabel.AutoSize = true;
     this.NoApptSelectedLabel.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.NoApptSelectedLabel.Location = new System.Drawing.Point(152, 279);
     this.NoApptSelectedLabel.Name = "NoApptSelectedLabel";
     this.NoApptSelectedLabel.Size = new System.Drawing.Size(275, 13);
     this.NoApptSelectedLabel.TabIndex = 20;
     this.NoApptSelectedLabel.Text = "Choose an appointment from the list at the left.";
     //
     // patientRecordHeader1
     //
     this.patientRecordHeader1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.patientRecordHeader1.BackColor = System.Drawing.SystemColors.Control;
     this.patientRecordHeader1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.patientRecordHeader1.Collapsed = false;
     this.patientRecordHeader1.Location = new System.Drawing.Point(3, 0);
     this.patientRecordHeader1.Name = "patientRecordHeader1";
     this.patientRecordHeader1.Size = new System.Drawing.Size(601, 75);
     this.patientRecordHeader1.TabIndex = 19;
     //
     // theDockPanel
     //
     this.theDockPanel.ActiveAutoHideContent = null;
     this.theDockPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.theDockPanel.BackColor = System.Drawing.SystemColors.Control;
     this.theDockPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.theDockPanel.DockBackColor = System.Drawing.Color.WhiteSmoke;
     this.theDockPanel.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow;
     this.theDockPanel.Location = new System.Drawing.Point(3, 75);
     this.theDockPanel.Name = "theDockPanel";
     this.theDockPanel.Size = new System.Drawing.Size(601, 526);
     dockPanelGradient1.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient1.StartColor = System.Drawing.SystemColors.ControlLight;
     autoHideStripSkin1.DockStripGradient = dockPanelGradient1;
     tabGradient1.EndColor = System.Drawing.SystemColors.Control;
     tabGradient1.StartColor = System.Drawing.SystemColors.Control;
     tabGradient1.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     autoHideStripSkin1.TabGradient = tabGradient1;
     autoHideStripSkin1.TextFont = new System.Drawing.Font("Tahoma", 8.25F);
     dockPanelSkin1.AutoHideStripSkin = autoHideStripSkin1;
     dockPanelSkin1.CaptionBackground = null;
     tabGradient2.EndColor = System.Drawing.Color.WhiteSmoke;
     tabGradient2.StartColor = System.Drawing.SystemColors.Control;
     tabGradient2.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.ActiveTabGradient = tabGradient2;
     dockPanelGradient2.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient2.StartColor = System.Drawing.SystemColors.ControlLight;
     dockPaneStripGradient1.DockStripGradient = dockPanelGradient2;
     tabGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.InactiveTabGradient = tabGradient3;
     dockPaneStripSkin1.DocumentGradient = dockPaneStripGradient1;
     dockPaneStripSkin1.TextFont = new System.Drawing.Font("Tahoma", 8.25F);
     tabGradient4.EndColor = System.Drawing.SystemColors.ActiveCaption;
     tabGradient4.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient4.StartColor = System.Drawing.SystemColors.GradientActiveCaption;
     tabGradient4.TextColor = System.Drawing.SystemColors.ActiveCaptionText;
     dockPaneStripToolWindowGradient1.ActiveCaptionGradient = tabGradient4;
     tabGradient5.EndColor = System.Drawing.SystemColors.Control;
     tabGradient5.StartColor = System.Drawing.SystemColors.Control;
     tabGradient5.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.ActiveTabGradient = tabGradient5;
     dockPanelGradient3.EndColor = System.Drawing.Color.Gray;
     dockPanelGradient3.StartColor = System.Drawing.Color.Blue;
     dockPaneStripToolWindowGradient1.DockStripGradient = dockPanelGradient3;
     tabGradient6.EndColor = System.Drawing.SystemColors.InactiveCaption;
     tabGradient6.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient6.StartColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.TextColor = System.Drawing.SystemColors.InactiveCaptionText;
     dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6;
     tabGradient7.EndColor = System.Drawing.Color.WhiteSmoke;
     tabGradient7.StartColor = System.Drawing.Color.WhiteSmoke;
     tabGradient7.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     dockPaneStripToolWindowGradient1.InactiveTabGradient = tabGradient7;
     dockPaneStripSkin1.ToolWindowGradient = dockPaneStripToolWindowGradient1;
     dockPanelSkin1.DockPaneStripSkin = dockPaneStripSkin1;
     dockPanelSkin1.ShowDocumentCloseButton = false;
     this.theDockPanel.Skin = dockPanelSkin1;
     this.theDockPanel.TabIndex = 18;
     //
     // addToDoNotCallListToolStripMenuItem
     //
     this.addToDoNotCallListToolStripMenuItem.Name = "addToDoNotCallListToolStripMenuItem";
     this.addToDoNotCallListToolStripMenuItem.Size = new System.Drawing.Size(226, 22);
     this.addToDoNotCallListToolStripMenuItem.Text = "Add to \"Do Not Call\" List";
     this.addToDoNotCallListToolStripMenuItem.Click += new System.EventHandler(this.addToDoNotCallListToolStripMenuItem_Click);
     //
     // MyScheduleView
     //
     this.AcceptButton = this.buttonApplyTextSearch;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(1028, 626);
     this.Controls.Add(this.splitContainer1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.Name = "MyScheduleView";
     this.Text = "My Appointments";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.HighRiskFollowupView_FormClosing);
     this.Load += new System.EventHandler(this.HighRiskFollowupView_Load);
     this.contextMenuStrip1.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     this.splitContainer1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.flowLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.fastDataListView1)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #42
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UserControlFile));
     this.imageList1                 = new System.Windows.Forms.ImageList(this.components);
     this.contextMenuStrip1          = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItemOpen      = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemLocation  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemDelete    = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemRemove    = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemRemoveAll = new System.Windows.Forms.ToolStripMenuItem();
     this.panel1          = new System.Windows.Forms.Panel();
     this.labelTitle      = new System.Windows.Forms.Label();
     this.buttonNew       = new System.Windows.Forms.Button();
     this.buttonOpen      = new System.Windows.Forms.Button();
     this.buttonOption    = new System.Windows.Forms.Button();
     this.buttonHelp      = new System.Windows.Forms.Button();
     this.buttonAbout     = new System.Windows.Forms.Button();
     this.pictureBox1     = new System.Windows.Forms.PictureBox();
     this.panel2          = new System.Windows.Forms.Panel();
     this.objectListView1 = new BrightIdeasSoftware.ObjectListView();
     this.columnName      = new BrightIdeasSoftware.OLVColumn();
     this.columnDate      = new BrightIdeasSoftware.OLVColumn();
     this.columnSize      = new BrightIdeasSoftware.OLVColumn();
     this.panel3          = new System.Windows.Forms.Panel();
     this.labelRecent     = new System.Windows.Forms.Label();
     this.labelSort       = new System.Windows.Forms.Label();
     this.comboBox1       = new System.Windows.Forms.ComboBox();
     this.labelSearch     = new System.Windows.Forms.Label();
     this.textBoxFilter   = new System.Windows.Forms.TextBox();
     this.contextMenuStrip1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.objectListView1)).BeginInit();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItemOpen,
         this.toolStripMenuItemLocation,
         this.toolStripMenuItemDelete,
         this.toolStripMenuItemRemove,
         this.toolStripMenuItemRemoveAll
     });
     this.contextMenuStrip1.Name     = "contextMenuStrip1";
     this.contextMenuStrip1.Size     = new System.Drawing.Size(262, 144);
     this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.ContextMenuStrip1Opening);
     //
     // toolStripMenuItemOpen
     //
     this.toolStripMenuItemOpen.Name   = "toolStripMenuItemOpen";
     this.toolStripMenuItemOpen.Size   = new System.Drawing.Size(261, 28);
     this.toolStripMenuItemOpen.Text   = "Open";
     this.toolStripMenuItemOpen.Click += new System.EventHandler(this.ToolStripMenuItemOpenClick);
     //
     // toolStripMenuItemLocation
     //
     this.toolStripMenuItemLocation.Name   = "toolStripMenuItemLocation";
     this.toolStripMenuItemLocation.Size   = new System.Drawing.Size(261, 28);
     this.toolStripMenuItemLocation.Text   = "Go to file location";
     this.toolStripMenuItemLocation.Click += new System.EventHandler(this.ToolStripMenuItemLocationClick);
     //
     // toolStripMenuItemDelete
     //
     this.toolStripMenuItemDelete.Name   = "toolStripMenuItemDelete";
     this.toolStripMenuItemDelete.Size   = new System.Drawing.Size(261, 28);
     this.toolStripMenuItemDelete.Text   = "Permanently delete";
     this.toolStripMenuItemDelete.Click += new System.EventHandler(this.ToolStripMenuItemDeleteClick);
     //
     // toolStripMenuItemRemove
     //
     this.toolStripMenuItemRemove.Name   = "toolStripMenuItemRemove";
     this.toolStripMenuItemRemove.Size   = new System.Drawing.Size(261, 28);
     this.toolStripMenuItemRemove.Text   = "Remove this from list";
     this.toolStripMenuItemRemove.Click += new System.EventHandler(this.ToolStripMenuItemRemoveClick);
     //
     // toolStripMenuItemRemoveAll
     //
     this.toolStripMenuItemRemoveAll.Name   = "toolStripMenuItemRemoveAll";
     this.toolStripMenuItemRemoveAll.Size   = new System.Drawing.Size(261, 28);
     this.toolStripMenuItemRemoveAll.Text   = "Remove all from list";
     this.toolStripMenuItemRemoveAll.Click += new System.EventHandler(this.ToolStripMenuItemRemoveAllClick);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.LightSkyBlue;
     this.panel1.Controls.Add(this.labelTitle);
     this.panel1.Controls.Add(this.buttonNew);
     this.panel1.Controls.Add(this.buttonOpen);
     this.panel1.Controls.Add(this.buttonOption);
     this.panel1.Controls.Add(this.buttonHelp);
     this.panel1.Controls.Add(this.buttonAbout);
     this.panel1.Controls.Add(this.pictureBox1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Margin   = new System.Windows.Forms.Padding(0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(300, 600);
     this.panel1.TabIndex = 0;
     //
     // labelTitle
     //
     this.labelTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.labelTitle.Font      = new System.Drawing.Font("Consolas", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelTitle.Location  = new System.Drawing.Point(0, 158);
     this.labelTitle.Margin    = new System.Windows.Forms.Padding(10);
     this.labelTitle.Name      = "labelTitle";
     this.labelTitle.Size      = new System.Drawing.Size(300, 50);
     this.labelTitle.TabIndex  = 0;
     this.labelTitle.Text      = "ATWiki";
     this.labelTitle.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // buttonNew
     //
     this.buttonNew.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonNew.BackColor = System.Drawing.Color.Transparent;
     this.buttonNew.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonNew.Location  = new System.Drawing.Point(30, 228);
     this.buttonNew.Margin    = new System.Windows.Forms.Padding(10);
     this.buttonNew.Name      = "buttonNew";
     this.buttonNew.Size      = new System.Drawing.Size(240, 40);
     this.buttonNew.TabIndex  = 1;
     this.buttonNew.Text      = "New";
     this.buttonNew.UseVisualStyleBackColor = false;
     this.buttonNew.Click += new System.EventHandler(this.ButtonNewClick);
     //
     // buttonOpen
     //
     this.buttonOpen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonOpen.BackColor = System.Drawing.Color.Transparent;
     this.buttonOpen.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonOpen.Location  = new System.Drawing.Point(30, 288);
     this.buttonOpen.Margin    = new System.Windows.Forms.Padding(10);
     this.buttonOpen.Name      = "buttonOpen";
     this.buttonOpen.Size      = new System.Drawing.Size(240, 40);
     this.buttonOpen.TabIndex  = 2;
     this.buttonOpen.Text      = "Open";
     this.buttonOpen.UseVisualStyleBackColor = false;
     this.buttonOpen.Click += new System.EventHandler(this.ButtonOpenClick);
     //
     // buttonOption
     //
     this.buttonOption.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonOption.BackColor = System.Drawing.Color.Transparent;
     this.buttonOption.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonOption.Location  = new System.Drawing.Point(30, 348);
     this.buttonOption.Margin    = new System.Windows.Forms.Padding(10);
     this.buttonOption.Name      = "buttonOption";
     this.buttonOption.Size      = new System.Drawing.Size(240, 40);
     this.buttonOption.TabIndex  = 3;
     this.buttonOption.Text      = "Option";
     this.buttonOption.UseVisualStyleBackColor = false;
     this.buttonOption.Click += new System.EventHandler(this.ButtonOptionClick);
     //
     // buttonHelp
     //
     this.buttonHelp.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonHelp.BackColor = System.Drawing.Color.Transparent;
     this.buttonHelp.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonHelp.Location  = new System.Drawing.Point(30, 408);
     this.buttonHelp.Margin    = new System.Windows.Forms.Padding(10);
     this.buttonHelp.Name      = "buttonHelp";
     this.buttonHelp.Size      = new System.Drawing.Size(240, 40);
     this.buttonHelp.TabIndex  = 4;
     this.buttonHelp.Text      = "Help";
     this.buttonHelp.UseVisualStyleBackColor = true;
     this.buttonHelp.Click += new System.EventHandler(this.ButtonHelpClick);
     //
     // buttonAbout
     //
     this.buttonAbout.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonAbout.BackColor = System.Drawing.Color.Transparent;
     this.buttonAbout.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonAbout.Location  = new System.Drawing.Point(30, 468);
     this.buttonAbout.Margin    = new System.Windows.Forms.Padding(10);
     this.buttonAbout.Name      = "buttonAbout";
     this.buttonAbout.Size      = new System.Drawing.Size(240, 40);
     this.buttonAbout.TabIndex  = 5;
     this.buttonAbout.Text      = "About";
     this.buttonAbout.UseVisualStyleBackColor = false;
     this.buttonAbout.Click += new System.EventHandler(this.ButtonAboutClick);
     //
     // pictureBox1
     //
     this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(0, 10);
     this.pictureBox1.Margin   = new System.Windows.Forms.Padding(10);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(300, 128);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pictureBox1.TabIndex = 29;
     this.pictureBox1.TabStop  = false;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Transparent;
     this.panel2.Controls.Add(this.objectListView1);
     this.panel2.Controls.Add(this.panel3);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(300, 0);
     this.panel2.Margin   = new System.Windows.Forms.Padding(0);
     this.panel2.Name     = "panel2";
     this.panel2.Padding  = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.panel2.Size     = new System.Drawing.Size(724, 600);
     this.panel2.TabIndex = 0;
     //
     // objectListView1
     //
     this.objectListView1.AllColumns.Add(this.columnName);
     this.objectListView1.AllColumns.Add(this.columnDate);
     this.objectListView1.AllColumns.Add(this.columnSize);
     this.objectListView1.BackColor            = System.Drawing.SystemColors.Window;
     this.objectListView1.BorderStyle          = System.Windows.Forms.BorderStyle.None;
     this.objectListView1.CellEditUseWholeCell = false;
     this.objectListView1.CheckedAspectName    = "";
     this.objectListView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnName,
         this.columnDate,
         this.columnSize
     });
     this.objectListView1.Cursor                          = System.Windows.Forms.Cursors.Default;
     this.objectListView1.Dock                            = System.Windows.Forms.DockStyle.Fill;
     this.objectListView1.FullRowSelect                   = true;
     this.objectListView1.Location                        = new System.Drawing.Point(10, 44);
     this.objectListView1.Margin                          = new System.Windows.Forms.Padding(15);
     this.objectListView1.MultiSelect                     = false;
     this.objectListView1.Name                            = "objectListView1";
     this.objectListView1.OverlayText.BorderWidth         = 2F;
     this.objectListView1.OverlayText.Text                = "";
     this.objectListView1.ShowGroups                      = false;
     this.objectListView1.ShowHeaderInAllViews            = false;
     this.objectListView1.ShowItemToolTips                = true;
     this.objectListView1.Size                            = new System.Drawing.Size(714, 556);
     this.objectListView1.TabIndex                        = 1;
     this.objectListView1.UseCompatibleStateImageBehavior = false;
     this.objectListView1.UseFiltering                    = true;
     this.objectListView1.UseHotItem                      = true;
     this.objectListView1.UseTranslucentHotItem           = true;
     this.objectListView1.UseTranslucentSelection         = true;
     this.objectListView1.View                            = System.Windows.Forms.View.Details;
     this.objectListView1.CellClick                      += new System.EventHandler <BrightIdeasSoftware.CellClickEventArgs>(this.ObjectListView1CellClick);
     this.objectListView1.CellRightClick                 += new System.EventHandler <BrightIdeasSoftware.CellRightClickEventArgs>(this.ObjectListView1CellRightClick);
     this.objectListView1.SizeChanged                    += new System.EventHandler(this.ObjectListView1SizeChanged);
     //
     // columnName
     //
     this.columnName.AspectName   = "Name";
     this.columnName.MinimumWidth = 40;
     this.columnName.Text         = "Name";
     this.columnName.ToolTipText  = "";
     this.columnName.Width        = 400;
     //
     // columnDate
     //
     this.columnDate.AspectName   = "Date";
     this.columnDate.MinimumWidth = 40;
     this.columnDate.Text         = "Date";
     this.columnDate.ToolTipText  = "";
     this.columnDate.Width        = 400;
     //
     // columnSize
     //
     this.columnSize.AspectName   = "Size";
     this.columnSize.MinimumWidth = 40;
     this.columnSize.Text         = "Size";
     this.columnSize.ToolTipText  = "";
     this.columnSize.Width        = 400;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.labelRecent);
     this.panel3.Controls.Add(this.labelSort);
     this.panel3.Controls.Add(this.comboBox1);
     this.panel3.Controls.Add(this.labelSearch);
     this.panel3.Controls.Add(this.textBoxFilter);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(10, 0);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(714, 44);
     this.panel3.TabIndex = 1;
     //
     // labelRecent
     //
     this.labelRecent.AutoSize = true;
     this.labelRecent.Location = new System.Drawing.Point(8, 13);
     this.labelRecent.Margin   = new System.Windows.Forms.Padding(8, 13, 8, 8);
     this.labelRecent.Name     = "labelRecent";
     this.labelRecent.Size     = new System.Drawing.Size(152, 18);
     this.labelRecent.TabIndex = 0;
     this.labelRecent.Text     = "Recent Documents";
     //
     // labelSort
     //
     this.labelSort.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelSort.AutoSize = true;
     this.labelSort.Location = new System.Drawing.Point(273, 13);
     this.labelSort.Margin   = new System.Windows.Forms.Padding(8, 13, 8, 8);
     this.labelSort.Name     = "labelSort";
     this.labelSort.Size     = new System.Drawing.Size(44, 18);
     this.labelSort.TabIndex = 1;
     this.labelSort.Text     = "Sort";
     //
     // comboBox1
     //
     this.comboBox1.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBox1.BackColor         = System.Drawing.Color.LightSkyBlue;
     this.comboBox1.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FlatStyle         = System.Windows.Forms.FlatStyle.Flat;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
         "Name▲",
         "Name▼",
         "Date▲",
         "Date▼",
         "Size▲",
         "Size▼"
     });
     this.comboBox1.Location = new System.Drawing.Point(345, 9);
     this.comboBox1.Margin   = new System.Windows.Forms.Padding(8, 9, 8, 8);
     this.comboBox1.Name     = "comboBox1";
     this.comboBox1.Size     = new System.Drawing.Size(115, 26);
     this.comboBox1.TabIndex = 2;
     this.comboBox1.SelectionChangeCommitted += new System.EventHandler(this.ComboBox1SelectionChangeCommitted);
     //
     // labelSearch
     //
     this.labelSearch.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelSearch.AutoSize = true;
     this.labelSearch.Location = new System.Drawing.Point(485, 13);
     this.labelSearch.Margin   = new System.Windows.Forms.Padding(20, 13, 8, 8);
     this.labelSearch.Name     = "labelSearch";
     this.labelSearch.Size     = new System.Drawing.Size(62, 18);
     this.labelSearch.TabIndex = 3;
     this.labelSearch.Text     = "Search";
     //
     // textBoxFilter
     //
     this.textBoxFilter.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxFilter.BackColor    = System.Drawing.Color.LightSkyBlue;
     this.textBoxFilter.Location     = new System.Drawing.Point(557, 8);
     this.textBoxFilter.Margin       = new System.Windows.Forms.Padding(8, 8, 20, 8);
     this.textBoxFilter.Name         = "textBoxFilter";
     this.textBoxFilter.Size         = new System.Drawing.Size(150, 28);
     this.textBoxFilter.TabIndex     = 4;
     this.textBoxFilter.TextChanged += new System.EventHandler(this.TextBoxFilterTextChanged);
     //
     // UserControlFile
     //
     this.BackColor = System.Drawing.SystemColors.Window;
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name  = "UserControlFile";
     this.Size  = new System.Drawing.Size(1024, 600);
     this.Load += new System.EventHandler(this.UserControlFileLoad);
     this.contextMenuStrip1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.objectListView1)).EndInit();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.ResumeLayout(false);
 }
Beispiel #43
0
 // This store the current sorting method.
 void TreeTasksAfterSorting(object sender, BrightIdeasSoftware.AfterSortingEventArgs e)
 {
     sortColumn = e.ColumnToSort;
     sortOrder = e.SortOrder;
 }