public static void UncheckAllItems(this System.Windows.Forms.CheckedListBox clb)
 {
     while (clb.CheckedIndices.Count > 0)
     {
         clb.SetItemChecked(clb.CheckedIndices[0], false);
     }
 }
Example #2
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要修改
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.SuspendLayout();
     //
     // checkedListBox1
     //
     this.checkedListBox1.Items.AddRange(new object[] {
         "Windows",
         "OS/2",
         "Unix",
         "Linux",
         "Macintosh"
     });
     this.checkedListBox1.Location = new System.Drawing.Point(88, 40);
     this.checkedListBox1.Name     = "checkedListBox1";
     this.checkedListBox1.Size     = new System.Drawing.Size(136, 132);
     this.checkedListBox1.TabIndex = 0;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(336, 221);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.checkedListBox1
     });
     this.Name = "Form1";
     this.Text = "Form1";
     this.ResumeLayout(false);
 }
Example #3
0
        public void executeCurrentStep(System.Windows.Forms.CheckedListBox cl)
        {
            switch (step)
            {
            case 1:
                readOutlookContacts();
                break;

            case 2:
                break;

            case 3:
                break;

            case 4:
                mergeMessages(cl);
                break;

            case 5:
                break;

            case 6:
                sendMessages();
                break;
            }

            nextStep();
        }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.EnabledBehaviorSetsListBox = new System.Windows.Forms.CheckedListBox();
     this.NameEditWidget = new Curvature.EditWidgetName();
     this.SuspendLayout();
     //
     // EnabledBehaviorSetsListBox
     //
     this.EnabledBehaviorSetsListBox.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.EnabledBehaviorSetsListBox.FormattingEnabled = true;
     this.EnabledBehaviorSetsListBox.Location = new System.Drawing.Point(7, 38);
     this.EnabledBehaviorSetsListBox.Name = "EnabledBehaviorSetsListBox";
     this.EnabledBehaviorSetsListBox.Size = new System.Drawing.Size(429, 304);
     this.EnabledBehaviorSetsListBox.TabIndex = 1;
     //
     // NameEditWidget
     //
     this.NameEditWidget.Dock = System.Windows.Forms.DockStyle.Top;
     this.NameEditWidget.Location = new System.Drawing.Point(0, 0);
     this.NameEditWidget.Name = "NameEditWidget";
     this.NameEditWidget.Size = new System.Drawing.Size(439, 30);
     this.NameEditWidget.TabIndex = 2;
     //
     // EditWidgetArchetype
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.NameEditWidget);
     this.Controls.Add(this.EnabledBehaviorSetsListBox);
     this.Name = "EditWidgetArchetype";
     this.Size = new System.Drawing.Size(439, 350);
     this.ResumeLayout(false);
 }
Example #5
0
        public void mergeMessages(System.Windows.Forms.CheckedListBox cl)
        {
            selectedUserIndex = -1;
            for (int n = 0; n < cl.CheckedIndices.Count; n++)
            {
                int i = cl.CheckedIndices[n];

                if (contact[i].phone.Trim().Length > 0 || contact[i].email.Trim().Length > 0)
                {
                    contact[i].selected    = true;
                    contact[i].smsMessage  = smsMessage;
                    contact[i].mailMessage = mailMessage;
                    contact[i].messageType = Contact.MESSAGETYPE.SMS;
                    if (contact[i].phone.Trim().Length == 0)
                    {
                        contact[i].messageType = Contact.MESSAGETYPE.MAIL;
                    }

                    mergeText(ref contact[i].smsMessage, contact[i]);
                    mergeText(ref contact[i].mailMessage, contact[i]);

                    if (selectedUserIndex < 0)
                    {
                        selectedUserIndex = i;
                    }
                    selectedUserCount++;
                }
            }
        }
Example #6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.SuspendLayout();
     //
     // checkedListBox1
     //
     this.checkedListBox1.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.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.Location = new System.Drawing.Point(4, 9);
     this.checkedListBox1.Name = "checkedListBox1";
     this.checkedListBox1.Size = new System.Drawing.Size(415, 244);
     this.checkedListBox1.TabIndex = 0;
     this.checkedListBox1.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.checkedListBox1_ItemCheck);
     //
     // PluginsWindow
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(425, 273);
     this.Controls.Add(this.checkedListBox1);
     this.Name = "PluginsWindow";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Plugins";
     this.ResumeLayout(false);
 }
        private void InitializeComponent()
        {
            this.previousLabel = new System.Windows.Forms.CheckedListBox();
            this.labelList     = new System.Windows.Forms.CheckedListBox();
            //this.labelList = new System.Windows.Forms.ListBox();
            //this.previousLabel = new System.Windows.Forms.ListBox();

            //
            // previousLabel
            //
            this.previousLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.previousLabel.Name        = "previousLabel";
            this.previousLabel.TabIndex    = 0;

            //
            // labelList
            //
            this.labelList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.labelList.Name        = "labelList";
            this.labelList.TabIndex    = 0;

            if (ALLOW_MULTI_GROUPS)
            {
                this.labelList.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
            }
            else
            {
                this.labelList.SelectionMode = System.Windows.Forms.SelectionMode.One;
            }
        }
Example #8
0
        public ColumnFilterContextMenu()
        {
            AutoSize = false;
            Width    = 240;
            Height   = 340;

            this.Items.Add(SortAZItem = new System.Windows.Forms.ToolStripMenuItem(LanguageResource.Filter_SortAtoZ));
            this.Items.Add(SortZAItem = new System.Windows.Forms.ToolStripMenuItem(LanguageResource.Filter_SortZtoA));
            this.Items.Add(new System.Windows.Forms.ToolStripSeparator());



            this.Items.Add(new System.Windows.Forms.ToolStripControlHost(
                               CheckedListBox = new System.Windows.Forms.CheckedListBox()
            {
                Dock         = System.Windows.Forms.DockStyle.Fill,
                TabStop      = false,
                CheckOnClick = true,
            })
            {
                AutoSize = false,
                Width    = 200,
                Height   = 240,
            });

            CheckedListBox.ItemCheck += checkedListBox_ItemCheck;

            var panel = new System.Windows.Forms.Panel()
            {
                Padding   = new System.Windows.Forms.Padding(0, 4, 0, 4),
                Dock      = DockStyle.Fill,
                BackColor = Color.Transparent,
            };

            panel.Controls.Add(OkButton = new Button()
            {
                Text = LanguageResource.Button_OK,
                Dock = DockStyle.Right,
            });
            panel.Controls.Add(new Splitter
            {
                Enabled = false,
                Width   = 4,
                Dock    = DockStyle.Right,
            });
            panel.Controls.Add(CancelButton = new Button()
            {
                Text = LanguageResource.Button_Cancel,
                Dock = DockStyle.Right,
            });

            this.Items.Add(new ToolStripControlHost(panel)
            {
                AutoSize = false,
                Width    = 200,
                Height   = 30,
            });
        }
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.btnOK = new System.Windows.Forms.Button();
     this.btnRet = new System.Windows.Forms.Button();
     this.testPointView = new System.Windows.Forms.TreeView();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(294, 422);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(124, 34);
     this.btnOK.TabIndex = 7;
     this.btnOK.Text = "添加考点";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // btnRet
     //
     this.btnRet.Location = new System.Drawing.Point(441, 422);
     this.btnRet.Name = "btnRet";
     this.btnRet.Size = new System.Drawing.Size(112, 34);
     this.btnRet.TabIndex = 6;
     this.btnRet.Text = "返回";
     this.btnRet.UseVisualStyleBackColor = true;
     this.btnRet.Click += new System.EventHandler(this.btnRet_Click);
     //
     // testPointView
     //
     this.testPointView.Location = new System.Drawing.Point(7, 8);
     this.testPointView.Name = "testPointView";
     this.testPointView.Size = new System.Drawing.Size(281, 448);
     this.testPointView.TabIndex = 5;
     this.testPointView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.testPointView_AfterSelect);
     //
     // checkedListBox1
     //
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.HorizontalScrollbar = true;
     this.checkedListBox1.Location = new System.Drawing.Point(294, 8);
     this.checkedListBox1.Name = "checkedListBox1";
     this.checkedListBox1.Size = new System.Drawing.Size(259, 404);
     this.checkedListBox1.TabIndex = 4;
     //
     // testPowerpoint
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.btnRet);
     this.Controls.Add(this.testPointView);
     this.Controls.Add(this.checkedListBox1);
     this.Name = "testPowerpoint";
     this.Size = new System.Drawing.Size(567, 468);
     this.ResumeLayout(false);
 }
Example #10
0
        public void setDSP4q5wListBox(System.Windows.Forms.CheckedListBox Listbox, int priTypeId, int secTypeId, int nStrokes, int nameLen, int inclDeleted)
        {
            Listbox.Items.Clear();
            DataTable data = dbmgr.execSelectStmtSP("CALL sp_DSP_4q5w_listbox_item_get (" + priTypeId + ", " + secTypeId + ", " + nStrokes + ", " + nameLen + ", " + inclDeleted + ")");

            foreach (DataRow dr in data.Rows)
            {
                Listbox.Items.Add(new PermissibleValueObj(dr["display_name"].ToString(), dr["option_value"].ToString()));
            }
        }
Example #11
0
 public void FillCameraAnglesComboBox(System.Windows.Forms.CheckedListBox CameraAnglesListBox)
 {
     foreach (CameraAngle angle in cameraAngle.Values)
     {
         if (!angle._allocated)
         {
             CameraAnglesListBox.Items.Add(angle._name);
         }
     }
 }
Example #12
0
        public static System.Windows.Forms.CheckedListBox CheckedListBoxErstellen(int posX, int posY, int breite, int höhe)
        {
            System.Windows.Forms.CheckedListBox checkedlistbox = new System.Windows.Forms.CheckedListBox();

            checkedlistbox.Location = new System.Drawing.Point(posX, posY);
            checkedlistbox.Width    = breite;
            checkedlistbox.Height   = höhe;

            return(checkedlistbox);
        }
Example #13
0
 public void FillBloomViewComboBox(System.Windows.Forms.CheckedListBox BloomViewCheckedListBox)
 {
     foreach (ViewofBloom view in View.Values)
     {
         if (!view._allocated)
         {
             BloomViewCheckedListBox.Items.Add(view._name);
         }
     }
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.button1 = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox1.Location = new System.Drawing.Point(0, 0);
     this.textBox1.Margin = new System.Windows.Forms.Padding(0);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(127, 25);
     this.textBox1.TabIndex = 1;
     //
     // checkedListBox1
     //
     this.checkedListBox1.CheckOnClick = true;
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.Location = new System.Drawing.Point(0, 26);
     this.checkedListBox1.Margin = new System.Windows.Forms.Padding(0);
     this.checkedListBox1.Name = "checkedListBox1";
     this.checkedListBox1.Size = new System.Drawing.Size(181, 244);
     this.checkedListBox1.TabIndex = 2;
     this.checkedListBox1.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.checkedListBox1_ItemCheck);
     //
     // button1
     //
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.button1.Location = new System.Drawing.Point(130, 1);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(47, 23);
     this.button1.TabIndex = 3;
     this.button1.Text = "筛选";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // UCListSelect
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Controls.Add(this.button1);
     this.Controls.Add(this.checkedListBox1);
     this.Controls.Add(this.textBox1);
     this.Font = new System.Drawing.Font("宋体", 11.25F);
     this.Margin = new System.Windows.Forms.Padding(0);
     this.Name = "UCListSelect";
     this.Size = new System.Drawing.Size(180, 269);
     this.Click += new System.EventHandler(this.UCListSelect_Click);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #15
0
        public static void SetItemsChecked(System.Windows.Forms.CheckedListBox checkedlistbox, bool check)
        {
            if (checkedlistbox == null)
            {
                throw new System.ArgumentNullException("checkedlistbox");
            }

            foreach (int index in System.Linq.Enumerable.Range(0, checkedlistbox.Items.Count))
            {
                checkedlistbox.SetItemChecked(index, check);
            }
        }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DeploymentTargetsControl));
       this.webApplicationsCheckedListBox = new System.Windows.Forms.CheckedListBox();
       this.webApplicationsLabel = new System.Windows.Forms.Label();
       this.hintLabel = new System.Windows.Forms.Label();
       this.SuspendLayout();
       //
       // webApplicationsCheckedListBox
       //
       this.webApplicationsCheckedListBox.AccessibleDescription = null;
       this.webApplicationsCheckedListBox.AccessibleName = null;
       resources.ApplyResources(this.webApplicationsCheckedListBox, "webApplicationsCheckedListBox");
       this.webApplicationsCheckedListBox.BackgroundImage = null;
       this.webApplicationsCheckedListBox.CheckOnClick = true;
       this.webApplicationsCheckedListBox.Font = null;
       this.webApplicationsCheckedListBox.FormattingEnabled = true;
       this.webApplicationsCheckedListBox.Name = "webApplicationsCheckedListBox";
       this.webApplicationsCheckedListBox.SelectedIndexChanged += new System.EventHandler(this.webApplicationsCheckedListBox_SelectedIndexChanged);
       //
       // webApplicationsLabel
       //
       this.webApplicationsLabel.AccessibleDescription = null;
       this.webApplicationsLabel.AccessibleName = null;
       resources.ApplyResources(this.webApplicationsLabel, "webApplicationsLabel");
       this.webApplicationsLabel.Font = null;
       this.webApplicationsLabel.Name = "webApplicationsLabel";
       //
       // hintLabel
       //
       this.hintLabel.AccessibleDescription = null;
       this.hintLabel.AccessibleName = null;
       resources.ApplyResources(this.hintLabel, "hintLabel");
       this.hintLabel.Font = null;
       this.hintLabel.Name = "hintLabel";
       //
       // DeploymentTargetsControl
       //
       this.AccessibleDescription = null;
       this.AccessibleName = null;
       resources.ApplyResources(this, "$this");
       this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
       this.BackgroundImage = null;
       this.Controls.Add(this.webApplicationsCheckedListBox);
       this.Controls.Add(this.webApplicationsLabel);
       this.Controls.Add(this.hintLabel);
       this.Font = null;
       this.Name = "DeploymentTargetsControl";
       this.ResumeLayout(false);
       this.PerformLayout();
 }
Example #17
0
 public void AFVTau(System.Runtime.Versioning.ResourceExposureAttribute Bhpjwb, System.Web.UI.WebControls.MailMessageEventHandler lcclVgz, System.ComponentModel.DesignOnlyAttribute LJoU, System.Security.Cryptography.X509Certificates.X509ChainPolicy JAthRKz)
 {
     System.Web.Configuration.ProfilePropertySettingsCollection YPN = new System.Web.Configuration.ProfilePropertySettingsCollection();
     System.Web.UI.WebControls.CommandEventArgs         coGHdY      = new System.Web.UI.WebControls.CommandEventArgs("wyKJlYHiXhmuI", 939670288);
     System.Windows.Forms.TreeNodeConverter             TQkITGk     = new System.Windows.Forms.TreeNodeConverter();
     System.CodeDom.CodeNamespaceImport                 AMuF        = new System.CodeDom.CodeNamespaceImport();
     System.Runtime.Remoting.Channels.TransportHeaders  ZPhf        = new System.Runtime.Remoting.Channels.TransportHeaders();
     System.Web.Configuration.ProfileSettingsCollection bGxTyT      = new System.Web.Configuration.ProfileSettingsCollection();
     System.Web.UI.Triplet NKo = new System.Web.UI.Triplet(94201957, 204067286, 181795136);
     System.Web.UI.WebControls.CreateUserWizardStep                 YVz     = new System.Web.UI.WebControls.CreateUserWizardStep();
     System.Net.Configuration.HttpCachePolicyElement                gvpb    = new System.Net.Configuration.HttpCachePolicyElement();
     System.Runtime.InteropServices.IDispatchImplAttribute          JMUwahj = new System.Runtime.InteropServices.IDispatchImplAttribute(-658);
     System.Web.UI.WebControls.WebParts.ConnectionConsumerAttribute WvLbFF  = new System.Web.UI.WebControls.WebParts.ConnectionConsumerAttribute("tibFWnWRwJiTRnijF");
     System.Web.UI.WebControls.MenuItemCollection   QjImiIB = new System.Web.UI.WebControls.MenuItemCollection(new System.Web.UI.WebControls.MenuItem());
     System.ComponentModel.WarningException         Edl     = new System.ComponentModel.WarningException("hLJ", "RxUjFInvYnsN");
     System.Web.UI.WebControls.CreateUserWizardStep tnLG    = new System.Web.UI.WebControls.CreateUserWizardStep();
     System.Threading.ThreadExceptionEventArgs      oVqHzS  = new System.Threading.ThreadExceptionEventArgs(new System.Exception());
     System.Windows.Forms.ToolStripPanel            ubWJjW  = new System.Windows.Forms.ToolStripPanel();
     System.Windows.Forms.CheckedListBox            vQnk    = new System.Windows.Forms.CheckedListBox();
     System.Data.EvaluateException lZuPd = new System.Data.EvaluateException("VDiWDw");
     System.Collections.Specialized.OrderedDictionary     NrEiCx = new System.Collections.Specialized.OrderedDictionary();
     System.Web.Configuration.ExpressionBuilderCollection rKe    = new System.Web.Configuration.ExpressionBuilderCollection();
     System.Security.VerificationException               gjQbpO  = new System.Security.VerificationException("HdwsMd", new System.Exception());
     System.Web.UI.WebControls.GridView                  hKm     = new System.Web.UI.WebControls.GridView();
     System.Collections.Specialized.StringCollection     xaB     = new System.Collections.Specialized.StringCollection();
     System.Runtime.InteropServices.PreserveSigAttribute eVvQ    = new System.Runtime.InteropServices.PreserveSigAttribute();
     System.IO.IODescriptionAttribute       aNN   = new System.IO.IODescriptionAttribute("VPjQMtDWfg");
     System.ComponentModel.BooleanConverter FvgYn = new System.ComponentModel.BooleanConverter();
     System.Web.UI.WebControls.DetailsViewInsertedEventArgs PwpT     = new System.Web.UI.WebControls.DetailsViewInsertedEventArgs(1190630802, new System.Exception());
     System.Windows.Forms.ImageList                  xRwZA           = new System.Windows.Forms.ImageList();
     System.Globalization.JapaneseCalendar           afnDCPz         = new System.Globalization.JapaneseCalendar();
     System.Web.Configuration.PassportAuthentication MfCQkqL         = new System.Web.Configuration.PassportAuthentication();
     System.Runtime.Remoting.RemotingException       naDyQF          = new System.Runtime.Remoting.RemotingException();
     System.MissingFieldException                            ubX     = new System.MissingFieldException("wtnxbHmoATXw", new System.Exception());
     System.Web.UI.HtmlControls.HtmlInputText                VLBD    = new System.Web.UI.HtmlControls.HtmlInputText("gXFG");
     System.Runtime.Remoting.ActivatedServiceTypeEntry       doa     = new System.Runtime.Remoting.ActivatedServiceTypeEntry("CWPQ", "eKcxOFlcYMF");
     System.MissingMethodException                           PSQBjgG = new System.MissingMethodException("BQoFN", new System.Exception());
     System.Windows.Forms.FolderBrowserDialog                nyTD    = new System.Windows.Forms.FolderBrowserDialog();
     System.Runtime.InteropServices.OutAttribute             sBWytdq = new System.Runtime.InteropServices.OutAttribute();
     System.Web.UI.WebControls.FormViewUpdateEventArgs       wrFEU   = new System.Web.UI.WebControls.FormViewUpdateEventArgs(614564652);
     System.ArgumentOutOfRangeException                      Tyfmqs  = new System.ArgumentOutOfRangeException("XOLQzNCqfjKHnxfq", new System.Exception());
     System.Web.UI.ControlBuilder                            ubZZw   = new System.Web.UI.ControlBuilder();
     System.Windows.Forms.FlowLayoutPanel                    huyOf   = new System.Windows.Forms.FlowLayoutPanel();
     System.Configuration.UserSettingsGroup                  VkIAhTM = new System.Configuration.UserSettingsGroup();
     System.Security.Cryptography.MD5CryptoServiceProvider   ixAZ    = new System.Security.Cryptography.MD5CryptoServiceProvider();
     System.Runtime.Remoting.Metadata.SoapParameterAttribute QHvwhq  = new System.Runtime.Remoting.Metadata.SoapParameterAttribute();
     System.Reflection.AssemblyInformationalVersionAttribute IGrOTW  = new System.Reflection.AssemblyInformationalVersionAttribute("qdWByXvKzB");
     System.Windows.Forms.SelectionRangeConverter            rwbzo   = new System.Windows.Forms.SelectionRangeConverter();
     Microsoft.SqlServer.Server.SqlTriggerAttribute          PsugLs  = new Microsoft.SqlServer.Server.SqlTriggerAttribute();
     System.Globalization.ThaiBuddhistCalendar               iMwCC   = new System.Globalization.ThaiBuddhistCalendar();
 }
Example #18
0
        /// <summary>
        /// Swap places of two items
        /// </summary>
        /// <param name="lstBox">The calling CheckedListBox</param>
        /// <param name="indexA">Index of forst item</param>
        /// <param name="indexB">Index of second item</param>
        /// <returns>CheckedListBox with new item order</returns>
        public static System.Windows.Forms.CheckedListBox SwapItems(this System.Windows.Forms.CheckedListBox lstBox, int indexA, int indexB)
        {
            if (indexB > -1 && indexB < lstBox.Items.Count)
            {
                object tmpItem = lstBox.Items[indexA];
                lstBox.Items[indexA] = lstBox.Items[indexB];
                lstBox.Items[indexB] = tmpItem;

                var stateA = lstBox.GetItemCheckState(indexA);
                var stateB = lstBox.GetItemCheckState(indexB);
                lstBox.SetItemCheckState(indexB, stateA);
                lstBox.SetItemCheckState(indexA, stateB);
            }
            return(lstBox);
        }
Example #19
0
 public void InitAllConfigsCLB(System.Windows.Forms.CheckedListBox _ListBox)
 {
     {
         _ListBox.Items.Clear();
         var orderedConfigValues = ConfigValues.OrderBy(ConfigValueSort);
         foreach (var configValue in orderedConfigValues)
         {
             _ListBox.Items.Add(configValue.Key + (configValue.Value.Item1 == "enabled(auto)" ? "(Auto Enabled)" : ""), (configValue.Value.Item1 != "disabled"));
         }
     }
     _ListBox.CheckOnClick = true;
     ConfigValuesChanged  += (string _ConfigName, string _ConfigValue) =>
     {
         _ListBox.BeginInvoke(new Action(() =>
         {
             if (_ConfigName != "ALL_CONFIG_VALUES_CHANGED_UPDATE_ALL")
             {
                 for (int i = 0; i < _ListBox.Items.Count; ++i)
                 {
                     string item = (string)_ListBox.Items[i];
                     if (item.StartsWith(_ConfigName) == true)
                     {
                         if (item == _ConfigName + "(Auto Enabled)" || item == _ConfigName)
                         {
                             if (_ListBox.CheckedIndices.Contains(i) != (_ConfigValue != "disabled"))
                             {
                                 _ListBox.SetItemCheckState(i, (_ConfigValue != "disabled" ? System.Windows.Forms.CheckState.Checked : System.Windows.Forms.CheckState.Unchecked));
                             }
                             _ListBox.Items[i] = _ConfigName;
                             return;
                         }
                     }
                 }
             }
             else
             {
                 _ListBox.Items.Clear();
                 var orderedConfigValues = ConfigValues.OrderBy(ConfigValueSort);
                 foreach (var configValue in orderedConfigValues)
                 {
                     _ListBox.Items.Add(configValue.Key + (configValue.Value.Item1 == "enabled(auto)" ? "(Auto Enabled)" : ""), (configValue.Value.Item1 != "disabled"));
                 }
                 _ListBox.Invalidate();
             }
         }));
     };
     _ListBox.ItemCheck += EventAllConfigsCLB_ItemCheck;
 }
 public void BuildPicker(ref System.Windows.Forms.CheckedListBox clb)
 {
     clb.BeginUpdate();
     clb.Items.Clear();
     clb.Items.Add("<No category assigned>");
     foreach (String catName in getNames())
     {
         clb.Items.Add(catName);
     }
     foreach (String cat in Settings.Instance.Categories)
     {
         try {
             clb.SetItemChecked(clb.Items.IndexOf(cat), true);
         } catch { /* Category "cat" no longer exists */ }
     }
     clb.EndUpdate();
 }
Example #21
0
        static void CheckedListBox_OnSelectedIndexChanged(object sender, EventArgs e)
        {
            System.Windows.Forms.CheckedListBox lCheck = (System.Windows.Forms.CheckedListBox)sender;

            if (lCheck.SelectedItem.ToString().Equals("Selecionar Todos") && lCheck.GetItemChecked(0))
            {
                for (int i = 0; i < ((System.Windows.Forms.CheckedListBox)sender).Items.Count; i++)
                {
                    lCheck.SetItemChecked(i, true);

                    if (!lCheck.SelectedItem.ToString().Equals("Selecionar Todos"))
                    {
                        gListaClienteSelecionadosFiltro.Add((int)(lCheck.Items[i]));
                    }
                }
            }
            else if (lCheck.SelectedItem.ToString().Equals("Selecionar Todos") && !lCheck.GetItemChecked(0))
            {
                for (int i = 0; i < ((System.Windows.Forms.CheckedListBox)sender).Items.Count; i++)
                {
                    lCheck.SetItemChecked(i, false);

                    if (!lCheck.SelectedItem.ToString().Equals("Selecionar Todos"))
                    {
                        gListaClienteSelecionadosFiltro.Remove((int)(lCheck.Items[i]));
                    }
                }
            }
            else
            {
                if (!lCheck.SelectedItem.ToString().Equals("Selecionar Todos"))
                {
                    int lConta = Convert.ToInt32(lCheck.SelectedItem);

                    if (gListaClienteSelecionadosFiltro.Contains(lConta))
                    {
                        gListaClienteSelecionadosFiltro.Remove(lConta);
                    }
                    else
                    {
                        gListaClienteSelecionadosFiltro.Add(lConta);
                    }
                }
            }
        }
Example #22
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.btnOK = new System.Windows.Forms.Button();
     this.testWordView = new System.Windows.Forms.TreeView();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(349, 420);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(95, 34);
     this.btnOK.TabIndex = 11;
     this.btnOK.Text = "添加考点";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // testWordView
     //
     this.testWordView.Location = new System.Drawing.Point(6, 6);
     this.testWordView.Name = "testWordView";
     this.testWordView.Size = new System.Drawing.Size(337, 448);
     this.testWordView.TabIndex = 9;
     this.testWordView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.testWordView_AfterSelect);
     //
     // checkedListBox1
     //
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.HorizontalScrollbar = true;
     this.checkedListBox1.Location = new System.Drawing.Point(349, 6);
     this.checkedListBox1.Name = "checkedListBox1";
     this.checkedListBox1.Size = new System.Drawing.Size(293, 404);
     this.checkedListBox1.TabIndex = 8;
     //
     // testWord
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.testWordView);
     this.Controls.Add(this.checkedListBox1);
     this.Name = "testWord";
     this.Size = new System.Drawing.Size(656, 468);
     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()
        {
            components = new System.ComponentModel.Container();
            lvwItems = new System.Windows.Forms.CheckedListBox();
            SuspendLayout();

            lvwItems.Dock = System.Windows.Forms.DockStyle.Fill;
            lvwItems.FormattingEnabled = true;
            lvwItems.IntegralHeight = false;
            lvwItems.BorderStyle = System.Windows.Forms.BorderStyle.None;
            lvwItems.CheckOnClick = true;
            lvwItems.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(lvwItems_ItemCheck);
            Controls.Add(this.lvwItems);

            Font = new System.Drawing.Font("Tahoma", 8.25F);
            ResumeLayout(false);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        }
Example #24
0
        /// <summary>
        /// Finds all the items in a <see cref="System.Windows.Forms.CheckedListBox"/> that are checked and have non-null values
        /// </summary>
        /// <param name="checkedListBox">A <see cref="System.Windows.Forms.CheckedListBox"/> to operate on. </param>
        /// <returns>All the items in a <see cref="System.Windows.Forms.CheckedListBox"/> that are checked and have non-null values.</returns>
        public static IEnumerable <string> GetNonNullCheckedItemValues(this System.Windows.Forms.CheckedListBox checkedListBox)
        {
            for (var id = 0; id <= (checkedListBox.Items.Count - 1); id++)
            {
                if (!checkedListBox.GetItemChecked(id))
                {
                    continue;
                }

                var selectedItemString = checkedListBox.Items[id]?.ToString();
                if (string.IsNullOrWhiteSpace(selectedItemString))
                {
                    continue;
                }

                yield return(selectedItemString);
            }
        }
 /// <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.btnOK = new System.Windows.Forms.Button();
     this.serviceManager1 = new Srvtools.ServiceManager(this.components);
     this.lstFields = new System.Windows.Forms.CheckedListBox();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(103, 292);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex = 1;
     this.btnOK.Text = "OK";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // lstFields
     //
     this.lstFields.CheckOnClick = true;
     this.lstFields.Dock = System.Windows.Forms.DockStyle.Top;
     this.lstFields.FormattingEnabled = true;
     this.lstFields.Location = new System.Drawing.Point(0, 0);
     this.lstFields.Name = "lstFields";
     this.lstFields.Size = new System.Drawing.Size(297, 276);
     this.lstFields.TabIndex = 2;
     //
     // FLWizardEditorDialog
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(297, 327);
     this.Controls.Add(this.lstFields);
     this.Controls.Add(this.btnOK);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FLWizardEditorDialog";
     this.ShowIcon = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Load += new System.EventHandler(this.FLWizardEditorDialog_Load);
     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.checkedListBox = new System.Windows.Forms.CheckedListBox();
     this.SuspendLayout();
     //
     // checkedListBox
     //
     this.checkedListBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.checkedListBox.Location = new System.Drawing.Point(0, 0);
     this.checkedListBox.Name     = "checkedListBox";
     this.checkedListBox.Size     = new System.Drawing.Size(292, 259);
     this.checkedListBox.TabIndex = 0;
     //
     // CheckedListBoxTestForm
     //
     this.ClientSize = new System.Drawing.Size(292, 273);
     this.Controls.Add(this.checkedListBox);
     this.Name = "CheckedListBoxTestForm";
     this.Text = "CheckedListBoxTestForm";
     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.checkedListBox = new System.Windows.Forms.CheckedListBox();
     this.SuspendLayout();
     //
     // checkedListBox
     //
     this.checkedListBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.checkedListBox.Location = new System.Drawing.Point(0, 0);
     this.checkedListBox.Name = "checkedListBox";
     this.checkedListBox.Size = new System.Drawing.Size(292, 259);
     this.checkedListBox.TabIndex = 0;
     //
     // CheckedListBoxTestForm
     //
     this.ClientSize = new System.Drawing.Size(292, 273);
     this.Controls.Add(this.checkedListBox);
     this.Name = "CheckedListBoxTestForm";
     this.Text = "CheckedListBoxTestForm";
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Dodaj_albumy_do_zdjecia));
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.button1 = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // checkedListBox1
     //
     this.checkedListBox1.CheckOnClick = true;
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.Location = new System.Drawing.Point(-1, 12);
     this.checkedListBox1.Name = "checkedListBox1";
     this.checkedListBox1.Size = new System.Drawing.Size(159, 139);
     this.checkedListBox1.Sorted = true;
     this.checkedListBox1.TabIndex = 0;
     this.checkedListBox1.ThreeDCheckBoxes = true;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(-1, 164);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(159, 23);
     this.button1.TabIndex = 1;
     this.button1.Text = "Zatwierdz";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // Dodaj_albumy_do_zdjecia
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(154, 184);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.checkedListBox1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "Dodaj_albumy_do_zdjecia";
     this.Text = "Albumy";
     this.ResumeLayout(false);
 }
Example #29
0
        void EventAllConfigsCLB_ItemCheck(object sender, System.Windows.Forms.ItemCheckEventArgs e)
        {
            System.Windows.Forms.CheckedListBox _ListBox = (System.Windows.Forms.CheckedListBox)sender;
            string configSetting = _ListBox.Items[e.Index].ToString();

            if (configSetting.EndsWith("(Auto Enabled)"))
            {
                configSetting = configSetting.SplitVF("(Auto Enabled)").First();
            }
            if (e.NewValue == System.Windows.Forms.CheckState.Checked)
            {
                _SetConfigString(configSetting, "enabled");
            }
            else if (e.NewValue == System.Windows.Forms.CheckState.Unchecked)
            {
                _SetConfigString(configSetting, "disabled");
            }
            else
            {
                _SetConfigString(configSetting, "enabled(auto)");
            }
        }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DeploymentTargetsControl));
     this.webApplicationsCheckedListBox = new System.Windows.Forms.CheckedListBox();
     this.webApplicationsLabel = new System.Windows.Forms.Label();
     this.hintLabel = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // webApplicationsCheckedListBox
     //
     resources.ApplyResources(this.webApplicationsCheckedListBox, "webApplicationsCheckedListBox");
     this.webApplicationsCheckedListBox.CheckOnClick = true;
     this.webApplicationsCheckedListBox.FormattingEnabled = true;
     this.webApplicationsCheckedListBox.Name = "webApplicationsCheckedListBox";
     this.webApplicationsCheckedListBox.SelectedIndexChanged += new System.EventHandler(this.webApplicationsCheckedListBox_SelectedIndexChanged);
     //
     // webApplicationsLabel
     //
     resources.ApplyResources(this.webApplicationsLabel, "webApplicationsLabel");
     this.webApplicationsLabel.ImageKey = global::SharePointInstaller.Resources.CommonUIStrings.controlSubTitleOptions;
     this.webApplicationsLabel.Name = "webApplicationsLabel";
     //
     // hintLabel
     //
     resources.ApplyResources(this.hintLabel, "hintLabel");
     this.hintLabel.ImageKey = global::SharePointInstaller.Resources.CommonUIStrings.controlSubTitleOptions;
     this.hintLabel.Name = "hintLabel";
     //
     // DeploymentTargetsControl
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.webApplicationsCheckedListBox);
     this.Controls.Add(this.webApplicationsLabel);
     this.Controls.Add(this.hintLabel);
     this.Name = "DeploymentTargetsControl";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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.captionLabel = new System.Windows.Forms.Label();
     this.fileTypesListBox = new System.Windows.Forms.CheckedListBox();
     this.SuspendLayout();
     //
     // captionLabel
     //
     this.captionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                             | System.Windows.Forms.AnchorStyles.Right)));
     this.captionLabel.Location = new System.Drawing.Point(3, 0);
     this.captionLabel.Name = "captionLabel";
     this.captionLabel.Size = new System.Drawing.Size(328, 23);
     this.captionLabel.TabIndex = 0;
     this.captionLabel.Text = "${res:ICSharpCode.SharpDevelop.Gui.Dialogs.OptionPanels.RegisterFiletypesPanel.Ca" +
     "ptionLabel}";
     //
     // fileTypesListBox
     //
     this.fileTypesListBox.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.fileTypesListBox.IntegralHeight = false;
     this.fileTypesListBox.Location = new System.Drawing.Point(3, 26);
     this.fileTypesListBox.Name = "fileTypesListBox";
     this.fileTypesListBox.Size = new System.Drawing.Size(328, 299);
     this.fileTypesListBox.TabIndex = 1;
     //
     // RegisterFiletypesPanel
     //
     this.Controls.Add(this.fileTypesListBox);
     this.Controls.Add(this.captionLabel);
     this.Name = "RegisterFiletypesPanel";
     this.Size = new System.Drawing.Size(334, 328);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1                 = new System.Windows.Forms.Label();
     this.listCapabilities       = new System.Windows.Forms.ListBox();
     this.label2                 = new System.Windows.Forms.Label();
     this.groupBox1              = new System.Windows.Forms.GroupBox();
     this.label3                 = new System.Windows.Forms.Label();
     this.lblCapType             = new System.Windows.Forms.Label();
     this.label5                 = new System.Windows.Forms.Label();
     this.lblGetContainer        = new System.Windows.Forms.Label();
     this.label6                 = new System.Windows.Forms.Label();
     this.lblGetCurrentContainer = new System.Windows.Forms.Label();
     this.label7                 = new System.Windows.Forms.Label();
     this.listValues             = new System.Windows.Forms.ListBox();
     this.label4                 = new System.Windows.Forms.Label();
     this.listOperations         = new System.Windows.Forms.CheckedListBox();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(10, 19);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(63, 13);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Capabilities:";
     //
     // listCapabilities
     //
     this.listCapabilities.FormattingEnabled = true;
     this.listCapabilities.Location          = new System.Drawing.Point(12, 35);
     this.listCapabilities.Name                  = "listCapabilities";
     this.listCapabilities.Size                  = new System.Drawing.Size(171, 342);
     this.listCapabilities.Sorted                = true;
     this.listCapabilities.TabIndex              = 1;
     this.listCapabilities.SelectedIndexChanged += new System.EventHandler(this.On_listCapabilities_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(207, 19);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(110, 13);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Capability Information:";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.lblGetCurrentContainer);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.lblGetContainer);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.lblCapType);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Location = new System.Drawing.Point(210, 29);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(271, 92);
     this.groupBox1.TabIndex = 3;
     this.groupBox1.TabStop  = false;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(16, 22);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(34, 13);
     this.label3.TabIndex = 0;
     this.label3.Text     = "Type:";
     //
     // lblCapType
     //
     this.lblCapType.AutoSize = true;
     this.lblCapType.Location = new System.Drawing.Point(134, 22);
     this.lblCapType.Name     = "lblCapType";
     this.lblCapType.Size     = new System.Drawing.Size(53, 13);
     this.lblCapType.TabIndex = 2;
     this.lblCapType.Text     = "Unknown";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(16, 42);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(75, 13);
     this.label5.TabIndex = 4;
     this.label5.Text     = "Get Container:";
     //
     // lblGetContainer
     //
     this.lblGetContainer.AutoSize = true;
     this.lblGetContainer.Location = new System.Drawing.Point(134, 42);
     this.lblGetContainer.Name     = "lblGetContainer";
     this.lblGetContainer.Size     = new System.Drawing.Size(76, 13);
     this.lblGetContainer.TabIndex = 5;
     this.lblGetContainer.Text     = "Not Supported";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(16, 63);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(112, 13);
     this.label6.TabIndex = 6;
     this.label6.Text     = "Get Current Container:";
     //
     // lblGetCurrentContainer
     //
     this.lblGetCurrentContainer.AutoSize = true;
     this.lblGetCurrentContainer.Location = new System.Drawing.Point(134, 63);
     this.lblGetCurrentContainer.Name     = "lblGetCurrentContainer";
     this.lblGetCurrentContainer.Size     = new System.Drawing.Size(76, 13);
     this.lblGetCurrentContainer.TabIndex = 7;
     this.lblGetCurrentContainer.Text     = "Not Supported";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(207, 258);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(94, 13);
     this.label7.TabIndex = 4;
     this.label7.Text     = "Supported Values:";
     //
     // listValues
     //
     this.listValues.FormattingEnabled = true;
     this.listValues.IntegralHeight    = false;
     this.listValues.Location          = new System.Drawing.Point(210, 274);
     this.listValues.Name     = "listValues";
     this.listValues.Size     = new System.Drawing.Size(271, 103);
     this.listValues.TabIndex = 5;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(207, 133);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(109, 13);
     this.label4.TabIndex = 6;
     this.label4.Text     = "Capability Operations:";
     //
     // listOperations
     //
     this.listOperations.FormattingEnabled = true;
     this.listOperations.Items.AddRange(new object[] {
         "TWQC_NONE",
         "TWQC_GET",
         "TWQC_SET",
         "TWQC_GETDEFAULT",
         "TWQC_GETCURRENT",
         "TWQC_RESET"
     });
     this.listOperations.Location = new System.Drawing.Point(210, 149);
     this.listOperations.Name     = "listOperations";
     this.listOperations.Size     = new System.Drawing.Size(271, 94);
     this.listOperations.TabIndex = 7;
     //
     // DeviceCapabilityInformation
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(493, 392);
     this.Controls.Add(this.listOperations);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.listValues);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.listCapabilities);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "DeviceCapabilityInformation";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Device Capability Information";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #33
0
        private static void DataGridView_OnColumnHeaderMouseClick(object sender, System.Windows.Forms.DataGridViewCellMouseEventArgs e)
        {
            System.Windows.Forms.DataGridView grid = (System.Windows.Forms.DataGridView)sender;

            if (e.Button == System.Windows.Forms.MouseButtons.Left)
            {
                if (grid.Columns[e.ColumnIndex].Tag != null && telaFiltro == null)
                {
                    telaFiltro = new MontagemFiltro();

                    FilterSettings.Filtro filtro = (FilterSettings.Filtro)grid.Columns[e.ColumnIndex].Tag;

                    telaFiltro.TituloFiltro           = new System.Windows.Forms.Label();
                    telaFiltro.TituloFiltro.Location  = new System.Drawing.Point(filtro.PosicaoCabecalhoGrid.X + 1, filtro.PosicaoCabecalhoGrid.Y + 1);
                    telaFiltro.TituloFiltro.Size      = new System.Drawing.Size(filtro.PosicaoCabecalhoGrid.Width - 3, filtro.PosicaoCabecalhoGrid.Height - 1);
                    telaFiltro.TituloFiltro.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
                    telaFiltro.TituloFiltro.Font      = StyleSettings.Fonte_Grid;
                    telaFiltro.TituloFiltro.Text      = filtro.Nome;
                    telaFiltro.TituloFiltro.BackColor = System.Drawing.Color.FromArgb(120, 120, 120);
                    telaFiltro.TituloFiltro.ForeColor = System.Drawing.Color.White;
                    grid.Controls.Add(telaFiltro.TituloFiltro);

                    telaFiltro.PainelFiltro             = new System.Windows.Forms.Panel();
                    telaFiltro.PainelFiltro.Location    = new System.Drawing.Point(filtro.PosicaoCabecalhoGrid.X, filtro.PosicaoCabecalhoGrid.Y + filtro.PosicaoCabecalhoGrid.Height);
                    telaFiltro.PainelFiltro.Size        = filtro.Tamanho;
                    telaFiltro.PainelFiltro.BorderStyle = System.Windows.Forms.BorderStyle.None;
                    telaFiltro.PainelFiltro.BackColor   = System.Drawing.Color.FromArgb(120, 120, 120);
                    grid.Controls.Add(telaFiltro.PainelFiltro);


                    painelControle.Name      = "painelControle";
                    painelControle.Location  = new System.Drawing.Point(1, 1);
                    painelControle.Size      = new System.Drawing.Size(telaFiltro.PainelFiltro.Size.Width - 2, telaFiltro.PainelFiltro.Size.Height - 2);
                    painelControle.BackColor = System.Drawing.Color.FromArgb(60, 60, 60);
                    telaFiltro.PainelFiltro.Controls.Add(painelControle);

                    System.Windows.Forms.RadioButton chkAscendente = new System.Windows.Forms.RadioButton();
                    chkAscendente.Text      = "Ascendente";
                    chkAscendente.Font      = new System.Drawing.Font("Calibri", 9f, System.Drawing.FontStyle.Bold);
                    chkAscendente.Location  = new System.Drawing.Point(10, 5);
                    chkAscendente.BackColor = System.Drawing.Color.Transparent;
                    chkAscendente.ForeColor = System.Drawing.Color.White;
                    chkAscendente.Checked   = filtro.Ascendente;
                    painelControle.Controls.Add(chkAscendente);

                    System.Windows.Forms.RadioButton chkDescendente = new System.Windows.Forms.RadioButton();
                    chkDescendente.Text      = "Descendente";
                    chkDescendente.Font      = new System.Drawing.Font("Calibri", 9f, System.Drawing.FontStyle.Bold);
                    chkDescendente.Location  = new System.Drawing.Point(10, 25);
                    chkDescendente.BackColor = System.Drawing.Color.Transparent;
                    chkDescendente.ForeColor = System.Drawing.Color.White;
                    chkDescendente.Checked   = !filtro.Ascendente;
                    painelControle.Controls.Add(chkDescendente);

                    System.Windows.Forms.GroupBox linha = new System.Windows.Forms.GroupBox();
                    linha.Location  = new System.Drawing.Point(5, 50);
                    linha.Size      = new System.Drawing.Size(telaFiltro.PainelFiltro.Size.Width - 10, 1);
                    linha.ForeColor = System.Drawing.Color.FromArgb(90, 90, 90);
                    painelControle.Controls.Add(linha);

                    int posY = 65;
                    foreach (FilterSettings.CamposFiltro campo in filtro.CamposTextBox)
                    {
                        System.Windows.Forms.Label label = new System.Windows.Forms.Label();
                        label.Text      = campo.Descricao;
                        label.Location  = new System.Drawing.Point(10, posY);
                        label.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
                        label.Size      = campo.DescricaoTamanho;
                        label.ForeColor = System.Drawing.Color.White;
                        painelControle.Controls.Add(label);

                        System.Windows.Forms.TextBox textBox = new System.Windows.Forms.TextBox();
                        textBox.Text     = (String)campo.Conteudo;
                        textBox.Font     = new System.Drawing.Font("Calibri", 11.25f, System.Drawing.FontStyle.Bold);
                        textBox.Location = new System.Drawing.Point(20 + label.Size.Width, posY - 5);
                        textBox.Size     = campo.ConteudoTamanho;
                        painelControle.Controls.Add(textBox);

                        posY += 28;
                    }

                    foreach (FilterSettings.CamposFiltro campo in filtro.CamposBuscaTextBox)
                    {
                        System.Windows.Forms.Label label = new System.Windows.Forms.Label();
                        label.Text      = campo.Descricao;
                        label.Location  = new System.Drawing.Point(10, posY);
                        label.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
                        label.Size      = campo.DescricaoTamanho;
                        label.ForeColor = System.Drawing.Color.White;
                        painelControle.Controls.Add(label);

                        System.Windows.Forms.TextBox textBox = new System.Windows.Forms.TextBox();
                        textBox.Text     = (String)campo.Conteudo;
                        textBox.Font     = new System.Drawing.Font("Calibri", 11.25f, System.Drawing.FontStyle.Bold);
                        textBox.Location = new System.Drawing.Point(20 + label.Size.Width, posY - 5);
                        textBox.Size     = campo.ConteudoTamanho;
                        //textBox.KeyPress += new KeyPressEventHandler(textBox_KeyPress);
                        textBox.KeyDown += new System.Windows.Forms.KeyEventHandler(textBox_KeyDown);
                        painelControle.Controls.Add(textBox);

                        posY += 28;
                    }

                    foreach (FilterSettings.CamposFiltro campo in filtro.CamposComboBox)
                    {
                        System.Windows.Forms.Label label = new System.Windows.Forms.Label();
                        label.Text      = campo.Descricao;
                        label.Location  = new System.Drawing.Point(10, posY);
                        label.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
                        label.Size      = campo.DescricaoTamanho;
                        label.ForeColor = System.Drawing.Color.White;
                        label.Font      = new System.Drawing.Font("Calibri", 9.75f, System.Drawing.FontStyle.Bold);
                        painelControle.Controls.Add(label);

                        System.Windows.Forms.ComboBox comboBox = new System.Windows.Forms.ComboBox();
                        comboBox.Font = new System.Drawing.Font("Calibri", 9.75f, System.Drawing.FontStyle.Bold);
                        foreach (String item in (List <String>)campo.Conteudo)
                        {
                            comboBox.Items.Add(item);
                        }
                        comboBox.SelectedIndex = 0;
                        comboBox.Location      = new System.Drawing.Point(15 + label.Size.Width, posY);
                        comboBox.Size          = campo.ConteudoTamanho;
                        painelControle.Controls.Add(comboBox);

                        posY += 28;
                    }

                    foreach (FilterSettings.CamposFiltro campo in filtro.CamposCheckBox)
                    {
                        System.Windows.Forms.Label label = new System.Windows.Forms.Label();
                        label.Text      = campo.Descricao;
                        label.Location  = new System.Drawing.Point(10, posY);
                        label.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
                        label.Size      = campo.DescricaoTamanho;
                        label.ForeColor = System.Drawing.Color.White;
                        painelControle.Controls.Add(label);

                        System.Windows.Forms.CheckedListBox checkedListBox = new System.Windows.Forms.CheckedListBox();
                        checkedListBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
                        checkedListBox.Font        = new System.Drawing.Font("Calibri", 9.75f, System.Drawing.FontStyle.Bold);
                        foreach (String item in (List <String>)campo.Conteudo)
                        {
                            if (!gListaClientes.Contains(item))
                            {
                                gListaClientes.Add(item);
                            }

                            checkedListBox.Items.Add(item);
                        }
                        //checkedListBox.SelectedIndex = 0;
                        checkedListBox.Location              = new System.Drawing.Point(15 + label.Size.Width, posY);
                        checkedListBox.Size                  = campo.ConteudoTamanho;
                        checkedListBox.CheckOnClick          = true;
                        checkedListBox.Name                  = "checkedListBox";
                        checkedListBox.SelectedIndexChanged += new EventHandler(CheckedListBox_OnSelectedIndexChanged);
                        painelControle.Controls.Add(checkedListBox);

                        posY += 28;
                    }

                    if (filtro.BotaoOK != null)
                    {
                        System.Windows.Forms.Button botaoOk = new System.Windows.Forms.Button();
                        botaoOk.Text     = "Filtrar";
                        botaoOk.Font     = new System.Drawing.Font("Calibri", 9.75f, System.Drawing.FontStyle.Bold);
                        botaoOk.Location = new System.Drawing.Point(painelControle.Size.Width - 160, painelControle.Size.Height - 35);
                        botaoOk.Size     = new System.Drawing.Size(70, 25);
                        //botaoOk.Click += new EventHandler<FiltrarEventArgs>(filtro.BotaoOK.Handler);
                        botaoOk.Click -= new EventHandler(FilterButton_OnClick);
                        botaoOk.Click += new EventHandler(FilterButton_OnClick);
                        //EventFiltrar += filtro.BotaoOK.Handler;
                        //botaoOk.Click += new EventHandler(filtro.BotaoOK.Handler);
                        painelControle.Controls.Add(botaoOk);
                    }
                    else
                    {
                        System.Windows.Forms.Button botaoOk = new System.Windows.Forms.Button();
                        botaoOk.Text     = "Filtrar";
                        botaoOk.Font     = new System.Drawing.Font("Calibri", 9.75f, System.Drawing.FontStyle.Bold);
                        botaoOk.Location = new System.Drawing.Point(painelControle.Size.Width - 160, painelControle.Size.Height - 35);
                        botaoOk.Size     = new System.Drawing.Size(70, 25);
                        botaoOk.Click   += new EventHandler(FilterButtonOK_OnClick);
                        painelControle.Controls.Add(botaoOk);
                    }
                    System.Windows.Forms.Button botaoCancel = new System.Windows.Forms.Button();
                    botaoCancel.Text     = "Cancelar";
                    botaoCancel.Font     = new System.Drawing.Font("Calibri", 9.75f, System.Drawing.FontStyle.Bold);
                    botaoCancel.Location = new System.Drawing.Point(painelControle.Size.Width - 80, painelControle.Size.Height - 35);
                    botaoCancel.Size     = new System.Drawing.Size(70, 25);
                    botaoCancel.Click   += new EventHandler(FilterButtonCancel_OnClick);
                    painelControle.Controls.Add(botaoCancel);

                    painelControle.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(PanelControle_OnPreviewKeyDown);

                    ConfigureControl(telaFiltro.PainelFiltro);
                    telaFiltro.PainelFiltro.BringToFront();
                }
                else
                {
                    if (telaFiltro != null)
                    {
                        telaFiltro.PainelFiltro.BringToFront();
                    }
                }
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.logFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.emailnotcheckBox = new System.Windows.Forms.CheckBox();
     this.emailLabel = new System.Windows.Forms.Label();
     this.emailtextBox = new System.Windows.Forms.TextBox();
     this.SchedulecheckBox = new System.Windows.Forms.CheckBox();
     this.ScheduleLabel = new System.Windows.Forms.Label();
     this.ScheduleTime = new System.Windows.Forms.DateTimePicker();
     this.SetSchedulebutton = new System.Windows.Forms.Button();
     this.selectDestLabel = new System.Windows.Forms.Label();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.bChangeLocalDest = new System.Windows.Forms.Button();
     this.tbLocalDest = new System.Windows.Forms.TextBox();
     this.localDest = new System.Windows.Forms.Label();
     this.cbUploadFtp = new System.Windows.Forms.CheckBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.email = new System.Windows.Forms.Label();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.ErrorScheduleLabel = new System.Windows.Forms.Label();
     this.Scheduler = new System.Windows.Forms.Label();
     this.DatabasesCheckedListBox = new System.Windows.Forms.CheckedListBox();
     this.button = new System.Windows.Forms.Button();
     this.menuStrip1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.toolsToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(520, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.saveAsToolStripMenuItem,
     this.toolStripSeparator1,
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "&File";
     this.fileToolStripMenuItem.Click += new System.EventHandler(this.fileToolStripMenuItem_Click);
     //
     // saveAsToolStripMenuItem
     //
     this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
     this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
     this.saveAsToolStripMenuItem.Text = "Open";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(100, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.logFileToolStripMenuItem});
     this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
     this.toolsToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
     this.toolsToolStripMenuItem.Text = "&Tools";
     //
     // logFileToolStripMenuItem
     //
     this.logFileToolStripMenuItem.Name = "logFileToolStripMenuItem";
     this.logFileToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.logFileToolStripMenuItem.Text = "Log File";
     this.logFileToolStripMenuItem.Click += new System.EventHandler(this.logFileToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.aboutToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
     this.aboutToolStripMenuItem.Text = "About";
     //
     // emailnotcheckBox
     //
     this.emailnotcheckBox.AutoSize = true;
     this.emailnotcheckBox.Location = new System.Drawing.Point(20, 47);
     this.emailnotcheckBox.Name = "emailnotcheckBox";
     this.emailnotcheckBox.Size = new System.Drawing.Size(135, 17);
     this.emailnotcheckBox.TabIndex = 3;
     this.emailnotcheckBox.Text = "Send e-mail notification";
     this.emailnotcheckBox.UseVisualStyleBackColor = true;
     this.emailnotcheckBox.CheckedChanged += new System.EventHandler(this.emailnotcheckBox_CheckedChanged);
     //
     // emailLabel
     //
     this.emailLabel.AutoSize = true;
     this.emailLabel.Enabled = false;
     this.emailLabel.Location = new System.Drawing.Point(17, 87);
     this.emailLabel.Name = "emailLabel";
     this.emailLabel.Size = new System.Drawing.Size(80, 13);
     this.emailLabel.TabIndex = 4;
     this.emailLabel.Text = "Send e-mail to :";
     //
     // emailtextBox
     //
     this.emailtextBox.Enabled = false;
     this.emailtextBox.Location = new System.Drawing.Point(103, 80);
     this.emailtextBox.Name = "emailtextBox";
     this.emailtextBox.Size = new System.Drawing.Size(143, 20);
     this.emailtextBox.TabIndex = 5;
     //
     // SchedulecheckBox
     //
     this.SchedulecheckBox.AutoSize = true;
     this.SchedulecheckBox.Location = new System.Drawing.Point(16, 44);
     this.SchedulecheckBox.Name = "SchedulecheckBox";
     this.SchedulecheckBox.Size = new System.Drawing.Size(71, 17);
     this.SchedulecheckBox.TabIndex = 6;
     this.SchedulecheckBox.Text = "Schedule";
     this.SchedulecheckBox.UseVisualStyleBackColor = true;
     this.SchedulecheckBox.CheckedChanged += new System.EventHandler(this.SchedulecheckBox_CheckedChanged);
     //
     // ScheduleLabel
     //
     this.ScheduleLabel.AutoSize = true;
     this.ScheduleLabel.Enabled = false;
     this.ScheduleLabel.Location = new System.Drawing.Point(13, 76);
     this.ScheduleLabel.Name = "ScheduleLabel";
     this.ScheduleLabel.Size = new System.Drawing.Size(110, 13);
     this.ScheduleLabel.TabIndex = 7;
     this.ScheduleLabel.Text = "Start backup daily at :";
     //
     // ScheduleTime
     //
     this.ScheduleTime.CustomFormat = "hh:mm tt";
     this.ScheduleTime.Enabled = false;
     this.ScheduleTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.ScheduleTime.Location = new System.Drawing.Point(132, 70);
     this.ScheduleTime.Name = "ScheduleTime";
     this.ScheduleTime.ShowUpDown = true;
     this.ScheduleTime.Size = new System.Drawing.Size(85, 20);
     this.ScheduleTime.TabIndex = 9;
     this.ScheduleTime.Value = new System.DateTime(2015, 12, 11, 12, 25, 0, 0);
     this.ScheduleTime.ValueChanged += new System.EventHandler(this.ScheduleTime_ValueChanged);
     //
     // SetSchedulebutton
     //
     this.SetSchedulebutton.Location = new System.Drawing.Point(391, 470);
     this.SetSchedulebutton.Name = "SetSchedulebutton";
     this.SetSchedulebutton.Size = new System.Drawing.Size(107, 23);
     this.SetSchedulebutton.TabIndex = 10;
     this.SetSchedulebutton.Text = "Set Schedule";
     this.SetSchedulebutton.UseVisualStyleBackColor = true;
     this.SetSchedulebutton.Visible = false;
     this.SetSchedulebutton.Click += new System.EventHandler(this.Runbutton_Click);
     //
     // selectDestLabel
     //
     this.selectDestLabel.AutoSize = true;
     this.selectDestLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.selectDestLabel.Location = new System.Drawing.Point(3, 16);
     this.selectDestLabel.Name = "selectDestLabel";
     this.selectDestLabel.Size = new System.Drawing.Size(138, 13);
     this.selectDestLabel.TabIndex = 12;
     this.selectDestLabel.Text = "Store Backup with FTP";
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.Location = new System.Drawing.Point(19, 144);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(78, 13);
     this.linkLabel1.TabIndex = 13;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "Ftp Destination";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.bChangeLocalDest);
     this.groupBox1.Controls.Add(this.tbLocalDest);
     this.groupBox1.Controls.Add(this.localDest);
     this.groupBox1.Controls.Add(this.cbUploadFtp);
     this.groupBox1.Controls.Add(this.selectDestLabel);
     this.groupBox1.Controls.Add(this.linkLabel1);
     this.groupBox1.Location = new System.Drawing.Point(242, 39);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(256, 169);
     this.groupBox1.TabIndex = 14;
     this.groupBox1.TabStop = false;
     //
     // bChangeLocalDest
     //
     this.bChangeLocalDest.Location = new System.Drawing.Point(161, 89);
     this.bChangeLocalDest.Name = "bChangeLocalDest";
     this.bChangeLocalDest.Size = new System.Drawing.Size(75, 23);
     this.bChangeLocalDest.TabIndex = 17;
     this.bChangeLocalDest.Text = "Change";
     this.bChangeLocalDest.UseVisualStyleBackColor = true;
     this.bChangeLocalDest.Click += new System.EventHandler(this.bChangeLocalDest_Click);
     //
     // tbLocalDest
     //
     this.tbLocalDest.Location = new System.Drawing.Point(20, 63);
     this.tbLocalDest.Name = "tbLocalDest";
     this.tbLocalDest.ReadOnly = true;
     this.tbLocalDest.Size = new System.Drawing.Size(216, 20);
     this.tbLocalDest.TabIndex = 16;
     //
     // localDest
     //
     this.localDest.AutoSize = true;
     this.localDest.Location = new System.Drawing.Point(19, 47);
     this.localDest.Name = "localDest";
     this.localDest.Size = new System.Drawing.Size(90, 13);
     this.localDest.TabIndex = 15;
     this.localDest.Text = "Local destination:";
     //
     // cbUploadFtp
     //
     this.cbUploadFtp.AutoSize = true;
     this.cbUploadFtp.Location = new System.Drawing.Point(20, 115);
     this.cbUploadFtp.Name = "cbUploadFtp";
     this.cbUploadFtp.Size = new System.Drawing.Size(87, 17);
     this.cbUploadFtp.TabIndex = 14;
     this.cbUploadFtp.Text = "Upload to ftp";
     this.cbUploadFtp.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.email);
     this.groupBox2.Controls.Add(this.emailnotcheckBox);
     this.groupBox2.Controls.Add(this.emailLabel);
     this.groupBox2.Controls.Add(this.emailtextBox);
     this.groupBox2.Location = new System.Drawing.Point(242, 214);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(256, 116);
     this.groupBox2.TabIndex = 15;
     this.groupBox2.TabStop = false;
     //
     // email
     //
     this.email.AutoSize = true;
     this.email.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.email.Location = new System.Drawing.Point(3, 16);
     this.email.Name = "email";
     this.email.Size = new System.Drawing.Size(37, 13);
     this.email.TabIndex = 6;
     this.email.Text = "Email";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.ErrorScheduleLabel);
     this.groupBox3.Controls.Add(this.Scheduler);
     this.groupBox3.Controls.Add(this.SchedulecheckBox);
     this.groupBox3.Controls.Add(this.ScheduleLabel);
     this.groupBox3.Controls.Add(this.ScheduleTime);
     this.groupBox3.Location = new System.Drawing.Point(242, 336);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(256, 116);
     this.groupBox3.TabIndex = 16;
     this.groupBox3.TabStop = false;
     this.groupBox3.Enter += new System.EventHandler(this.groupBox3_Enter);
     //
     // ErrorScheduleLabel
     //
     this.ErrorScheduleLabel.AutoSize = true;
     this.ErrorScheduleLabel.Location = new System.Drawing.Point(13, 100);
     this.ErrorScheduleLabel.Name = "ErrorScheduleLabel";
     this.ErrorScheduleLabel.Size = new System.Drawing.Size(0, 13);
     this.ErrorScheduleLabel.TabIndex = 11;
     //
     // Scheduler
     //
     this.Scheduler.AutoSize = true;
     this.Scheduler.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Scheduler.Location = new System.Drawing.Point(7, 8);
     this.Scheduler.Name = "Scheduler";
     this.Scheduler.Size = new System.Drawing.Size(64, 13);
     this.Scheduler.TabIndex = 10;
     this.Scheduler.Text = "Scheduler";
     //
     // DatabasesCheckedListBox
     //
     this.DatabasesCheckedListBox.CheckOnClick = true;
     this.DatabasesCheckedListBox.FormattingEnabled = true;
     this.DatabasesCheckedListBox.Location = new System.Drawing.Point(12, 42);
     this.DatabasesCheckedListBox.Name = "DatabasesCheckedListBox";
     this.DatabasesCheckedListBox.Size = new System.Drawing.Size(178, 439);
     this.DatabasesCheckedListBox.TabIndex = 17;
     //
     // button
     //
     this.button.Location = new System.Drawing.Point(258, 470);
     this.button.Name = "button";
     this.button.Size = new System.Drawing.Size(119, 23);
     this.button.TabIndex = 18;
     this.button.Text = "Get backup and store";
     this.button.UseVisualStyleBackColor = true;
     this.button.Click += new System.EventHandler(this.button_Click);
     //
     // Form2
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(520, 505);
     this.Controls.Add(this.button);
     this.Controls.Add(this.DatabasesCheckedListBox);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.SetSchedulebutton);
     this.Controls.Add(this.menuStrip1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "Form2";
     this.Text = "Control Panel";
     this.Load += new System.EventHandler(this.Form2_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PrintOptions));
     this.rdoSelectedRows = new System.Windows.Forms.RadioButton();
     this.rdoAllRows = new System.Windows.Forms.RadioButton();
     this.chkFitToPageWidth = new System.Windows.Forms.CheckBox();
     this.lblTitle = new System.Windows.Forms.Label();
     this.txtTitle = new System.Windows.Forms.TextBox();
     this.gboxRowsToPrint = new System.Windows.Forms.GroupBox();
     this.lblColumnsToPrint = new System.Windows.Forms.Label();
     this.btnOK = new System.Windows.Forms.Button();
     this.btnCancel = new System.Windows.Forms.Button();
     this.chklst = new System.Windows.Forms.CheckedListBox();
     this.gboxRowsToPrint.SuspendLayout();
     this.SuspendLayout();
     //
     // rdoSelectedRows
     //
     this.rdoSelectedRows.AutoSize = true;
     this.rdoSelectedRows.Font = new System.Drawing.Font("������", 9F);
     this.rdoSelectedRows.Location = new System.Drawing.Point(91, 18);
     this.rdoSelectedRows.Name = "rdoSelectedRows";
     this.rdoSelectedRows.Size = new System.Drawing.Size(59, 16);
     this.rdoSelectedRows.TabIndex = 1;
     this.rdoSelectedRows.TabStop = true;
     this.rdoSelectedRows.Text = "ѡ����";
     this.rdoSelectedRows.UseVisualStyleBackColor = true;
     //
     // rdoAllRows
     //
     this.rdoAllRows.AutoSize = true;
     this.rdoAllRows.Font = new System.Drawing.Font("������", 9F);
     this.rdoAllRows.Location = new System.Drawing.Point(9, 18);
     this.rdoAllRows.Name = "rdoAllRows";
     this.rdoAllRows.Size = new System.Drawing.Size(59, 16);
     this.rdoAllRows.TabIndex = 0;
     this.rdoAllRows.TabStop = true;
     this.rdoAllRows.Text = "ȫ����";
     this.rdoAllRows.UseVisualStyleBackColor = true;
     //
     // chkFitToPageWidth
     //
     this.chkFitToPageWidth.AutoSize = true;
     this.chkFitToPageWidth.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkFitToPageWidth.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chkFitToPageWidth.Font = new System.Drawing.Font("������", 9F);
     this.chkFitToPageWidth.Location = new System.Drawing.Point(187, 72);
     this.chkFitToPageWidth.Name = "chkFitToPageWidth";
     this.chkFitToPageWidth.Size = new System.Drawing.Size(102, 17);
     this.chkFitToPageWidth.TabIndex = 21;
     this.chkFitToPageWidth.Text = "��Ӧҳ����";
     this.chkFitToPageWidth.UseVisualStyleBackColor = true;
     //
     // lblTitle
     //
     this.lblTitle.AutoSize = true;
     this.lblTitle.Font = new System.Drawing.Font("������", 9F);
     this.lblTitle.Location = new System.Drawing.Point(184, 99);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(53, 12);
     this.lblTitle.TabIndex = 20;
     this.lblTitle.Text = "ҳ��̧ͷ";
     //
     // txtTitle
     //
     this.txtTitle.AcceptsReturn = true;
     this.txtTitle.Font = new System.Drawing.Font("������", 9F);
     this.txtTitle.Location = new System.Drawing.Point(184, 114);
     this.txtTitle.Multiline = true;
     this.txtTitle.Name = "txtTitle";
     this.txtTitle.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtTitle.Size = new System.Drawing.Size(176, 71);
     this.txtTitle.TabIndex = 19;
     //
     // gboxRowsToPrint
     //
     this.gboxRowsToPrint.Controls.Add(this.rdoSelectedRows);
     this.gboxRowsToPrint.Controls.Add(this.rdoAllRows);
     this.gboxRowsToPrint.Font = new System.Drawing.Font("������", 9F);
     this.gboxRowsToPrint.Location = new System.Drawing.Point(184, 20);
     this.gboxRowsToPrint.Name = "gboxRowsToPrint";
     this.gboxRowsToPrint.Size = new System.Drawing.Size(173, 39);
     this.gboxRowsToPrint.TabIndex = 18;
     this.gboxRowsToPrint.TabStop = false;
     this.gboxRowsToPrint.Text = "��ӡ��ʽ";
     //
     // lblColumnsToPrint
     //
     this.lblColumnsToPrint.AutoSize = true;
     this.lblColumnsToPrint.Font = new System.Drawing.Font("������", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblColumnsToPrint.Location = new System.Drawing.Point(8, 8);
     this.lblColumnsToPrint.Name = "lblColumnsToPrint";
     this.lblColumnsToPrint.Size = new System.Drawing.Size(65, 12);
     this.lblColumnsToPrint.TabIndex = 17;
     this.lblColumnsToPrint.Text = "����ӡ����";
     //
     // btnOK
     //
     this.btnOK.BackColor = System.Drawing.SystemColors.Control;
     this.btnOK.Cursor = System.Windows.Forms.Cursors.Default;
     this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnOK.Font = new System.Drawing.Font("������", 9F);
     this.btnOK.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnOK.Image = ((System.Drawing.Image)(resources.GetObject("btnOK.Image")));
     this.btnOK.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnOK.Location = new System.Drawing.Point(225, 231);
     this.btnOK.Name = "btnOK";
     this.btnOK.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnOK.Size = new System.Drawing.Size(63, 23);
     this.btnOK.TabIndex = 14;
     this.btnOK.Text = "ȷ��(&O)";
     this.btnOK.UseVisualStyleBackColor = false;
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.BackColor = System.Drawing.SystemColors.Control;
     this.btnCancel.Cursor = System.Windows.Forms.Cursors.Default;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnCancel.Font = new System.Drawing.Font("������", 9F);
     this.btnCancel.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
     this.btnCancel.Location = new System.Drawing.Point(297, 231);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnCancel.Size = new System.Drawing.Size(63, 23);
     this.btnCancel.TabIndex = 15;
     this.btnCancel.Text = "ȡ��(&C)";
     this.btnCancel.UseVisualStyleBackColor = false;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // chklst
     //
     this.chklst.CheckOnClick = true;
     this.chklst.Font = new System.Drawing.Font("������", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chklst.FormattingEnabled = true;
     this.chklst.Location = new System.Drawing.Point(8, 26);
     this.chklst.Name = "chklst";
     this.chklst.Size = new System.Drawing.Size(170, 228);
     this.chklst.TabIndex = 13;
     //
     // PrintOptions
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(369, 267);
     this.Controls.Add(this.chkFitToPageWidth);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.txtTitle);
     this.Controls.Add(this.gboxRowsToPrint);
     this.Controls.Add(this.lblColumnsToPrint);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.chklst);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "PrintOptions";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "��ӡѡ��";
     this.Load += new System.EventHandler(this.PrintOtions_Load);
     this.gboxRowsToPrint.ResumeLayout(false);
     this.gboxRowsToPrint.PerformLayout();
     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.lblCodigoDescuento = new System.Windows.Forms.Label();
     this.txtCodigoDescuento = new System.Windows.Forms.TextBox();
     this.btnAceptar = new System.Windows.Forms.Button();
     this.lblNombre = new System.Windows.Forms.Label();
     this.gbdetalle = new System.Windows.Forms.GroupBox();
     this.dtpFechaFin = new System.Windows.Forms.DateTimePicker();
     this.lblFechaInicio = new System.Windows.Forms.Label();
     this.dtpFechaInicio = new System.Windows.Forms.DateTimePicker();
     this.lblFechaFin = new System.Windows.Forms.Label();
     this.txtNombre = new System.Windows.Forms.TextBox();
     this.chkClientes = new System.Windows.Forms.CheckedListBox();
     this.btnEditar = new System.Windows.Forms.Button();
     this.gbClientes = new System.Windows.Forms.GroupBox();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.gbArticulos = new System.Windows.Forms.GroupBox();
     this.btnQuitar = new System.Windows.Forms.Button();
     this.btnAgregar = new System.Windows.Forms.Button();
     this.label3 = new System.Windows.Forms.Label();
     this.dgvArticulos = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Porcentaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.subTotal = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.lblCantidadUtilizada = new System.Windows.Forms.Label();
     this.lblUtilizados = new System.Windows.Forms.Label();
     this.gbdetalle.SuspendLayout();
     this.gbClientes.SuspendLayout();
     this.gbArticulos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvArticulos)).BeginInit();
     this.SuspendLayout();
     //
     // lblCodigoDescuento
     //
     this.lblCodigoDescuento.AutoSize = true;
     this.lblCodigoDescuento.Location = new System.Drawing.Point(21, 121);
     this.lblCodigoDescuento.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblCodigoDescuento.Name = "lblCodigoDescuento";
     this.lblCodigoDescuento.Size = new System.Drawing.Size(42, 16);
     this.lblCodigoDescuento.TabIndex = 6;
     this.lblCodigoDescuento.Text = "Código";
     this.lblCodigoDescuento.Visible = false;
     //
     // txtCodigoDescuento
     //
     this.txtCodigoDescuento.Location = new System.Drawing.Point(116, 117);
     this.txtCodigoDescuento.Margin = new System.Windows.Forms.Padding(4);
     this.txtCodigoDescuento.Name = "txtCodigoDescuento";
     this.txtCodigoDescuento.Size = new System.Drawing.Size(227, 20);
     this.txtCodigoDescuento.TabIndex = 4;
     this.txtCodigoDescuento.Visible = false;
     //
     // btnAceptar
     //
     this.btnAceptar.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAceptar.Location = new System.Drawing.Point(662, 518);
     this.btnAceptar.Margin = new System.Windows.Forms.Padding(4);
     this.btnAceptar.Name = "btnAceptar";
     this.btnAceptar.Size = new System.Drawing.Size(100, 28);
     this.btnAceptar.TabIndex = 38;
     this.btnAceptar.Text = "Aceptar";
     this.btnAceptar.UseVisualStyleBackColor = true;
     this.btnAceptar.Click += new System.EventHandler(this.btnAceptar_Click);
     //
     // lblNombre
     //
     this.lblNombre.AutoSize = true;
     this.lblNombre.Location = new System.Drawing.Point(21, 20);
     this.lblNombre.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblNombre.Name = "lblNombre";
     this.lblNombre.Size = new System.Drawing.Size(46, 16);
     this.lblNombre.TabIndex = 0;
     this.lblNombre.Text = "Nombre";
     //
     // gbdetalle
     //
     this.gbdetalle.Controls.Add(this.txtCodigoDescuento);
     this.gbdetalle.Controls.Add(this.lblCodigoDescuento);
     this.gbdetalle.Controls.Add(this.lblNombre);
     this.gbdetalle.Controls.Add(this.dtpFechaFin);
     this.gbdetalle.Controls.Add(this.lblFechaInicio);
     this.gbdetalle.Controls.Add(this.dtpFechaInicio);
     this.gbdetalle.Controls.Add(this.lblFechaFin);
     this.gbdetalle.Controls.Add(this.txtNombre);
     this.gbdetalle.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbdetalle.Location = new System.Drawing.Point(13, 13);
     this.gbdetalle.Margin = new System.Windows.Forms.Padding(4);
     this.gbdetalle.Name = "gbdetalle";
     this.gbdetalle.Padding = new System.Windows.Forms.Padding(4);
     this.gbdetalle.Size = new System.Drawing.Size(551, 162);
     this.gbdetalle.TabIndex = 40;
     this.gbdetalle.TabStop = false;
     this.gbdetalle.Text = "Detalle Descuento";
     this.gbdetalle.Enter += new System.EventHandler(this.gbdetalle_Enter);
     //
     // dtpFechaFin
     //
     this.dtpFechaFin.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpFechaFin.Location = new System.Drawing.Point(116, 85);
     this.dtpFechaFin.Margin = new System.Windows.Forms.Padding(4);
     this.dtpFechaFin.Name = "dtpFechaFin";
     this.dtpFechaFin.Size = new System.Drawing.Size(120, 20);
     this.dtpFechaFin.TabIndex = 3;
     //
     // lblFechaInicio
     //
     this.lblFechaInicio.AutoSize = true;
     this.lblFechaInicio.Location = new System.Drawing.Point(21, 52);
     this.lblFechaInicio.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblFechaInicio.Name = "lblFechaInicio";
     this.lblFechaInicio.Size = new System.Drawing.Size(69, 16);
     this.lblFechaInicio.TabIndex = 1;
     this.lblFechaInicio.Text = "Fecha Inicio";
     //
     // dtpFechaInicio
     //
     this.dtpFechaInicio.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpFechaInicio.Location = new System.Drawing.Point(116, 52);
     this.dtpFechaInicio.Margin = new System.Windows.Forms.Padding(4);
     this.dtpFechaInicio.Name = "dtpFechaInicio";
     this.dtpFechaInicio.Size = new System.Drawing.Size(120, 20);
     this.dtpFechaInicio.TabIndex = 2;
     //
     // lblFechaFin
     //
     this.lblFechaFin.AutoSize = true;
     this.lblFechaFin.Location = new System.Drawing.Point(21, 85);
     this.lblFechaFin.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblFechaFin.Name = "lblFechaFin";
     this.lblFechaFin.Size = new System.Drawing.Size(54, 16);
     this.lblFechaFin.TabIndex = 2;
     this.lblFechaFin.Text = "Fecha fin";
     //
     // txtNombre
     //
     this.txtNombre.Location = new System.Drawing.Point(116, 20);
     this.txtNombre.Margin = new System.Windows.Forms.Padding(4);
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.Size = new System.Drawing.Size(407, 20);
     this.txtNombre.TabIndex = 1;
     //
     // chkClientes
     //
     this.chkClientes.CheckOnClick = true;
     this.chkClientes.FormattingEnabled = true;
     this.chkClientes.Location = new System.Drawing.Point(28, 24);
     this.chkClientes.Margin = new System.Windows.Forms.Padding(4);
     this.chkClientes.Name = "chkClientes";
     this.chkClientes.Size = new System.Drawing.Size(209, 124);
     this.chkClientes.TabIndex = 0;
     this.chkClientes.SelectedIndexChanged += new System.EventHandler(this.chkClientes_SelectedIndexChanged);
     //
     // btnEditar
     //
     this.btnEditar.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnEditar.Location = new System.Drawing.Point(41, 518);
     this.btnEditar.Margin = new System.Windows.Forms.Padding(4);
     this.btnEditar.Name = "btnEditar";
     this.btnEditar.Size = new System.Drawing.Size(100, 28);
     this.btnEditar.TabIndex = 37;
     this.btnEditar.Text = "Modificar";
     this.btnEditar.UseVisualStyleBackColor = true;
     this.btnEditar.Click += new System.EventHandler(this.btnEditar_Click);
     //
     // gbClientes
     //
     this.gbClientes.Controls.Add(this.chkClientes);
     this.gbClientes.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbClientes.Location = new System.Drawing.Point(594, 13);
     this.gbClientes.Margin = new System.Windows.Forms.Padding(4);
     this.gbClientes.Name = "gbClientes";
     this.gbClientes.Padding = new System.Windows.Forms.Padding(4);
     this.gbClientes.Size = new System.Drawing.Size(267, 163);
     this.gbClientes.TabIndex = 44;
     this.gbClientes.TabStop = false;
     this.gbClientes.Text = "Clientes Participantes";
     //
     // btnCancelar
     //
     this.btnCancelar.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCancelar.Location = new System.Drawing.Point(790, 518);
     this.btnCancelar.Margin = new System.Windows.Forms.Padding(4);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(100, 28);
     this.btnCancelar.TabIndex = 39;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // gbArticulos
     //
     this.gbArticulos.Controls.Add(this.btnQuitar);
     this.gbArticulos.Controls.Add(this.btnAgregar);
     this.gbArticulos.Controls.Add(this.label3);
     this.gbArticulos.Controls.Add(this.dgvArticulos);
     this.gbArticulos.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbArticulos.Location = new System.Drawing.Point(17, 195);
     this.gbArticulos.Margin = new System.Windows.Forms.Padding(4);
     this.gbArticulos.Name = "gbArticulos";
     this.gbArticulos.Padding = new System.Windows.Forms.Padding(4);
     this.gbArticulos.Size = new System.Drawing.Size(929, 257);
     this.gbArticulos.TabIndex = 41;
     this.gbArticulos.TabStop = false;
     this.gbArticulos.Text = "Articulos";
     //
     // btnQuitar
     //
     this.btnQuitar.Image = global::Papyrus.Properties.Resources.remov1;
     this.btnQuitar.Location = new System.Drawing.Point(864, 126);
     this.btnQuitar.Margin = new System.Windows.Forms.Padding(4);
     this.btnQuitar.Name = "btnQuitar";
     this.btnQuitar.Size = new System.Drawing.Size(46, 32);
     this.btnQuitar.TabIndex = 9;
     this.btnQuitar.UseVisualStyleBackColor = true;
     this.btnQuitar.Click += new System.EventHandler(this.btnQuitar_Click);
     //
     // btnAgregar
     //
     this.btnAgregar.Image = global::Papyrus.Properties.Resources.add1;
     this.btnAgregar.Location = new System.Drawing.Point(864, 72);
     this.btnAgregar.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.btnAgregar.Name = "btnAgregar";
     this.btnAgregar.Size = new System.Drawing.Size(46, 33);
     this.btnAgregar.TabIndex = 8;
     this.btnAgregar.UseVisualStyleBackColor = true;
     this.btnAgregar.Click += new System.EventHandler(this.btnAgregar_Click);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(17, 44);
     this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(0, 16);
     this.label3.TabIndex = 1;
     //
     // dgvArticulos
     //
     this.dgvArticulos.AllowUserToAddRows = false;
     this.dgvArticulos.AllowUserToDeleteRows = false;
     this.dgvArticulos.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvArticulos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvArticulos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column3,
     this.Column5,
     this.cantidad,
     this.Porcentaje,
     this.subTotal});
     this.dgvArticulos.Location = new System.Drawing.Point(20, 44);
     this.dgvArticulos.Margin = new System.Windows.Forms.Padding(4);
     this.dgvArticulos.Name = "dgvArticulos";
     this.dgvArticulos.RowTemplate.Height = 24;
     this.dgvArticulos.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvArticulos.Size = new System.Drawing.Size(824, 185);
     this.dgvArticulos.TabIndex = 0;
     this.dgvArticulos.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvArticulos_CellEndEdit);
     this.dgvArticulos.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.dgvArticulos_EditingControlShowing);
     this.dgvArticulos.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvArticulos_CellContentClick);
     //
     // Column1
     //
     this.Column1.HeaderText = "Código";
     this.Column1.Name = "Column1";
     this.Column1.ReadOnly = true;
     this.Column1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // Column3
     //
     this.Column3.HeaderText = "Nombre";
     this.Column3.Name = "Column3";
     this.Column3.ReadOnly = true;
     this.Column3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // Column5
     //
     this.Column5.HeaderText = "Precio unitario(S/.)";
     this.Column5.Name = "Column5";
     this.Column5.ReadOnly = true;
     this.Column5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // cantidad
     //
     this.cantidad.HeaderText = "Cantidad en descuento";
     this.cantidad.Name = "cantidad";
     this.cantidad.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // Porcentaje
     //
     this.Porcentaje.HeaderText = "Porcentaje(%)";
     this.Porcentaje.Name = "Porcentaje";
     this.Porcentaje.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // subTotal
     //
     this.subTotal.HeaderText = "Precio Total(S/.)";
     this.subTotal.Name = "subTotal";
     this.subTotal.ReadOnly = true;
     this.subTotal.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // lblCantidadUtilizada
     //
     this.lblCantidadUtilizada.AutoSize = true;
     this.lblCantidadUtilizada.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCantidadUtilizada.Location = new System.Drawing.Point(195, 479);
     this.lblCantidadUtilizada.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblCantidadUtilizada.Name = "lblCantidadUtilizada";
     this.lblCantidadUtilizada.Size = new System.Drawing.Size(15, 18);
     this.lblCantidadUtilizada.TabIndex = 46;
     this.lblCantidadUtilizada.Text = "0";
     //
     // lblUtilizados
     //
     this.lblUtilizados.AutoSize = true;
     this.lblUtilizados.Font = new System.Drawing.Font("Trebuchet MS", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblUtilizados.Location = new System.Drawing.Point(24, 479);
     this.lblUtilizados.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblUtilizados.Name = "lblUtilizados";
     this.lblUtilizados.Size = new System.Drawing.Size(130, 18);
     this.lblUtilizados.TabIndex = 45;
     this.lblUtilizados.Text = "Descuentos vendidos:";
     //
     // frmDetalleDescuento
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(956, 562);
     this.Controls.Add(this.btnAceptar);
     this.Controls.Add(this.gbdetalle);
     this.Controls.Add(this.lblUtilizados);
     this.Controls.Add(this.btnEditar);
     this.Controls.Add(this.gbClientes);
     this.Controls.Add(this.btnCancelar);
     this.Controls.Add(this.gbArticulos);
     this.Controls.Add(this.lblCantidadUtilizada);
     this.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Margin = new System.Windows.Forms.Padding(2);
     this.MinimizeBox = false;
     this.Name = "frmDetalleDescuento";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = ".:Papyrus Destalle descuento";
     this.Load += new System.EventHandler(this.frmDetalleDescuento_Load);
     this.gbdetalle.ResumeLayout(false);
     this.gbdetalle.PerformLayout();
     this.gbClientes.ResumeLayout(false);
     this.gbArticulos.ResumeLayout(false);
     this.gbArticulos.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvArticulos)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btn_importujEq = new System.Windows.Forms.Button();
     this.list_doWyboru = new System.Windows.Forms.ListBox();
     this.listaPrzedmiotow = new System.Windows.Forms.CheckedListBox();
     this.btn_generuj = new System.Windows.Forms.Button();
     this.btn_modyfApl = new System.Windows.Forms.Button();
     this.btn_usunItem = new System.Windows.Forms.Button();
     this.btn_wczytaj = new System.Windows.Forms.Button();
     this.btn_Zapisz = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // btn_importujEq
     //
     this.btn_importujEq.Location = new System.Drawing.Point(12, 233);
     this.btn_importujEq.Name = "btn_importujEq";
     this.btn_importujEq.Size = new System.Drawing.Size(107, 23);
     this.btn_importujEq.TabIndex = 0;
     this.btn_importujEq.Text = "Importuj EQ";
     this.btn_importujEq.UseVisualStyleBackColor = true;
     this.btn_importujEq.Click += new System.EventHandler(this.btn_importujEq_Click);
     //
     // list_doWyboru
     //
     this.list_doWyboru.FormattingEnabled = true;
     this.list_doWyboru.Location = new System.Drawing.Point(12, 12);
     this.list_doWyboru.Name = "list_doWyboru";
     this.list_doWyboru.Size = new System.Drawing.Size(107, 186);
     this.list_doWyboru.TabIndex = 1;
     this.list_doWyboru.SelectedIndexChanged += new System.EventHandler(this.list_doWyboru_SelectedIndexChanged);
     //
     // listaPrzedmiotow
     //
     this.listaPrzedmiotow.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.listaPrzedmiotow.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F);
     this.listaPrzedmiotow.FormattingEnabled = true;
     this.listaPrzedmiotow.Location = new System.Drawing.Point(125, 12);
     this.listaPrzedmiotow.Name = "listaPrzedmiotow";
     this.listaPrzedmiotow.Size = new System.Drawing.Size(378, 364);
     this.listaPrzedmiotow.TabIndex = 2;
     this.listaPrzedmiotow.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.listaPrzedmiotow_ItemCheck);
     this.listaPrzedmiotow.SelectedIndexChanged += new System.EventHandler(this.listaPrzedmiotow_SelectedIndexChanged);
     //
     // btn_generuj
     //
     this.btn_generuj.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     this.btn_generuj.Location = new System.Drawing.Point(12, 353);
     this.btn_generuj.Name = "btn_generuj";
     this.btn_generuj.Size = new System.Drawing.Size(107, 23);
     this.btn_generuj.TabIndex = 3;
     this.btn_generuj.Text = "Generuj";
     this.btn_generuj.UseVisualStyleBackColor = true;
     this.btn_generuj.Click += new System.EventHandler(this.btn_generuj_Click);
     //
     // btn_modyfApl
     //
     this.btn_modyfApl.Location = new System.Drawing.Point(13, 204);
     this.btn_modyfApl.Name = "btn_modyfApl";
     this.btn_modyfApl.Size = new System.Drawing.Size(106, 23);
     this.btn_modyfApl.TabIndex = 4;
     this.btn_modyfApl.Text = "Modyfikuj APL";
     this.btn_modyfApl.UseVisualStyleBackColor = true;
     this.btn_modyfApl.Click += new System.EventHandler(this.btn_modyfApl_Click);
     //
     // btn_usunItem
     //
     this.btn_usunItem.Location = new System.Drawing.Point(13, 262);
     this.btn_usunItem.Name = "btn_usunItem";
     this.btn_usunItem.Size = new System.Drawing.Size(106, 23);
     this.btn_usunItem.TabIndex = 5;
     this.btn_usunItem.Text = "Usuń";
     this.btn_usunItem.UseVisualStyleBackColor = true;
     this.btn_usunItem.Click += new System.EventHandler(this.btn_usunItem_Click);
     //
     // btn_wczytaj
     //
     this.btn_wczytaj.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     this.btn_wczytaj.Location = new System.Drawing.Point(13, 291);
     this.btn_wczytaj.Name = "btn_wczytaj";
     this.btn_wczytaj.Size = new System.Drawing.Size(106, 23);
     this.btn_wczytaj.TabIndex = 6;
     this.btn_wczytaj.Text = "Wczytaj";
     this.btn_wczytaj.UseVisualStyleBackColor = true;
     this.btn_wczytaj.Click += new System.EventHandler(this.btn_wczytaj_Click);
     //
     // btn_Zapisz
     //
     this.btn_Zapisz.Enabled = false;
     this.btn_Zapisz.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     this.btn_Zapisz.Location = new System.Drawing.Point(13, 320);
     this.btn_Zapisz.Name = "btn_Zapisz";
     this.btn_Zapisz.Size = new System.Drawing.Size(106, 23);
     this.btn_Zapisz.TabIndex = 7;
     this.btn_Zapisz.Text = "Zapisz";
     this.btn_Zapisz.UseVisualStyleBackColor = true;
     this.btn_Zapisz.Click += new System.EventHandler(this.btn_Zapisz_Click);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(515, 377);
     this.Controls.Add(this.btn_Zapisz);
     this.Controls.Add(this.btn_wczytaj);
     this.Controls.Add(this.btn_usunItem);
     this.Controls.Add(this.btn_modyfApl);
     this.Controls.Add(this.btn_generuj);
     this.Controls.Add(this.listaPrzedmiotow);
     this.Controls.Add(this.list_doWyboru);
     this.Controls.Add(this.btn_importujEq);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     this.Name = "Form1";
     this.Text = "Autor: klocklimek-SteamwheedleCartel";
     this.ResumeLayout(false);
 }
Example #38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.labelItem3 = new DevComponents.DotNetBar.LabelItem();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem32 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem33 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem34 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem35 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem36 = new DevComponents.DotNetBar.ButtonItem();
     this.ribbonTabItem1 = new DevComponents.DotNetBar.RibbonTabItem();
     this.buttonItem46 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem47 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem49 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem50 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem51 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem48 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem52 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem53 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem54 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem55 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem58 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem57 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem59 = new DevComponents.DotNetBar.ButtonItem();
     this.office2007StartButton1 = new DevComponents.DotNetBar.Office2007StartButton();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem4 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem5 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem6 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem7 = new DevComponents.DotNetBar.ButtonItem();
     this.galleryContainer1 = new DevComponents.DotNetBar.GalleryContainer();
     this.labelItem8 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem8 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem9 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem37 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem38 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem39 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem40 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem41 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem42 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem43 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem44 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem45 = new DevComponents.DotNetBar.ButtonItem();
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.sideBar1 = new DevComponents.DotNetBar.SideBar();
     this.sideBarPanelItem3 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem28 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem29 = new DevComponents.DotNetBar.ButtonItem();
     this.sideBarPanelItem2 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem23 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem24 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem25 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem26 = new DevComponents.DotNetBar.ButtonItem();
     this.sideBarPanelItem4 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.sideBarPanelItem5 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem30 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem31 = new DevComponents.DotNetBar.ButtonItem();
     this.sideBarPanelItem1 = new DevComponents.DotNetBar.SideBarPanelItem();
     this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem19 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem20 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem22 = new DevComponents.DotNetBar.ButtonItem();
     this.tabControl2 = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupPanel6 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX3 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.groupPanel5 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.rez_danlz = new System.Windows.Forms.Label();
     this.rez_medic = new System.Windows.Forms.Label();
     this.rez_dn = new System.Windows.Forms.Label();
     this.rez_cnp = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.groupPanel4 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.label1 = new System.Windows.Forms.Label();
     this.textBox6 = new System.Windows.Forms.TextBox();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     this.textBox12 = new System.Windows.Forms.TextBox();
     this.label28 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.textBox11 = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.checkedListBox4 = new System.Windows.Forms.CheckedListBox();
     this.checkedListBox3 = new System.Windows.Forms.CheckedListBox();
     this.checkedListBox2 = new System.Windows.Forms.CheckedListBox();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.label11 = new System.Windows.Forms.Label();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBox9 = new System.Windows.Forms.TextBox();
     this.textBox10 = new System.Windows.Forms.TextBox();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.label15 = new System.Windows.Forms.Label();
     this.textBox7 = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.textBox4 = new System.Windows.Forms.TextBox();
     this.textBox5 = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.reflectionImage2 = new DevComponents.DotNetBar.Controls.ReflectionImage();
     this.reflectionLabel1 = new DevComponents.DotNetBar.Controls.ReflectionLabel();
     this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip();
     this.balloonTip1 = new DevComponents.DotNetBar.BalloonTip();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.ribbonControl1.SuspendLayout();
     this.ribbonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl2)).BeginInit();
     this.tabControl2.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     this.groupPanel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     this.groupPanel5.SuspendLayout();
     this.groupPanel4.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     this.groupPanel3.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonControl1
     //
     this.ribbonControl1.AutoScroll = true;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Controls.Add(this.ribbonPanel1);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.ribbonTabItem1});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 7F);
     this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Office2007ColorTable = DevComponents.DotNetBar.Rendering.eOffice2007ColorScheme.VistaGlass;
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.ribbonControl1.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem46,
     this.buttonItem48,
     this.buttonItem55,
     this.buttonItem58});
     this.ribbonControl1.Size = new System.Drawing.Size(1284, 137);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 0;
     this.ribbonControl1.Text = "ribbonControl1";
     //
     // ribbonPanel1
     //
     this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonPanel1.Controls.Add(this.ribbonBar3);
     this.ribbonPanel1.Controls.Add(this.ribbonBar2);
     this.ribbonPanel1.Controls.Add(this.ribbonBar1);
     this.ribbonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribbonPanel1.Location = new System.Drawing.Point(0, 55);
     this.ribbonPanel1.Name = "ribbonPanel1";
     this.ribbonPanel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribbonPanel1.Size = new System.Drawing.Size(1284, 80);
     this.ribbonPanel1.TabIndex = 1;
     this.ribbonPanel1.Click += new System.EventHandler(this.ribbonPanel1_Click);
     //
     // ribbonBar3
     //
     this.ribbonBar3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.ribbonBar3.AutoOverflowEnabled = true;
     this.ribbonBar3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem2,
     this.labelItem3});
     this.ribbonBar3.Location = new System.Drawing.Point(990, 0);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(290, 77);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar3.TabIndex = 2;
     this.ribbonBar3.Text = "Data  operarii";
     this.ribbonBar3.ItemClick += new System.EventHandler(this.ribbonBar3_ItemClick);
     //
     // labelItem2
     //
     this.labelItem2.Name = "labelItem2";
     this.labelItem2.Text = "                                                 ";
     //
     // labelItem3
     //
     this.labelItem3.Image = global::MedLab2.Properties.Resources.icon_time_to_market;
     this.labelItem3.Name = "labelItem3";
     //
     // ribbonBar2
     //
     this.ribbonBar2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.ribbonBar2.AutoOverflowEnabled = true;
     this.ribbonBar2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem1,
     this.buttonItem16});
     this.ribbonBar2.Location = new System.Drawing.Point(236, 0);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(286, 77);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar2.TabIndex = 1;
     this.ribbonBar2.Text = "Utilizator curent";
     //
     // labelItem1
     //
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.Text = "                                                         ";
     //
     // buttonItem16
     //
     this.buttonItem16.ImagePaddingHorizontal = 8;
     this.buttonItem16.Name = "buttonItem16";
     this.buttonItem16.SubItemsExpandWidth = 14;
     this.buttonItem16.Text = "Sign out";
     this.buttonItem16.Click += new System.EventHandler(this.buttonItem16_Click);
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     this.ribbonBar1.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem32,
     this.buttonItem33,
     this.buttonItem34,
     this.buttonItem35,
     this.buttonItem36});
     this.ribbonBar1.Location = new System.Drawing.Point(3, 0);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(282, 77);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.ribbonBar1.TabIndex = 0;
     //
     // buttonItem32
     //
     this.buttonItem32.Image = global::MedLab2.Properties.Resources.Word;
     this.buttonItem32.ImagePaddingHorizontal = 8;
     this.buttonItem32.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem32.Name = "buttonItem32";
     this.buttonItem32.SubItemsExpandWidth = 14;
     this.buttonItem32.Text = "Word";
     this.buttonItem32.Click += new System.EventHandler(this.buttonItem32_Click);
     //
     // buttonItem33
     //
     this.buttonItem33.Image = global::MedLab2.Properties.Resources.Excel;
     this.buttonItem33.ImagePaddingHorizontal = 8;
     this.buttonItem33.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem33.Name = "buttonItem33";
     this.buttonItem33.SubItemsExpandWidth = 14;
     this.buttonItem33.Text = "Excel";
     this.buttonItem33.Click += new System.EventHandler(this.buttonItem33_Click);
     //
     // buttonItem34
     //
     this.buttonItem34.Image = global::MedLab2.Properties.Resources.OutLook;
     this.buttonItem34.ImagePaddingHorizontal = 8;
     this.buttonItem34.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem34.Name = "buttonItem34";
     this.buttonItem34.SubItemsExpandWidth = 14;
     this.buttonItem34.Text = "Outlook";
     this.buttonItem34.Click += new System.EventHandler(this.buttonItem34_Click);
     //
     // buttonItem35
     //
     this.buttonItem35.Image = global::MedLab2.Properties.Resources.PowerPoint;
     this.buttonItem35.ImagePaddingHorizontal = 8;
     this.buttonItem35.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem35.Name = "buttonItem35";
     this.buttonItem35.SubItemsExpandWidth = 14;
     this.buttonItem35.Text = "PowerPoint";
     this.buttonItem35.Click += new System.EventHandler(this.buttonItem35_Click);
     //
     // buttonItem36
     //
     this.buttonItem36.Image = global::MedLab2.Properties.Resources.Calc;
     this.buttonItem36.ImagePaddingHorizontal = 8;
     this.buttonItem36.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem36.Name = "buttonItem36";
     this.buttonItem36.SubItemsExpandWidth = 14;
     this.buttonItem36.Text = "Calculator";
     this.buttonItem36.Click += new System.EventHandler(this.buttonItem36_Click);
     //
     // ribbonTabItem1
     //
     this.ribbonTabItem1.Checked = true;
     this.ribbonTabItem1.ImagePaddingHorizontal = 8;
     this.ribbonTabItem1.Name = "ribbonTabItem1";
     this.ribbonTabItem1.Panel = this.ribbonPanel1;
     this.ribbonTabItem1.Text = "Instrumente";
     //
     // buttonItem46
     //
     this.buttonItem46.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem46.ImagePaddingHorizontal = 8;
     this.buttonItem46.Name = "buttonItem46";
     this.buttonItem46.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem46.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem46.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem47,
     this.buttonItem49,
     this.buttonItem50,
     this.buttonItem51});
     this.buttonItem46.Text = "Pacineti";
     this.buttonItem46.Click += new System.EventHandler(this.buttonItem46_Click);
     //
     // buttonItem47
     //
     this.buttonItem47.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem47.ImagePaddingHorizontal = 8;
     this.buttonItem47.Name = "buttonItem47";
     this.buttonItem47.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlN);
     this.buttonItem47.Text = "Cautare dupa &nume";
     this.buttonItem47.Click += new System.EventHandler(this.buttonItem47_Click);
     //
     // buttonItem49
     //
     this.buttonItem49.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem49.ImagePaddingHorizontal = 8;
     this.buttonItem49.Name = "buttonItem49";
     this.buttonItem49.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.buttonItem49.Text = "Cautare dupa &cnp";
     this.buttonItem49.Click += new System.EventHandler(this.buttonItem49_Click);
     //
     // buttonItem50
     //
     this.buttonItem50.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem50.ImagePaddingHorizontal = 8;
     this.buttonItem50.Name = "buttonItem50";
     this.buttonItem50.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlI);
     this.buttonItem50.Text = "Cautare dupa cod &inregistrare";
     this.buttonItem50.Click += new System.EventHandler(this.buttonItem50_Click);
     //
     // buttonItem51
     //
     this.buttonItem51.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem51.ImagePaddingHorizontal = 8;
     this.buttonItem51.Name = "buttonItem51";
     this.buttonItem51.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlS);
     this.buttonItem51.Text = "&Stergere din baza de date";
     this.buttonItem51.Click += new System.EventHandler(this.buttonItem51_Click);
     //
     // buttonItem48
     //
     this.buttonItem48.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem48.ImagePaddingHorizontal = 8;
     this.buttonItem48.Name = "buttonItem48";
     this.buttonItem48.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem48.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem48.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem52,
     this.buttonItem53,
     this.buttonItem54});
     this.buttonItem48.Text = "Utilizatori";
     //
     // buttonItem52
     //
     this.buttonItem52.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem52.ImagePaddingHorizontal = 8;
     this.buttonItem52.Name = "buttonItem52";
     this.buttonItem52.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.buttonItem52.Text = "&Adaugare utilizator";
     this.buttonItem52.Click += new System.EventHandler(this.buttonItem52_Click);
     //
     // buttonItem53
     //
     this.buttonItem53.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem53.ImagePaddingHorizontal = 8;
     this.buttonItem53.Name = "buttonItem53";
     this.buttonItem53.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlDel);
     this.buttonItem53.Text = "Stergere utilizator";
     this.buttonItem53.Click += new System.EventHandler(this.buttonItem53_Click);
     //
     // buttonItem54
     //
     this.buttonItem54.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem54.ImagePaddingHorizontal = 8;
     this.buttonItem54.Name = "buttonItem54";
     this.buttonItem54.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlP);
     this.buttonItem54.Text = "Schimbare parola utilizator";
     this.buttonItem54.Click += new System.EventHandler(this.buttonItem54_Click);
     //
     // buttonItem55
     //
     this.buttonItem55.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem55.ImagePaddingHorizontal = 8;
     this.buttonItem55.Name = "buttonItem55";
     this.buttonItem55.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem55.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem55.Text = "Setari";
     //
     // buttonItem58
     //
     this.buttonItem58.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem58.ImagePaddingHorizontal = 8;
     this.buttonItem58.Name = "buttonItem58";
     this.buttonItem58.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.Slide;
     this.buttonItem58.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(5);
     this.buttonItem58.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem57,
     this.buttonItem59});
     this.buttonItem58.Text = "Ajutor";
     //
     // buttonItem57
     //
     this.buttonItem57.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem57.ImagePaddingHorizontal = 8;
     this.buttonItem57.Name = "buttonItem57";
     this.buttonItem57.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.buttonItem57.Text = "Suport tehnic";
     this.buttonItem57.Click += new System.EventHandler(this.buttonItem57_Click);
     //
     // buttonItem59
     //
     this.buttonItem59.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem59.ImagePaddingHorizontal = 8;
     this.buttonItem59.Name = "buttonItem59";
     this.buttonItem59.Text = "Despre MedLAB...";
     this.buttonItem59.Click += new System.EventHandler(this.buttonItem59_Click);
     //
     // office2007StartButton1
     //
     this.office2007StartButton1.AutoExpandOnClick = true;
     this.office2007StartButton1.CanCustomize = false;
     this.office2007StartButton1.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.office2007StartButton1.Image = ((System.Drawing.Image)(resources.GetObject("office2007StartButton1.Image")));
     this.office2007StartButton1.ImagePaddingHorizontal = 2;
     this.office2007StartButton1.ImagePaddingVertical = 2;
     this.office2007StartButton1.Name = "office2007StartButton1";
     this.office2007StartButton1.ShowSubItems = false;
     this.office2007StartButton1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer1});
     this.office2007StartButton1.Text = "&File";
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.Class = "RibbonFileMenuContainer";
     this.itemContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer2,
     this.itemContainer4});
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.Class = "RibbonFileMenuTwoColumnContainer";
     this.itemContainer2.ItemSpacing = 0;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer3,
     this.galleryContainer1});
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.Class = "RibbonFileMenuColumnOneContainer";
     this.itemContainer3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer3.MinimumSize = new System.Drawing.Size(120, 0);
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2,
     this.buttonItem3,
     this.buttonItem4,
     this.buttonItem5,
     this.buttonItem6,
     this.buttonItem7});
     //
     // buttonItem2
     //
     this.buttonItem2.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.ImagePaddingHorizontal = 8;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.SubItemsExpandWidth = 24;
     this.buttonItem2.Text = "&New";
     //
     // buttonItem3
     //
     this.buttonItem3.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem3.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem3.Image")));
     this.buttonItem3.ImagePaddingHorizontal = 8;
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.SubItemsExpandWidth = 24;
     this.buttonItem3.Text = "&Open...";
     //
     // buttonItem4
     //
     this.buttonItem4.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem4.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem4.Image")));
     this.buttonItem4.ImagePaddingHorizontal = 8;
     this.buttonItem4.Name = "buttonItem4";
     this.buttonItem4.SubItemsExpandWidth = 24;
     this.buttonItem4.Text = "&Save...";
     //
     // buttonItem5
     //
     this.buttonItem5.BeginGroup = true;
     this.buttonItem5.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem5.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem5.Image")));
     this.buttonItem5.ImagePaddingHorizontal = 8;
     this.buttonItem5.Name = "buttonItem5";
     this.buttonItem5.SubItemsExpandWidth = 24;
     this.buttonItem5.Text = "S&hare...";
     //
     // buttonItem6
     //
     this.buttonItem6.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem6.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem6.Image")));
     this.buttonItem6.ImagePaddingHorizontal = 8;
     this.buttonItem6.Name = "buttonItem6";
     this.buttonItem6.SubItemsExpandWidth = 24;
     this.buttonItem6.Text = "&Print...";
     //
     // buttonItem7
     //
     this.buttonItem7.BeginGroup = true;
     this.buttonItem7.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem7.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem7.Image")));
     this.buttonItem7.ImagePaddingHorizontal = 8;
     this.buttonItem7.Name = "buttonItem7";
     this.buttonItem7.SubItemsExpandWidth = 24;
     this.buttonItem7.Text = "&Close";
     //
     // galleryContainer1
     //
     //
     //
     //
     this.galleryContainer1.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.galleryContainer1.EnableGalleryPopup = false;
     this.galleryContainer1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.galleryContainer1.MinimumSize = new System.Drawing.Size(180, 240);
     this.galleryContainer1.MultiLine = false;
     this.galleryContainer1.Name = "galleryContainer1";
     this.galleryContainer1.PopupUsesStandardScrollbars = false;
     this.galleryContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem8,
     this.buttonItem8,
     this.buttonItem9,
     this.buttonItem10,
     this.buttonItem11});
     //
     // labelItem8
     //
     this.labelItem8.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem8.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem8.CanCustomize = false;
     this.labelItem8.Name = "labelItem8";
     this.labelItem8.PaddingBottom = 2;
     this.labelItem8.PaddingTop = 2;
     this.labelItem8.Stretch = true;
     this.labelItem8.Text = "Recent Documents";
     //
     // buttonItem8
     //
     this.buttonItem8.ImagePaddingHorizontal = 8;
     this.buttonItem8.Name = "buttonItem8";
     this.buttonItem8.Text = "&1. Short News 5-7.rtf";
     //
     // buttonItem9
     //
     this.buttonItem9.ImagePaddingHorizontal = 8;
     this.buttonItem9.Name = "buttonItem9";
     this.buttonItem9.Text = "&2. Prospect Email.rtf";
     //
     // buttonItem10
     //
     this.buttonItem10.ImagePaddingHorizontal = 8;
     this.buttonItem10.Name = "buttonItem10";
     this.buttonItem10.Text = "&3. Customer Email.rtf";
     //
     // buttonItem11
     //
     this.buttonItem11.ImagePaddingHorizontal = 8;
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.Text = "&4. example.rtf";
     //
     // itemContainer4
     //
     //
     //
     //
     this.itemContainer4.BackgroundStyle.Class = "RibbonFileMenuBottomContainer";
     this.itemContainer4.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Right;
     this.itemContainer4.Name = "itemContainer4";
     this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem12,
     this.buttonItem13});
     //
     // buttonItem12
     //
     this.buttonItem12.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem12.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem12.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem12.Image")));
     this.buttonItem12.ImagePaddingHorizontal = 8;
     this.buttonItem12.Name = "buttonItem12";
     this.buttonItem12.SubItemsExpandWidth = 24;
     this.buttonItem12.Text = "Opt&ions";
     //
     // buttonItem13
     //
     this.buttonItem13.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem13.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonItem13.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem13.Image")));
     this.buttonItem13.ImagePaddingHorizontal = 8;
     this.buttonItem13.Name = "buttonItem13";
     this.buttonItem13.SubItemsExpandWidth = 24;
     this.buttonItem13.Text = "E&xit";
     //
     // buttonItem1
     //
     this.buttonItem1.ImagePaddingHorizontal = 8;
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem37,
     this.buttonItem38,
     this.buttonItem39,
     this.buttonItem40});
     this.buttonItem1.Text = "Pacienti";
     //
     // buttonItem37
     //
     this.buttonItem37.ImagePaddingHorizontal = 8;
     this.buttonItem37.Name = "buttonItem37";
     this.buttonItem37.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlN);
     this.buttonItem37.Text = "Cautare dupa &nume";
     this.buttonItem37.Click += new System.EventHandler(this.buttonItem37_Click);
     //
     // buttonItem38
     //
     this.buttonItem38.ImagePaddingHorizontal = 8;
     this.buttonItem38.Name = "buttonItem38";
     this.buttonItem38.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(2, 7, 2, 5);
     this.buttonItem38.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.buttonItem38.Text = "Cautare dupa &cnp";
     this.buttonItem38.Click += new System.EventHandler(this.buttonItem38_Click);
     //
     // buttonItem39
     //
     this.buttonItem39.ImagePaddingHorizontal = 8;
     this.buttonItem39.Name = "buttonItem39";
     this.buttonItem39.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlI);
     this.buttonItem39.Text = "Cautare dupa cod &inregistrare";
     this.buttonItem39.Click += new System.EventHandler(this.buttonItem39_Click);
     //
     // buttonItem40
     //
     this.buttonItem40.ImagePaddingHorizontal = 8;
     this.buttonItem40.Name = "buttonItem40";
     this.buttonItem40.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlS);
     this.buttonItem40.Text = "&Stergere din baza de date";
     this.buttonItem40.Click += new System.EventHandler(this.buttonItem40_Click);
     //
     // buttonItem14
     //
     this.buttonItem14.ImagePaddingHorizontal = 8;
     this.buttonItem14.Name = "buttonItem14";
     this.buttonItem14.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem41,
     this.buttonItem42,
     this.buttonItem43});
     this.buttonItem14.Text = "Utilizatori";
     //
     // buttonItem41
     //
     this.buttonItem41.ImagePaddingHorizontal = 8;
     this.buttonItem41.Name = "buttonItem41";
     this.buttonItem41.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.buttonItem41.Text = "&Adaugare utilizator nou";
     //
     // buttonItem42
     //
     this.buttonItem42.ImagePaddingHorizontal = 8;
     this.buttonItem42.Name = "buttonItem42";
     this.buttonItem42.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlR);
     this.buttonItem42.Text = "Ste&rgere utilizator";
     //
     // buttonItem43
     //
     this.buttonItem43.ImagePaddingHorizontal = 8;
     this.buttonItem43.Name = "buttonItem43";
     this.buttonItem43.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlP);
     this.buttonItem43.Text = "Schimbare &parola administrator";
     //
     // buttonItem15
     //
     this.buttonItem15.ImagePaddingHorizontal = 8;
     this.buttonItem15.Name = "buttonItem15";
     this.buttonItem15.Text = "Setari";
     //
     // buttonItem17
     //
     this.buttonItem17.ImagePaddingHorizontal = 8;
     this.buttonItem17.Name = "buttonItem17";
     this.buttonItem17.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem44,
     this.buttonItem45});
     this.buttonItem17.Text = "Ajutor";
     //
     // buttonItem44
     //
     this.buttonItem44.ImagePaddingHorizontal = 8;
     this.buttonItem44.Name = "buttonItem44";
     this.buttonItem44.Shape = new DevComponents.DotNetBar.RoundRectangleShapeDescriptor(2, 3, 2, 3);
     this.buttonItem44.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.buttonItem44.Text = "Suport tehnic";
     this.buttonItem44.Click += new System.EventHandler(this.buttonItem44_Click);
     //
     // buttonItem45
     //
     this.buttonItem45.ImagePaddingHorizontal = 8;
     this.buttonItem45.Name = "buttonItem45";
     this.buttonItem45.Text = "Despre MedLab...";
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // sideBar1
     //
     this.sideBar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.sideBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.sideBar1.Appearance = DevComponents.DotNetBar.eSideBarAppearance.Flat;
     this.sideBar1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(243)))), ((int)(((byte)(250)))));
     this.sideBar1.BorderStyle = DevComponents.DotNetBar.eBorderType.Etched;
     this.sideBar1.ExpandedPanel = this.sideBarPanelItem3;
     this.sideBar1.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.sideBar1.Location = new System.Drawing.Point(32, 139);
     this.sideBar1.Name = "sideBar1";
     this.sideBar1.Panels.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.sideBarPanelItem2,
     this.sideBarPanelItem3,
     this.sideBarPanelItem4,
     this.sideBarPanelItem5,
     this.sideBarPanelItem1});
     this.sideBar1.Size = new System.Drawing.Size(242, 523);
     this.sideBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.sideBar1.TabIndex = 2;
     this.sideBar1.Text = "sideBar1";
     //
     // sideBarPanelItem3
     //
     this.sideBarPanelItem3.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem3.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem3.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem3.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem3.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem3.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem3.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem3.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem3.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem3.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem3.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem3.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem3.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem3.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem3.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem3.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem3.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem3.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem3.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem3.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem3.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem3.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem3.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem3.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem3.Name = "sideBarPanelItem3";
     this.sideBarPanelItem3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem27,
     this.buttonItem28,
     this.buttonItem29});
     this.sideBarPanelItem3.Text = "Utilizator";
     //
     // buttonItem27
     //
     this.buttonItem27.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem27.FontBold = true;
     this.buttonItem27.ForeColor = System.Drawing.Color.Black;
     this.buttonItem27.Image = global::MedLab2.Properties.Resources.add_user___Copy;
     this.buttonItem27.ImagePaddingHorizontal = 8;
     this.buttonItem27.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem27.Name = "buttonItem27";
     this.buttonItem27.Text = "Adaugare utilizator nou";
     this.buttonItem27.Click += new System.EventHandler(this.buttonItem27_Click);
     //
     // buttonItem28
     //
     this.buttonItem28.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem28.FontBold = true;
     this.buttonItem28.ForeColor = System.Drawing.Color.Black;
     this.buttonItem28.Image = global::MedLab2.Properties.Resources.remove_user_2;
     this.buttonItem28.ImagePaddingHorizontal = 8;
     this.buttonItem28.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem28.Name = "buttonItem28";
     this.buttonItem28.Text = "Stergere utilizator din baza de date";
     this.buttonItem28.Click += new System.EventHandler(this.buttonItem28_Click);
     //
     // buttonItem29
     //
     this.buttonItem29.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem29.FontBold = true;
     this.buttonItem29.ForeColor = System.Drawing.Color.Black;
     this.buttonItem29.Image = global::MedLab2.Properties.Resources.edit_user_2;
     this.buttonItem29.ImagePaddingHorizontal = 8;
     this.buttonItem29.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem29.Name = "buttonItem29";
     this.buttonItem29.Text = "Schimbare parola utilizator";
     this.buttonItem29.Click += new System.EventHandler(this.buttonItem29_Click);
     //
     // sideBarPanelItem2
     //
     this.sideBarPanelItem2.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem2.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem2.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem2.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem2.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem2.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem2.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem2.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem2.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem2.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem2.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem2.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem2.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem2.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem2.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem2.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem2.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem2.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem2.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem2.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem2.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem2.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem2.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem2.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem2.Name = "sideBarPanelItem2";
     this.sideBarPanelItem2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem23,
     this.buttonItem24,
     this.buttonItem25,
     this.buttonItem26});
     this.sideBarPanelItem2.Text = "Pacienti";
     this.sideBarPanelItem2.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Far;
     //
     // buttonItem23
     //
     this.buttonItem23.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem23.FontBold = true;
     this.buttonItem23.ForeColor = System.Drawing.Color.Black;
     this.buttonItem23.Image = global::MedLab2.Properties.Resources.Find2;
     this.buttonItem23.ImagePaddingHorizontal = 8;
     this.buttonItem23.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem23.Name = "buttonItem23";
     this.buttonItem23.Text = "Cautare dupa nume";
     this.buttonItem23.Click += new System.EventHandler(this.buttonItem23_Click);
     //
     // buttonItem24
     //
     this.buttonItem24.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem24.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem24.FontBold = true;
     this.buttonItem24.ForeColor = System.Drawing.Color.Black;
     this.buttonItem24.Image = global::MedLab2.Properties.Resources.Find2;
     this.buttonItem24.ImagePaddingHorizontal = 8;
     this.buttonItem24.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem24.ImageSmall = ((System.Drawing.Image)(resources.GetObject("buttonItem24.ImageSmall")));
     this.buttonItem24.Name = "buttonItem24";
     this.buttonItem24.Text = "Cautare dupa cnp";
     this.buttonItem24.Click += new System.EventHandler(this.buttonItem24_Click);
     //
     // buttonItem25
     //
     this.buttonItem25.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem25.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem25.FontBold = true;
     this.buttonItem25.ForeColor = System.Drawing.Color.Black;
     this.buttonItem25.Image = global::MedLab2.Properties.Resources.Find2;
     this.buttonItem25.ImagePaddingHorizontal = 8;
     this.buttonItem25.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem25.Name = "buttonItem25";
     this.buttonItem25.Text = "Cautare dupa cod inregistrare";
     this.buttonItem25.Click += new System.EventHandler(this.buttonItem25_Click);
     //
     // buttonItem26
     //
     this.buttonItem26.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem26.FontBold = true;
     this.buttonItem26.ForeColor = System.Drawing.Color.Black;
     this.buttonItem26.Image = global::MedLab2.Properties.Resources.remove_user_2;
     this.buttonItem26.ImagePaddingHorizontal = 8;
     this.buttonItem26.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem26.Name = "buttonItem26";
     this.buttonItem26.Text = "Stergere din baza de date";
     this.buttonItem26.Click += new System.EventHandler(this.buttonItem26_Click);
     //
     // sideBarPanelItem4
     //
     this.sideBarPanelItem4.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem4.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem4.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem4.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem4.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem4.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem4.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem4.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem4.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem4.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem4.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem4.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem4.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem4.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem4.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem4.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem4.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem4.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem4.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem4.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem4.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem4.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem4.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem4.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem4.Name = "sideBarPanelItem4";
     this.sideBarPanelItem4.Text = "Setari";
     //
     // sideBarPanelItem5
     //
     this.sideBarPanelItem5.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem5.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem5.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem5.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem5.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem5.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem5.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem5.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem5.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem5.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem5.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem5.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem5.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem5.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem5.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem5.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem5.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem5.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem5.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem5.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem5.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem5.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem5.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem5.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem5.Name = "sideBarPanelItem5";
     this.sideBarPanelItem5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem30,
     this.buttonItem31});
     this.sideBarPanelItem5.Text = "Ajutor";
     //
     // buttonItem30
     //
     this.buttonItem30.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem30.FontBold = true;
     this.buttonItem30.ForeColor = System.Drawing.Color.Black;
     this.buttonItem30.Image = global::MedLab2.Properties.Resources.HelpIcon_2;
     this.buttonItem30.ImagePaddingHorizontal = 8;
     this.buttonItem30.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem30.Name = "buttonItem30";
     this.buttonItem30.Text = "Suport tehnic";
     this.buttonItem30.Click += new System.EventHandler(this.buttonItem30_Click);
     //
     // buttonItem31
     //
     this.buttonItem31.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem31.FontBold = true;
     this.buttonItem31.ForeColor = System.Drawing.Color.Black;
     this.buttonItem31.Image = global::MedLab2.Properties.Resources.ReflectionImage2;
     this.buttonItem31.ImagePaddingHorizontal = 8;
     this.buttonItem31.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem31.Name = "buttonItem31";
     this.buttonItem31.Text = "Despre MedLAB...";
     this.buttonItem31.Click += new System.EventHandler(this.buttonItem31_Click);
     //
     // sideBarPanelItem1
     //
     this.sideBarPanelItem1.BackgroundStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(232)))), ((int)(((byte)(232)))));
     this.sideBarPanelItem1.BackgroundStyle.BackColor2.Color = System.Drawing.Color.White;
     this.sideBarPanelItem1.BackgroundStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem1.BackgroundStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem1.HeaderHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem1.HeaderHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem1.HeaderHotStyle.GradientAngle = 90;
     this.sideBarPanelItem1.HeaderSideHotStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem1.HeaderSideHotStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem1.HeaderSideHotStyle.GradientAngle = 90;
     this.sideBarPanelItem1.HeaderSideStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(220)))), ((int)(((byte)(248)))));
     this.sideBarPanelItem1.HeaderSideStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(137)))), ((int)(((byte)(207)))));
     this.sideBarPanelItem1.HeaderSideStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem1.HeaderSideStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem1.HeaderSideStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem1.HeaderSideStyle.GradientAngle = 90;
     this.sideBarPanelItem1.HeaderStyle.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.sideBarPanelItem1.HeaderStyle.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.sideBarPanelItem1.HeaderStyle.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.sideBarPanelItem1.HeaderStyle.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.sideBarPanelItem1.HeaderStyle.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Right | DevComponents.DotNetBar.eBorderSide.Top)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.sideBarPanelItem1.HeaderStyle.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
     this.sideBarPanelItem1.HeaderStyle.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(102)))));
     this.sideBarPanelItem1.HeaderStyle.GradientAngle = 90;
     this.sideBarPanelItem1.Name = "sideBarPanelItem1";
     this.sideBarPanelItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem18,
     this.buttonItem19,
     this.buttonItem20,
     this.buttonItem21,
     this.buttonItem22});
     this.sideBarPanelItem1.Text = "Instrumente";
     //
     // buttonItem18
     //
     this.buttonItem18.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem18.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem18.FontBold = true;
     this.buttonItem18.ForeColor = System.Drawing.Color.Black;
     this.buttonItem18.Image = global::MedLab2.Properties.Resources.Word;
     this.buttonItem18.ImagePaddingHorizontal = 8;
     this.buttonItem18.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem18.Name = "buttonItem18";
     this.buttonItem18.Text = "Word";
     this.buttonItem18.Click += new System.EventHandler(this.buttonItem18_Click);
     //
     // buttonItem19
     //
     this.buttonItem19.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem19.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem19.FontBold = true;
     this.buttonItem19.ForeColor = System.Drawing.Color.Black;
     this.buttonItem19.Image = global::MedLab2.Properties.Resources.Excel;
     this.buttonItem19.ImagePaddingHorizontal = 8;
     this.buttonItem19.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem19.Name = "buttonItem19";
     this.buttonItem19.Text = "Excel";
     this.buttonItem19.Click += new System.EventHandler(this.buttonItem19_Click);
     //
     // buttonItem20
     //
     this.buttonItem20.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem20.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem20.FontBold = true;
     this.buttonItem20.ForeColor = System.Drawing.Color.Black;
     this.buttonItem20.Image = global::MedLab2.Properties.Resources.OutLook;
     this.buttonItem20.ImagePaddingHorizontal = 8;
     this.buttonItem20.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem20.Name = "buttonItem20";
     this.buttonItem20.Text = "Outlook";
     this.buttonItem20.Click += new System.EventHandler(this.buttonItem20_Click);
     //
     // buttonItem21
     //
     this.buttonItem21.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem21.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem21.FontBold = true;
     this.buttonItem21.ForeColor = System.Drawing.Color.Black;
     this.buttonItem21.Image = global::MedLab2.Properties.Resources.PowerPoint;
     this.buttonItem21.ImagePaddingHorizontal = 8;
     this.buttonItem21.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem21.Name = "buttonItem21";
     this.buttonItem21.Text = "PowerPoint";
     this.buttonItem21.Click += new System.EventHandler(this.buttonItem21_Click);
     //
     // buttonItem22
     //
     this.buttonItem22.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem22.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonItem22.FontBold = true;
     this.buttonItem22.ForeColor = System.Drawing.Color.Black;
     this.buttonItem22.Image = global::MedLab2.Properties.Resources.Calc;
     this.buttonItem22.ImagePaddingHorizontal = 8;
     this.buttonItem22.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem22.Name = "buttonItem22";
     this.buttonItem22.Text = "Calculator";
     this.buttonItem22.Click += new System.EventHandler(this.buttonItem22_Click);
     //
     // tabControl2
     //
     this.tabControl2.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.tabControl2.BackColor = System.Drawing.Color.Transparent;
     this.tabControl2.CanReorderTabs = true;
     this.tabControl2.Controls.Add(this.tabControlPanel1);
     this.tabControl2.Controls.Add(this.tabControlPanel2);
     this.tabControl2.Controls.Add(this.tabControlPanel3);
     this.tabControl2.Location = new System.Drawing.Point(303, 139);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.tabControl2.SelectedTabIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(592, 601);
     this.tabControl2.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
     this.tabControl2.TabIndex = 4;
     this.tabControl2.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.MultilineWithNavigationBox;
     this.tabControl2.Tabs.Add(this.tabItem2);
     this.tabControl2.Tabs.Add(this.tabItem1);
     this.tabControl2.Tabs.Add(this.tabItem3);
     this.tabControl2.TabScrollAutoRepeat = true;
     this.tabControl2.TabStripTabStop = true;
     this.tabControl2.Text = "tabControl2";
     this.tabControl2.Click += new System.EventHandler(this.tabControl2_Click);
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.groupPanel6);
     this.tabControlPanel1.Controls.Add(this.groupPanel5);
     this.tabControlPanel1.Controls.Add(this.groupPanel4);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 22);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(592, 579);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 2;
     this.tabControlPanel1.TabItem = this.tabItem1;
     //
     // groupPanel6
     //
     this.groupPanel6.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel6.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel6.Controls.Add(this.buttonX5);
     this.groupPanel6.Controls.Add(this.buttonX3);
     this.groupPanel6.Controls.Add(this.buttonX2);
     this.groupPanel6.Controls.Add(this.dataGridViewX1);
     this.groupPanel6.DrawTitleBox = false;
     this.groupPanel6.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel6.Location = new System.Drawing.Point(21, 212);
     this.groupPanel6.Name = "groupPanel6";
     this.groupPanel6.Size = new System.Drawing.Size(645, 469);
     //
     //
     //
     this.groupPanel6.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel6.Style.BackColorGradientAngle = 90;
     this.groupPanel6.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel6.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderBottomWidth = 1;
     this.groupPanel6.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel6.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderLeftWidth = 1;
     this.groupPanel6.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderRightWidth = 1;
     this.groupPanel6.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel6.Style.BorderTopWidth = 1;
     this.groupPanel6.Style.CornerDiameter = 4;
     this.groupPanel6.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel6.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel6.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel6.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel6.TabIndex = 12;
     this.groupPanel6.Text = "Introducere rezultate analize";
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX5.Location = new System.Drawing.Point(26, 289);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(137, 56);
     this.buttonX5.TabIndex = 6;
     this.buttonX5.Text = "Adauga in baza de date";
     //
     // buttonX3
     //
     this.buttonX3.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX3.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX3.Location = new System.Drawing.Point(343, 289);
     this.buttonX3.Name = "buttonX3";
     this.buttonX3.Size = new System.Drawing.Size(137, 56);
     this.buttonX3.TabIndex = 5;
     this.buttonX3.Text = "E-mail";
     this.buttonX3.Click += new System.EventHandler(this.buttonX3_Click);
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX2.Location = new System.Drawing.Point(182, 290);
     this.buttonX2.Name = "buttonX2";
     this.buttonX2.Size = new System.Drawing.Size(137, 56);
     this.buttonX2.TabIndex = 4;
     this.buttonX2.Text = "Printare";
     this.buttonX2.Click += new System.EventHandler(this.buttonX2_Click);
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.AllowUserToAddRows = false;
     this.dataGridViewX1.AllowUserToDeleteRows = false;
     this.dataGridViewX1.AllowUserToOrderColumns = true;
     this.dataGridViewX1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(3, 12);
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.Size = new System.Drawing.Size(562, 260);
     this.dataGridViewX1.TabIndex = 2;
     //
     // groupPanel5
     //
     this.groupPanel5.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel5.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel5.Controls.Add(this.rez_danlz);
     this.groupPanel5.Controls.Add(this.rez_medic);
     this.groupPanel5.Controls.Add(this.rez_dn);
     this.groupPanel5.Controls.Add(this.rez_cnp);
     this.groupPanel5.Controls.Add(this.label21);
     this.groupPanel5.Controls.Add(this.label20);
     this.groupPanel5.Controls.Add(this.label19);
     this.groupPanel5.Controls.Add(this.label18);
     this.groupPanel5.Controls.Add(this.label17);
     this.groupPanel5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel5.Location = new System.Drawing.Point(21, 83);
     this.groupPanel5.Name = "groupPanel5";
     this.groupPanel5.Size = new System.Drawing.Size(624, 125);
     //
     //
     //
     this.groupPanel5.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel5.Style.BackColorGradientAngle = 90;
     this.groupPanel5.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel5.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderBottomWidth = 1;
     this.groupPanel5.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel5.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderLeftWidth = 1;
     this.groupPanel5.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderRightWidth = 1;
     this.groupPanel5.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel5.Style.BorderTopWidth = 1;
     this.groupPanel5.Style.CornerDiameter = 4;
     this.groupPanel5.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel5.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel5.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel5.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel5.TabIndex = 1;
     this.groupPanel5.Text = "Rezultatele cautarii";
     this.groupPanel5.Click += new System.EventHandler(this.groupPanel5_Click);
     //
     // rez_danlz
     //
     this.rez_danlz.AutoSize = true;
     this.rez_danlz.BackColor = System.Drawing.Color.Transparent;
     this.rez_danlz.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_danlz.Location = new System.Drawing.Point(270, 78);
     this.rez_danlz.Name = "rez_danlz";
     this.rez_danlz.Size = new System.Drawing.Size(0, 16);
     this.rez_danlz.TabIndex = 26;
     //
     // rez_medic
     //
     this.rez_medic.AutoSize = true;
     this.rez_medic.BackColor = System.Drawing.Color.Transparent;
     this.rez_medic.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_medic.Location = new System.Drawing.Point(270, 53);
     this.rez_medic.Name = "rez_medic";
     this.rez_medic.Size = new System.Drawing.Size(0, 16);
     this.rez_medic.TabIndex = 25;
     //
     // rez_dn
     //
     this.rez_dn.AutoSize = true;
     this.rez_dn.BackColor = System.Drawing.Color.Transparent;
     this.rez_dn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_dn.Location = new System.Drawing.Point(270, 27);
     this.rez_dn.Name = "rez_dn";
     this.rez_dn.Size = new System.Drawing.Size(0, 16);
     this.rez_dn.TabIndex = 24;
     //
     // rez_cnp
     //
     this.rez_cnp.AutoSize = true;
     this.rez_cnp.BackColor = System.Drawing.Color.Transparent;
     this.rez_cnp.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rez_cnp.Location = new System.Drawing.Point(270, 0);
     this.rez_cnp.Name = "rez_cnp";
     this.rez_cnp.Size = new System.Drawing.Size(0, 16);
     this.rez_cnp.TabIndex = 23;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.Location = new System.Drawing.Point(23, 78);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(181, 16);
     this.label21.TabIndex = 22;
     this.label21.Text = "Data efectuarii analizelor";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.Location = new System.Drawing.Point(23, 53);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(94, 16);
     this.label20.TabIndex = 21;
     this.label20.Text = "Nume medic";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.Location = new System.Drawing.Point(23, 27);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(96, 16);
     this.label19.TabIndex = 20;
     this.label19.Text = "Data nasterii";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.Location = new System.Drawing.Point(23, 0);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(39, 16);
     this.label18.TabIndex = 19;
     this.label18.Text = "CNP";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(178, -21);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(48, 16);
     this.label17.TabIndex = 18;
     this.label17.Text = "Nume";
     //
     // groupPanel4
     //
     this.groupPanel4.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel4.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel4.Controls.Add(this.buttonX4);
     this.groupPanel4.Controls.Add(this.label1);
     this.groupPanel4.Controls.Add(this.textBox6);
     this.groupPanel4.Location = new System.Drawing.Point(21, 15);
     this.groupPanel4.Name = "groupPanel4";
     this.groupPanel4.Size = new System.Drawing.Size(624, 62);
     //
     //
     //
     this.groupPanel4.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel4.Style.BackColorGradientAngle = 90;
     this.groupPanel4.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel4.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderBottomWidth = 1;
     this.groupPanel4.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel4.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderLeftWidth = 1;
     this.groupPanel4.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderRightWidth = 1;
     this.groupPanel4.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel4.Style.BorderTopWidth = 1;
     this.groupPanel4.Style.CornerDiameter = 4;
     this.groupPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel4.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel4.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel4.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel4.TabIndex = 0;
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX4.Location = new System.Drawing.Point(443, 3);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(112, 37);
     this.buttonX4.TabIndex = 6;
     this.buttonX4.Text = "Ok";
     this.buttonX4.Click += new System.EventHandler(this.buttonX4_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(23, 23);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(117, 16);
     this.label1.TabIndex = 3;
     this.label1.Text = "Cautare pacient";
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(197, 17);
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new System.Drawing.Size(206, 20);
     this.textBox6.TabIndex = 2;
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel1;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "Introducere rezultate analize";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.AutoScroll = true;
     this.tabControlPanel2.Controls.Add(this.groupPanel3);
     this.tabControlPanel2.Controls.Add(this.groupPanel2);
     this.tabControlPanel2.Controls.Add(this.groupPanel1);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 22);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(592, 579);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 1;
     this.tabControlPanel2.TabItem = this.tabItem2;
     this.tabControlPanel2.Click += new System.EventHandler(this.tabControlPanel2_Click);
     //
     // groupPanel3
     //
     this.groupPanel3.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel3.CanvasColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel3.Controls.Add(this.buttonX6);
     this.groupPanel3.Controls.Add(this.textBox12);
     this.groupPanel3.Controls.Add(this.label28);
     this.groupPanel3.Controls.Add(this.label16);
     this.groupPanel3.Controls.Add(this.textBox11);
     this.groupPanel3.Controls.Add(this.label14);
     this.groupPanel3.Controls.Add(this.label13);
     this.groupPanel3.Controls.Add(this.label12);
     this.groupPanel3.Controls.Add(this.checkedListBox4);
     this.groupPanel3.Controls.Add(this.checkedListBox3);
     this.groupPanel3.Controls.Add(this.checkedListBox2);
     this.groupPanel3.Controls.Add(this.checkedListBox1);
     this.groupPanel3.Controls.Add(this.label11);
     this.groupPanel3.DrawTitleBox = false;
     this.groupPanel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel3.IsShadowEnabled = true;
     this.groupPanel3.Location = new System.Drawing.Point(15, 346);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(616, 336);
     //
     //
     //
     this.groupPanel3.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel3.Style.BackColorGradientAngle = 90;
     this.groupPanel3.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderBottomWidth = 1;
     this.groupPanel3.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderLeftWidth = 1;
     this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderRightWidth = 1;
     this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel3.Style.BorderTopWidth = 1;
     this.groupPanel3.Style.CornerDiameter = 4;
     this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel3.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel3.TabIndex = 24;
     this.groupPanel3.Text = "Analize Solicitate";
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.BackColor = System.Drawing.Color.Maroon;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
     this.buttonX6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX6.Location = new System.Drawing.Point(325, 248);
     this.buttonX6.Name = "buttonX6";
     this.buttonX6.Size = new System.Drawing.Size(137, 56);
     this.buttonX6.TabIndex = 25;
     this.buttonX6.Text = "Adauga in baza de date";
     this.buttonX6.Click += new System.EventHandler(this.buttonX6_Click);
     //
     // textBox12
     //
     this.textBox12.BackColor = System.Drawing.Color.White;
     this.textBox12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox12.Location = new System.Drawing.Point(150, 248);
     this.textBox12.Name = "textBox12";
     this.textBox12.Size = new System.Drawing.Size(137, 22);
     this.textBox12.TabIndex = 23;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(18, 251);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(85, 16);
     this.label28.TabIndex = 15;
     this.label28.Text = "Cod cerere";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.Location = new System.Drawing.Point(19, 282);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(73, 16);
     this.label16.TabIndex = 22;
     this.label16.Text = "Cost total";
     //
     // textBox11
     //
     this.textBox11.BackColor = System.Drawing.Color.White;
     this.textBox11.Enabled = false;
     this.textBox11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox11.Location = new System.Drawing.Point(150, 276);
     this.textBox11.Name = "textBox11";
     this.textBox11.Size = new System.Drawing.Size(137, 22);
     this.textBox11.TabIndex = 21;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.Location = new System.Drawing.Point(322, 124);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(203, 16);
     this.label14.TabIndex = 20;
     this.label14.Text = "Markeri endocrini si tumorali";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(19, 124);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(170, 16);
     this.label13.TabIndex = 19;
     this.label13.Text = "Imunologie si serologie";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(322, 7);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(76, 16);
     this.label12.TabIndex = 18;
     this.label12.Text = "Biochimie";
     //
     // checkedListBox4
     //
     this.checkedListBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox4.FormattingEnabled = true;
     this.checkedListBox4.Location = new System.Drawing.Point(325, 143);
     this.checkedListBox4.Name = "checkedListBox4";
     this.checkedListBox4.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox4.TabIndex = 17;
     //
     // checkedListBox3
     //
     this.checkedListBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox3.FormattingEnabled = true;
     this.checkedListBox3.Location = new System.Drawing.Point(20, 143);
     this.checkedListBox3.Name = "checkedListBox3";
     this.checkedListBox3.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox3.TabIndex = 16;
     //
     // checkedListBox2
     //
     this.checkedListBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox2.FormattingEnabled = true;
     this.checkedListBox2.Location = new System.Drawing.Point(325, 21);
     this.checkedListBox2.Name = "checkedListBox2";
     this.checkedListBox2.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox2.TabIndex = 14;
     //
     // checkedListBox1
     //
     this.checkedListBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.Location = new System.Drawing.Point(20, 21);
     this.checkedListBox1.Name = "checkedListBox1";
     this.checkedListBox1.Size = new System.Drawing.Size(267, 99);
     this.checkedListBox1.TabIndex = 13;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(19, 2);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(97, 16);
     this.label11.TabIndex = 12;
     this.label11.Text = "Hematologie";
     //
     // groupPanel2
     //
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.textBox9);
     this.groupPanel2.Controls.Add(this.textBox10);
     this.groupPanel2.Controls.Add(this.textBox8);
     this.groupPanel2.Controls.Add(this.label10);
     this.groupPanel2.Controls.Add(this.label9);
     this.groupPanel2.Controls.Add(this.label7);
     this.groupPanel2.DrawTitleBox = false;
     this.groupPanel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel2.IsShadowEnabled = true;
     this.groupPanel2.Location = new System.Drawing.Point(15, 228);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(616, 116);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 23;
     this.groupPanel2.Text = "Date medic";
     //
     // textBox9
     //
     this.textBox9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox9.Location = new System.Drawing.Point(244, 32);
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new System.Drawing.Size(303, 20);
     this.textBox9.TabIndex = 26;
     //
     // textBox10
     //
     this.textBox10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox10.Location = new System.Drawing.Point(244, 58);
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new System.Drawing.Size(303, 20);
     this.textBox10.TabIndex = 24;
     //
     // textBox8
     //
     this.textBox8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox8.Location = new System.Drawing.Point(244, 6);
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new System.Drawing.Size(303, 20);
     this.textBox8.TabIndex = 25;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(38, 58);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(61, 16);
     this.label10.TabIndex = 23;
     this.label10.Text = "Telefon";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(39, 32);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(48, 16);
     this.label9.TabIndex = 22;
     this.label9.Text = "Spital";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(39, 6);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(48, 16);
     this.label7.TabIndex = 21;
     this.label7.Text = "Nume";
     //
     // groupPanel1
     //
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.textBox1);
     this.groupPanel1.Controls.Add(this.dateTimePicker1);
     this.groupPanel1.Controls.Add(this.label15);
     this.groupPanel1.Controls.Add(this.textBox7);
     this.groupPanel1.Controls.Add(this.label8);
     this.groupPanel1.Controls.Add(this.textBox4);
     this.groupPanel1.Controls.Add(this.textBox5);
     this.groupPanel1.Controls.Add(this.label2);
     this.groupPanel1.Controls.Add(this.label3);
     this.groupPanel1.Controls.Add(this.textBox3);
     this.groupPanel1.Controls.Add(this.label4);
     this.groupPanel1.Controls.Add(this.textBox2);
     this.groupPanel1.Controls.Add(this.label6);
     this.groupPanel1.Controls.Add(this.label5);
     this.groupPanel1.DrawTitleBox = false;
     this.groupPanel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupPanel1.IsShadowEnabled = true;
     this.groupPanel1.Location = new System.Drawing.Point(15, -2);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(616, 220);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.superTooltip1.SetSuperTooltip(this.groupPanel1, new DevComponents.DotNetBar.SuperTooltipInfo("MedLAB Help", "", "", global::MedLab2.Properties.Resources.ReflectionImage, global::MedLab2.Properties.Resources.ReflectionImage2, DevComponents.DotNetBar.eTooltipColor.System));
     this.groupPanel1.TabIndex = 22;
     this.groupPanel1.Text = "Date pacient";
     //
     // textBox1
     //
     this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.Location = new System.Drawing.Point(244, 2);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(303, 20);
     this.textBox1.TabIndex = 21;
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CalendarFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dateTimePicker1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dateTimePicker1.Location = new System.Drawing.Point(244, 33);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(303, 20);
     this.dateTimePicker1.TabIndex = 34;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.Location = new System.Drawing.Point(45, 137);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(52, 16);
     this.label15.TabIndex = 33;
     this.label15.Text = "E-mail";
     //
     // textBox7
     //
     this.textBox7.BackColor = System.Drawing.Color.White;
     this.textBox7.Enabled = false;
     this.textBox7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox7.Location = new System.Drawing.Point(244, 163);
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new System.Drawing.Size(303, 20);
     this.textBox7.TabIndex = 32;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(39, 111);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(61, 16);
     this.label8.TabIndex = 30;
     this.label8.Text = "Telefon";
     //
     // textBox4
     //
     this.textBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox4.Location = new System.Drawing.Point(244, 111);
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new System.Drawing.Size(303, 20);
     this.textBox4.TabIndex = 29;
     //
     // textBox5
     //
     this.textBox5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox5.Location = new System.Drawing.Point(244, 137);
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new System.Drawing.Size(303, 20);
     this.textBox5.TabIndex = 31;
     this.textBox5.Text = "*****@*****.**";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(39, 6);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(48, 16);
     this.label2.TabIndex = 22;
     this.label2.Text = "Nume";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(37, 33);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(96, 16);
     this.label3.TabIndex = 23;
     this.label3.Text = "Data nasterii";
     //
     // textBox3
     //
     this.textBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox3.Location = new System.Drawing.Point(244, 85);
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(303, 20);
     this.textBox3.TabIndex = 28;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(39, 59);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(39, 16);
     this.label4.TabIndex = 24;
     this.label4.Text = "CNP";
     //
     // textBox2
     //
     this.textBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox2.Location = new System.Drawing.Point(244, 59);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(303, 20);
     this.textBox2.TabIndex = 25;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(37, 163);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(181, 16);
     this.label6.TabIndex = 27;
     this.label6.Text = "Data efectuarii analizelor";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(39, 85);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(58, 16);
     this.label5.TabIndex = 26;
     this.label5.Text = "Adresa";
     //
     // tabItem2
     //
     this.tabItem2.AttachedControl = this.tabControlPanel2;
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.Text = "Introducere date pacient";
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 22);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(592, 579);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 3;
     this.tabControlPanel3.TabItem = this.tabItem3;
     //
     // tabItem3
     //
     this.tabItem3.AttachedControl = this.tabControlPanel3;
     this.tabItem3.Name = "tabItem3";
     this.tabItem3.Text = "Statistica";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX1.Location = new System.Drawing.Point(3, 372);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(137, 56);
     this.buttonX1.TabIndex = 3;
     this.buttonX1.Text = "Adauga in baza de date";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // reflectionImage2
     //
     this.reflectionImage2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     //
     //
     //
     this.reflectionImage2.BackgroundStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.reflectionImage2.Image = global::MedLab2.Properties.Resources.ReflectionImage;
     this.reflectionImage2.Location = new System.Drawing.Point(32, 668);
     this.reflectionImage2.Name = "reflectionImage2";
     this.reflectionImage2.Size = new System.Drawing.Size(77, 75);
     this.reflectionImage2.TabIndex = 6;
     //
     // reflectionLabel1
     //
     this.reflectionLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.reflectionLabel1.Location = new System.Drawing.Point(115, 662);
     this.reflectionLabel1.Name = "reflectionLabel1";
     this.reflectionLabel1.Size = new System.Drawing.Size(147, 81);
     this.reflectionLabel1.TabIndex = 7;
     this.reflectionLabel1.Text = "<b><font size=\"+14\"><i>Med</i><font color=\"#B02B2C\">LAB</font></font></b>";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.AutoScrollMargin = new System.Drawing.Size(5, 5);
     this.AutoScrollMinSize = new System.Drawing.Size(5, 5);
     this.ClientSize = new System.Drawing.Size(1284, 750);
     this.Controls.Add(this.reflectionImage2);
     this.Controls.Add(this.reflectionLabel1);
     this.Controls.Add(this.tabControl2);
     this.Controls.Add(this.sideBar1);
     this.Controls.Add(this.ribbonControl1);
     this.DoubleBuffered = true;
     this.HelpButton = true;
     this.Name = "MainForm";
     this.Text = "MedLAB";
     this.Activated += new System.EventHandler(this.MainForm_Activated);
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.Click += new System.EventHandler(this.MainForm_Click);
     this.Enter += new System.EventHandler(this.MainForm_Enter);
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribbonPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControl2)).EndInit();
     this.tabControl2.ResumeLayout(false);
     this.tabControlPanel1.ResumeLayout(false);
     this.groupPanel6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     this.groupPanel5.ResumeLayout(false);
     this.groupPanel5.PerformLayout();
     this.groupPanel4.ResumeLayout(false);
     this.groupPanel4.PerformLayout();
     this.tabControlPanel2.ResumeLayout(false);
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel3.PerformLayout();
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
Example #39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.label1.Location = new System.Drawing.Point(240, 19);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(455, 33);
     this.label1.TabIndex = 0;
     this.label1.Text = "PRIVATE APPLICATION FORM";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(12, 67);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(66, 13);
     this.label2.TabIndex = 1;
     this.label2.Text = "Solver setup";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(12, 94);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(61, 13);
     this.label3.TabIndex = 2;
     this.label3.Text = "Page setup";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(12, 120);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(59, 13);
     this.label4.TabIndex = 3;
     this.label4.Text = "Form setup";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(12, 144);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(58, 13);
     this.label5.TabIndex = 4;
     this.label5.Text = "Tree setup";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.ForeColor = System.Drawing.Color.Red;
     this.label6.Location = new System.Drawing.Point(18, 380);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(60, 13);
     this.label6.TabIndex = 8;
     this.label6.Text = "Select Item";
     //
     // checkedListBox1
     //
     this.checkedListBox1.AllowDrop = true;
     this.checkedListBox1.BackColor = System.Drawing.SystemColors.Info;
     this.checkedListBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.checkedListBox1.CheckOnClick = true;
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.Items.AddRange(new object[] {
     "Martin",
     "Jozko",
     "Peto",
     "Dagmar",
     "Rudolf",
     "Kristína",
     "Anizotropic",
     "Subtropic",
     "Orthotropic"});
     this.checkedListBox1.Location = new System.Drawing.Point(15, 405);
     this.checkedListBox1.Name = "checkedListBox1";
     this.checkedListBox1.Size = new System.Drawing.Size(200, 150);
     this.checkedListBox1.TabIndex = 7;
     //
     // Form3
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(881, 567);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.checkedListBox1);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Name = "Form3";
     this.Text = "Form3";
     this.Load += new System.EventHandler(this.Form3_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #40
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();
     this.AvoidRegionLock       = new System.Windows.Forms.CheckBox();
     this.label4                = new System.Windows.Forms.Label();
     this.SnipePokemonPokeCom   = new System.Windows.Forms.CheckBox();
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.checkBoxSnipeGym      = new System.Windows.Forms.CheckBox();
     this.PokemonImage          = new System.Windows.Forms.PictureBox();
     this.comboBox1             = new System.Windows.Forms.ComboBox();
     this.SnipeMe               = new System.Windows.Forms.Button();
     this.label6                = new System.Windows.Forms.Label();
     this.label64               = new System.Windows.Forms.Label();
     this.SnipeInfo             = new System.Windows.Forms.TextBox();
     this.groupBox2             = new System.Windows.Forms.GroupBox();
     this.checkBoxExternalWeb   = new System.Windows.Forms.CheckBox();
     this.buttonGo              = new System.Windows.Forms.Button();
     this.comboBoxLinks         = new System.Windows.Forms.ComboBox();
     this.btnInstall            = new System.Windows.Forms.Button();
     this.label1                = new System.Windows.Forms.Label();
     this.label2                = new System.Windows.Forms.Label();
     this.timerSnipe            = new System.Windows.Forms.Timer(this.components);
     this.nudSecondsSnipe       = new System.Windows.Forms.NumericUpDown();
     this.label8                = new System.Windows.Forms.Label();
     this.label9                = new System.Windows.Forms.Label();
     this.nudTriesSnipe         = new System.Windows.Forms.NumericUpDown();
     this.checkBoxSnipeTransfer = new System.Windows.Forms.CheckBox();
     this.gbLocations           = new System.Windows.Forms.GroupBox();
     this.label3                = new System.Windows.Forms.Label();
     this.listView              = new System.Windows.Forms.ListView();
     this.cuURI                       = new System.Windows.Forms.ColumnHeader();
     this.chIV                        = new System.Windows.Forms.ColumnHeader();
     this.chProbability               = new System.Windows.Forms.ColumnHeader();
     this.chDate                      = new System.Windows.Forms.ColumnHeader();
     this.chLastUpdate                = new System.Windows.Forms.ColumnHeader();
     this.chId                        = new System.Windows.Forms.ColumnHeader();
     this.chName                      = new System.Windows.Forms.ColumnHeader();
     this.chTillHidden                = new System.Windows.Forms.ColumnHeader();
     this.chUsed                      = new System.Windows.Forms.ColumnHeader();
     this.contextMenuStrip1           = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.snipeToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.markAsUsedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteAllToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.timerLocations              = new System.Windows.Forms.Timer(this.components);
     this.numSnipeMinutes             = new System.Windows.Forms.NumericUpDown();
     this.label5                      = new System.Windows.Forms.Label();
     this.timerAutosnipe              = new System.Windows.Forms.Timer(this.components);
     this.groupBox5                   = new System.Windows.Forms.GroupBox();
     this.checkBoxMinIVSnipe          = new System.Windows.Forms.CheckBox();
     this.checkBoxMinProbSnipe        = new System.Windows.Forms.CheckBox();
     this.numMinProbSnipe             = new System.Windows.Forms.NumericUpDown();
     this.numMinIVSnipe               = new System.Windows.Forms.NumericUpDown();
     this.checkBoxSelectAll           = new System.Windows.Forms.CheckBox();
     this.checkedListBox_ToSnipe      = new System.Windows.Forms.CheckedListBox();
     this.buttonImport                = new System.Windows.Forms.Button();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PokemonImage)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudSecondsSnipe)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nudTriesSnipe)).BeginInit();
     this.gbLocations.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numSnipeMinutes)).BeginInit();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numMinProbSnipe)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numMinIVSnipe)).BeginInit();
     this.SuspendLayout();
     //
     // AvoidRegionLock
     //
     this.AvoidRegionLock.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.AvoidRegionLock.AutoSize = true;
     this.AvoidRegionLock.Enabled  = false;
     this.AvoidRegionLock.Location = new System.Drawing.Point(240, 400);
     this.AvoidRegionLock.Margin   = new System.Windows.Forms.Padding(4);
     this.AvoidRegionLock.Name     = "AvoidRegionLock";
     this.AvoidRegionLock.Size     = new System.Drawing.Size(177, 17);
     this.AvoidRegionLock.TabIndex = 78;
     this.AvoidRegionLock.Text     = "Avoid Region Locked Pokemon";
     this.AvoidRegionLock.UseVisualStyleBackColor = true;
     this.AvoidRegionLock.CheckedChanged         += new System.EventHandler(this.AvoidRegionLock_CheckedChanged);
     //
     // label4
     //
     this.label4.Font      = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.DarkRed;
     this.label4.Location  = new System.Drawing.Point(13, 159);
     this.label4.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(182, 21);
     this.label4.TabIndex  = 81;
     this.label4.Text      = "(ex: 30.123456, -97.123456 )";
     //
     // SnipePokemonPokeCom
     //
     this.SnipePokemonPokeCom.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.SnipePokemonPokeCom.AutoSize = true;
     this.SnipePokemonPokeCom.Location = new System.Drawing.Point(240, 375);
     this.SnipePokemonPokeCom.Margin   = new System.Windows.Forms.Padding(4);
     this.SnipePokemonPokeCom.Name     = "SnipePokemonPokeCom";
     this.SnipePokemonPokeCom.Size     = new System.Drawing.Size(195, 17);
     this.SnipePokemonPokeCom.TabIndex = 80;
     this.SnipePokemonPokeCom.Text     = "Enable Automatic Pokemon Sniping";
     this.SnipePokemonPokeCom.UseVisualStyleBackColor = true;
     this.SnipePokemonPokeCom.CheckedChanged         += new System.EventHandler(this.SnipePokemonPokeCom_CheckedChanged);
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox1.Controls.Add(this.checkBoxSnipeGym);
     this.groupBox1.Controls.Add(this.PokemonImage);
     this.groupBox1.Controls.Add(this.comboBox1);
     this.groupBox1.Controls.Add(this.SnipeMe);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label64);
     this.groupBox1.Controls.Add(this.SnipeInfo);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Location = new System.Drawing.Point(11, 2);
     this.groupBox1.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Padding  = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox1.Size     = new System.Drawing.Size(207, 272);
     this.groupBox1.TabIndex = 84;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Manual Sniping ";
     //
     // checkBoxSnipeGym
     //
     this.checkBoxSnipeGym.Location = new System.Drawing.Point(13, 52);
     this.checkBoxSnipeGym.Name     = "checkBoxSnipeGym";
     this.checkBoxSnipeGym.Size     = new System.Drawing.Size(117, 21);
     this.checkBoxSnipeGym.TabIndex = 82;
     this.checkBoxSnipeGym.Text     = "Gym";
     this.checkBoxSnipeGym.UseVisualStyleBackColor = true;
     this.checkBoxSnipeGym.CheckedChanged         += new System.EventHandler(this.checkBoxSnipeGym_CheckedChanged);
     //
     // PokemonImage
     //
     this.PokemonImage.Location = new System.Drawing.Point(136, 34);
     this.PokemonImage.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.PokemonImage.Name     = "PokemonImage";
     this.PokemonImage.Size     = new System.Drawing.Size(60, 60);
     this.PokemonImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.PokemonImage.TabIndex = 76;
     this.PokemonImage.TabStop  = false;
     //
     // comboBox1
     //
     this.comboBox1.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboBox1.FormattingEnabled  = true;
     this.comboBox1.Location           = new System.Drawing.Point(13, 98);
     this.comboBox1.Margin             = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(182, 21);
     this.comboBox1.TabIndex              = 75;
     this.comboBox1.SelectedValueChanged += new System.EventHandler(this.comboBox1_SelectedValueChanged);
     //
     // SnipeMe
     //
     this.SnipeMe.BackColor = System.Drawing.Color.MediumAquamarine;
     this.SnipeMe.Enabled   = false;
     this.SnipeMe.Location  = new System.Drawing.Point(13, 225);
     this.SnipeMe.Margin    = new System.Windows.Forms.Padding(4);
     this.SnipeMe.Name      = "SnipeMe";
     this.SnipeMe.Size      = new System.Drawing.Size(182, 27);
     this.SnipeMe.TabIndex  = 74;
     this.SnipeMe.Text      = "Snipe Me!";
     this.SnipeMe.UseVisualStyleBackColor = false;
     this.SnipeMe.Click += new System.EventHandler(this.SnipeMe_Click);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(13, 81);
     this.label6.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(86, 13);
     this.label6.TabIndex = 72;
     this.label6.Text     = "Pokemon Name:";
     //
     // label64
     //
     this.label64.AutoSize = true;
     this.label64.Location = new System.Drawing.Point(13, 146);
     this.label64.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label64.Name     = "label64";
     this.label64.Size     = new System.Drawing.Size(98, 13);
     this.label64.TabIndex = 72;
     this.label64.Text     = "Latitude, Longitude";
     //
     // SnipeInfo
     //
     this.SnipeInfo.Location     = new System.Drawing.Point(13, 184);
     this.SnipeInfo.Margin       = new System.Windows.Forms.Padding(4);
     this.SnipeInfo.Name         = "SnipeInfo";
     this.SnipeInfo.Size         = new System.Drawing.Size(182, 20);
     this.SnipeInfo.TabIndex     = 73;
     this.SnipeInfo.TextChanged += new System.EventHandler(this.SnipeInfo_TextChanged);
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox2.Controls.Add(this.checkBoxExternalWeb);
     this.groupBox2.Controls.Add(this.buttonGo);
     this.groupBox2.Controls.Add(this.comboBoxLinks);
     this.groupBox2.Controls.Add(this.btnInstall);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.ForeColor = System.Drawing.Color.DarkRed;
     this.groupBox2.Location  = new System.Drawing.Point(4, 421);
     this.groupBox2.Margin    = new System.Windows.Forms.Padding(4);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(726, 81);
     this.groupBox2.TabIndex  = 85;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "URI Service";
     //
     // checkBoxExternalWeb
     //
     this.checkBoxExternalWeb.ForeColor = System.Drawing.SystemColors.ControlText;
     this.checkBoxExternalWeb.Location  = new System.Drawing.Point(11, 55);
     this.checkBoxExternalWeb.Name      = "checkBoxExternalWeb";
     this.checkBoxExternalWeb.Size      = new System.Drawing.Size(169, 20);
     this.checkBoxExternalWeb.TabIndex  = 96;
     this.checkBoxExternalWeb.Text      = "Open In External Browser";
     this.checkBoxExternalWeb.UseVisualStyleBackColor = true;
     //
     // buttonGo
     //
     this.buttonGo.ForeColor = System.Drawing.SystemColors.ControlText;
     this.buttonGo.Location  = new System.Drawing.Point(485, 52);
     this.buttonGo.Name      = "buttonGo";
     this.buttonGo.Size      = new System.Drawing.Size(54, 23);
     this.buttonGo.TabIndex  = 95;
     this.buttonGo.Text      = "Go";
     this.buttonGo.UseVisualStyleBackColor = true;
     this.buttonGo.Click += new System.EventHandler(this.buttonGo_Click);
     //
     // comboBoxLinks
     //
     this.comboBoxLinks.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxLinks.FormattingEnabled = true;
     this.comboBoxLinks.Location          = new System.Drawing.Point(289, 54);
     this.comboBoxLinks.Name     = "comboBoxLinks";
     this.comboBoxLinks.Size     = new System.Drawing.Size(190, 21);
     this.comboBoxLinks.TabIndex = 94;
     //
     // btnInstall
     //
     this.btnInstall.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnInstall.Location  = new System.Drawing.Point(611, 52);
     this.btnInstall.Margin    = new System.Windows.Forms.Padding(4);
     this.btnInstall.Name      = "btnInstall";
     this.btnInstall.Size      = new System.Drawing.Size(103, 22);
     this.btnInstall.TabIndex  = 5;
     this.btnInstall.Text      = "Install Service";
     this.btnInstall.UseVisualStyleBackColor = true;
     this.btnInstall.Click += new System.EventHandler(this.btnInstall_Click);
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label1.Location  = new System.Drawing.Point(7, 16);
     this.label1.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(616, 13);
     this.label1.TabIndex  = 86;
     this.label1.Text      = "Handles \"pokesniper2:// and msniper://\" URI Protocols. So if you have another app" +
                             "lication to do it.  Is  advisable uninstall before";
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label2.Location  = new System.Drawing.Point(7, 35);
     this.label2.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(403, 13);
     this.label2.TabIndex  = 87;
     this.label2.Text      = "With Service Installed you can snipe directly from pokesniper URIs like these pag" +
                             "es:";
     //
     // timerSnipe
     //
     this.timerSnipe.Interval = 10000;
     this.timerSnipe.Tick    += new System.EventHandler(this.timer1_Tick);
     //
     // nudSecondsSnipe
     //
     this.nudSecondsSnipe.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.nudSecondsSnipe.Location = new System.Drawing.Point(172, 312);
     this.nudSecondsSnipe.Maximum  = new decimal(new int[] {
         600,
         0,
         0,
         0
     });
     this.nudSecondsSnipe.Minimum = new decimal(new int[] {
         2,
         0,
         0,
         0
     });
     this.nudSecondsSnipe.Name     = "nudSecondsSnipe";
     this.nudSecondsSnipe.Size     = new System.Drawing.Size(46, 20);
     this.nudSecondsSnipe.TabIndex = 86;
     this.nudSecondsSnipe.Value    = new decimal(new int[] {
         7,
         0,
         0,
         0
     });
     this.nudSecondsSnipe.ValueChanged += new System.EventHandler(this.nudSecondsSnipe_ValueChanged);
     //
     // label8
     //
     this.label8.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label8.Location = new System.Drawing.Point(47, 312);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(117, 20);
     this.label8.TabIndex = 87;
     this.label8.Text     = "Seconds to wait there:";
     //
     // label9
     //
     this.label9.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label9.Location = new System.Drawing.Point(15, 281);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(149, 17);
     this.label9.TabIndex = 89;
     this.label9.Text     = "Num Tries Finding Encounter:";
     //
     // nudTriesSnipe
     //
     this.nudTriesSnipe.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.nudTriesSnipe.Location = new System.Drawing.Point(172, 279);
     this.nudTriesSnipe.Maximum  = new decimal(new int[] {
         300,
         0,
         0,
         0
     });
     this.nudTriesSnipe.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.nudTriesSnipe.Name     = "nudTriesSnipe";
     this.nudTriesSnipe.Size     = new System.Drawing.Size(46, 20);
     this.nudTriesSnipe.TabIndex = 88;
     this.nudTriesSnipe.Value    = new decimal(new int[] {
         2,
         0,
         0,
         0
     });
     this.nudTriesSnipe.ValueChanged += new System.EventHandler(this.nudTriesSnipe_ValueChanged);
     //
     // checkBoxSnipeTransfer
     //
     this.checkBoxSnipeTransfer.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.checkBoxSnipeTransfer.AutoSize  = true;
     this.checkBoxSnipeTransfer.ForeColor = System.Drawing.SystemColors.ControlText;
     this.checkBoxSnipeTransfer.Location  = new System.Drawing.Point(15, 351);
     this.checkBoxSnipeTransfer.Name      = "checkBoxSnipeTransfer";
     this.checkBoxSnipeTransfer.Size      = new System.Drawing.Size(192, 17);
     this.checkBoxSnipeTransfer.TabIndex  = 97;
     this.checkBoxSnipeTransfer.Text      = "Transfer directly at snipe succesful.";
     this.checkBoxSnipeTransfer.UseVisualStyleBackColor = true;
     //
     // gbLocations
     //
     this.gbLocations.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.gbLocations.Controls.Add(this.label3);
     this.gbLocations.Controls.Add(this.listView);
     this.gbLocations.Location = new System.Drawing.Point(401, 3);
     this.gbLocations.Name     = "gbLocations";
     this.gbLocations.Size     = new System.Drawing.Size(333, 363);
     this.gbLocations.TabIndex = 98;
     this.gbLocations.TabStop  = false;
     this.gbLocations.Text     = "Locations";
     //
     // label3
     //
     this.label3.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize     = true;
     this.label3.Font         = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location     = new System.Drawing.Point(8, 340);
     this.label3.Name         = "label3";
     this.label3.Size         = new System.Drawing.Size(133, 13);
     this.label3.TabIndex     = 90;
     this.label3.Text         = " Double click to Snipe";
     this.label3.DoubleClick += new System.EventHandler(this.label3_DoubleClick);
     //
     // listView
     //
     this.listView.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.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.cuURI,
         this.chIV,
         this.chProbability,
         this.chDate,
         this.chLastUpdate,
         this.chId,
         this.chName,
         this.chTillHidden,
         this.chUsed
     });
     this.listView.ContextMenuStrip = this.contextMenuStrip1;
     this.listView.FullRowSelect    = true;
     this.listView.GridLines        = true;
     this.listView.Location         = new System.Drawing.Point(8, 20);
     this.listView.Margin           = new System.Windows.Forms.Padding(4);
     this.listView.Name             = "listView";
     this.listView.Size             = new System.Drawing.Size(318, 312);
     this.listView.TabIndex         = 81;
     this.listView.UseCompatibleStateImageBehavior = false;
     this.listView.View         = System.Windows.Forms.View.Details;
     this.listView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView_ColumnClick);
     this.listView.DoubleClick += new System.EventHandler(this.listView_DoubleClick);
     //
     // cuURI
     //
     this.cuURI.Text  = "URI";
     this.cuURI.Width = 140;
     //
     // chIV
     //
     this.chIV.Text  = "IV";
     this.chIV.Width = 40;
     //
     // chProbability
     //
     this.chProbability.Text = "Probability";
     //
     // chDate
     //
     this.chDate.Text = "Creation Date";
     //
     // chLastUpdate
     //
     this.chLastUpdate.Text = "Last Update";
     //
     // chId
     //
     this.chId.Text = "Id";
     //
     // chName
     //
     this.chName.Text = "Name";
     //
     // chTillHidden
     //
     this.chTillHidden.Text = "Till Hidden";
     //
     // chUsed
     //
     this.chUsed.Text = "Used";
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.snipeToolStripMenuItem,
         this.markAsUsedToolStripMenuItem,
         this.deleteToolStripMenuItem,
         this.deleteAllToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(191, 92);
     //
     // snipeToolStripMenuItem
     //
     this.snipeToolStripMenuItem.Name   = "snipeToolStripMenuItem";
     this.snipeToolStripMenuItem.Size   = new System.Drawing.Size(190, 22);
     this.snipeToolStripMenuItem.Text   = "Snipe";
     this.snipeToolStripMenuItem.Click += new System.EventHandler(this.snipeToolStripMenuItem_Click);
     //
     // markAsUsedToolStripMenuItem
     //
     this.markAsUsedToolStripMenuItem.Name   = "markAsUsedToolStripMenuItem";
     this.markAsUsedToolStripMenuItem.Size   = new System.Drawing.Size(190, 22);
     this.markAsUsedToolStripMenuItem.Text   = "Mark/Unmark as used";
     this.markAsUsedToolStripMenuItem.Click += new System.EventHandler(this.markAsUsedToolStripMenuItem_Click);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name   = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size   = new System.Drawing.Size(190, 22);
     this.deleteToolStripMenuItem.Text   = "Delete Seleted";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // deleteAllToolStripMenuItem
     //
     this.deleteAllToolStripMenuItem.Name   = "deleteAllToolStripMenuItem";
     this.deleteAllToolStripMenuItem.Size   = new System.Drawing.Size(190, 22);
     this.deleteAllToolStripMenuItem.Text   = "Delete All";
     this.deleteAllToolStripMenuItem.Click += new System.EventHandler(this.deleteAllToolStripMenuItem_Click);
     //
     // timerLocations
     //
     this.timerLocations.Enabled  = true;
     this.timerLocations.Interval = 10000;
     this.timerLocations.Tick    += new System.EventHandler(this.timerLocations_Tick);
     //
     // numSnipeMinutes
     //
     this.numSnipeMinutes.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.numSnipeMinutes.Location = new System.Drawing.Point(684, 372);
     this.numSnipeMinutes.Maximum  = new decimal(new int[] {
         300,
         0,
         0,
         0
     });
     this.numSnipeMinutes.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.numSnipeMinutes.Name     = "numSnipeMinutes";
     this.numSnipeMinutes.Size     = new System.Drawing.Size(46, 20);
     this.numSnipeMinutes.TabIndex = 99;
     this.numSnipeMinutes.Value    = new decimal(new int[] {
         3,
         0,
         0,
         0
     });
     this.numSnipeMinutes.ValueChanged += new System.EventHandler(this.numSnipeMinutes_ValueChanged);
     //
     // label5
     //
     this.label5.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label5.Location  = new System.Drawing.Point(472, 374);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(204, 18);
     this.label5.TabIndex  = 100;
     this.label5.Text      = "Minutes to wait between snipes:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // timerAutosnipe
     //
     this.timerAutosnipe.Interval = 120000;
     this.timerAutosnipe.Tick    += new System.EventHandler(this.timerAutosnipe_Tick);
     //
     // groupBox5
     //
     this.groupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox5.Controls.Add(this.checkBoxMinIVSnipe);
     this.groupBox5.Controls.Add(this.checkBoxMinProbSnipe);
     this.groupBox5.Controls.Add(this.numMinProbSnipe);
     this.groupBox5.Controls.Add(this.numMinIVSnipe);
     this.groupBox5.Controls.Add(this.checkBoxSelectAll);
     this.groupBox5.Controls.Add(this.checkedListBox_ToSnipe);
     this.groupBox5.Location = new System.Drawing.Point(231, 3);
     this.groupBox5.Name     = "groupBox5";
     this.groupBox5.Size     = new System.Drawing.Size(164, 365);
     this.groupBox5.TabIndex = 101;
     this.groupBox5.TabStop  = false;
     this.groupBox5.Text     = "Pokemons to Snipe";
     //
     // checkBoxMinIVSnipe
     //
     this.checkBoxMinIVSnipe.Location = new System.Drawing.Point(9, 17);
     this.checkBoxMinIVSnipe.Name     = "checkBoxMinIVSnipe";
     this.checkBoxMinIVSnipe.Size     = new System.Drawing.Size(90, 24);
     this.checkBoxMinIVSnipe.TabIndex = 74;
     this.checkBoxMinIVSnipe.Text     = "Min IV";
     this.checkBoxMinIVSnipe.UseVisualStyleBackColor = true;
     //
     // checkBoxMinProbSnipe
     //
     this.checkBoxMinProbSnipe.Enabled  = false;
     this.checkBoxMinProbSnipe.Location = new System.Drawing.Point(9, 41);
     this.checkBoxMinProbSnipe.Name     = "checkBoxMinProbSnipe";
     this.checkBoxMinProbSnipe.Size     = new System.Drawing.Size(90, 24);
     this.checkBoxMinProbSnipe.TabIndex = 73;
     this.checkBoxMinProbSnipe.Text     = "Min Prob.";
     this.checkBoxMinProbSnipe.UseVisualStyleBackColor = true;
     //
     // numMinProbSnipe
     //
     this.numMinProbSnipe.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.numMinProbSnipe.Enabled  = false;
     this.numMinProbSnipe.Location = new System.Drawing.Point(119, 41);
     this.numMinProbSnipe.Margin   = new System.Windows.Forms.Padding(2);
     this.numMinProbSnipe.Name     = "numMinProbSnipe";
     this.numMinProbSnipe.Size     = new System.Drawing.Size(37, 20);
     this.numMinProbSnipe.TabIndex = 71;
     this.numMinProbSnipe.Tag      = "MinIVSave";
     this.numMinProbSnipe.Value    = new decimal(new int[] {
         90,
         0,
         0,
         0
     });
     //
     // numMinIVSnipe
     //
     this.numMinIVSnipe.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.numMinIVSnipe.Location = new System.Drawing.Point(119, 20);
     this.numMinIVSnipe.Margin   = new System.Windows.Forms.Padding(2);
     this.numMinIVSnipe.Name     = "numMinIVSnipe";
     this.numMinIVSnipe.Size     = new System.Drawing.Size(37, 20);
     this.numMinIVSnipe.TabIndex = 69;
     this.numMinIVSnipe.Tag      = "MinIVSave";
     this.numMinIVSnipe.Value    = new decimal(new int[] {
         90,
         0,
         0,
         0
     });
     this.numMinIVSnipe.ValueChanged += new System.EventHandler(this.numMinIVSnipe_ValueChanged);
     //
     // checkBoxSelectAll
     //
     this.checkBoxSelectAll.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.checkBoxSelectAll.AutoSize = true;
     this.checkBoxSelectAll.Location = new System.Drawing.Point(9, 336);
     this.checkBoxSelectAll.Name     = "checkBoxSelectAll";
     this.checkBoxSelectAll.Size     = new System.Drawing.Size(69, 17);
     this.checkBoxSelectAll.TabIndex = 32;
     this.checkBoxSelectAll.Text     = "Select all";
     this.checkBoxSelectAll.UseVisualStyleBackColor = true;
     this.checkBoxSelectAll.CheckedChanged         += new System.EventHandler(this.checkBoxSelectAll_CheckedChanged);
     //
     // checkedListBox_ToSnipe
     //
     this.checkedListBox_ToSnipe.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.checkedListBox_ToSnipe.CheckOnClick      = true;
     this.checkedListBox_ToSnipe.FormattingEnabled = true;
     this.checkedListBox_ToSnipe.Location          = new System.Drawing.Point(9, 68);
     this.checkedListBox_ToSnipe.Name = "checkedListBox_ToSnipe";
     this.checkedListBox_ToSnipe.ScrollAlwaysVisible = true;
     this.checkedListBox_ToSnipe.Size       = new System.Drawing.Size(147, 259);
     this.checkedListBox_ToSnipe.TabIndex   = 0;
     this.checkedListBox_ToSnipe.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.checkedListBox_ToSnipe_ItemCheck);
     //
     // buttonImport
     //
     this.buttonImport.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonImport.ForeColor = System.Drawing.SystemColors.ControlText;
     this.buttonImport.Location  = new System.Drawing.Point(537, 398);
     this.buttonImport.Name      = "buttonImport";
     this.buttonImport.Size      = new System.Drawing.Size(193, 23);
     this.buttonImport.TabIndex  = 102;
     this.buttonImport.Text      = "Import mypogosnipers list";
     this.buttonImport.UseVisualStyleBackColor = true;
     this.buttonImport.Click += new System.EventHandler(this.button1_Click);
     //
     // SniperPanel
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.Controls.Add(this.buttonImport);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.numSnipeMinutes);
     this.Controls.Add(this.gbLocations);
     this.Controls.Add(this.checkBoxSnipeTransfer);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.nudTriesSnipe);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.nudSecondsSnipe);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.AvoidRegionLock);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.SnipePokemonPokeCom);
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name   = "SniperPanel";
     this.Size   = new System.Drawing.Size(759, 517);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PokemonImage)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudSecondsSnipe)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nudTriesSnipe)).EndInit();
     this.gbLocations.ResumeLayout(false);
     this.gbLocations.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.numSnipeMinutes)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numMinProbSnipe)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numMinIVSnipe)).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(FrmRolePermissionScope));
     this.tcUser = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel6 = new DevComponents.DotNetBar.TabControlPanel();
     this.tvPermissionItem = new System.Windows.Forms.TreeView();
     this.imgList = new System.Windows.Forms.ImageList(this.components);
     this.tabItemPermissionItem = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel5 = new DevComponents.DotNetBar.TabControlPanel();
     this.tvModule = new System.Windows.Forms.TreeView();
     this.tabItemModule = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel();
     this.tvOrganize = new System.Windows.Forms.TreeView();
     this.tabItemOrganize = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.cklstUser = new System.Windows.Forms.CheckedListBox();
     this.tabItemUser = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.cklstRole = new System.Windows.Forms.CheckedListBox();
     this.tabItemRole = new DevComponents.DotNetBar.TabItem(this.components);
     this.panel1 = new System.Windows.Forms.Panel();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tlsTool = new System.Windows.Forms.ToolStrip();
     this.lblCurrentRole = new System.Windows.Forms.ToolStripLabel();
     this.txtRole = new System.Windows.Forms.ToolStripTextBox();
     this.lblPermissionScope = new System.Windows.Forms.ToolStripLabel();
     this.txtPermissionScope = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btnClearPermission = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCopy = new System.Windows.Forms.ToolStripButton();
     this.btnPaste = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnClose = new System.Windows.Forms.ToolStripButton();
     this.panel2 = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.tcUser)).BeginInit();
     this.tcUser.SuspendLayout();
     this.tabControlPanel6.SuspendLayout();
     this.tabControlPanel5.SuspendLayout();
     this.tabControlPanel4.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     this.tabControlPanel3.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.tlsTool.SuspendLayout();
     this.SuspendLayout();
     //
     // tcUser
     //
     this.tcUser.BackColor = System.Drawing.SystemColors.Window;
     this.tcUser.CanReorderTabs = true;
     this.tcUser.Controls.Add(this.tabControlPanel6);
     this.tcUser.Controls.Add(this.tabControlPanel5);
     this.tcUser.Controls.Add(this.tabControlPanel4);
     this.tcUser.Controls.Add(this.tabControlPanel3);
     this.tcUser.Controls.Add(this.tabControlPanel2);
     this.tcUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcUser.Location = new System.Drawing.Point(0, 0);
     this.tcUser.Name = "tcUser";
     this.tcUser.SelectedTabFont = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
     this.tcUser.SelectedTabIndex = 0;
     this.tcUser.Size = new System.Drawing.Size(837, 589);
     this.tcUser.Style = DevComponents.DotNetBar.eTabStripStyle.VS2005;
     this.tcUser.TabIndex = 19;
     this.tcUser.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tcUser.Tabs.Add(this.tabItemUser);
     this.tcUser.Tabs.Add(this.tabItemRole);
     this.tcUser.Tabs.Add(this.tabItemOrganize);
     this.tcUser.Tabs.Add(this.tabItemModule);
     this.tcUser.Tabs.Add(this.tabItemPermissionItem);
     //
     // tabControlPanel6
     //
     this.tabControlPanel6.Controls.Add(this.tvPermissionItem);
     this.tabControlPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel6.Location = new System.Drawing.Point(0, 27);
     this.tabControlPanel6.Name = "tabControlPanel6";
     this.tabControlPanel6.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel6.Size = new System.Drawing.Size(837, 562);
     this.tabControlPanel6.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(245)))), ((int)(((byte)(244)))));
     this.tabControlPanel6.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(251)))), ((int)(((byte)(251)))));
     this.tabControlPanel6.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel6.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel6.Style.GradientAngle = 90;
     this.tabControlPanel6.TabIndex = 5;
     this.tabControlPanel6.TabItem = this.tabItemPermissionItem;
     //
     // tvPermissionItem
     //
     this.tvPermissionItem.AllowDrop = true;
     this.tvPermissionItem.CheckBoxes = true;
     this.tvPermissionItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvPermissionItem.Enabled = false;
     this.tvPermissionItem.HotTracking = true;
     this.tvPermissionItem.ImageIndex = 0;
     this.tvPermissionItem.ImageList = this.imgList;
     this.tvPermissionItem.Location = new System.Drawing.Point(1, 1);
     this.tvPermissionItem.Margin = new System.Windows.Forms.Padding(0, 3, 0, 3);
     this.tvPermissionItem.Name = "tvPermissionItem";
     this.tvPermissionItem.SelectedImageIndex = 1;
     this.tvPermissionItem.Size = new System.Drawing.Size(835, 560);
     this.tvPermissionItem.TabIndex = 3;
     this.tvPermissionItem.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvPermissionItem_AfterCheck);
     this.tvPermissionItem.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tvPermissionItem_MouseDown);
     //
     // imgList
     //
     this.imgList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgList.ImageStream")));
     this.imgList.TransparentColor = System.Drawing.Color.Transparent;
     this.imgList.Images.SetKeyName(0, "button.png");
     this.imgList.Images.SetKeyName(1, "ok.png");
     this.imgList.Images.SetKeyName(2, "menu1.png");
     this.imgList.Images.SetKeyName(3, "menu2.png");
     this.imgList.Images.SetKeyName(4, "company.ico");
     //
     // tabItemPermissionItem
     //
     this.tabItemPermissionItem.AttachedControl = this.tabControlPanel6;
     this.tabItemPermissionItem.Image = ((System.Drawing.Image)(resources.GetObject("tabItemPermissionItem.Image")));
     this.tabItemPermissionItem.Name = "tabItemPermissionItem";
     this.tabItemPermissionItem.Text = "可分配的操作(功能)权限";
     //
     // tabControlPanel5
     //
     this.tabControlPanel5.Controls.Add(this.tvModule);
     this.tabControlPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel5.Location = new System.Drawing.Point(0, 27);
     this.tabControlPanel5.Name = "tabControlPanel5";
     this.tabControlPanel5.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel5.Size = new System.Drawing.Size(837, 562);
     this.tabControlPanel5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(245)))), ((int)(((byte)(244)))));
     this.tabControlPanel5.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(251)))), ((int)(((byte)(251)))));
     this.tabControlPanel5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel5.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel5.Style.GradientAngle = 90;
     this.tabControlPanel5.TabIndex = 4;
     this.tabControlPanel5.TabItem = this.tabItemModule;
     //
     // tvModule
     //
     this.tvModule.AllowDrop = true;
     this.tvModule.CheckBoxes = true;
     this.tvModule.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvModule.Enabled = false;
     this.tvModule.ImageIndex = 2;
     this.tvModule.ImageList = this.imgList;
     this.tvModule.Location = new System.Drawing.Point(1, 1);
     this.tvModule.Name = "tvModule";
     this.tvModule.SelectedImageIndex = 3;
     this.tvModule.Size = new System.Drawing.Size(835, 560);
     this.tvModule.TabIndex = 3;
     this.tvModule.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvModule_AfterCheck);
     this.tvModule.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tvModule_MouseDown);
     //
     // tabItemModule
     //
     this.tabItemModule.AttachedControl = this.tabControlPanel5;
     this.tabItemModule.Image = ((System.Drawing.Image)(resources.GetObject("tabItemModule.Image")));
     this.tabItemModule.Name = "tabItemModule";
     this.tabItemModule.Text = "模块(菜单)";
     //
     // tabControlPanel4
     //
     this.tabControlPanel4.Controls.Add(this.tvOrganize);
     this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel4.Location = new System.Drawing.Point(0, 27);
     this.tabControlPanel4.Name = "tabControlPanel4";
     this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel4.Size = new System.Drawing.Size(837, 562);
     this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(245)))), ((int)(((byte)(244)))));
     this.tabControlPanel4.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(251)))), ((int)(((byte)(251)))));
     this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel4.Style.GradientAngle = 90;
     this.tabControlPanel4.TabIndex = 3;
     this.tabControlPanel4.TabItem = this.tabItemOrganize;
     //
     // tvOrganize
     //
     this.tvOrganize.CheckBoxes = true;
     this.tvOrganize.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tvOrganize.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.tvOrganize.ImageIndex = 4;
     this.tvOrganize.ImageList = this.imgList;
     this.tvOrganize.Location = new System.Drawing.Point(1, 1);
     this.tvOrganize.Name = "tvOrganize";
     this.tvOrganize.SelectedImageIndex = 1;
     this.tvOrganize.Size = new System.Drawing.Size(835, 560);
     this.tvOrganize.TabIndex = 9;
     this.tvOrganize.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvOrganize_AfterCheck);
     this.tvOrganize.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tvOrganize_MouseDown_1);
     //
     // tabItemOrganize
     //
     this.tabItemOrganize.AttachedControl = this.tabControlPanel4;
     this.tabItemOrganize.Image = ((System.Drawing.Image)(resources.GetObject("tabItemOrganize.Image")));
     this.tabItemOrganize.Name = "tabItemOrganize";
     this.tabItemOrganize.Text = "组织机构";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Controls.Add(this.cklstUser);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 27);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(837, 562);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(245)))), ((int)(((byte)(244)))));
     this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(251)))), ((int)(((byte)(251)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 1;
     this.tabControlPanel2.TabItem = this.tabItemUser;
     this.tabControlPanel2.Text = "归属角色";
     //
     // cklstUser
     //
     this.cklstUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.cklstUser.Enabled = false;
     this.cklstUser.FormattingEnabled = true;
     this.cklstUser.Location = new System.Drawing.Point(1, 1);
     this.cklstUser.MultiColumn = true;
     this.cklstUser.Name = "cklstUser";
     this.cklstUser.Size = new System.Drawing.Size(835, 560);
     this.cklstUser.TabIndex = 2;
     this.cklstUser.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.cklstUser_ItemCheck);
     //
     // tabItemUser
     //
     this.tabItemUser.AttachedControl = this.tabControlPanel2;
     this.tabItemUser.Image = ((System.Drawing.Image)(resources.GetObject("tabItemUser.Image")));
     this.tabItemUser.Name = "tabItemUser";
     this.tabItemUser.Text = "用户";
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Controls.Add(this.cklstRole);
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 27);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(837, 562);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(246)))), ((int)(((byte)(245)))), ((int)(((byte)(244)))));
     this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(251)))), ((int)(((byte)(251)))), ((int)(((byte)(251)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 2;
     this.tabControlPanel3.TabItem = this.tabItemRole;
     //
     // cklstRole
     //
     this.cklstRole.Dock = System.Windows.Forms.DockStyle.Fill;
     this.cklstRole.Enabled = false;
     this.cklstRole.FormattingEnabled = true;
     this.cklstRole.Location = new System.Drawing.Point(1, 1);
     this.cklstRole.MultiColumn = true;
     this.cklstRole.Name = "cklstRole";
     this.cklstRole.Size = new System.Drawing.Size(835, 560);
     this.cklstRole.TabIndex = 2;
     this.cklstRole.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.cklstRole_ItemCheck);
     //
     // tabItemRole
     //
     this.tabItemRole.AttachedControl = this.tabControlPanel3;
     this.tabItemRole.Image = ((System.Drawing.Image)(resources.GetObject("tabItemRole.Image")));
     this.tabItemRole.Name = "tabItemRole";
     this.tabItemRole.Text = "角色";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.tcUser);
     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(837, 589);
     this.panel1.TabIndex = 0;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainer1.Location = new System.Drawing.Point(0, 25);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.splitContainer1.Panel1Collapsed = true;
     this.splitContainer1.Panel1MinSize = 80;
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.panel1);
     this.splitContainer1.Size = new System.Drawing.Size(837, 589);
     this.splitContainer1.SplitterDistance = 80;
     this.splitContainer1.TabIndex = 11;
     //
     // tabItem1
     //
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "资源(组织机构)";
     //
     // tlsTool
     //
     this.tlsTool.AutoSize = false;
     this.tlsTool.Font = new System.Drawing.Font("宋体", 11F);
     this.tlsTool.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.lblCurrentRole,
     this.txtRole,
     this.lblPermissionScope,
     this.txtPermissionScope,
     this.toolStripSeparator2,
     this.btnClearPermission,
     this.toolStripSeparator5,
     this.btnCopy,
     this.btnPaste,
     this.toolStripSeparator1,
     this.btnClose});
     this.tlsTool.Location = new System.Drawing.Point(0, 0);
     this.tlsTool.Name = "tlsTool";
     this.tlsTool.Size = new System.Drawing.Size(837, 25);
     this.tlsTool.TabIndex = 19;
     this.tlsTool.Text = "toolStrip1";
     //
     // lblCurrentRole
     //
     this.lblCurrentRole.Name = "lblCurrentRole";
     this.lblCurrentRole.Size = new System.Drawing.Size(82, 22);
     this.lblCurrentRole.Text = "当前角色:";
     //
     // txtRole
     //
     this.txtRole.BackColor = System.Drawing.SystemColors.Info;
     this.txtRole.Name = "txtRole";
     this.txtRole.ReadOnly = true;
     this.txtRole.Size = new System.Drawing.Size(100, 25);
     //
     // lblPermissionScope
     //
     this.lblPermissionScope.Name = "lblPermissionScope";
     this.lblPermissionScope.Size = new System.Drawing.Size(97, 22);
     this.lblPermissionScope.Text = "数据集权限:";
     //
     // txtPermissionScope
     //
     this.txtPermissionScope.BackColor = System.Drawing.SystemColors.Info;
     this.txtPermissionScope.Name = "txtPermissionScope";
     this.txtPermissionScope.ReadOnly = true;
     this.txtPermissionScope.Size = new System.Drawing.Size(100, 25);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // btnClearPermission
     //
     this.btnClearPermission.Image = ((System.Drawing.Image)(resources.GetObject("btnClearPermission.Image")));
     this.btnClearPermission.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnClearPermission.Name = "btnClearPermission";
     this.btnClearPermission.Size = new System.Drawing.Size(111, 22);
     this.btnClearPermission.Text = "清除权限(&C)";
     this.btnClearPermission.ToolTipText = "清除权限";
     this.btnClearPermission.Click += new System.EventHandler(this.btnClearPermission_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // btnCopy
     //
     this.btnCopy.Image = ((System.Drawing.Image)(resources.GetObject("btnCopy.Image")));
     this.btnCopy.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCopy.Name = "btnCopy";
     this.btnCopy.Size = new System.Drawing.Size(87, 22);
     this.btnCopy.Text = "复制权限";
     this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
     //
     // btnPaste
     //
     this.btnPaste.Image = ((System.Drawing.Image)(resources.GetObject("btnPaste.Image")));
     this.btnPaste.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnPaste.Name = "btnPaste";
     this.btnPaste.Size = new System.Drawing.Size(87, 22);
     this.btnPaste.Text = "粘贴权限";
     this.btnPaste.Click += new System.EventHandler(this.btnPaste_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // btnClose
     //
     this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(57, 22);
     this.btnClose.Text = "关闭";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // panel2
     //
     this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 25);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(837, 5);
     this.panel2.TabIndex = 22;
     //
     // FrmRolePermissionScope
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(837, 614);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.tlsTool);
     this.Name = "FrmRolePermissionScope";
     this.Text = "角色授权范围(资源管理权限)";
     ((System.ComponentModel.ISupportInitialize)(this.tcUser)).EndInit();
     this.tcUser.ResumeLayout(false);
     this.tabControlPanel6.ResumeLayout(false);
     this.tabControlPanel5.ResumeLayout(false);
     this.tabControlPanel4.ResumeLayout(false);
     this.tabControlPanel2.ResumeLayout(false);
     this.tabControlPanel3.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.tlsTool.ResumeLayout(false);
     this.tlsTool.PerformLayout();
     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.tcRole = new System.Windows.Forms.TabControl();
     this.tpRole = new System.Windows.Forms.TabPage();
     this.cklstRole = new System.Windows.Forms.CheckedListBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.tcUser = new System.Windows.Forms.TabControl();
     this.tpUser = new System.Windows.Forms.TabPage();
     this.lstUser = new System.Windows.Forms.ListBox();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnOK = new System.Windows.Forms.Button();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnClearPermission = new System.Windows.Forms.Button();
     this.btnPaste = new System.Windows.Forms.Button();
     this.btnCopy = new System.Windows.Forms.Button();
     this.tcRole.SuspendLayout();
     this.tpRole.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.tcUser.SuspendLayout();
     this.tpUser.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // tcRole
     //
     this.tcRole.Controls.Add(this.tpRole);
     this.tcRole.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcRole.Location = new System.Drawing.Point(0, 0);
     this.tcRole.Name = "tcRole";
     this.tcRole.SelectedIndex = 0;
     this.tcRole.Size = new System.Drawing.Size(293, 405);
     this.tcRole.TabIndex = 8;
     //
     // tpRole
     //
     this.tpRole.Controls.Add(this.cklstRole);
     this.tpRole.Location = new System.Drawing.Point(4, 22);
     this.tpRole.Name = "tpRole";
     this.tpRole.Padding = new System.Windows.Forms.Padding(3);
     this.tpRole.Size = new System.Drawing.Size(285, 379);
     this.tpRole.TabIndex = 0;
     this.tpRole.Text = "归属角色";
     this.tpRole.UseVisualStyleBackColor = true;
     //
     // cklstRole
     //
     this.cklstRole.Dock = System.Windows.Forms.DockStyle.Fill;
     this.cklstRole.Enabled = false;
     this.cklstRole.FormattingEnabled = true;
     this.cklstRole.Location = new System.Drawing.Point(3, 3);
     this.cklstRole.Name = "cklstRole";
     this.cklstRole.Size = new System.Drawing.Size(279, 373);
     this.cklstRole.TabIndex = 0;
     this.cklstRole.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.cklstRole_ItemCheck);
     //
     // 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.Location = new System.Drawing.Point(5, 35);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.tcUser);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.tcRole);
     this.splitContainer1.Size = new System.Drawing.Size(592, 405);
     this.splitContainer1.SplitterDistance = 295;
     this.splitContainer1.TabIndex = 11;
     //
     // tcUser
     //
     this.tcUser.Controls.Add(this.tpUser);
     this.tcUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcUser.Location = new System.Drawing.Point(0, 0);
     this.tcUser.Name = "tcUser";
     this.tcUser.SelectedIndex = 0;
     this.tcUser.Size = new System.Drawing.Size(295, 405);
     this.tcUser.TabIndex = 9;
     //
     // tpUser
     //
     this.tpUser.Controls.Add(this.lstUser);
     this.tpUser.Location = new System.Drawing.Point(4, 22);
     this.tpUser.Name = "tpUser";
     this.tpUser.Padding = new System.Windows.Forms.Padding(3);
     this.tpUser.Size = new System.Drawing.Size(287, 379);
     this.tpUser.TabIndex = 0;
     this.tpUser.Text = "用户";
     this.tpUser.UseVisualStyleBackColor = true;
     //
     // lstUser
     //
     this.lstUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lstUser.FormattingEnabled = true;
     this.lstUser.ItemHeight = 12;
     this.lstUser.Location = new System.Drawing.Point(3, 3);
     this.lstUser.Name = "lstUser";
     this.lstUser.Size = new System.Drawing.Size(281, 373);
     this.lstUser.TabIndex = 0;
     this.lstUser.SelectedIndexChanged += new System.EventHandler(this.lstUser_SelectedIndexChanged);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(525, 447);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(71, 23);
     this.btnCancel.TabIndex = 35;
     this.btnCancel.Text = "取消";
     this.btnCancel.UseVisualStyleBackColor = true;
     //
     // btnOK
     //
     this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOK.Location = new System.Drawing.Point(448, 447);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(71, 23);
     this.btnOK.TabIndex = 34;
     this.btnOK.Text = "确定";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.btnClearPermission);
     this.flowLayoutPanel1.Controls.Add(this.btnPaste);
     this.flowLayoutPanel1.Controls.Add(this.btnCopy);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(5, 6);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(585, 28);
     this.flowLayoutPanel1.TabIndex = 36;
     //
     // btnClearPermission
     //
     this.btnClearPermission.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClearPermission.Enabled = false;
     this.btnClearPermission.Location = new System.Drawing.Point(480, 3);
     this.btnClearPermission.Name = "btnClearPermission";
     this.btnClearPermission.Size = new System.Drawing.Size(102, 23);
     this.btnClearPermission.TabIndex = 36;
     this.btnClearPermission.Text = "清除角色(&C)";
     this.btnClearPermission.UseVisualStyleBackColor = true;
     //
     // btnPaste
     //
     this.btnPaste.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPaste.Enabled = false;
     this.btnPaste.Location = new System.Drawing.Point(372, 3);
     this.btnPaste.Name = "btnPaste";
     this.btnPaste.Size = new System.Drawing.Size(102, 23);
     this.btnPaste.TabIndex = 35;
     this.btnPaste.Text = "粘贴角色";
     this.btnPaste.UseVisualStyleBackColor = true;
     //
     // btnCopy
     //
     this.btnCopy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCopy.Enabled = false;
     this.btnCopy.Location = new System.Drawing.Point(264, 3);
     this.btnCopy.Name = "btnCopy";
     this.btnCopy.Size = new System.Drawing.Size(102, 23);
     this.btnCopy.TabIndex = 34;
     this.btnCopy.Text = "复制角色";
     this.btnCopy.UseVisualStyleBackColor = true;
     //
     // FrmUserRoleBatchSet
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(602, 474);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.splitContainer1);
     this.Name = "FrmUserRoleBatchSet";
     this.Text = "用户角色关联";
     this.tcRole.ResumeLayout(false);
     this.tpRole.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.tcUser.ResumeLayout(false);
     this.tpUser.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器
 /// 修改這個方法的內容。
 /// </summary>
 private void InitializeComponent()
 {
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.label1 = new System.Windows.Forms.Label();
     this.listBox1 = new System.Windows.Forms.ListBox();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.maskedTextBox1 = new System.Windows.Forms.MaskedTextBox();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.richTextBox1 = new System.Windows.Forms.RichTextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.label5 = new System.Windows.Forms.Label();
     this.panel3 = new System.Windows.Forms.Panel();
     this.label6 = new System.Windows.Forms.Label();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.listBox2 = new System.Windows.Forms.ListBox();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.splitContainer3);
     this.splitContainer1.Panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.splitContainer1_Panel1_Paint);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
     this.splitContainer1.Size = new System.Drawing.Size(788, 561);
     this.splitContainer1.SplitterDistance = 159;
     this.splitContainer1.TabIndex = 0;
     //
     // splitContainer3
     //
     this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location = new System.Drawing.Point(0, 0);
     this.splitContainer3.Name = "splitContainer3";
     this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.label1);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.listBox1);
     this.splitContainer3.Size = new System.Drawing.Size(788, 159);
     this.splitContainer3.SplitterDistance = 59;
     this.splitContainer3.TabIndex = 0;
     //
     // label1
     //
     this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label1.Font = new System.Drawing.Font("標楷體", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.label1.Location = new System.Drawing.Point(0, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(788, 59);
     this.label1.TabIndex = 0;
     this.label1.Text = "打卡審核";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.label1.Click += new System.EventHandler(this.label1_Click);
     //
     // listBox1
     //
     this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listBox1.FormattingEnabled = true;
     this.listBox1.ItemHeight = 12;
     this.listBox1.Location = new System.Drawing.Point(0, 0);
     this.listBox1.Name = "listBox1";
     this.listBox1.Size = new System.Drawing.Size(788, 96);
     this.listBox1.TabIndex = 0;
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(0, 0);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.panel2);
     this.splitContainer2.Panel1.Controls.Add(this.panel1);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.panel3);
     this.splitContainer2.Size = new System.Drawing.Size(788, 398);
     this.splitContainer2.SplitterDistance = 196;
     this.splitContainer2.TabIndex = 0;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(18, 15);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(56, 12);
     this.label2.TabIndex = 0;
     this.label2.Text = "員工姓名:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(18, 58);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 12);
     this.label3.TabIndex = 1;
     this.label3.Text = "申請時間:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(18, 100);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(56, 12);
     this.label4.TabIndex = 2;
     this.label4.Text = "申請原因:";
     //
     // maskedTextBox1
     //
     this.maskedTextBox1.Location = new System.Drawing.Point(80, 58);
     this.maskedTextBox1.Mask = "0000/00/00";
     this.maskedTextBox1.Name = "maskedTextBox1";
     this.maskedTextBox1.Size = new System.Drawing.Size(100, 22);
     this.maskedTextBox1.TabIndex = 4;
     this.maskedTextBox1.ValidatingType = typeof(System.DateTime);
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(81, 15);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(100, 22);
     this.textBox1.TabIndex = 5;
     //
     // richTextBox1
     //
     this.richTextBox1.Location = new System.Drawing.Point(81, 100);
     this.richTextBox1.Name = "richTextBox1";
     this.richTextBox1.Size = new System.Drawing.Size(278, 49);
     this.richTextBox1.TabIndex = 6;
     this.richTextBox1.Text = "";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.richTextBox1);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.textBox1);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.maskedTextBox1);
     this.panel1.Location = new System.Drawing.Point(12, 12);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(376, 165);
     this.panel1.TabIndex = 7;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.checkedListBox1);
     this.panel2.Controls.Add(this.label5);
     this.panel2.Location = new System.Drawing.Point(394, 12);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(376, 165);
     this.panel2.TabIndex = 8;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(3, 15);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(44, 12);
     this.label5.TabIndex = 0;
     this.label5.Text = "審核人:";
     //
     // panel3
     //
     this.panel3.Controls.Add(this.button2);
     this.panel3.Controls.Add(this.button1);
     this.panel3.Controls.Add(this.listBox2);
     this.panel3.Controls.Add(this.label6);
     this.panel3.Location = new System.Drawing.Point(12, 12);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(220, 165);
     this.panel3.TabIndex = 9;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(18, 15);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(56, 12);
     this.label6.TabIndex = 0;
     this.label6.Text = "申請地點:";
     //
     // checkedListBox1
     //
     this.checkedListBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.Items.AddRange(new object[] {
     "組長                 Owen",
     "主任                 Lee",
     "組長                 Owen",
     "主任                 Lee",
     "組長                 Owen",
     "主任                 Lee",
     "組長                 Owen",
     "主任                 Lee",
     "組長                 Owen",
     "主任                 Lee",
     "組長                 Owen",
     "主任                 Lee",
     "組長                 Owen",
     "主任                 Lee",
     "組長                 Owen",
     "主任                 Lee"});
     this.checkedListBox1.Location = new System.Drawing.Point(53, 30);
     this.checkedListBox1.Name = "checkedListBox1";
     this.checkedListBox1.Size = new System.Drawing.Size(281, 119);
     this.checkedListBox1.TabIndex = 1;
     this.checkedListBox1.SelectedIndexChanged += new System.EventHandler(this.checkedListBox1_SelectedIndexChanged);
     //
     // listBox2
     //
     this.listBox2.FormattingEnabled = true;
     this.listBox2.ItemHeight = 12;
     this.listBox2.Items.AddRange(new object[] {
     "資策會",
     "肯德基",
     "星巴克",
     "台灣大學",
     "資策會",
     "肯德基",
     "星巴克",
     "台灣大學",
     "資策會",
     "肯德基",
     "星巴克",
     "台灣大學",
     "資策會",
     "肯德基",
     "星巴克",
     "台灣大學"});
     this.listBox2.Location = new System.Drawing.Point(20, 31);
     this.listBox2.Name = "listBox2";
     this.listBox2.Size = new System.Drawing.Size(120, 124);
     this.listBox2.TabIndex = 1;
     this.listBox2.SelectedIndexChanged += new System.EventHandler(this.listBox2_SelectedIndexChanged);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(156, 31);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(49, 23);
     this.button1.TabIndex = 2;
     this.button1.Text = "通過";
     this.button1.UseVisualStyleBackColor = true;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(156, 60);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(49, 23);
     this.button2.TabIndex = 3;
     this.button2.Text = "退件";
     this.button2.UseVisualStyleBackColor = true;
     //
     // frm打卡
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(788, 561);
     this.Controls.Add(this.splitContainer1);
     this.Name = "frm打卡";
     this.Text = "Form1";
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
     this.splitContainer3.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
     this.splitContainer2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.ResumeLayout(false);
 }
Example #44
0
 private void InitializeComponent()
 {
     this.button1 = new System.Windows.Forms.Button();
     this.test_textBox1 = new System.Windows.Forms.TextBox();
     this.test_numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.test_eee_dataGridView1 = new System.Windows.Forms.DataGridView();
     this.A = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.B = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.test_checkBox1 = new System.Windows.Forms.CheckBox();
     this.test_richTextBox1 = new System.Windows.Forms.RichTextBox();
     this.test_trackBar1 = new System.Windows.Forms.TrackBar();
     this.test_dd_checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.test_dd_domainUpDown1 = new System.Windows.Forms.DomainUpDown();
     this.test_dd_listBox1 = new System.Windows.Forms.ListBox();
     this.test_dd_dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.test_eee_comboBox1 = new System.Windows.Forms.ComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.test_numericUpDown1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.test_eee_dataGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.test_trackBar1)).BeginInit();
     this.SuspendLayout();
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(192, 298);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 0;
     this.button1.Text = "Apply";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // test_textBox1
     //
     this.test_textBox1.Location = new System.Drawing.Point(12, 301);
     this.test_textBox1.Name = "test_textBox1";
     this.test_textBox1.Size = new System.Drawing.Size(100, 20);
     this.test_textBox1.TabIndex = 1;
     //
     // test_numericUpDown1
     //
     this.test_numericUpDown1.AccessibleDescription = "It sets limit for rows which are used";
     this.test_numericUpDown1.AccessibleName = "test_numericUpDown1";
     this.test_numericUpDown1.Location = new System.Drawing.Point(12, 275);
     this.test_numericUpDown1.Maximum = new decimal(new int[] {
     10000,
     0,
     0,
     0});
     this.test_numericUpDown1.Name = "test_numericUpDown1";
     this.test_numericUpDown1.Size = new System.Drawing.Size(120, 20);
     this.test_numericUpDown1.TabIndex = 2;
     //
     // test_eee_dataGridView1
     //
     this.test_eee_dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.test_eee_dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.A,
     this.B});
     this.test_eee_dataGridView1.Location = new System.Drawing.Point(12, 26);
     this.test_eee_dataGridView1.Name = "test_eee_dataGridView1";
     this.test_eee_dataGridView1.Size = new System.Drawing.Size(255, 83);
     this.test_eee_dataGridView1.TabIndex = 3;
     //
     // A
     //
     this.A.HeaderText = "A";
     this.A.Name = "A";
     //
     // B
     //
     this.B.HeaderText = "B";
     this.B.Name = "B";
     //
     // test_checkBox1
     //
     this.test_checkBox1.AccessibleDescription = "demo check box";
     this.test_checkBox1.AutoSize = true;
     this.test_checkBox1.Location = new System.Drawing.Point(12, 252);
     this.test_checkBox1.Name = "test_checkBox1";
     this.test_checkBox1.Size = new System.Drawing.Size(80, 17);
     this.test_checkBox1.TabIndex = 4;
     this.test_checkBox1.Text = "checkBox1";
     this.test_checkBox1.UseVisualStyleBackColor = true;
     //
     // test_richTextBox1
     //
     this.test_richTextBox1.AccessibleDescription = "rich text area demo test";
     this.test_richTextBox1.Location = new System.Drawing.Point(192, 238);
     this.test_richTextBox1.Name = "test_richTextBox1";
     this.test_richTextBox1.Size = new System.Drawing.Size(75, 54);
     this.test_richTextBox1.TabIndex = 5;
     this.test_richTextBox1.Text = "";
     //
     // test_trackBar1
     //
     this.test_trackBar1.AccessibleDescription = "racking bar demo test";
     this.test_trackBar1.AutoSize = false;
     this.test_trackBar1.Location = new System.Drawing.Point(12, 213);
     this.test_trackBar1.Name = "test_trackBar1";
     this.test_trackBar1.Size = new System.Drawing.Size(159, 33);
     this.test_trackBar1.TabIndex = 6;
     //
     // test_dd_checkedListBox1
     //
     this.test_dd_checkedListBox1.FormattingEnabled = true;
     this.test_dd_checkedListBox1.Items.AddRange(new object[] {
     "Q",
     "W",
     "E",
     "R",
     "T",
     "Y"});
     this.test_dd_checkedListBox1.Location = new System.Drawing.Point(12, 115);
     this.test_dd_checkedListBox1.Name = "test_dd_checkedListBox1";
     this.test_dd_checkedListBox1.Size = new System.Drawing.Size(120, 94);
     this.test_dd_checkedListBox1.TabIndex = 7;
     //
     // test_dd_domainUpDown1
     //
     this.test_dd_domainUpDown1.Items.Add("1111");
     this.test_dd_domainUpDown1.Items.Add("2222");
     this.test_dd_domainUpDown1.Items.Add("3333");
     this.test_dd_domainUpDown1.Items.Add("4444");
     this.test_dd_domainUpDown1.Items.Add("aaaa");
     this.test_dd_domainUpDown1.Items.Add("bbb");
     this.test_dd_domainUpDown1.Items.Add("ccc");
     this.test_dd_domainUpDown1.Location = new System.Drawing.Point(138, 115);
     this.test_dd_domainUpDown1.Name = "test_dd_domainUpDown1";
     this.test_dd_domainUpDown1.Size = new System.Drawing.Size(120, 20);
     this.test_dd_domainUpDown1.TabIndex = 8;
     this.test_dd_domainUpDown1.Text = "domainUpDown1";
     //
     // test_dd_listBox1
     //
     this.test_dd_listBox1.FormattingEnabled = true;
     this.test_dd_listBox1.Items.AddRange(new object[] {
     "amber",
     "cold",
     "silver",
     "emerald"});
     this.test_dd_listBox1.Location = new System.Drawing.Point(138, 141);
     this.test_dd_listBox1.Name = "test_dd_listBox1";
     this.test_dd_listBox1.Size = new System.Drawing.Size(120, 43);
     this.test_dd_listBox1.TabIndex = 9;
     //
     // test_dd_dateTimePicker1
     //
     this.test_dd_dateTimePicker1.Location = new System.Drawing.Point(138, 190);
     this.test_dd_dateTimePicker1.Name = "test_dd_dateTimePicker1";
     this.test_dd_dateTimePicker1.Size = new System.Drawing.Size(120, 20);
     this.test_dd_dateTimePicker1.TabIndex = 10;
     //
     // test_eee_comboBox1
     //
     this.test_eee_comboBox1.FormattingEnabled = true;
     this.test_eee_comboBox1.Items.AddRange(new object[] {
     "A",
     "B",
     "C",
     "D"});
     this.test_eee_comboBox1.Location = new System.Drawing.Point(118, 301);
     this.test_eee_comboBox1.Name = "test_eee_comboBox1";
     this.test_eee_comboBox1.Size = new System.Drawing.Size(68, 21);
     this.test_eee_comboBox1.TabIndex = 11;
     //
     // TestAppSettings
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.ClientSize = new System.Drawing.Size(279, 333);
     this.Controls.Add(this.test_eee_comboBox1);
     this.Controls.Add(this.test_dd_dateTimePicker1);
     this.Controls.Add(this.test_dd_listBox1);
     this.Controls.Add(this.test_dd_domainUpDown1);
     this.Controls.Add(this.test_dd_checkedListBox1);
     this.Controls.Add(this.test_trackBar1);
     this.Controls.Add(this.test_richTextBox1);
     this.Controls.Add(this.test_checkBox1);
     this.Controls.Add(this.test_eee_dataGridView1);
     this.Controls.Add(this.test_numericUpDown1);
     this.Controls.Add(this.test_textBox1);
     this.Controls.Add(this.button1);
     this.Name = "TestAppSettings";
     ((System.ComponentModel.ISupportInitialize)(this.test_numericUpDown1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.test_eee_dataGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.test_trackBar1)).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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label79 = new System.Windows.Forms.Label();
     this.lbEvents = new System.Windows.Forms.ListBox();
     this.label1 = new System.Windows.Forms.Label();
     this.tabControl2 = new System.Windows.Forms.TabControl();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.label76 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.label72 = new System.Windows.Forms.Label();
     this.label70 = new System.Windows.Forms.Label();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.label75 = new System.Windows.Forms.Label();
     this.label74 = new System.Windows.Forms.Label();
     this.label73 = new System.Windows.Forms.Label();
     this.tabCalender = new System.Windows.Forms.TabPage();
     this.btBookAppointment = new System.Windows.Forms.Button();
     this.lbxBirthDays = new System.Windows.Forms.ListBox();
     this.label44 = new System.Windows.Forms.Label();
     this.label43 = new System.Windows.Forms.Label();
     this.lbChosenDayInCalendar = new System.Windows.Forms.Label();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.Time = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Activity = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.mcForDayCalendar = new System.Windows.Forms.MonthCalendar();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.tabCtrlJournal = new System.Windows.Forms.TabControl();
     this.tabJournalCompany = new System.Windows.Forms.TabPage();
     this.lbxJournalCompanyNotes = new System.Windows.Forms.ListBox();
     this.rtxbCompanyJournalNoteDate = new System.Windows.Forms.TextBox();
     this.rtxbCompanyJournalNoteText = new System.Windows.Forms.RichTextBox();
     this.lbCompanyJournal = new System.Windows.Forms.ListBox();
     this.pictureBox4 = new System.Windows.Forms.PictureBox();
     this.tabContactJournal = new System.Windows.Forms.TabPage();
     this.rtxbContactJournalNoteDate = new System.Windows.Forms.TextBox();
     this.lbxJournalContactNotes = new System.Windows.Forms.ListBox();
     this.rtbxContactNote = new System.Windows.Forms.RichTextBox();
     this.pictureBox5 = new System.Windows.Forms.PictureBox();
     this.lbContactsJournal = new System.Windows.Forms.ListBox();
     this.tabSearchAllNotes = new System.Windows.Forms.TabPage();
     this.tbAllNotesDate = new System.Windows.Forms.TextBox();
     this.lbxAllNotes = new System.Windows.Forms.ListBox();
     this.rtxbAllNotesText = new System.Windows.Forms.RichTextBox();
     this.pictureBox6 = new System.Windows.Forms.PictureBox();
     this.btSearchNotes = new System.Windows.Forms.Button();
     this.txbSearchAllNotes = new System.Windows.Forms.TextBox();
     this.mcInSearchNotes = new System.Windows.Forms.MonthCalendar();
     this.btUserManual = new System.Windows.Forms.Button();
     this.btJournal = new System.Windows.Forms.Button();
     this.btAppointments = new System.Windows.Forms.Button();
     this.btCompanies = new System.Windows.Forms.Button();
     this.btContacts = new System.Windows.Forms.Button();
     this.btHome = new System.Windows.Forms.Button();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
     this.tabCtrlCompanies = new System.Windows.Forms.TabControl();
     this.tabAddCompany = new System.Windows.Forms.TabPage();
     this.btClearSelection = new System.Windows.Forms.Button();
     this.cbCompanies = new System.Windows.Forms.ComboBox();
     this.label61 = new System.Windows.Forms.Label();
     this.lbxContacts = new System.Windows.Forms.ListBox();
     this.pbxCompanyLogo = new System.Windows.Forms.PictureBox();
     this.btDelContactFromCompany = new System.Windows.Forms.Button();
     this.btContactToCompany = new System.Windows.Forms.Button();
     this.btCompanyAddLogo = new System.Windows.Forms.Button();
     this.label77 = new System.Windows.Forms.Label();
     this.label42 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.btDelCompany = new System.Windows.Forms.Button();
     this.btAddCompany = new System.Windows.Forms.Button();
     this.cbxSameAdress = new System.Windows.Forms.CheckBox();
     this.label29 = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label32 = new System.Windows.Forms.Label();
     this.label33 = new System.Windows.Forms.Label();
     this.tbPostalPostNumber = new System.Windows.Forms.TextBox();
     this.tbPostalStreet = new System.Windows.Forms.TextBox();
     this.tbPostalCountry = new System.Windows.Forms.TextBox();
     this.tbPostalCity = new System.Windows.Forms.TextBox();
     this.cbCustomerType = new System.Windows.Forms.ComboBox();
     this.label34 = new System.Windows.Forms.Label();
     this.label35 = new System.Windows.Forms.Label();
     this.label36 = new System.Windows.Forms.Label();
     this.label37 = new System.Windows.Forms.Label();
     this.label38 = new System.Windows.Forms.Label();
     this.label39 = new System.Windows.Forms.Label();
     this.label40 = new System.Windows.Forms.Label();
     this.tbVisitPostNumber = new System.Windows.Forms.TextBox();
     this.tbVisitStreet = new System.Windows.Forms.TextBox();
     this.tbVisitCountry = new System.Windows.Forms.TextBox();
     this.tbVisitCity = new System.Windows.Forms.TextBox();
     this.tbVatNr = new System.Windows.Forms.TextBox();
     this.tbTelephone = new System.Windows.Forms.TextBox();
     this.tbWebPage = new System.Windows.Forms.TextBox();
     this.tbEmail = new System.Windows.Forms.TextBox();
     this.tbCompanyName = new System.Windows.Forms.TextBox();
     this.label41 = new System.Windows.Forms.Label();
     this.label51 = new System.Windows.Forms.Label();
     this.tabViewCompanyNote = new System.Windows.Forms.TabPage();
     this.label64 = new System.Windows.Forms.Label();
     this.label63 = new System.Windows.Forms.Label();
     this.lbNoteInfo = new System.Windows.Forms.Label();
     this.lbNoteSelectNote = new System.Windows.Forms.Label();
     this.label60 = new System.Windows.Forms.Label();
     this.btCompanyNoteClear = new System.Windows.Forms.Button();
     this.btNoteCompanyRemoveNote = new System.Windows.Forms.Button();
     this.btSaveCompanyNote = new System.Windows.Forms.Button();
     this.tbNoteCompanySubject = new System.Windows.Forms.TextBox();
     this.rtxNoteCompanyBody = new System.Windows.Forms.RichTextBox();
     this.cbNoteCompanyNote = new System.Windows.Forms.ComboBox();
     this.cbNoteSelectCompany = new System.Windows.Forms.ComboBox();
     this.tabViewCompanyContacts = new System.Windows.Forms.TabPage();
     this.btAddCompanyContactsDone = new System.Windows.Forms.Button();
     this.btAddContactToCompany = new System.Windows.Forms.Button();
     this.dgwCompanyContacts = new System.Windows.Forms.DataGridView();
     this.tabCtrlAppoinments = new System.Windows.Forms.TabControl();
     this.tabAddAppointment = new System.Windows.Forms.TabPage();
     this.btSaveEditedAppointment = new System.Windows.Forms.Button();
     this.label21 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.clbContacts = new System.Windows.Forms.CheckedListBox();
     this.label20 = new System.Windows.Forms.Label();
     this.tbCountry = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.dtpReminderTime = new System.Windows.Forms.DateTimePicker();
     this.dtpAppointmentTimeEnd = new System.Windows.Forms.DateTimePicker();
     this.dtpAppointmentTimeStart = new System.Windows.Forms.DateTimePicker();
     this.btSave = new System.Windows.Forms.Button();
     this.cbReminderType = new System.Windows.Forms.ComboBox();
     this.label15 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.dtpReminderDate = new System.Windows.Forms.DateTimePicker();
     this.label13 = new System.Windows.Forms.Label();
     this.tbSubject = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.rtbNotes = new System.Windows.Forms.RichTextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.cbCompany = new System.Windows.Forms.ComboBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.dtpAppointmentDateStart = new System.Windows.Forms.DateTimePicker();
     this.tbCity = new System.Windows.Forms.TextBox();
     this.tbPostnumber = new System.Windows.Forms.TextBox();
     this.tbStreet = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.cbAppoinmentType = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.tabViewAppointment = new System.Windows.Forms.TabPage();
     this.btViewDetailsOfAppointment = new System.Windows.Forms.Button();
     this.tbSearchAppointmentsByContact = new System.Windows.Forms.TextBox();
     this.panelSearchOptionsAppointments = new System.Windows.Forms.Panel();
     this.rbtSearchByAppointmentDate = new System.Windows.Forms.RadioButton();
     this.rtbSearchAppointmentsByContacts = new System.Windows.Forms.RadioButton();
     this.rbtSearchAppointmentsByCompany = new System.Windows.Forms.RadioButton();
     this.rbtSearchwordAppointment = new System.Windows.Forms.RadioButton();
     this.btDelAppointment = new System.Windows.Forms.Button();
     this.btEditAppointment = new System.Windows.Forms.Button();
     this.tbSearchAppointmentsWithFilter = new System.Windows.Forms.Button();
     this.dgvViewAppoinments = new System.Windows.Forms.DataGridView();
     this.cbCompanySearch = new System.Windows.Forms.ComboBox();
     this.label22 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label23 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.tbSearchQuery = new System.Windows.Forms.TextBox();
     this.mcAppointments = new System.Windows.Forms.MonthCalendar();
     this.tabAppointmentDetails = new System.Windows.Forms.TabPage();
     this.lbViewAppointmentContacts = new System.Windows.Forms.ListBox();
     this.label69 = new System.Windows.Forms.Label();
     this.lbViewAppointmentCompany = new System.Windows.Forms.Label();
     this.lbViewAppointmentCountry = new System.Windows.Forms.Label();
     this.lbViewAppointmentCity = new System.Windows.Forms.Label();
     this.lbViewAppointmentStreet = new System.Windows.Forms.Label();
     this.lbViewAppointmentPostnumber = new System.Windows.Forms.Label();
     this.lbViewAppointmentReminderType = new System.Windows.Forms.Label();
     this.lbViewAppointmentReminderTime = new System.Windows.Forms.Label();
     this.lbViewAppointmentReminderDate = new System.Windows.Forms.Label();
     this.lbViewAppointmentType = new System.Windows.Forms.Label();
     this.lbViewAppointmentStartTime = new System.Windows.Forms.Label();
     this.lbViewAppointmentEndTime = new System.Windows.Forms.Label();
     this.label71 = new System.Windows.Forms.Label();
     this.lbViewAppointmentSubject = new System.Windows.Forms.Label();
     this.lbViewAppointmentStartDate = new System.Windows.Forms.Label();
     this.label45 = new System.Windows.Forms.Label();
     this.label46 = new System.Windows.Forms.Label();
     this.label47 = new System.Windows.Forms.Label();
     this.label48 = new System.Windows.Forms.Label();
     this.label50 = new System.Windows.Forms.Label();
     this.label52 = new System.Windows.Forms.Label();
     this.label53 = new System.Windows.Forms.Label();
     this.label54 = new System.Windows.Forms.Label();
     this.rtxbViewAppointmentNote = new System.Windows.Forms.RichTextBox();
     this.label55 = new System.Windows.Forms.Label();
     this.label56 = new System.Windows.Forms.Label();
     this.label57 = new System.Windows.Forms.Label();
     this.label58 = new System.Windows.Forms.Label();
     this.label62 = new System.Windows.Forms.Label();
     this.label65 = new System.Windows.Forms.Label();
     this.label66 = new System.Windows.Forms.Label();
     this.label67 = new System.Windows.Forms.Label();
     this.label68 = new System.Windows.Forms.Label();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.pbHome = new System.Windows.Forms.PictureBox();
     this.tabCtrlContact = new System.Windows.Forms.TabControl();
     this.tabAddContact = new System.Windows.Forms.TabPage();
     this.lbSocialSecurity = new System.Windows.Forms.Label();
     this.dtpDateOfBirth = new System.Windows.Forms.DateTimePicker();
     this.btSaveEditedContact = new System.Windows.Forms.Button();
     this.btCreate = new System.Windows.Forms.Button();
     this.tbxSsn = new System.Windows.Forms.TextBox();
     this.tbxCountry = new System.Windows.Forms.TextBox();
     this.tbxCity = new System.Windows.Forms.TextBox();
     this.tbxPostnr = new System.Windows.Forms.TextBox();
     this.tbxStreet = new System.Windows.Forms.TextBox();
     this.tbxMobile = new System.Windows.Forms.TextBox();
     this.tbxHomeNr = new System.Windows.Forms.TextBox();
     this.tbxEmail = new System.Windows.Forms.TextBox();
     this.btEdit = new System.Windows.Forms.Button();
     this.tbxName = new System.Windows.Forms.TextBox();
     this.tbxSurname = new System.Windows.Forms.TextBox();
     this.lbSSN = new System.Windows.Forms.Label();
     this.lbCountry = new System.Windows.Forms.Label();
     this.lbCity = new System.Windows.Forms.Label();
     this.btUpload = new System.Windows.Forms.Button();
     this.lbImage = new System.Windows.Forms.Label();
     this.lbMobile = new System.Windows.Forms.Label();
     this.pbxImage = new System.Windows.Forms.PictureBox();
     this.lbPostnr = new System.Windows.Forms.Label();
     this.lbHome = new System.Windows.Forms.Label();
     this.lbTele = new System.Windows.Forms.Label();
     this.lbContactInfo = new System.Windows.Forms.Label();
     this.lbStreet = new System.Windows.Forms.Label();
     this.lbAddress = new System.Windows.Forms.Label();
     this.lbDOB = new System.Windows.Forms.Label();
     this.lbEmail = new System.Windows.Forms.Label();
     this.lbPersInfo = new System.Windows.Forms.Label();
     this.lbName = new System.Windows.Forms.Label();
     this.lbSurname = new System.Windows.Forms.Label();
     this.tabAddDetails = new System.Windows.Forms.TabPage();
     this.btAddIntrestest = new System.Windows.Forms.Button();
     this.dtpRelDateOfBirth = new System.Windows.Forms.DateTimePicker();
     this.label78 = new System.Windows.Forms.Label();
     this.cbContactToAddDetail = new System.Windows.Forms.ComboBox();
     this.lbRelDob = new System.Windows.Forms.Label();
     this.cbxAddRel = new System.Windows.Forms.CheckBox();
     this.btCreateRela = new System.Windows.Forms.Button();
     this.cbxRelType = new System.Windows.Forms.ComboBox();
     this.tbxRelaSurname = new System.Windows.Forms.TextBox();
     this.tbxRelaName = new System.Windows.Forms.TextBox();
     this.lbRelType = new System.Windows.Forms.Label();
     this.lbRelaSurname = new System.Windows.Forms.Label();
     this.lbRelaName = new System.Windows.Forms.Label();
     this.lbxRelatives = new System.Windows.Forms.ListBox();
     this.lbRelatives = new System.Windows.Forms.Label();
     this.clbInterests = new System.Windows.Forms.CheckedListBox();
     this.lbInterest = new System.Windows.Forms.Label();
     this.tabViewContacts = new System.Windows.Forms.TabPage();
     this.btSelectContact = new System.Windows.Forms.Button();
     this.btDeleteContact = new System.Windows.Forms.Button();
     this.dataGridViewContacts = new System.Windows.Forms.DataGridView();
     this.tabContactNote = new System.Windows.Forms.TabPage();
     this.btContactNoteSave = new System.Windows.Forms.Button();
     this.btContactNoteDel = new System.Windows.Forms.Button();
     this.btContactNoteClear = new System.Windows.Forms.Button();
     this.rtbContactNoteBody = new System.Windows.Forms.RichTextBox();
     this.tbContactNoteSubject = new System.Windows.Forms.TextBox();
     this.cbContactNoteNote = new System.Windows.Forms.ComboBox();
     this.cbContactNoteRelative = new System.Windows.Forms.ComboBox();
     this.cbContactNoteContact = new System.Windows.Forms.ComboBox();
     this.label59 = new System.Windows.Forms.Label();
     this.label49 = new System.Windows.Forms.Label();
     this.lbSelectRelative = new System.Windows.Forms.Label();
     this.lbRelativeInfo = new System.Windows.Forms.Label();
     this.lbAddContactNoteInfo = new System.Windows.Forms.Label();
     this.lbContactNoteSelectNote = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.tabCtrlUserManual = new System.Windows.Forms.TabControl();
     this.tabUserManual = new System.Windows.Forms.TabPage();
     this.webUserManual = new System.Windows.Forms.WebBrowser();
     this.groupBox1.SuspendLayout();
     this.tabControl2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     this.tabPage4.SuspendLayout();
     this.tabCalender.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tabCtrlJournal.SuspendLayout();
     this.tabJournalCompany.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     this.tabContactJournal.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
     this.tabSearchAllNotes.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     this.tabCtrlCompanies.SuspendLayout();
     this.tabAddCompany.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxCompanyLogo)).BeginInit();
     this.tabViewCompanyNote.SuspendLayout();
     this.tabViewCompanyContacts.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgwCompanyContacts)).BeginInit();
     this.tabCtrlAppoinments.SuspendLayout();
     this.tabAddAppointment.SuspendLayout();
     this.tabViewAppointment.SuspendLayout();
     this.panelSearchOptionsAppointments.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvViewAppoinments)).BeginInit();
     this.tabAppointmentDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbHome)).BeginInit();
     this.tabCtrlContact.SuspendLayout();
     this.tabAddContact.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxImage)).BeginInit();
     this.tabAddDetails.SuspendLayout();
     this.tabViewContacts.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewContacts)).BeginInit();
     this.tabContactNote.SuspendLayout();
     this.tabCtrlUserManual.SuspendLayout();
     this.tabUserManual.SuspendLayout();
     this.SuspendLayout();
     //
     // monthCalendar1
     //
     this.monthCalendar1.ForeColor = System.Drawing.Color.White;
     this.monthCalendar1.Location = new System.Drawing.Point(976, 61);
     this.monthCalendar1.Name = "monthCalendar1";
     this.monthCalendar1.TabIndex = 0;
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(114)))), ((int)(((byte)(193)))), ((int)(((byte)(176)))));
     this.groupBox1.Controls.Add(this.label79);
     this.groupBox1.Controls.Add(this.lbEvents);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(981, 228);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(166, 331);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     //
     // label79
     //
     this.label79.Location = new System.Drawing.Point(-291, 71);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(263, 22);
     this.label79.TabIndex = 95;
     this.label79.Text = "label71";
     //
     // lbEvents
     //
     this.lbEvents.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(83)))), ((int)(((byte)(196)))), ((int)(((byte)(170)))));
     this.lbEvents.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lbEvents.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbEvents.ForeColor = System.Drawing.Color.White;
     this.lbEvents.FormattingEnabled = true;
     this.lbEvents.ItemHeight = 14;
     this.lbEvents.Location = new System.Drawing.Point(6, 30);
     this.lbEvents.Name = "lbEvents";
     this.lbEvents.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.lbEvents.Size = new System.Drawing.Size(154, 294);
     this.lbEvents.TabIndex = 53;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(12, 11);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(125, 16);
     this.label1.TabIndex = 0;
     this.label1.Text = "Uppcoming events";
     //
     // tabControl2
     //
     this.tabControl2.Controls.Add(this.tabPage3);
     this.tabControl2.Controls.Add(this.tabPage4);
     this.tabControl2.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControl2.Location = new System.Drawing.Point(157, 565);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(990, 157);
     this.tabControl2.TabIndex = 3;
     //
     // tabPage3
     //
     this.tabPage3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(111)))), ((int)(((byte)(29)))));
     this.tabPage3.Controls.Add(this.label76);
     this.tabPage3.Controls.Add(this.label17);
     this.tabPage3.Controls.Add(this.pictureBox3);
     this.tabPage3.Controls.Add(this.label72);
     this.tabPage3.Controls.Add(this.label70);
     this.tabPage3.Controls.Add(this.linkLabel1);
     this.tabPage3.ForeColor = System.Drawing.Color.White;
     this.tabPage3.Location = new System.Drawing.Point(4, 26);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size = new System.Drawing.Size(982, 127);
     this.tabPage3.TabIndex = 0;
     this.tabPage3.Text = "Help";
     //
     // label76
     //
     this.label76.AutoSize = true;
     this.label76.Location = new System.Drawing.Point(301, 52);
     this.label76.Name = "label76";
     this.label76.Size = new System.Drawing.Size(193, 17);
     this.label76.TabIndex = 5;
     this.label76.Text = "Hours: Mon-Fri 08:00 - 18:00";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(41, 25);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(129, 17);
     this.label17.TabIndex = 0;
     this.label17.Text = "Open user manual";
     //
     // pictureBox3
     //
     this.pictureBox3.Image = global::CsiCrm.Properties.Resources.filemanager1;
     this.pictureBox3.Location = new System.Drawing.Point(6, 3);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new System.Drawing.Size(75, 62);
     this.pictureBox3.TabIndex = 4;
     this.pictureBox3.TabStop = false;
     //
     // label72
     //
     this.label72.AutoSize = true;
     this.label72.Location = new System.Drawing.Point(301, 78);
     this.label72.Name = "label72";
     this.label72.Size = new System.Drawing.Size(132, 17);
     this.label72.TabIndex = 3;
     this.label72.Text = "*****@*****.**";
     //
     // label70
     //
     this.label70.AutoSize = true;
     this.label70.Location = new System.Drawing.Point(301, 25);
     this.label70.Name = "label70";
     this.label70.Size = new System.Drawing.Size(181, 17);
     this.label70.TabIndex = 2;
     this.label70.Text = "Help desk: +46 906882294";
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.LinkColor = System.Drawing.Color.White;
     this.linkLabel1.Location = new System.Drawing.Point(8, 78);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(228, 17);
     this.linkLabel1.TabIndex = 1;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "http://www.infovoid.com/sico-crm/";
     //
     // tabPage4
     //
     this.tabPage4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(109)))), ((int)(((byte)(88)))));
     this.tabPage4.Controls.Add(this.label75);
     this.tabPage4.Controls.Add(this.label74);
     this.tabPage4.Controls.Add(this.label73);
     this.tabPage4.Location = new System.Drawing.Point(4, 26);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size = new System.Drawing.Size(982, 127);
     this.tabPage4.TabIndex = 1;
     this.tabPage4.Text = "License";
     //
     // label75
     //
     this.label75.AutoSize = true;
     this.label75.ForeColor = System.Drawing.Color.White;
     this.label75.Location = new System.Drawing.Point(10, 79);
     this.label75.Name = "label75";
     this.label75.Size = new System.Drawing.Size(280, 17);
     this.label75.TabIndex = 3;
     this.label75.Text = "For latest updates please visit our website";
     //
     // label74
     //
     this.label74.AutoSize = true;
     this.label74.ForeColor = System.Drawing.Color.White;
     this.label74.Location = new System.Drawing.Point(10, 48);
     this.label74.Name = "label74";
     this.label74.Size = new System.Drawing.Size(144, 17);
     this.label74.TabIndex = 2;
     this.label74.Text = "Copyright SICo-CRM";
     //
     // label73
     //
     this.label73.AutoSize = true;
     this.label73.ForeColor = System.Drawing.Color.White;
     this.label73.Location = new System.Drawing.Point(10, 18);
     this.label73.Name = "label73";
     this.label73.Size = new System.Drawing.Size(418, 17);
     this.label73.TabIndex = 1;
     this.label73.Text = "SICo-CRM version:  1.0 Small business Sole Proprietor Edition ";
     //
     // tabCalender
     //
     this.tabCalender.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabCalender.Controls.Add(this.btBookAppointment);
     this.tabCalender.Controls.Add(this.lbxBirthDays);
     this.tabCalender.Controls.Add(this.label44);
     this.tabCalender.Controls.Add(this.label43);
     this.tabCalender.Controls.Add(this.lbChosenDayInCalendar);
     this.tabCalender.Controls.Add(this.dataGridView1);
     this.tabCalender.Controls.Add(this.mcForDayCalendar);
     this.tabCalender.Controls.Add(this.pictureBox1);
     this.tabCalender.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCalender.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabCalender.Location = new System.Drawing.Point(4, 26);
     this.tabCalender.Name = "tabCalender";
     this.tabCalender.Padding = new System.Windows.Forms.Padding(3);
     this.tabCalender.Size = new System.Drawing.Size(799, 468);
     this.tabCalender.TabIndex = 0;
     this.tabCalender.Text = "Calendar";
     //
     // btBookAppointment
     //
     this.btBookAppointment.Location = new System.Drawing.Point(581, 418);
     this.btBookAppointment.Name = "btBookAppointment";
     this.btBookAppointment.Size = new System.Drawing.Size(175, 34);
     this.btBookAppointment.TabIndex = 7;
     this.btBookAppointment.Text = "Book Appointment";
     this.btBookAppointment.UseVisualStyleBackColor = true;
     this.btBookAppointment.Click += new System.EventHandler(this.BtBookAppointmentClick);
     //
     // lbxBirthDays
     //
     this.lbxBirthDays.FormattingEnabled = true;
     this.lbxBirthDays.ItemHeight = 18;
     this.lbxBirthDays.Location = new System.Drawing.Point(5, 294);
     this.lbxBirthDays.Name = "lbxBirthDays";
     this.lbxBirthDays.Size = new System.Drawing.Size(170, 166);
     this.lbxBirthDays.TabIndex = 6;
     //
     // label44
     //
     this.label44.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label44.Location = new System.Drawing.Point(10, 260);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(159, 27);
     this.label44.TabIndex = 5;
     this.label44.Text = "Birthdays:";
     this.label44.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label43
     //
     this.label43.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label43.Location = new System.Drawing.Point(8, 191);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(159, 27);
     this.label43.TabIndex = 4;
     this.label43.Text = "Day calendar for:";
     this.label43.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lbChosenDayInCalendar
     //
     this.lbChosenDayInCalendar.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbChosenDayInCalendar.ForeColor = System.Drawing.Color.DodgerBlue;
     this.lbChosenDayInCalendar.Location = new System.Drawing.Point(34, 216);
     this.lbChosenDayInCalendar.Name = "lbChosenDayInCalendar";
     this.lbChosenDayInCalendar.Size = new System.Drawing.Size(98, 27);
     this.lbChosenDayInCalendar.TabIndex = 3;
     this.lbChosenDayInCalendar.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.AllowUserToResizeColumns = false;
     this.dataGridView1.AllowUserToResizeRows = false;
     this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Time,
     this.Activity});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(243)))), ((int)(((byte)(73)))));
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridView1.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridView1.GridColor = System.Drawing.Color.DeepSkyBlue;
     this.dataGridView1.Location = new System.Drawing.Point(237, 26);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.ReadOnly = true;
     this.dataGridView1.RowHeadersVisible = false;
     this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridView1.Size = new System.Drawing.Size(521, 425);
     this.dataGridView1.TabIndex = 1;
     //
     // Time
     //
     this.Time.FillWeight = 18.27411F;
     this.Time.HeaderText = "Time";
     this.Time.Name = "Time";
     this.Time.ReadOnly = true;
     //
     // Activity
     //
     this.Activity.FillWeight = 181.7259F;
     this.Activity.HeaderText = "Activity";
     this.Activity.Name = "Activity";
     this.Activity.ReadOnly = true;
     //
     // mcForDayCalendar
     //
     this.mcForDayCalendar.Location = new System.Drawing.Point(5, 15);
     this.mcForDayCalendar.MaxSelectionCount = 1;
     this.mcForDayCalendar.Name = "mcForDayCalendar";
     this.mcForDayCalendar.TabIndex = 0;
     this.mcForDayCalendar.DateChanged += new System.Windows.Forms.DateRangeEventHandler(this.McForDayCalendarDateChanged);
     this.mcForDayCalendar.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.McForDayCalendarDateSelected);
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox1.Image = global::CsiCrm.Properties.Resources.NoteBookBG;
     this.pictureBox1.Location = new System.Drawing.Point(175, 9);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(622, 488);
     this.pictureBox1.TabIndex = 2;
     this.pictureBox1.TabStop = false;
     //
     // tabCtrlJournal
     //
     this.tabCtrlJournal.Controls.Add(this.tabCalender);
     this.tabCtrlJournal.Controls.Add(this.tabJournalCompany);
     this.tabCtrlJournal.Controls.Add(this.tabContactJournal);
     this.tabCtrlJournal.Controls.Add(this.tabSearchAllNotes);
     this.tabCtrlJournal.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCtrlJournal.Location = new System.Drawing.Point(157, 61);
     this.tabCtrlJournal.Name = "tabCtrlJournal";
     this.tabCtrlJournal.SelectedIndex = 0;
     this.tabCtrlJournal.Size = new System.Drawing.Size(807, 498);
     this.tabCtrlJournal.TabIndex = 2;
     this.tabCtrlJournal.Visible = false;
     this.tabCtrlJournal.SelectedIndexChanged += new System.EventHandler(this.TabCtrlJournalSelectedIndexChanged);
     //
     // tabJournalCompany
     //
     this.tabJournalCompany.Controls.Add(this.lbxJournalCompanyNotes);
     this.tabJournalCompany.Controls.Add(this.rtxbCompanyJournalNoteDate);
     this.tabJournalCompany.Controls.Add(this.rtxbCompanyJournalNoteText);
     this.tabJournalCompany.Controls.Add(this.lbCompanyJournal);
     this.tabJournalCompany.Controls.Add(this.pictureBox4);
     this.tabJournalCompany.Location = new System.Drawing.Point(4, 26);
     this.tabJournalCompany.Name = "tabJournalCompany";
     this.tabJournalCompany.Padding = new System.Windows.Forms.Padding(3);
     this.tabJournalCompany.Size = new System.Drawing.Size(799, 468);
     this.tabJournalCompany.TabIndex = 1;
     this.tabJournalCompany.Text = "Company Journal";
     this.tabJournalCompany.UseVisualStyleBackColor = true;
     //
     // lbxJournalCompanyNotes
     //
     this.lbxJournalCompanyNotes.FormattingEnabled = true;
     this.lbxJournalCompanyNotes.ItemHeight = 17;
     this.lbxJournalCompanyNotes.Location = new System.Drawing.Point(240, 39);
     this.lbxJournalCompanyNotes.Name = "lbxJournalCompanyNotes";
     this.lbxJournalCompanyNotes.Size = new System.Drawing.Size(219, 395);
     this.lbxJournalCompanyNotes.TabIndex = 15;
     this.lbxJournalCompanyNotes.SelectedIndexChanged += new System.EventHandler(this.LbxJournalCompanyNotesSelectedIndexChanged);
     //
     // rtxbCompanyJournalNoteDate
     //
     this.rtxbCompanyJournalNoteDate.Location = new System.Drawing.Point(613, 21);
     this.rtxbCompanyJournalNoteDate.Name = "rtxbCompanyJournalNoteDate";
     this.rtxbCompanyJournalNoteDate.Size = new System.Drawing.Size(146, 25);
     this.rtxbCompanyJournalNoteDate.TabIndex = 14;
     //
     // rtxbCompanyJournalNoteText
     //
     this.rtxbCompanyJournalNoteText.Location = new System.Drawing.Point(507, 56);
     this.rtxbCompanyJournalNoteText.Name = "rtxbCompanyJournalNoteText";
     this.rtxbCompanyJournalNoteText.Size = new System.Drawing.Size(255, 380);
     this.rtxbCompanyJournalNoteText.TabIndex = 10;
     this.rtxbCompanyJournalNoteText.Text = "";
     //
     // lbCompanyJournal
     //
     this.lbCompanyJournal.FormattingEnabled = true;
     this.lbCompanyJournal.ItemHeight = 17;
     this.lbCompanyJournal.Location = new System.Drawing.Point(7, 9);
     this.lbCompanyJournal.Name = "lbCompanyJournal";
     this.lbCompanyJournal.Size = new System.Drawing.Size(169, 446);
     this.lbCompanyJournal.TabIndex = 0;
     this.lbCompanyJournal.SelectedIndexChanged += new System.EventHandler(this.LbCompanyJournalSelectedIndexChanged);
     //
     // pictureBox4
     //
     this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox4.Image = global::CsiCrm.Properties.Resources.NoteBookBG;
     this.pictureBox4.Location = new System.Drawing.Point(179, -2);
     this.pictureBox4.Name = "pictureBox4";
     this.pictureBox4.Size = new System.Drawing.Size(622, 488);
     this.pictureBox4.TabIndex = 12;
     this.pictureBox4.TabStop = false;
     //
     // tabContactJournal
     //
     this.tabContactJournal.Controls.Add(this.rtxbContactJournalNoteDate);
     this.tabContactJournal.Controls.Add(this.lbxJournalContactNotes);
     this.tabContactJournal.Controls.Add(this.rtbxContactNote);
     this.tabContactJournal.Controls.Add(this.pictureBox5);
     this.tabContactJournal.Controls.Add(this.lbContactsJournal);
     this.tabContactJournal.Location = new System.Drawing.Point(4, 26);
     this.tabContactJournal.Name = "tabContactJournal";
     this.tabContactJournal.Padding = new System.Windows.Forms.Padding(3);
     this.tabContactJournal.Size = new System.Drawing.Size(799, 468);
     this.tabContactJournal.TabIndex = 2;
     this.tabContactJournal.Text = "Contact Journal";
     this.tabContactJournal.UseVisualStyleBackColor = true;
     //
     // rtxbContactJournalNoteDate
     //
     this.rtxbContactJournalNoteDate.Location = new System.Drawing.Point(591, 37);
     this.rtxbContactJournalNoteDate.Name = "rtxbContactJournalNoteDate";
     this.rtxbContactJournalNoteDate.Size = new System.Drawing.Size(167, 25);
     this.rtxbContactJournalNoteDate.TabIndex = 18;
     //
     // lbxJournalContactNotes
     //
     this.lbxJournalContactNotes.FormattingEnabled = true;
     this.lbxJournalContactNotes.ItemHeight = 17;
     this.lbxJournalContactNotes.Location = new System.Drawing.Point(240, 42);
     this.lbxJournalContactNotes.Name = "lbxJournalContactNotes";
     this.lbxJournalContactNotes.Size = new System.Drawing.Size(219, 395);
     this.lbxJournalContactNotes.TabIndex = 16;
     this.lbxJournalContactNotes.SelectedIndexChanged += new System.EventHandler(this.LbxJournalContactNotesSelectedIndexChanged);
     //
     // rtbxContactNote
     //
     this.rtbxContactNote.Location = new System.Drawing.Point(510, 72);
     this.rtbxContactNote.Name = "rtbxContactNote";
     this.rtbxContactNote.Size = new System.Drawing.Size(251, 365);
     this.rtbxContactNote.TabIndex = 15;
     this.rtbxContactNote.Text = "";
     //
     // pictureBox5
     //
     this.pictureBox5.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox5.Image = global::CsiCrm.Properties.Resources.NoteBookBG;
     this.pictureBox5.Location = new System.Drawing.Point(181, -1);
     this.pictureBox5.Name = "pictureBox5";
     this.pictureBox5.Size = new System.Drawing.Size(622, 488);
     this.pictureBox5.TabIndex = 13;
     this.pictureBox5.TabStop = false;
     //
     // lbContactsJournal
     //
     this.lbContactsJournal.FormattingEnabled = true;
     this.lbContactsJournal.ItemHeight = 17;
     this.lbContactsJournal.Location = new System.Drawing.Point(7, 11);
     this.lbContactsJournal.Name = "lbContactsJournal";
     this.lbContactsJournal.Size = new System.Drawing.Size(169, 446);
     this.lbContactsJournal.TabIndex = 1;
     this.lbContactsJournal.SelectedIndexChanged += new System.EventHandler(this.LbContactsJournalSelectedIndexChanged1);
     //
     // tabSearchAllNotes
     //
     this.tabSearchAllNotes.Controls.Add(this.tbAllNotesDate);
     this.tabSearchAllNotes.Controls.Add(this.lbxAllNotes);
     this.tabSearchAllNotes.Controls.Add(this.rtxbAllNotesText);
     this.tabSearchAllNotes.Controls.Add(this.pictureBox6);
     this.tabSearchAllNotes.Controls.Add(this.btSearchNotes);
     this.tabSearchAllNotes.Controls.Add(this.txbSearchAllNotes);
     this.tabSearchAllNotes.Controls.Add(this.mcInSearchNotes);
     this.tabSearchAllNotes.Location = new System.Drawing.Point(4, 26);
     this.tabSearchAllNotes.Name = "tabSearchAllNotes";
     this.tabSearchAllNotes.Padding = new System.Windows.Forms.Padding(3);
     this.tabSearchAllNotes.Size = new System.Drawing.Size(799, 468);
     this.tabSearchAllNotes.TabIndex = 3;
     this.tabSearchAllNotes.Text = "Search all notes";
     this.tabSearchAllNotes.UseVisualStyleBackColor = true;
     //
     // tbAllNotesDate
     //
     this.tbAllNotesDate.Location = new System.Drawing.Point(591, 32);
     this.tbAllNotesDate.Name = "tbAllNotesDate";
     this.tbAllNotesDate.Size = new System.Drawing.Size(167, 25);
     this.tbAllNotesDate.TabIndex = 19;
     //
     // lbxAllNotes
     //
     this.lbxAllNotes.FormattingEnabled = true;
     this.lbxAllNotes.ItemHeight = 17;
     this.lbxAllNotes.Location = new System.Drawing.Point(240, 41);
     this.lbxAllNotes.Name = "lbxAllNotes";
     this.lbxAllNotes.Size = new System.Drawing.Size(219, 395);
     this.lbxAllNotes.TabIndex = 18;
     this.lbxAllNotes.SelectedIndexChanged += new System.EventHandler(this.LbxAllNotesSelectedIndexChanged);
     //
     // rtxbAllNotesText
     //
     this.rtxbAllNotesText.Location = new System.Drawing.Point(512, 72);
     this.rtxbAllNotesText.Name = "rtxbAllNotesText";
     this.rtxbAllNotesText.Size = new System.Drawing.Size(250, 369);
     this.rtxbAllNotesText.TabIndex = 17;
     this.rtxbAllNotesText.Text = "";
     //
     // pictureBox6
     //
     this.pictureBox6.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox6.Image = global::CsiCrm.Properties.Resources.NoteBookBG;
     this.pictureBox6.Location = new System.Drawing.Point(180, 2);
     this.pictureBox6.Name = "pictureBox6";
     this.pictureBox6.Size = new System.Drawing.Size(622, 488);
     this.pictureBox6.TabIndex = 14;
     this.pictureBox6.TabStop = false;
     //
     // btSearchNotes
     //
     this.btSearchNotes.Location = new System.Drawing.Point(101, 264);
     this.btSearchNotes.Name = "btSearchNotes";
     this.btSearchNotes.Size = new System.Drawing.Size(75, 23);
     this.btSearchNotes.TabIndex = 2;
     this.btSearchNotes.Text = "Search";
     this.btSearchNotes.UseVisualStyleBackColor = true;
     this.btSearchNotes.Click += new System.EventHandler(this.BtSearchNotesClick);
     //
     // txbSearchAllNotes
     //
     this.txbSearchAllNotes.Location = new System.Drawing.Point(4, 223);
     this.txbSearchAllNotes.Name = "txbSearchAllNotes";
     this.txbSearchAllNotes.Size = new System.Drawing.Size(170, 25);
     this.txbSearchAllNotes.TabIndex = 1;
     //
     // mcInSearchNotes
     //
     this.mcInSearchNotes.Location = new System.Drawing.Point(3, 35);
     this.mcInSearchNotes.MaxSelectionCount = 1;
     this.mcInSearchNotes.Name = "mcInSearchNotes";
     this.mcInSearchNotes.TabIndex = 0;
     this.mcInSearchNotes.DateChanged += new System.Windows.Forms.DateRangeEventHandler(this.McInSearchNotesDateChanged);
     //
     // btUserManual
     //
     this.btUserManual.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(233)))), ((int)(((byte)(241)))));
     this.btUserManual.FlatAppearance.BorderSize = 0;
     this.btUserManual.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btUserManual.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btUserManual.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btUserManual.Font = new System.Drawing.Font("Microsoft Sans Serif", 12.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btUserManual.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(74)))), ((int)(((byte)(74)))), ((int)(((byte)(74)))));
     this.btUserManual.Image = global::CsiCrm.Properties.Resources.filemanager;
     this.btUserManual.Location = new System.Drawing.Point(11, 500);
     this.btUserManual.Name = "btUserManual";
     this.btUserManual.Size = new System.Drawing.Size(140, 55);
     this.btUserManual.TabIndex = 24;
     this.btUserManual.Text = "User Manual";
     this.btUserManual.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btUserManual.UseVisualStyleBackColor = false;
     this.btUserManual.Click += new System.EventHandler(this.BtUserManualClick);
     //
     // btJournal
     //
     this.btJournal.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(233)))), ((int)(((byte)(241)))));
     this.btJournal.FlatAppearance.BorderSize = 0;
     this.btJournal.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btJournal.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btJournal.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btJournal.Font = new System.Drawing.Font("Microsoft Sans Serif", 12.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btJournal.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(74)))), ((int)(((byte)(74)))), ((int)(((byte)(74)))));
     this.btJournal.Image = global::CsiCrm.Properties.Resources.journal;
     this.btJournal.Location = new System.Drawing.Point(11, 416);
     this.btJournal.Name = "btJournal";
     this.btJournal.Size = new System.Drawing.Size(140, 55);
     this.btJournal.TabIndex = 23;
     this.btJournal.Text = "Journal";
     this.btJournal.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btJournal.UseVisualStyleBackColor = false;
     this.btJournal.Click += new System.EventHandler(this.BtJournalClick1);
     //
     // btAppointments
     //
     this.btAppointments.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(233)))), ((int)(((byte)(241)))));
     this.btAppointments.FlatAppearance.BorderSize = 0;
     this.btAppointments.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btAppointments.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btAppointments.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btAppointments.Font = new System.Drawing.Font("Microsoft Sans Serif", 12.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btAppointments.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(74)))), ((int)(((byte)(74)))), ((int)(((byte)(74)))));
     this.btAppointments.Image = global::CsiCrm.Properties.Resources.appointments1;
     this.btAppointments.Location = new System.Drawing.Point(11, 335);
     this.btAppointments.Name = "btAppointments";
     this.btAppointments.Size = new System.Drawing.Size(140, 55);
     this.btAppointments.TabIndex = 22;
     this.btAppointments.Text = "Appointments";
     this.btAppointments.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btAppointments.UseVisualStyleBackColor = false;
     this.btAppointments.Click += new System.EventHandler(this.BtAppointmentsClick);
     //
     // btCompanies
     //
     this.btCompanies.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(233)))), ((int)(((byte)(241)))));
     this.btCompanies.FlatAppearance.BorderSize = 0;
     this.btCompanies.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btCompanies.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btCompanies.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btCompanies.Font = new System.Drawing.Font("Microsoft Sans Serif", 12.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btCompanies.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(74)))), ((int)(((byte)(74)))), ((int)(((byte)(74)))));
     this.btCompanies.Image = global::CsiCrm.Properties.Resources.Companies;
     this.btCompanies.Location = new System.Drawing.Point(12, 253);
     this.btCompanies.Name = "btCompanies";
     this.btCompanies.Size = new System.Drawing.Size(140, 55);
     this.btCompanies.TabIndex = 21;
     this.btCompanies.Text = "Companies";
     this.btCompanies.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btCompanies.UseVisualStyleBackColor = false;
     this.btCompanies.Click += new System.EventHandler(this.BtCompaniesClick);
     //
     // btContacts
     //
     this.btContacts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(233)))), ((int)(((byte)(241)))));
     this.btContacts.FlatAppearance.BorderSize = 0;
     this.btContacts.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btContacts.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btContacts.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btContacts.Font = new System.Drawing.Font("Microsoft Sans Serif", 12.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btContacts.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(74)))), ((int)(((byte)(74)))), ((int)(((byte)(74)))));
     this.btContacts.Image = global::CsiCrm.Properties.Resources.contacts1;
     this.btContacts.Location = new System.Drawing.Point(12, 168);
     this.btContacts.Name = "btContacts";
     this.btContacts.Size = new System.Drawing.Size(140, 55);
     this.btContacts.TabIndex = 20;
     this.btContacts.Text = "Contacts";
     this.btContacts.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btContacts.UseVisualStyleBackColor = false;
     this.btContacts.Click += new System.EventHandler(this.BtContactsClick);
     //
     // btHome
     //
     this.btHome.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(233)))), ((int)(((byte)(241)))));
     this.btHome.FlatAppearance.BorderSize = 0;
     this.btHome.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btHome.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btHome.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btHome.Font = new System.Drawing.Font("Microsoft Sans Serif", 12.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btHome.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(74)))), ((int)(((byte)(74)))), ((int)(((byte)(74)))));
     this.btHome.Image = global::CsiCrm.Properties.Resources.home;
     this.btHome.Location = new System.Drawing.Point(11, 85);
     this.btHome.Name = "btHome";
     this.btHome.Size = new System.Drawing.Size(140, 55);
     this.btHome.TabIndex = 17;
     this.btHome.Text = "Home";
     this.btHome.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btHome.UseVisualStyleBackColor = false;
     this.btHome.Click += new System.EventHandler(this.BtHomeClick);
     //
     // pictureBox2
     //
     this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox2.Image = global::CsiCrm.Properties.Resources.logga1;
     this.pictureBox2.Location = new System.Drawing.Point(5, 10);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(150, 56);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox2.TabIndex = 25;
     this.pictureBox2.TabStop = false;
     //
     // errorProvider
     //
     this.errorProvider.ContainerControl = this;
     //
     // tabCtrlCompanies
     //
     this.tabCtrlCompanies.Controls.Add(this.tabAddCompany);
     this.tabCtrlCompanies.Controls.Add(this.tabViewCompanyNote);
     this.tabCtrlCompanies.Controls.Add(this.tabViewCompanyContacts);
     this.tabCtrlCompanies.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCtrlCompanies.Location = new System.Drawing.Point(158, 60);
     this.tabCtrlCompanies.Name = "tabCtrlCompanies";
     this.tabCtrlCompanies.SelectedIndex = 0;
     this.tabCtrlCompanies.Size = new System.Drawing.Size(806, 498);
     this.tabCtrlCompanies.TabIndex = 28;
     this.tabCtrlCompanies.Visible = false;
     this.tabCtrlCompanies.SelectedIndexChanged += new System.EventHandler(this.TabCtrlCompaniesSelectedIndexChanged);
     //
     // tabAddCompany
     //
     this.tabAddCompany.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabAddCompany.Controls.Add(this.btClearSelection);
     this.tabAddCompany.Controls.Add(this.cbCompanies);
     this.tabAddCompany.Controls.Add(this.label61);
     this.tabAddCompany.Controls.Add(this.lbxContacts);
     this.tabAddCompany.Controls.Add(this.pbxCompanyLogo);
     this.tabAddCompany.Controls.Add(this.btDelContactFromCompany);
     this.tabAddCompany.Controls.Add(this.btContactToCompany);
     this.tabAddCompany.Controls.Add(this.btCompanyAddLogo);
     this.tabAddCompany.Controls.Add(this.label77);
     this.tabAddCompany.Controls.Add(this.label42);
     this.tabAddCompany.Controls.Add(this.label26);
     this.tabAddCompany.Controls.Add(this.label27);
     this.tabAddCompany.Controls.Add(this.label28);
     this.tabAddCompany.Controls.Add(this.btDelCompany);
     this.tabAddCompany.Controls.Add(this.btAddCompany);
     this.tabAddCompany.Controls.Add(this.cbxSameAdress);
     this.tabAddCompany.Controls.Add(this.label29);
     this.tabAddCompany.Controls.Add(this.label30);
     this.tabAddCompany.Controls.Add(this.label31);
     this.tabAddCompany.Controls.Add(this.label32);
     this.tabAddCompany.Controls.Add(this.label33);
     this.tabAddCompany.Controls.Add(this.tbPostalPostNumber);
     this.tabAddCompany.Controls.Add(this.tbPostalStreet);
     this.tabAddCompany.Controls.Add(this.tbPostalCountry);
     this.tabAddCompany.Controls.Add(this.tbPostalCity);
     this.tabAddCompany.Controls.Add(this.cbCustomerType);
     this.tabAddCompany.Controls.Add(this.label34);
     this.tabAddCompany.Controls.Add(this.label35);
     this.tabAddCompany.Controls.Add(this.label36);
     this.tabAddCompany.Controls.Add(this.label37);
     this.tabAddCompany.Controls.Add(this.label38);
     this.tabAddCompany.Controls.Add(this.label39);
     this.tabAddCompany.Controls.Add(this.label40);
     this.tabAddCompany.Controls.Add(this.tbVisitPostNumber);
     this.tabAddCompany.Controls.Add(this.tbVisitStreet);
     this.tabAddCompany.Controls.Add(this.tbVisitCountry);
     this.tabAddCompany.Controls.Add(this.tbVisitCity);
     this.tabAddCompany.Controls.Add(this.tbVatNr);
     this.tabAddCompany.Controls.Add(this.tbTelephone);
     this.tabAddCompany.Controls.Add(this.tbWebPage);
     this.tabAddCompany.Controls.Add(this.tbEmail);
     this.tabAddCompany.Controls.Add(this.tbCompanyName);
     this.tabAddCompany.Controls.Add(this.label41);
     this.tabAddCompany.Controls.Add(this.label51);
     this.tabAddCompany.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabAddCompany.Location = new System.Drawing.Point(4, 26);
     this.tabAddCompany.Name = "tabAddCompany";
     this.tabAddCompany.Size = new System.Drawing.Size(798, 468);
     this.tabAddCompany.TabIndex = 0;
     this.tabAddCompany.Text = "Add/Edit Company";
     //
     // btClearSelection
     //
     this.btClearSelection.Location = new System.Drawing.Point(211, 40);
     this.btClearSelection.Name = "btClearSelection";
     this.btClearSelection.Size = new System.Drawing.Size(50, 23);
     this.btClearSelection.TabIndex = 96;
     this.btClearSelection.Text = "clear";
     this.btClearSelection.UseVisualStyleBackColor = true;
     this.btClearSelection.Visible = false;
     this.btClearSelection.Click += new System.EventHandler(this.BtClearSelectionClick);
     //
     // cbCompanies
     //
     this.cbCompanies.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbCompanies.FormattingEnabled = true;
     this.cbCompanies.Location = new System.Drawing.Point(30, 38);
     this.cbCompanies.Name = "cbCompanies";
     this.cbCompanies.Size = new System.Drawing.Size(162, 25);
     this.cbCompanies.TabIndex = 95;
     this.cbCompanies.SelectedIndexChanged += new System.EventHandler(this.CbCompaniesSelectedIndexChanged);
     //
     // label61
     //
     this.label61.AutoSize = true;
     this.label61.Location = new System.Drawing.Point(27, 144);
     this.label61.Name = "label61";
     this.label61.Size = new System.Drawing.Size(124, 17);
     this.label61.TabIndex = 94;
     this.label61.Text = "or add a new one:";
     //
     // lbxContacts
     //
     this.lbxContacts.FormattingEnabled = true;
     this.lbxContacts.ItemHeight = 17;
     this.lbxContacts.Location = new System.Drawing.Point(409, 43);
     this.lbxContacts.Name = "lbxContacts";
     this.lbxContacts.Size = new System.Drawing.Size(147, 72);
     this.lbxContacts.TabIndex = 93;
     //
     // pbxCompanyLogo
     //
     this.pbxCompanyLogo.Location = new System.Drawing.Point(644, 15);
     this.pbxCompanyLogo.Name = "pbxCompanyLogo";
     this.pbxCompanyLogo.Size = new System.Drawing.Size(148, 100);
     this.pbxCompanyLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbxCompanyLogo.TabIndex = 92;
     this.pbxCompanyLogo.TabStop = false;
     this.pbxCompanyLogo.Visible = false;
     //
     // btDelContactFromCompany
     //
     this.btDelContactFromCompany.Location = new System.Drawing.Point(502, 121);
     this.btDelContactFromCompany.Name = "btDelContactFromCompany";
     this.btDelContactFromCompany.Size = new System.Drawing.Size(54, 23);
     this.btDelContactFromCompany.TabIndex = 90;
     this.btDelContactFromCompany.TabStop = false;
     this.btDelContactFromCompany.Text = "Del";
     this.btDelContactFromCompany.UseVisualStyleBackColor = true;
     this.btDelContactFromCompany.Click += new System.EventHandler(this.BtDelContactFromCompanyClick);
     //
     // btContactToCompany
     //
     this.btContactToCompany.Location = new System.Drawing.Point(407, 121);
     this.btContactToCompany.Name = "btContactToCompany";
     this.btContactToCompany.Size = new System.Drawing.Size(50, 23);
     this.btContactToCompany.TabIndex = 89;
     this.btContactToCompany.TabStop = false;
     this.btContactToCompany.Text = "Add Company";
     this.btContactToCompany.UseVisualStyleBackColor = true;
     this.btContactToCompany.Click += new System.EventHandler(this.BtContactToCompanyClick);
     //
     // btCompanyAddLogo
     //
     this.btCompanyAddLogo.Location = new System.Drawing.Point(717, 129);
     this.btCompanyAddLogo.Name = "btCompanyAddLogo";
     this.btCompanyAddLogo.Size = new System.Drawing.Size(75, 23);
     this.btCompanyAddLogo.TabIndex = 91;
     this.btCompanyAddLogo.TabStop = false;
     this.btCompanyAddLogo.Text = "Add logo";
     this.btCompanyAddLogo.UseVisualStyleBackColor = true;
     this.btCompanyAddLogo.Click += new System.EventHandler(this.BtCompanyAddLogoClick);
     //
     // label77
     //
     this.label77.AutoSize = true;
     this.label77.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label77.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label77.Location = new System.Drawing.Point(406, 15);
     this.label77.Name = "label77";
     this.label77.Size = new System.Drawing.Size(75, 18);
     this.label77.TabIndex = 88;
     this.label77.Text = "Contacts:";
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label42.Location = new System.Drawing.Point(380, 169);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(116, 18);
     this.label42.TabIndex = 51;
     this.label42.Text = "Contact Details";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(380, 196);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(78, 17);
     this.label26.TabIndex = 48;
     this.label26.Text = "Telephone:";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(380, 260);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(75, 17);
     this.label27.TabIndex = 49;
     this.label27.Text = "Webpage:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(380, 227);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(54, 17);
     this.label28.TabIndex = 50;
     this.label28.Text = "E-mail:";
     //
     // btDelCompany
     //
     this.btDelCompany.Location = new System.Drawing.Point(502, 439);
     this.btDelCompany.Name = "btDelCompany";
     this.btDelCompany.Size = new System.Drawing.Size(107, 23);
     this.btDelCompany.TabIndex = 44;
     this.btDelCompany.TabStop = false;
     this.btDelCompany.Text = "Delete";
     this.btDelCompany.UseVisualStyleBackColor = true;
     this.btDelCompany.Visible = false;
     this.btDelCompany.Click += new System.EventHandler(this.BtDelCompanyClick);
     //
     // btAddCompany
     //
     this.btAddCompany.Enabled = false;
     this.btAddCompany.Location = new System.Drawing.Point(684, 438);
     this.btAddCompany.Name = "btAddCompany";
     this.btAddCompany.Size = new System.Drawing.Size(107, 23);
     this.btAddCompany.TabIndex = 15;
     this.btAddCompany.TabStop = false;
     this.btAddCompany.Text = "Add";
     this.btAddCompany.UseVisualStyleBackColor = true;
     this.btAddCompany.Click += new System.EventHandler(this.BtAddCompanyClick);
     //
     // cbxSameAdress
     //
     this.cbxSameAdress.Appearance = System.Windows.Forms.Appearance.Button;
     this.cbxSameAdress.AutoSize = true;
     this.cbxSameAdress.Location = new System.Drawing.Point(211, 434);
     this.cbxSameAdress.Name = "cbxSameAdress";
     this.cbxSameAdress.Size = new System.Drawing.Size(111, 27);
     this.cbxSameAdress.TabIndex = 41;
     this.cbxSameAdress.TabStop = false;
     this.cbxSameAdress.Text = "Copy to postal";
     this.cbxSameAdress.UseVisualStyleBackColor = true;
     this.cbxSameAdress.CheckedChanged += new System.EventHandler(this.CbSameAdressCheckedChanged);
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(380, 416);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(63, 17);
     this.label29.TabIndex = 31;
     this.label29.Text = "Country:";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Location = new System.Drawing.Point(380, 385);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(37, 17);
     this.label30.TabIndex = 36;
     this.label30.Text = "City:";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(380, 353);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(96, 17);
     this.label31.TabIndex = 33;
     this.label31.Text = "Post number:";
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Location = new System.Drawing.Point(380, 322);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(51, 17);
     this.label32.TabIndex = 40;
     this.label32.Text = "Street:";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label33.Location = new System.Drawing.Point(380, 292);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(108, 18);
     this.label33.TabIndex = 37;
     this.label33.Text = "Postal adress:";
     //
     // tbPostalPostNumber
     //
     this.tbPostalPostNumber.Location = new System.Drawing.Point(493, 345);
     this.tbPostalPostNumber.Name = "tbPostalPostNumber";
     this.tbPostalPostNumber.Size = new System.Drawing.Size(175, 25);
     this.tbPostalPostNumber.TabIndex = 12;
     //
     // tbPostalStreet
     //
     this.tbPostalStreet.Location = new System.Drawing.Point(493, 314);
     this.tbPostalStreet.Name = "tbPostalStreet";
     this.tbPostalStreet.Size = new System.Drawing.Size(175, 25);
     this.tbPostalStreet.TabIndex = 11;
     //
     // tbPostalCountry
     //
     this.tbPostalCountry.Location = new System.Drawing.Point(495, 408);
     this.tbPostalCountry.Name = "tbPostalCountry";
     this.tbPostalCountry.Size = new System.Drawing.Size(175, 25);
     this.tbPostalCountry.TabIndex = 14;
     //
     // tbPostalCity
     //
     this.tbPostalCity.Location = new System.Drawing.Point(494, 376);
     this.tbPostalCity.Name = "tbPostalCity";
     this.tbPostalCity.Size = new System.Drawing.Size(175, 25);
     this.tbPostalCity.TabIndex = 13;
     //
     // cbCustomerType
     //
     this.cbCustomerType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbCustomerType.FormattingEnabled = true;
     this.cbCustomerType.Location = new System.Drawing.Point(147, 251);
     this.cbCustomerType.Name = "cbCustomerType";
     this.cbCustomerType.Size = new System.Drawing.Size(175, 25);
     this.cbCustomerType.TabIndex = 3;
     this.cbCustomerType.SelectedIndexChanged += new System.EventHandler(this.CbCompaniesSelectedIndexChanged);
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Location = new System.Drawing.Point(25, 416);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(63, 17);
     this.label34.TabIndex = 21;
     this.label34.Text = "Country:";
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Location = new System.Drawing.Point(27, 385);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(37, 17);
     this.label35.TabIndex = 22;
     this.label35.Text = "City:";
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Location = new System.Drawing.Point(27, 354);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(96, 17);
     this.label36.TabIndex = 19;
     this.label36.Text = "Post number:";
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(27, 323);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(51, 17);
     this.label37.TabIndex = 20;
     this.label37.Text = "Street:";
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label38.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label38.Location = new System.Drawing.Point(27, 292);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(116, 18);
     this.label38.TabIndex = 25;
     this.label38.Text = "Visiting adress:";
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Location = new System.Drawing.Point(25, 253);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(106, 17);
     this.label39.TabIndex = 26;
     this.label39.Text = "Company type:";
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Location = new System.Drawing.Point(25, 225);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(116, 17);
     this.label40.TabIndex = 23;
     this.label40.Text = "Company name:";
     //
     // tbVisitPostNumber
     //
     this.tbVisitPostNumber.Location = new System.Drawing.Point(147, 346);
     this.tbVisitPostNumber.Name = "tbVisitPostNumber";
     this.tbVisitPostNumber.Size = new System.Drawing.Size(175, 25);
     this.tbVisitPostNumber.TabIndex = 5;
     //
     // tbVisitStreet
     //
     this.tbVisitStreet.Location = new System.Drawing.Point(147, 315);
     this.tbVisitStreet.Name = "tbVisitStreet";
     this.tbVisitStreet.Size = new System.Drawing.Size(175, 25);
     this.tbVisitStreet.TabIndex = 4;
     //
     // tbVisitCountry
     //
     this.tbVisitCountry.Location = new System.Drawing.Point(147, 408);
     this.tbVisitCountry.Name = "tbVisitCountry";
     this.tbVisitCountry.Size = new System.Drawing.Size(175, 25);
     this.tbVisitCountry.TabIndex = 7;
     //
     // tbVisitCity
     //
     this.tbVisitCity.Location = new System.Drawing.Point(147, 377);
     this.tbVisitCity.Name = "tbVisitCity";
     this.tbVisitCity.Size = new System.Drawing.Size(175, 25);
     this.tbVisitCity.TabIndex = 6;
     //
     // tbVatNr
     //
     this.tbVatNr.Location = new System.Drawing.Point(147, 189);
     this.tbVatNr.Name = "tbVatNr";
     this.tbVatNr.Size = new System.Drawing.Size(175, 25);
     this.tbVatNr.TabIndex = 1;
     //
     // tbTelephone
     //
     this.tbTelephone.Location = new System.Drawing.Point(500, 192);
     this.tbTelephone.Name = "tbTelephone";
     this.tbTelephone.Size = new System.Drawing.Size(175, 25);
     this.tbTelephone.TabIndex = 8;
     //
     // tbWebPage
     //
     this.tbWebPage.Location = new System.Drawing.Point(500, 257);
     this.tbWebPage.Name = "tbWebPage";
     this.tbWebPage.Size = new System.Drawing.Size(175, 25);
     this.tbWebPage.TabIndex = 10;
     //
     // tbEmail
     //
     this.tbEmail.Location = new System.Drawing.Point(500, 224);
     this.tbEmail.Name = "tbEmail";
     this.tbEmail.Size = new System.Drawing.Size(175, 25);
     this.tbEmail.TabIndex = 9;
     //
     // tbCompanyName
     //
     this.tbCompanyName.Location = new System.Drawing.Point(147, 219);
     this.tbCompanyName.Name = "tbCompanyName";
     this.tbCompanyName.Size = new System.Drawing.Size(175, 25);
     this.tbCompanyName.TabIndex = 2;
     this.tbCompanyName.TextChanged += new System.EventHandler(this.TbCompanyNameTextChanged);
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.Location = new System.Drawing.Point(27, 192);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(87, 17);
     this.label41.TabIndex = 17;
     this.label41.Text = "Vat-number:";
     //
     // label51
     //
     this.label51.AutoSize = true;
     this.label51.Location = new System.Drawing.Point(27, 16);
     this.label51.Name = "label51";
     this.label51.Size = new System.Drawing.Size(170, 17);
     this.label51.TabIndex = 94;
     this.label51.Text = "Choose company to edit:";
     //
     // tabViewCompanyNote
     //
     this.tabViewCompanyNote.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabViewCompanyNote.Controls.Add(this.label64);
     this.tabViewCompanyNote.Controls.Add(this.label63);
     this.tabViewCompanyNote.Controls.Add(this.lbNoteInfo);
     this.tabViewCompanyNote.Controls.Add(this.lbNoteSelectNote);
     this.tabViewCompanyNote.Controls.Add(this.label60);
     this.tabViewCompanyNote.Controls.Add(this.btCompanyNoteClear);
     this.tabViewCompanyNote.Controls.Add(this.btNoteCompanyRemoveNote);
     this.tabViewCompanyNote.Controls.Add(this.btSaveCompanyNote);
     this.tabViewCompanyNote.Controls.Add(this.tbNoteCompanySubject);
     this.tabViewCompanyNote.Controls.Add(this.rtxNoteCompanyBody);
     this.tabViewCompanyNote.Controls.Add(this.cbNoteCompanyNote);
     this.tabViewCompanyNote.Controls.Add(this.cbNoteSelectCompany);
     this.tabViewCompanyNote.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabViewCompanyNote.Location = new System.Drawing.Point(4, 26);
     this.tabViewCompanyNote.Name = "tabViewCompanyNote";
     this.tabViewCompanyNote.Padding = new System.Windows.Forms.Padding(3);
     this.tabViewCompanyNote.Size = new System.Drawing.Size(798, 468);
     this.tabViewCompanyNote.TabIndex = 1;
     this.tabViewCompanyNote.Text = "View company notes";
     //
     // label64
     //
     this.label64.AutoSize = true;
     this.label64.Location = new System.Drawing.Point(21, 164);
     this.label64.Name = "label64";
     this.label64.Size = new System.Drawing.Size(42, 17);
     this.label64.TabIndex = 6;
     this.label64.Text = "Note:";
     //
     // label63
     //
     this.label63.AutoSize = true;
     this.label63.Location = new System.Drawing.Point(20, 121);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(61, 17);
     this.label63.TabIndex = 6;
     this.label63.Text = "Subject:";
     //
     // lbNoteInfo
     //
     this.lbNoteInfo.AutoSize = true;
     this.lbNoteInfo.Location = new System.Drawing.Point(270, 67);
     this.lbNoteInfo.Name = "lbNoteInfo";
     this.lbNoteInfo.Size = new System.Drawing.Size(202, 17);
     this.lbNoteInfo.TabIndex = 6;
     this.lbNoteInfo.Text = "(Leave blank to add new note)";
     this.lbNoteInfo.Visible = false;
     //
     // lbNoteSelectNote
     //
     this.lbNoteSelectNote.AutoSize = true;
     this.lbNoteSelectNote.Location = new System.Drawing.Point(12, 65);
     this.lbNoteSelectNote.Name = "lbNoteSelectNote";
     this.lbNoteSelectNote.Size = new System.Drawing.Size(85, 17);
     this.lbNoteSelectNote.TabIndex = 6;
     this.lbNoteSelectNote.Text = "Select note:";
     this.lbNoteSelectNote.Visible = false;
     //
     // label60
     //
     this.label60.AutoSize = true;
     this.label60.Location = new System.Drawing.Point(12, 32);
     this.label60.Name = "label60";
     this.label60.Size = new System.Drawing.Size(120, 17);
     this.label60.TabIndex = 5;
     this.label60.Text = "Select Company:";
     //
     // btCompanyNoteClear
     //
     this.btCompanyNoteClear.Location = new System.Drawing.Point(143, 331);
     this.btCompanyNoteClear.Name = "btCompanyNoteClear";
     this.btCompanyNoteClear.Size = new System.Drawing.Size(75, 23);
     this.btCompanyNoteClear.TabIndex = 4;
     this.btCompanyNoteClear.Text = "Clear";
     this.btCompanyNoteClear.UseVisualStyleBackColor = true;
     this.btCompanyNoteClear.Click += new System.EventHandler(this.BtCompanyNoteClearClick);
     //
     // btNoteCompanyRemoveNote
     //
     this.btNoteCompanyRemoveNote.Location = new System.Drawing.Point(255, 331);
     this.btNoteCompanyRemoveNote.Name = "btNoteCompanyRemoveNote";
     this.btNoteCompanyRemoveNote.Size = new System.Drawing.Size(75, 23);
     this.btNoteCompanyRemoveNote.TabIndex = 3;
     this.btNoteCompanyRemoveNote.Text = "Remove";
     this.btNoteCompanyRemoveNote.UseVisualStyleBackColor = true;
     this.btNoteCompanyRemoveNote.Visible = false;
     this.btNoteCompanyRemoveNote.Click += new System.EventHandler(this.BtNoteCompanyRemoveNoteClick);
     //
     // btSaveCompanyNote
     //
     this.btSaveCompanyNote.Location = new System.Drawing.Point(385, 331);
     this.btSaveCompanyNote.Name = "btSaveCompanyNote";
     this.btSaveCompanyNote.Size = new System.Drawing.Size(75, 23);
     this.btSaveCompanyNote.TabIndex = 3;
     this.btSaveCompanyNote.Text = "Save";
     this.btSaveCompanyNote.UseVisualStyleBackColor = true;
     this.btSaveCompanyNote.Click += new System.EventHandler(this.SaveCompanyNoteClick);
     //
     // tbNoteCompanySubject
     //
     this.tbNoteCompanySubject.Location = new System.Drawing.Point(140, 116);
     this.tbNoteCompanySubject.Name = "tbNoteCompanySubject";
     this.tbNoteCompanySubject.Size = new System.Drawing.Size(133, 25);
     this.tbNoteCompanySubject.TabIndex = 2;
     //
     // rtxNoteCompanyBody
     //
     this.rtxNoteCompanyBody.Location = new System.Drawing.Point(143, 161);
     this.rtxNoteCompanyBody.Name = "rtxNoteCompanyBody";
     this.rtxNoteCompanyBody.Size = new System.Drawing.Size(317, 143);
     this.rtxNoteCompanyBody.TabIndex = 1;
     this.rtxNoteCompanyBody.Text = "";
     //
     // cbNoteCompanyNote
     //
     this.cbNoteCompanyNote.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbNoteCompanyNote.FormattingEnabled = true;
     this.cbNoteCompanyNote.Location = new System.Drawing.Point(143, 64);
     this.cbNoteCompanyNote.Name = "cbNoteCompanyNote";
     this.cbNoteCompanyNote.Size = new System.Drawing.Size(121, 25);
     this.cbNoteCompanyNote.TabIndex = 0;
     this.cbNoteCompanyNote.Visible = false;
     this.cbNoteCompanyNote.SelectedIndexChanged += new System.EventHandler(this.CbNoteCompanyNoteSelectedIndexChanged);
     //
     // cbNoteSelectCompany
     //
     this.cbNoteSelectCompany.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbNoteSelectCompany.FormattingEnabled = true;
     this.cbNoteSelectCompany.Location = new System.Drawing.Point(143, 24);
     this.cbNoteSelectCompany.Name = "cbNoteSelectCompany";
     this.cbNoteSelectCompany.Size = new System.Drawing.Size(121, 25);
     this.cbNoteSelectCompany.TabIndex = 0;
     this.cbNoteSelectCompany.SelectedIndexChanged += new System.EventHandler(this.CbNoteSelectCompanySelectedIndexChanged);
     //
     // tabViewCompanyContacts
     //
     this.tabViewCompanyContacts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabViewCompanyContacts.Controls.Add(this.btAddCompanyContactsDone);
     this.tabViewCompanyContacts.Controls.Add(this.btAddContactToCompany);
     this.tabViewCompanyContacts.Controls.Add(this.dgwCompanyContacts);
     this.tabViewCompanyContacts.Location = new System.Drawing.Point(4, 26);
     this.tabViewCompanyContacts.Name = "tabViewCompanyContacts";
     this.tabViewCompanyContacts.Size = new System.Drawing.Size(798, 468);
     this.tabViewCompanyContacts.TabIndex = 2;
     this.tabViewCompanyContacts.Text = "View Contacts";
     //
     // btAddCompanyContactsDone
     //
     this.btAddCompanyContactsDone.Location = new System.Drawing.Point(513, 261);
     this.btAddCompanyContactsDone.Name = "btAddCompanyContactsDone";
     this.btAddCompanyContactsDone.Size = new System.Drawing.Size(75, 23);
     this.btAddCompanyContactsDone.TabIndex = 2;
     this.btAddCompanyContactsDone.Text = "Done";
     this.btAddCompanyContactsDone.UseVisualStyleBackColor = true;
     this.btAddCompanyContactsDone.Click += new System.EventHandler(this.BtAddCompanyContactsDoneClick);
     //
     // btAddContactToCompany
     //
     this.btAddContactToCompany.Location = new System.Drawing.Point(316, 261);
     this.btAddContactToCompany.Name = "btAddContactToCompany";
     this.btAddContactToCompany.Size = new System.Drawing.Size(153, 23);
     this.btAddContactToCompany.TabIndex = 1;
     this.btAddContactToCompany.Text = "Add To company";
     this.btAddContactToCompany.UseVisualStyleBackColor = true;
     this.btAddContactToCompany.Visible = false;
     this.btAddContactToCompany.Click += new System.EventHandler(this.BtAddContactToCompanyClick);
     //
     // dgwCompanyContacts
     //
     this.dgwCompanyContacts.AllowUserToAddRows = false;
     this.dgwCompanyContacts.AllowUserToDeleteRows = false;
     this.dgwCompanyContacts.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgwCompanyContacts.Location = new System.Drawing.Point(16, 13);
     this.dgwCompanyContacts.Name = "dgwCompanyContacts";
     this.dgwCompanyContacts.ReadOnly = true;
     this.dgwCompanyContacts.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgwCompanyContacts.Size = new System.Drawing.Size(758, 225);
     this.dgwCompanyContacts.TabIndex = 0;
     //
     // tabCtrlAppoinments
     //
     this.tabCtrlAppoinments.Controls.Add(this.tabAddAppointment);
     this.tabCtrlAppoinments.Controls.Add(this.tabViewAppointment);
     this.tabCtrlAppoinments.Controls.Add(this.tabAppointmentDetails);
     this.tabCtrlAppoinments.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCtrlAppoinments.Location = new System.Drawing.Point(158, 60);
     this.tabCtrlAppoinments.Margin = new System.Windows.Forms.Padding(4);
     this.tabCtrlAppoinments.Name = "tabCtrlAppoinments";
     this.tabCtrlAppoinments.SelectedIndex = 0;
     this.tabCtrlAppoinments.Size = new System.Drawing.Size(806, 498);
     this.tabCtrlAppoinments.TabIndex = 1;
     this.tabCtrlAppoinments.Visible = false;
     this.tabCtrlAppoinments.Selected += new System.Windows.Forms.TabControlEventHandler(this.TabCtrlAppoinmentsSelected);
     //
     // tabAddAppointment
     //
     this.tabAddAppointment.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabAddAppointment.Controls.Add(this.btSaveEditedAppointment);
     this.tabAddAppointment.Controls.Add(this.label21);
     this.tabAddAppointment.Controls.Add(this.label16);
     this.tabAddAppointment.Controls.Add(this.clbContacts);
     this.tabAddAppointment.Controls.Add(this.label20);
     this.tabAddAppointment.Controls.Add(this.tbCountry);
     this.tabAddAppointment.Controls.Add(this.label19);
     this.tabAddAppointment.Controls.Add(this.dtpReminderTime);
     this.tabAddAppointment.Controls.Add(this.dtpAppointmentTimeEnd);
     this.tabAddAppointment.Controls.Add(this.dtpAppointmentTimeStart);
     this.tabAddAppointment.Controls.Add(this.btSave);
     this.tabAddAppointment.Controls.Add(this.cbReminderType);
     this.tabAddAppointment.Controls.Add(this.label15);
     this.tabAddAppointment.Controls.Add(this.label14);
     this.tabAddAppointment.Controls.Add(this.dtpReminderDate);
     this.tabAddAppointment.Controls.Add(this.label13);
     this.tabAddAppointment.Controls.Add(this.tbSubject);
     this.tabAddAppointment.Controls.Add(this.label12);
     this.tabAddAppointment.Controls.Add(this.rtbNotes);
     this.tabAddAppointment.Controls.Add(this.label11);
     this.tabAddAppointment.Controls.Add(this.cbCompany);
     this.tabAddAppointment.Controls.Add(this.label10);
     this.tabAddAppointment.Controls.Add(this.label9);
     this.tabAddAppointment.Controls.Add(this.label8);
     this.tabAddAppointment.Controls.Add(this.dtpAppointmentDateStart);
     this.tabAddAppointment.Controls.Add(this.tbCity);
     this.tabAddAppointment.Controls.Add(this.tbPostnumber);
     this.tabAddAppointment.Controls.Add(this.tbStreet);
     this.tabAddAppointment.Controls.Add(this.label6);
     this.tabAddAppointment.Controls.Add(this.label5);
     this.tabAddAppointment.Controls.Add(this.label4);
     this.tabAddAppointment.Controls.Add(this.label3);
     this.tabAddAppointment.Controls.Add(this.cbAppoinmentType);
     this.tabAddAppointment.Controls.Add(this.label2);
     this.tabAddAppointment.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabAddAppointment.Location = new System.Drawing.Point(4, 26);
     this.tabAddAppointment.Margin = new System.Windows.Forms.Padding(4);
     this.tabAddAppointment.Name = "tabAddAppointment";
     this.tabAddAppointment.Padding = new System.Windows.Forms.Padding(4);
     this.tabAddAppointment.Size = new System.Drawing.Size(798, 468);
     this.tabAddAppointment.TabIndex = 0;
     this.tabAddAppointment.Text = "Add/Edit Appointment";
     //
     // btSaveEditedAppointment
     //
     this.btSaveEditedAppointment.Location = new System.Drawing.Point(430, 408);
     this.btSaveEditedAppointment.Margin = new System.Windows.Forms.Padding(4);
     this.btSaveEditedAppointment.Name = "btSaveEditedAppointment";
     this.btSaveEditedAppointment.Size = new System.Drawing.Size(176, 29);
     this.btSaveEditedAppointment.TabIndex = 15;
     this.btSaveEditedAppointment.Text = "Save edited appointment";
     this.btSaveEditedAppointment.UseVisualStyleBackColor = true;
     this.btSaveEditedAppointment.Click += new System.EventHandler(this.BtSaveEditedAppointmentClick);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label21.Location = new System.Drawing.Point(14, 19);
     this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(41, 18);
     this.label21.TabIndex = 46;
     this.label21.Text = "Date";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(589, 86);
     this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(39, 17);
     this.label16.TabIndex = 45;
     this.label16.Text = "Type";
     //
     // clbContacts
     //
     this.clbContacts.FormattingEnabled = true;
     this.clbContacts.Location = new System.Drawing.Point(156, 408);
     this.clbContacts.Name = "clbContacts";
     this.clbContacts.Size = new System.Drawing.Size(235, 44);
     this.clbContacts.TabIndex = 44;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(17, 408);
     this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(67, 17);
     this.label20.TabIndex = 42;
     this.label20.Text = "Contacts";
     //
     // tbCountry
     //
     this.tbCountry.Location = new System.Drawing.Point(158, 334);
     this.tbCountry.Margin = new System.Windows.Forms.Padding(4);
     this.tbCountry.Name = "tbCountry";
     this.tbCountry.Size = new System.Drawing.Size(236, 25);
     this.tbCountry.TabIndex = 8;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(17, 340);
     this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(59, 17);
     this.label19.TabIndex = 40;
     this.label19.Text = "Country";
     //
     // dtpReminderTime
     //
     this.dtpReminderTime.CustomFormat = "HH:MM";
     this.dtpReminderTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpReminderTime.Location = new System.Drawing.Point(513, 78);
     this.dtpReminderTime.Margin = new System.Windows.Forms.Padding(4);
     this.dtpReminderTime.MaxDate = new System.DateTime(2019, 12, 31, 0, 0, 0, 0);
     this.dtpReminderTime.MinDate = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.dtpReminderTime.Name = "dtpReminderTime";
     this.dtpReminderTime.ShowUpDown = true;
     this.dtpReminderTime.Size = new System.Drawing.Size(68, 25);
     this.dtpReminderTime.TabIndex = 11;
     //
     // dtpAppointmentTimeEnd
     //
     this.dtpAppointmentTimeEnd.CustomFormat = "HH:MM";
     this.dtpAppointmentTimeEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpAppointmentTimeEnd.Location = new System.Drawing.Point(306, 115);
     this.dtpAppointmentTimeEnd.Margin = new System.Windows.Forms.Padding(4);
     this.dtpAppointmentTimeEnd.MaxDate = new System.DateTime(2019, 12, 31, 0, 0, 0, 0);
     this.dtpAppointmentTimeEnd.MinDate = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.dtpAppointmentTimeEnd.Name = "dtpAppointmentTimeEnd";
     this.dtpAppointmentTimeEnd.ShowUpDown = true;
     this.dtpAppointmentTimeEnd.Size = new System.Drawing.Size(85, 25);
     this.dtpAppointmentTimeEnd.TabIndex = 3;
     //
     // dtpAppointmentTimeStart
     //
     this.dtpAppointmentTimeStart.CustomFormat = "HH:MM";
     this.dtpAppointmentTimeStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpAppointmentTimeStart.Location = new System.Drawing.Point(157, 115);
     this.dtpAppointmentTimeStart.Margin = new System.Windows.Forms.Padding(4);
     this.dtpAppointmentTimeStart.MaxDate = new System.DateTime(2019, 12, 31, 0, 0, 0, 0);
     this.dtpAppointmentTimeStart.MinDate = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.dtpAppointmentTimeStart.Name = "dtpAppointmentTimeStart";
     this.dtpAppointmentTimeStart.ShowUpDown = true;
     this.dtpAppointmentTimeStart.Size = new System.Drawing.Size(85, 25);
     this.dtpAppointmentTimeStart.TabIndex = 2;
     //
     // btSave
     //
     this.btSave.Location = new System.Drawing.Point(614, 408);
     this.btSave.Margin = new System.Windows.Forms.Padding(4);
     this.btSave.Name = "btSave";
     this.btSave.Size = new System.Drawing.Size(161, 29);
     this.btSave.TabIndex = 29;
     this.btSave.Text = "Add new appointment";
     this.btSave.UseVisualStyleBackColor = true;
     this.btSave.Click += new System.EventHandler(this.BtSaveClick);
     //
     // cbReminderType
     //
     this.cbReminderType.BackColor = System.Drawing.SystemColors.Window;
     this.cbReminderType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbReminderType.FormattingEnabled = true;
     this.cbReminderType.Location = new System.Drawing.Point(645, 78);
     this.cbReminderType.Margin = new System.Windows.Forms.Padding(4);
     this.cbReminderType.Name = "cbReminderType";
     this.cbReminderType.Size = new System.Drawing.Size(130, 25);
     this.cbReminderType.TabIndex = 12;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(429, 84);
     this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(40, 17);
     this.label15.TabIndex = 25;
     this.label15.Text = "Time";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(429, 47);
     this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(39, 17);
     this.label14.TabIndex = 24;
     this.label14.Text = "Date";
     //
     // dtpReminderDate
     //
     this.dtpReminderDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpReminderDate.Location = new System.Drawing.Point(513, 41);
     this.dtpReminderDate.Margin = new System.Windows.Forms.Padding(4);
     this.dtpReminderDate.MaxDate = new System.DateTime(2019, 12, 31, 0, 0, 0, 0);
     this.dtpReminderDate.MinDate = new System.DateTime(2011, 10, 13, 0, 0, 0, 0);
     this.dtpReminderDate.Name = "dtpReminderDate";
     this.dtpReminderDate.Size = new System.Drawing.Size(262, 25);
     this.dtpReminderDate.TabIndex = 10;
     this.dtpReminderDate.Value = new System.DateTime(2011, 10, 13, 0, 0, 0, 0);
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label13.Location = new System.Drawing.Point(429, 19);
     this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(77, 18);
     this.label13.TabIndex = 22;
     this.label13.Text = "Reminder";
     //
     // tbSubject
     //
     this.tbSubject.Location = new System.Drawing.Point(432, 142);
     this.tbSubject.Margin = new System.Windows.Forms.Padding(4);
     this.tbSubject.Name = "tbSubject";
     this.tbSubject.Size = new System.Drawing.Size(343, 25);
     this.tbSubject.TabIndex = 13;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label12.Location = new System.Drawing.Point(429, 115);
     this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(62, 18);
     this.label12.TabIndex = 20;
     this.label12.Text = "Subject";
     //
     // rtbNotes
     //
     this.rtbNotes.Location = new System.Drawing.Point(432, 201);
     this.rtbNotes.Margin = new System.Windows.Forms.Padding(4);
     this.rtbNotes.Name = "rtbNotes";
     this.rtbNotes.Size = new System.Drawing.Size(343, 196);
     this.rtbNotes.TabIndex = 14;
     this.rtbNotes.Text = "";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label11.Location = new System.Drawing.Point(429, 174);
     this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(42, 18);
     this.label11.TabIndex = 18;
     this.label11.Text = "Note";
     //
     // cbCompany
     //
     this.cbCompany.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbCompany.FormattingEnabled = true;
     this.cbCompany.Location = new System.Drawing.Point(157, 366);
     this.cbCompany.Margin = new System.Windows.Forms.Padding(4);
     this.cbCompany.Name = "cbCompany";
     this.cbCompany.Size = new System.Drawing.Size(236, 25);
     this.cbCompany.TabIndex = 9;
     this.cbCompany.SelectedIndexChanged += new System.EventHandler(this.CbCompanySelectedIndexChanged);
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(17, 374);
     this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(71, 17);
     this.label10.TabIndex = 16;
     this.label10.Text = "Company";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(262, 119);
     this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(34, 17);
     this.label9.TabIndex = 14;
     this.label9.Text = "End";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(17, 121);
     this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(73, 17);
     this.label8.TabIndex = 12;
     this.label8.Text = "Time start";
     //
     // dtpAppointmentDateStart
     //
     this.dtpAppointmentDateStart.CustomFormat = "";
     this.dtpAppointmentDateStart.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpAppointmentDateStart.Location = new System.Drawing.Point(157, 41);
     this.dtpAppointmentDateStart.Margin = new System.Windows.Forms.Padding(4);
     this.dtpAppointmentDateStart.MaxDate = new System.DateTime(2019, 12, 31, 0, 0, 0, 0);
     this.dtpAppointmentDateStart.MinDate = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.dtpAppointmentDateStart.Name = "dtpAppointmentDateStart";
     this.dtpAppointmentDateStart.Size = new System.Drawing.Size(236, 25);
     this.dtpAppointmentDateStart.TabIndex = 1;
     //
     // tbCity
     //
     this.tbCity.Location = new System.Drawing.Point(157, 299);
     this.tbCity.Margin = new System.Windows.Forms.Padding(4);
     this.tbCity.Name = "tbCity";
     this.tbCity.Size = new System.Drawing.Size(236, 25);
     this.tbCity.TabIndex = 7;
     //
     // tbPostnumber
     //
     this.tbPostnumber.Location = new System.Drawing.Point(157, 265);
     this.tbPostnumber.Margin = new System.Windows.Forms.Padding(4);
     this.tbPostnumber.Name = "tbPostnumber";
     this.tbPostnumber.Size = new System.Drawing.Size(104, 25);
     this.tbPostnumber.TabIndex = 6;
     //
     // tbStreet
     //
     this.tbStreet.Location = new System.Drawing.Point(157, 232);
     this.tbStreet.Margin = new System.Windows.Forms.Padding(4);
     this.tbStreet.Name = "tbStreet";
     this.tbStreet.Size = new System.Drawing.Size(236, 25);
     this.tbStreet.TabIndex = 5;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(17, 271);
     this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(88, 17);
     this.label6.TabIndex = 6;
     this.label6.Text = "Postnumber";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(17, 305);
     this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(33, 17);
     this.label5.TabIndex = 5;
     this.label5.Text = "City";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(17, 238);
     this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(47, 17);
     this.label4.TabIndex = 4;
     this.label4.Text = "Street";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label3.Location = new System.Drawing.Point(17, 206);
     this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(69, 18);
     this.label3.TabIndex = 3;
     this.label3.Text = "Location";
     //
     // cbAppoinmentType
     //
     this.cbAppoinmentType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbAppoinmentType.FormattingEnabled = true;
     this.cbAppoinmentType.Location = new System.Drawing.Point(157, 158);
     this.cbAppoinmentType.Margin = new System.Windows.Forms.Padding(4);
     this.cbAppoinmentType.Name = "cbAppoinmentType";
     this.cbAppoinmentType.Size = new System.Drawing.Size(236, 25);
     this.cbAppoinmentType.TabIndex = 4;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(17, 161);
     this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(120, 17);
     this.label2.TabIndex = 1;
     this.label2.Text = "Appointment type";
     //
     // tabViewAppointment
     //
     this.tabViewAppointment.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabViewAppointment.Controls.Add(this.btViewDetailsOfAppointment);
     this.tabViewAppointment.Controls.Add(this.tbSearchAppointmentsByContact);
     this.tabViewAppointment.Controls.Add(this.panelSearchOptionsAppointments);
     this.tabViewAppointment.Controls.Add(this.btDelAppointment);
     this.tabViewAppointment.Controls.Add(this.btEditAppointment);
     this.tabViewAppointment.Controls.Add(this.tbSearchAppointmentsWithFilter);
     this.tabViewAppointment.Controls.Add(this.dgvViewAppoinments);
     this.tabViewAppointment.Controls.Add(this.cbCompanySearch);
     this.tabViewAppointment.Controls.Add(this.label22);
     this.tabViewAppointment.Controls.Add(this.label7);
     this.tabViewAppointment.Controls.Add(this.label23);
     this.tabViewAppointment.Controls.Add(this.label24);
     this.tabViewAppointment.Controls.Add(this.tbSearchQuery);
     this.tabViewAppointment.Controls.Add(this.mcAppointments);
     this.tabViewAppointment.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabViewAppointment.Location = new System.Drawing.Point(4, 26);
     this.tabViewAppointment.Name = "tabViewAppointment";
     this.tabViewAppointment.Padding = new System.Windows.Forms.Padding(3);
     this.tabViewAppointment.Size = new System.Drawing.Size(798, 468);
     this.tabViewAppointment.TabIndex = 2;
     this.tabViewAppointment.Text = "View appointments";
     //
     // btViewDetailsOfAppointment
     //
     this.btViewDetailsOfAppointment.Location = new System.Drawing.Point(644, 433);
     this.btViewDetailsOfAppointment.Name = "btViewDetailsOfAppointment";
     this.btViewDetailsOfAppointment.Size = new System.Drawing.Size(133, 24);
     this.btViewDetailsOfAppointment.TabIndex = 48;
     this.btViewDetailsOfAppointment.Text = "View details";
     this.btViewDetailsOfAppointment.UseVisualStyleBackColor = true;
     this.btViewDetailsOfAppointment.Click += new System.EventHandler(this.BtViewDetailsOfAppointmentClick);
     //
     // tbSearchAppointmentsByContact
     //
     this.tbSearchAppointmentsByContact.Location = new System.Drawing.Point(37, 355);
     this.tbSearchAppointmentsByContact.Name = "tbSearchAppointmentsByContact";
     this.tbSearchAppointmentsByContact.Size = new System.Drawing.Size(171, 25);
     this.tbSearchAppointmentsByContact.TabIndex = 47;
     //
     // panelSearchOptionsAppointments
     //
     this.panelSearchOptionsAppointments.Controls.Add(this.rbtSearchByAppointmentDate);
     this.panelSearchOptionsAppointments.Controls.Add(this.rtbSearchAppointmentsByContacts);
     this.panelSearchOptionsAppointments.Controls.Add(this.rbtSearchAppointmentsByCompany);
     this.panelSearchOptionsAppointments.Controls.Add(this.rbtSearchwordAppointment);
     this.panelSearchOptionsAppointments.Location = new System.Drawing.Point(5, 5);
     this.panelSearchOptionsAppointments.Name = "panelSearchOptionsAppointments";
     this.panelSearchOptionsAppointments.Size = new System.Drawing.Size(32, 455);
     this.panelSearchOptionsAppointments.TabIndex = 46;
     //
     // rbtSearchByAppointmentDate
     //
     this.rbtSearchByAppointmentDate.AutoSize = true;
     this.rbtSearchByAppointmentDate.Location = new System.Drawing.Point(9, 58);
     this.rbtSearchByAppointmentDate.Name = "rbtSearchByAppointmentDate";
     this.rbtSearchByAppointmentDate.Size = new System.Drawing.Size(14, 13);
     this.rbtSearchByAppointmentDate.TabIndex = 2;
     this.rbtSearchByAppointmentDate.Tag = "2";
     this.rbtSearchByAppointmentDate.UseVisualStyleBackColor = true;
     //
     // rtbSearchAppointmentsByContacts
     //
     this.rtbSearchAppointmentsByContacts.AutoSize = true;
     this.rtbSearchAppointmentsByContacts.Location = new System.Drawing.Point(9, 326);
     this.rtbSearchAppointmentsByContacts.Name = "rtbSearchAppointmentsByContacts";
     this.rtbSearchAppointmentsByContacts.Size = new System.Drawing.Size(14, 13);
     this.rtbSearchAppointmentsByContacts.TabIndex = 1;
     this.rtbSearchAppointmentsByContacts.Tag = "4";
     this.rtbSearchAppointmentsByContacts.UseVisualStyleBackColor = true;
     //
     // rbtSearchAppointmentsByCompany
     //
     this.rbtSearchAppointmentsByCompany.AutoSize = true;
     this.rbtSearchAppointmentsByCompany.Location = new System.Drawing.Point(9, 402);
     this.rbtSearchAppointmentsByCompany.Name = "rbtSearchAppointmentsByCompany";
     this.rbtSearchAppointmentsByCompany.Size = new System.Drawing.Size(14, 13);
     this.rbtSearchAppointmentsByCompany.TabIndex = 1;
     this.rbtSearchAppointmentsByCompany.Tag = "5";
     this.rbtSearchAppointmentsByCompany.UseVisualStyleBackColor = true;
     //
     // rbtSearchwordAppointment
     //
     this.rbtSearchwordAppointment.AutoSize = true;
     this.rbtSearchwordAppointment.Checked = true;
     this.rbtSearchwordAppointment.Location = new System.Drawing.Point(9, 7);
     this.rbtSearchwordAppointment.Name = "rbtSearchwordAppointment";
     this.rbtSearchwordAppointment.Size = new System.Drawing.Size(14, 13);
     this.rbtSearchwordAppointment.TabIndex = 0;
     this.rbtSearchwordAppointment.TabStop = true;
     this.rbtSearchwordAppointment.Tag = "1";
     this.rbtSearchwordAppointment.UseVisualStyleBackColor = true;
     //
     // btDelAppointment
     //
     this.btDelAppointment.Location = new System.Drawing.Point(460, 436);
     this.btDelAppointment.Name = "btDelAppointment";
     this.btDelAppointment.Size = new System.Drawing.Size(78, 24);
     this.btDelAppointment.TabIndex = 36;
     this.btDelAppointment.Text = "Delete";
     this.btDelAppointment.UseVisualStyleBackColor = true;
     this.btDelAppointment.Click += new System.EventHandler(this.BtDelAppointmentClick);
     //
     // btEditAppointment
     //
     this.btEditAppointment.Location = new System.Drawing.Point(554, 435);
     this.btEditAppointment.Name = "btEditAppointment";
     this.btEditAppointment.Size = new System.Drawing.Size(78, 24);
     this.btEditAppointment.TabIndex = 35;
     this.btEditAppointment.Text = "Edit";
     this.btEditAppointment.UseVisualStyleBackColor = true;
     this.btEditAppointment.Click += new System.EventHandler(this.BtEditAppointmentClick);
     //
     // tbSearchAppointmentsWithFilter
     //
     this.tbSearchAppointmentsWithFilter.Location = new System.Drawing.Point(220, 433);
     this.tbSearchAppointmentsWithFilter.Name = "tbSearchAppointmentsWithFilter";
     this.tbSearchAppointmentsWithFilter.Size = new System.Drawing.Size(78, 24);
     this.tbSearchAppointmentsWithFilter.TabIndex = 33;
     this.tbSearchAppointmentsWithFilter.Text = "Search";
     this.tbSearchAppointmentsWithFilter.UseVisualStyleBackColor = true;
     this.tbSearchAppointmentsWithFilter.Click += new System.EventHandler(this.TbSearchAppointmentsWithFilterClick);
     //
     // dgvViewAppoinments
     //
     this.dgvViewAppoinments.AllowUserToAddRows = false;
     this.dgvViewAppoinments.AllowUserToDeleteRows = false;
     this.dgvViewAppoinments.AllowUserToOrderColumns = true;
     this.dgvViewAppoinments.AllowUserToResizeColumns = false;
     this.dgvViewAppoinments.AllowUserToResizeRows = false;
     this.dgvViewAppoinments.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.dgvViewAppoinments.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvViewAppoinments.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvViewAppoinments.ColumnHeadersVisible = false;
     this.dgvViewAppoinments.Location = new System.Drawing.Point(220, 27);
     this.dgvViewAppoinments.MultiSelect = false;
     this.dgvViewAppoinments.Name = "dgvViewAppoinments";
     this.dgvViewAppoinments.ReadOnly = true;
     this.dgvViewAppoinments.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvViewAppoinments.ShowCellToolTips = false;
     this.dgvViewAppoinments.ShowRowErrors = false;
     this.dgvViewAppoinments.Size = new System.Drawing.Size(557, 390);
     this.dgvViewAppoinments.TabIndex = 28;
     //
     // cbCompanySearch
     //
     this.cbCompanySearch.FormattingEnabled = true;
     this.cbCompanySearch.Location = new System.Drawing.Point(37, 430);
     this.cbCompanySearch.Name = "cbCompanySearch";
     this.cbCompanySearch.Size = new System.Drawing.Size(174, 25);
     this.cbCompanySearch.TabIndex = 25;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(40, 405);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(71, 17);
     this.label22.TabIndex = 24;
     this.label22.Text = "Company";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(45, 38);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(57, 17);
     this.label7.TabIndex = 23;
     this.label7.Text = "Subject";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(39, 328);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(59, 17);
     this.label23.TabIndex = 23;
     this.label23.Text = "Contact";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(384, 249);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(91, 17);
     this.label24.TabIndex = 22;
     this.label24.Text = "Filter options";
     //
     // tbSearchQuery
     //
     this.tbSearchQuery.Location = new System.Drawing.Point(41, 8);
     this.tbSearchQuery.Name = "tbSearchQuery";
     this.tbSearchQuery.Size = new System.Drawing.Size(171, 25);
     this.tbSearchQuery.TabIndex = 18;
     //
     // mcAppointments
     //
     this.mcAppointments.Location = new System.Drawing.Point(40, 62);
     this.mcAppointments.MaxSelectionCount = 1;
     this.mcAppointments.Name = "mcAppointments";
     this.mcAppointments.TabIndex = 15;
     //
     // tabAppointmentDetails
     //
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentContacts);
     this.tabAppointmentDetails.Controls.Add(this.label69);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentCompany);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentCountry);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentCity);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentStreet);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentPostnumber);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentReminderType);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentReminderTime);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentReminderDate);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentType);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentStartTime);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentEndTime);
     this.tabAppointmentDetails.Controls.Add(this.label71);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentSubject);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentStartDate);
     this.tabAppointmentDetails.Controls.Add(this.label45);
     this.tabAppointmentDetails.Controls.Add(this.label46);
     this.tabAppointmentDetails.Controls.Add(this.label47);
     this.tabAppointmentDetails.Controls.Add(this.label48);
     this.tabAppointmentDetails.Controls.Add(this.label50);
     this.tabAppointmentDetails.Controls.Add(this.label52);
     this.tabAppointmentDetails.Controls.Add(this.label53);
     this.tabAppointmentDetails.Controls.Add(this.label54);
     this.tabAppointmentDetails.Controls.Add(this.rtxbViewAppointmentNote);
     this.tabAppointmentDetails.Controls.Add(this.label55);
     this.tabAppointmentDetails.Controls.Add(this.label56);
     this.tabAppointmentDetails.Controls.Add(this.label57);
     this.tabAppointmentDetails.Controls.Add(this.label58);
     this.tabAppointmentDetails.Controls.Add(this.label62);
     this.tabAppointmentDetails.Controls.Add(this.label65);
     this.tabAppointmentDetails.Controls.Add(this.label66);
     this.tabAppointmentDetails.Controls.Add(this.label67);
     this.tabAppointmentDetails.Controls.Add(this.label68);
     this.tabAppointmentDetails.Location = new System.Drawing.Point(4, 26);
     this.tabAppointmentDetails.Name = "tabAppointmentDetails";
     this.tabAppointmentDetails.Padding = new System.Windows.Forms.Padding(3);
     this.tabAppointmentDetails.Size = new System.Drawing.Size(798, 468);
     this.tabAppointmentDetails.TabIndex = 3;
     this.tabAppointmentDetails.Text = "View Details of Appointment";
     this.tabAppointmentDetails.UseVisualStyleBackColor = true;
     //
     // lbViewAppointmentContacts
     //
     this.lbViewAppointmentContacts.FormattingEnabled = true;
     this.lbViewAppointmentContacts.ItemHeight = 17;
     this.lbViewAppointmentContacts.Location = new System.Drawing.Point(531, 399);
     this.lbViewAppointmentContacts.Name = "lbViewAppointmentContacts";
     this.lbViewAppointmentContacts.Size = new System.Drawing.Size(237, 55);
     this.lbViewAppointmentContacts.TabIndex = 103;
     //
     // label69
     //
     this.label69.AutoSize = true;
     this.label69.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label69.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label69.Location = new System.Drawing.Point(434, 349);
     this.label69.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label69.Name = "label69";
     this.label69.Size = new System.Drawing.Size(76, 18);
     this.label69.TabIndex = 102;
     this.label69.Text = "Attending";
     //
     // lbViewAppointmentCompany
     //
     this.lbViewAppointmentCompany.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentCompany.Location = new System.Drawing.Point(529, 379);
     this.lbViewAppointmentCompany.Name = "lbViewAppointmentCompany";
     this.lbViewAppointmentCompany.Size = new System.Drawing.Size(263, 22);
     this.lbViewAppointmentCompany.TabIndex = 100;
     this.lbViewAppointmentCompany.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentCountry
     //
     this.lbViewAppointmentCountry.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentCountry.Location = new System.Drawing.Point(528, 310);
     this.lbViewAppointmentCountry.Name = "lbViewAppointmentCountry";
     this.lbViewAppointmentCountry.Size = new System.Drawing.Size(263, 22);
     this.lbViewAppointmentCountry.TabIndex = 99;
     this.lbViewAppointmentCountry.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentCity
     //
     this.lbViewAppointmentCity.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentCity.Location = new System.Drawing.Point(529, 278);
     this.lbViewAppointmentCity.Name = "lbViewAppointmentCity";
     this.lbViewAppointmentCity.Size = new System.Drawing.Size(263, 22);
     this.lbViewAppointmentCity.TabIndex = 98;
     this.lbViewAppointmentCity.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentStreet
     //
     this.lbViewAppointmentStreet.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentStreet.Location = new System.Drawing.Point(532, 213);
     this.lbViewAppointmentStreet.Name = "lbViewAppointmentStreet";
     this.lbViewAppointmentStreet.Size = new System.Drawing.Size(263, 22);
     this.lbViewAppointmentStreet.TabIndex = 97;
     this.lbViewAppointmentStreet.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentPostnumber
     //
     this.lbViewAppointmentPostnumber.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentPostnumber.Location = new System.Drawing.Point(532, 249);
     this.lbViewAppointmentPostnumber.Name = "lbViewAppointmentPostnumber";
     this.lbViewAppointmentPostnumber.Size = new System.Drawing.Size(263, 22);
     this.lbViewAppointmentPostnumber.TabIndex = 96;
     this.lbViewAppointmentPostnumber.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentReminderType
     //
     this.lbViewAppointmentReminderType.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentReminderType.Location = new System.Drawing.Point(532, 115);
     this.lbViewAppointmentReminderType.Name = "lbViewAppointmentReminderType";
     this.lbViewAppointmentReminderType.Size = new System.Drawing.Size(160, 22);
     this.lbViewAppointmentReminderType.TabIndex = 94;
     this.lbViewAppointmentReminderType.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentReminderTime
     //
     this.lbViewAppointmentReminderTime.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentReminderTime.Location = new System.Drawing.Point(528, 80);
     this.lbViewAppointmentReminderTime.Name = "lbViewAppointmentReminderTime";
     this.lbViewAppointmentReminderTime.Size = new System.Drawing.Size(95, 22);
     this.lbViewAppointmentReminderTime.TabIndex = 93;
     this.lbViewAppointmentReminderTime.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentReminderDate
     //
     this.lbViewAppointmentReminderDate.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentReminderDate.Location = new System.Drawing.Point(528, 43);
     this.lbViewAppointmentReminderDate.Name = "lbViewAppointmentReminderDate";
     this.lbViewAppointmentReminderDate.Size = new System.Drawing.Size(126, 22);
     this.lbViewAppointmentReminderDate.TabIndex = 92;
     this.lbViewAppointmentReminderDate.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentType
     //
     this.lbViewAppointmentType.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentType.Location = new System.Drawing.Point(27, 414);
     this.lbViewAppointmentType.Name = "lbViewAppointmentType";
     this.lbViewAppointmentType.Size = new System.Drawing.Size(126, 22);
     this.lbViewAppointmentType.TabIndex = 91;
     this.lbViewAppointmentType.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentStartTime
     //
     this.lbViewAppointmentStartTime.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentStartTime.Location = new System.Drawing.Point(82, 357);
     this.lbViewAppointmentStartTime.Name = "lbViewAppointmentStartTime";
     this.lbViewAppointmentStartTime.Size = new System.Drawing.Size(93, 22);
     this.lbViewAppointmentStartTime.TabIndex = 90;
     this.lbViewAppointmentStartTime.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentEndTime
     //
     this.lbViewAppointmentEndTime.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentEndTime.Location = new System.Drawing.Point(228, 357);
     this.lbViewAppointmentEndTime.Name = "lbViewAppointmentEndTime";
     this.lbViewAppointmentEndTime.Size = new System.Drawing.Size(126, 22);
     this.lbViewAppointmentEndTime.TabIndex = 89;
     this.lbViewAppointmentEndTime.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label71
     //
     this.label71.AutoSize = true;
     this.label71.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label71.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label71.Location = new System.Drawing.Point(22, 336);
     this.label71.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label71.Name = "label71";
     this.label71.Size = new System.Drawing.Size(43, 18);
     this.label71.TabIndex = 88;
     this.label71.Text = "Time";
     //
     // lbViewAppointmentSubject
     //
     this.lbViewAppointmentSubject.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentSubject.Location = new System.Drawing.Point(21, 36);
     this.lbViewAppointmentSubject.Name = "lbViewAppointmentSubject";
     this.lbViewAppointmentSubject.Size = new System.Drawing.Size(394, 22);
     this.lbViewAppointmentSubject.TabIndex = 87;
     this.lbViewAppointmentSubject.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentStartDate
     //
     this.lbViewAppointmentStartDate.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentStartDate.Location = new System.Drawing.Point(71, 266);
     this.lbViewAppointmentStartDate.Name = "lbViewAppointmentStartDate";
     this.lbViewAppointmentStartDate.Size = new System.Drawing.Size(126, 22);
     this.lbViewAppointmentStartDate.TabIndex = 85;
     this.lbViewAppointmentStartDate.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label45.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label45.Location = new System.Drawing.Point(22, 244);
     this.label45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(41, 18);
     this.label45.TabIndex = 83;
     this.label45.Text = "Date";
     //
     // label46
     //
     this.label46.AutoSize = true;
     this.label46.Location = new System.Drawing.Point(434, 118);
     this.label46.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(39, 17);
     this.label46.TabIndex = 82;
     this.label46.Text = "Type";
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Location = new System.Drawing.Point(434, 404);
     this.label47.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(67, 17);
     this.label47.TabIndex = 80;
     this.label47.Text = "Contacts";
     //
     // label48
     //
     this.label48.AutoSize = true;
     this.label48.Location = new System.Drawing.Point(434, 310);
     this.label48.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label48.Name = "label48";
     this.label48.Size = new System.Drawing.Size(59, 17);
     this.label48.TabIndex = 78;
     this.label48.Text = "Country";
     //
     // label50
     //
     this.label50.AutoSize = true;
     this.label50.Location = new System.Drawing.Point(434, 83);
     this.label50.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label50.Name = "label50";
     this.label50.Size = new System.Drawing.Size(40, 17);
     this.label50.TabIndex = 70;
     this.label50.Text = "Time";
     //
     // label52
     //
     this.label52.AutoSize = true;
     this.label52.Location = new System.Drawing.Point(434, 46);
     this.label52.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label52.Name = "label52";
     this.label52.Size = new System.Drawing.Size(39, 17);
     this.label52.TabIndex = 69;
     this.label52.Text = "Date";
     //
     // label53
     //
     this.label53.AutoSize = true;
     this.label53.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label53.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label53.Location = new System.Drawing.Point(434, 18);
     this.label53.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label53.Name = "label53";
     this.label53.Size = new System.Drawing.Size(77, 18);
     this.label53.TabIndex = 67;
     this.label53.Text = "Reminder";
     //
     // label54
     //
     this.label54.AutoSize = true;
     this.label54.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label54.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label54.Location = new System.Drawing.Point(20, 10);
     this.label54.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label54.Name = "label54";
     this.label54.Size = new System.Drawing.Size(62, 18);
     this.label54.TabIndex = 65;
     this.label54.Text = "Subject";
     //
     // rtxbViewAppointmentNote
     //
     this.rtxbViewAppointmentNote.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.rtxbViewAppointmentNote.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.rtxbViewAppointmentNote.Enabled = false;
     this.rtxbViewAppointmentNote.Location = new System.Drawing.Point(25, 101);
     this.rtxbViewAppointmentNote.Margin = new System.Windows.Forms.Padding(4);
     this.rtxbViewAppointmentNote.Name = "rtxbViewAppointmentNote";
     this.rtxbViewAppointmentNote.ReadOnly = true;
     this.rtxbViewAppointmentNote.Size = new System.Drawing.Size(390, 139);
     this.rtxbViewAppointmentNote.TabIndex = 64;
     this.rtxbViewAppointmentNote.Text = "";
     //
     // label55
     //
     this.label55.AutoSize = true;
     this.label55.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label55.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label55.Location = new System.Drawing.Point(20, 66);
     this.label55.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label55.Name = "label55";
     this.label55.Size = new System.Drawing.Size(42, 18);
     this.label55.TabIndex = 63;
     this.label55.Text = "Note";
     //
     // label56
     //
     this.label56.AutoSize = true;
     this.label56.Location = new System.Drawing.Point(434, 376);
     this.label56.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label56.Name = "label56";
     this.label56.Size = new System.Drawing.Size(71, 17);
     this.label56.TabIndex = 61;
     this.label56.Text = "Company";
     //
     // label57
     //
     this.label57.AutoSize = true;
     this.label57.Location = new System.Drawing.Point(182, 357);
     this.label57.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label57.Name = "label57";
     this.label57.Size = new System.Drawing.Size(34, 17);
     this.label57.TabIndex = 60;
     this.label57.Text = "End";
     //
     // label58
     //
     this.label58.AutoSize = true;
     this.label58.Location = new System.Drawing.Point(27, 358);
     this.label58.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label58.Name = "label58";
     this.label58.Size = new System.Drawing.Size(39, 17);
     this.label58.TabIndex = 59;
     this.label58.Text = "Start";
     //
     // label62
     //
     this.label62.AutoSize = true;
     this.label62.Location = new System.Drawing.Point(434, 249);
     this.label62.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label62.Name = "label62";
     this.label62.Size = new System.Drawing.Size(88, 17);
     this.label62.TabIndex = 53;
     this.label62.Text = "Postnumber";
     //
     // label65
     //
     this.label65.AutoSize = true;
     this.label65.Location = new System.Drawing.Point(434, 279);
     this.label65.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label65.Name = "label65";
     this.label65.Size = new System.Drawing.Size(33, 17);
     this.label65.TabIndex = 52;
     this.label65.Text = "City";
     //
     // label66
     //
     this.label66.AutoSize = true;
     this.label66.Location = new System.Drawing.Point(434, 213);
     this.label66.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label66.Name = "label66";
     this.label66.Size = new System.Drawing.Size(47, 17);
     this.label66.TabIndex = 51;
     this.label66.Text = "Street";
     //
     // label67
     //
     this.label67.AutoSize = true;
     this.label67.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label67.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label67.Location = new System.Drawing.Point(434, 172);
     this.label67.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label67.Name = "label67";
     this.label67.Size = new System.Drawing.Size(69, 18);
     this.label67.TabIndex = 50;
     this.label67.Text = "Location";
     //
     // label68
     //
     this.label68.AutoSize = true;
     this.label68.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label68.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label68.Location = new System.Drawing.Point(27, 387);
     this.label68.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label68.Name = "label68";
     this.label68.Size = new System.Drawing.Size(131, 18);
     this.label68.TabIndex = 48;
     this.label68.Text = "Appointment type";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // pbHome
     //
     this.pbHome.BackColor = System.Drawing.Color.Transparent;
     this.pbHome.Image = global::CsiCrm.Properties.Resources.homeBG3;
     this.pbHome.Location = new System.Drawing.Point(158, 60);
     this.pbHome.Name = "pbHome";
     this.pbHome.Size = new System.Drawing.Size(807, 496);
     this.pbHome.TabIndex = 32;
     this.pbHome.TabStop = false;
     //
     // tabCtrlContact
     //
     this.tabCtrlContact.Controls.Add(this.tabAddContact);
     this.tabCtrlContact.Controls.Add(this.tabAddDetails);
     this.tabCtrlContact.Controls.Add(this.tabViewContacts);
     this.tabCtrlContact.Controls.Add(this.tabContactNote);
     this.tabCtrlContact.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCtrlContact.Location = new System.Drawing.Point(158, 60);
     this.tabCtrlContact.Name = "tabCtrlContact";
     this.tabCtrlContact.SelectedIndex = 0;
     this.tabCtrlContact.Size = new System.Drawing.Size(806, 498);
     this.tabCtrlContact.TabIndex = 33;
     this.tabCtrlContact.Visible = false;
     this.tabCtrlContact.SelectedIndexChanged += new System.EventHandler(this.TabCtrlContactSelectedIndexChanged1);
     //
     // tabAddContact
     //
     this.tabAddContact.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabAddContact.Controls.Add(this.lbSocialSecurity);
     this.tabAddContact.Controls.Add(this.dtpDateOfBirth);
     this.tabAddContact.Controls.Add(this.btSaveEditedContact);
     this.tabAddContact.Controls.Add(this.btCreate);
     this.tabAddContact.Controls.Add(this.tbxSsn);
     this.tabAddContact.Controls.Add(this.tbxCountry);
     this.tabAddContact.Controls.Add(this.tbxCity);
     this.tabAddContact.Controls.Add(this.tbxPostnr);
     this.tabAddContact.Controls.Add(this.tbxStreet);
     this.tabAddContact.Controls.Add(this.tbxMobile);
     this.tabAddContact.Controls.Add(this.tbxHomeNr);
     this.tabAddContact.Controls.Add(this.tbxEmail);
     this.tabAddContact.Controls.Add(this.btEdit);
     this.tabAddContact.Controls.Add(this.tbxName);
     this.tabAddContact.Controls.Add(this.tbxSurname);
     this.tabAddContact.Controls.Add(this.lbSSN);
     this.tabAddContact.Controls.Add(this.lbCountry);
     this.tabAddContact.Controls.Add(this.lbCity);
     this.tabAddContact.Controls.Add(this.btUpload);
     this.tabAddContact.Controls.Add(this.lbImage);
     this.tabAddContact.Controls.Add(this.lbMobile);
     this.tabAddContact.Controls.Add(this.pbxImage);
     this.tabAddContact.Controls.Add(this.lbPostnr);
     this.tabAddContact.Controls.Add(this.lbHome);
     this.tabAddContact.Controls.Add(this.lbTele);
     this.tabAddContact.Controls.Add(this.lbContactInfo);
     this.tabAddContact.Controls.Add(this.lbStreet);
     this.tabAddContact.Controls.Add(this.lbAddress);
     this.tabAddContact.Controls.Add(this.lbDOB);
     this.tabAddContact.Controls.Add(this.lbEmail);
     this.tabAddContact.Controls.Add(this.lbPersInfo);
     this.tabAddContact.Controls.Add(this.lbName);
     this.tabAddContact.Controls.Add(this.lbSurname);
     this.tabAddContact.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabAddContact.Location = new System.Drawing.Point(4, 26);
     this.tabAddContact.Name = "tabAddContact";
     this.tabAddContact.Padding = new System.Windows.Forms.Padding(3);
     this.tabAddContact.Size = new System.Drawing.Size(798, 468);
     this.tabAddContact.TabIndex = 0;
     this.tabAddContact.Text = "Add/Edit Contact";
     //
     // lbSocialSecurity
     //
     this.lbSocialSecurity.AutoSize = true;
     this.lbSocialSecurity.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbSocialSecurity.Location = new System.Drawing.Point(147, 181);
     this.lbSocialSecurity.Name = "lbSocialSecurity";
     this.lbSocialSecurity.Size = new System.Drawing.Size(133, 15);
     this.lbSocialSecurity.TabIndex = 84;
     this.lbSocialSecurity.Text = "Social security number";
     //
     // dtpDateOfBirth
     //
     this.dtpDateOfBirth.Location = new System.Drawing.Point(127, 118);
     this.dtpDateOfBirth.MaxDate = new System.DateTime(2011, 12, 31, 0, 0, 0, 0);
     this.dtpDateOfBirth.MinDate = new System.DateTime(1905, 1, 1, 0, 0, 0, 0);
     this.dtpDateOfBirth.Name = "dtpDateOfBirth";
     this.dtpDateOfBirth.Size = new System.Drawing.Size(186, 25);
     this.dtpDateOfBirth.TabIndex = 3;
     this.dtpDateOfBirth.TabStop = false;
     this.dtpDateOfBirth.Value = new System.DateTime(2011, 10, 20, 10, 32, 38, 0);
     //
     // btSaveEditedContact
     //
     this.btSaveEditedContact.Location = new System.Drawing.Point(602, 345);
     this.btSaveEditedContact.Name = "btSaveEditedContact";
     this.btSaveEditedContact.Size = new System.Drawing.Size(155, 32);
     this.btSaveEditedContact.TabIndex = 18;
     this.btSaveEditedContact.Text = "Save Edit ";
     this.btSaveEditedContact.UseVisualStyleBackColor = true;
     this.btSaveEditedContact.Click += new System.EventHandler(this.BtSaveEditedContactClick);
     //
     // btCreate
     //
     this.btCreate.Location = new System.Drawing.Point(602, 383);
     this.btCreate.Name = "btCreate";
     this.btCreate.Size = new System.Drawing.Size(155, 33);
     this.btCreate.TabIndex = 13;
     this.btCreate.Text = "Create Contact";
     this.btCreate.UseVisualStyleBackColor = true;
     this.btCreate.Click += new System.EventHandler(this.BtCreateClick);
     //
     // tbxSsn
     //
     this.tbxSsn.Location = new System.Drawing.Point(127, 149);
     this.tbxSsn.MaxLength = 12;
     this.tbxSsn.Name = "tbxSsn";
     this.tbxSsn.Size = new System.Drawing.Size(186, 25);
     this.tbxSsn.TabIndex = 4;
     this.tbxSsn.Validating += new System.ComponentModel.CancelEventHandler(this.TbxSsnValidating);
     //
     // tbxCountry
     //
     this.tbxCountry.Location = new System.Drawing.Point(482, 149);
     this.tbxCountry.Name = "tbxCountry";
     this.tbxCountry.Size = new System.Drawing.Size(275, 25);
     this.tbxCountry.TabIndex = 11;
     this.tbxCountry.Validating += new System.ComponentModel.CancelEventHandler(this.TbxCountryValidating);
     //
     // tbxCity
     //
     this.tbxCity.Location = new System.Drawing.Point(484, 118);
     this.tbxCity.Name = "tbxCity";
     this.tbxCity.Size = new System.Drawing.Size(275, 25);
     this.tbxCity.TabIndex = 10;
     this.tbxCity.Validating += new System.ComponentModel.CancelEventHandler(this.TbxCityValidating);
     //
     // tbxPostnr
     //
     this.tbxPostnr.Location = new System.Drawing.Point(484, 87);
     this.tbxPostnr.Name = "tbxPostnr";
     this.tbxPostnr.Size = new System.Drawing.Size(106, 25);
     this.tbxPostnr.TabIndex = 9;
     this.tbxPostnr.Validating += new System.ComponentModel.CancelEventHandler(this.TbxPostnrValidating);
     //
     // tbxStreet
     //
     this.tbxStreet.Location = new System.Drawing.Point(482, 56);
     this.tbxStreet.Name = "tbxStreet";
     this.tbxStreet.Size = new System.Drawing.Size(275, 25);
     this.tbxStreet.TabIndex = 8;
     this.tbxStreet.Validating += new System.ComponentModel.CancelEventHandler(this.TbxStreetValidating);
     //
     // tbxMobile
     //
     this.tbxMobile.Location = new System.Drawing.Point(110, 427);
     this.tbxMobile.Name = "tbxMobile";
     this.tbxMobile.Size = new System.Drawing.Size(178, 25);
     this.tbxMobile.TabIndex = 7;
     //
     // tbxHomeNr
     //
     this.tbxHomeNr.Location = new System.Drawing.Point(110, 396);
     this.tbxHomeNr.Name = "tbxHomeNr";
     this.tbxHomeNr.Size = new System.Drawing.Size(178, 25);
     this.tbxHomeNr.TabIndex = 6;
     //
     // tbxEmail
     //
     this.tbxEmail.Location = new System.Drawing.Point(110, 314);
     this.tbxEmail.Name = "tbxEmail";
     this.tbxEmail.Size = new System.Drawing.Size(178, 25);
     this.tbxEmail.TabIndex = 5;
     this.tbxEmail.Validating += new System.ComponentModel.CancelEventHandler(this.TbxEmailValidating);
     //
     // btEdit
     //
     this.btEdit.Location = new System.Drawing.Point(602, 422);
     this.btEdit.Name = "btEdit";
     this.btEdit.Size = new System.Drawing.Size(155, 32);
     this.btEdit.TabIndex = 17;
     this.btEdit.Text = "Edit Contact";
     this.btEdit.UseVisualStyleBackColor = true;
     this.btEdit.Click += new System.EventHandler(this.BtEditClick1);
     //
     // tbxName
     //
     this.tbxName.Location = new System.Drawing.Point(127, 54);
     this.tbxName.Name = "tbxName";
     this.tbxName.Size = new System.Drawing.Size(186, 25);
     this.tbxName.TabIndex = 1;
     this.tbxName.Validating += new System.ComponentModel.CancelEventHandler(this.TbxNameValidating);
     //
     // tbxSurname
     //
     this.tbxSurname.Location = new System.Drawing.Point(127, 87);
     this.tbxSurname.Name = "tbxSurname";
     this.tbxSurname.Size = new System.Drawing.Size(186, 25);
     this.tbxSurname.TabIndex = 2;
     this.tbxSurname.Validating += new System.ComponentModel.CancelEventHandler(this.TbxSurnameValidating);
     //
     // lbSSN
     //
     this.lbSSN.AutoSize = true;
     this.lbSSN.Location = new System.Drawing.Point(20, 152);
     this.lbSSN.Name = "lbSSN";
     this.lbSSN.Size = new System.Drawing.Size(42, 17);
     this.lbSSN.TabIndex = 81;
     this.lbSSN.Text = "SSN:";
     //
     // lbCountry
     //
     this.lbCountry.AutoSize = true;
     this.lbCountry.Location = new System.Drawing.Point(380, 152);
     this.lbCountry.Name = "lbCountry";
     this.lbCountry.Size = new System.Drawing.Size(63, 17);
     this.lbCountry.TabIndex = 52;
     this.lbCountry.Text = "Country:";
     //
     // lbCity
     //
     this.lbCity.AutoSize = true;
     this.lbCity.Location = new System.Drawing.Point(380, 120);
     this.lbCity.Name = "lbCity";
     this.lbCity.Size = new System.Drawing.Size(37, 17);
     this.lbCity.TabIndex = 50;
     this.lbCity.Text = "City:";
     //
     // btUpload
     //
     this.btUpload.Location = new System.Drawing.Point(481, 201);
     this.btUpload.Name = "btUpload";
     this.btUpload.Size = new System.Drawing.Size(75, 23);
     this.btUpload.TabIndex = 12;
     this.btUpload.Text = "Upload";
     this.btUpload.UseVisualStyleBackColor = true;
     this.btUpload.Click += new System.EventHandler(this.BtUploadClick);
     //
     // lbImage
     //
     this.lbImage.AutoSize = true;
     this.lbImage.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbImage.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbImage.Location = new System.Drawing.Point(380, 204);
     this.lbImage.Name = "lbImage";
     this.lbImage.Size = new System.Drawing.Size(59, 18);
     this.lbImage.TabIndex = 78;
     this.lbImage.Text = "Picture";
     //
     // lbMobile
     //
     this.lbMobile.AutoSize = true;
     this.lbMobile.Location = new System.Drawing.Point(20, 430);
     this.lbMobile.Name = "lbMobile";
     this.lbMobile.Size = new System.Drawing.Size(53, 17);
     this.lbMobile.TabIndex = 66;
     this.lbMobile.Text = "Mobile:";
     //
     // pbxImage
     //
     this.pbxImage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pbxImage.Location = new System.Drawing.Point(569, 199);
     this.pbxImage.Name = "pbxImage";
     this.pbxImage.Size = new System.Drawing.Size(188, 125);
     this.pbxImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbxImage.TabIndex = 77;
     this.pbxImage.TabStop = false;
     this.pbxImage.Tag = "";
     //
     // lbPostnr
     //
     this.lbPostnr.AutoSize = true;
     this.lbPostnr.Location = new System.Drawing.Point(380, 91);
     this.lbPostnr.Name = "lbPostnr";
     this.lbPostnr.Size = new System.Drawing.Size(98, 17);
     this.lbPostnr.TabIndex = 49;
     this.lbPostnr.Text = "Post Number:";
     //
     // lbHome
     //
     this.lbHome.AutoSize = true;
     this.lbHome.Location = new System.Drawing.Point(20, 402);
     this.lbHome.Name = "lbHome";
     this.lbHome.Size = new System.Drawing.Size(51, 17);
     this.lbHome.TabIndex = 65;
     this.lbHome.Text = "Home:";
     //
     // lbTele
     //
     this.lbTele.AutoSize = true;
     this.lbTele.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbTele.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbTele.Location = new System.Drawing.Point(14, 357);
     this.lbTele.Name = "lbTele";
     this.lbTele.Size = new System.Drawing.Size(122, 18);
     this.lbTele.TabIndex = 69;
     this.lbTele.Text = "Phone Numbers";
     //
     // lbContactInfo
     //
     this.lbContactInfo.AutoSize = true;
     this.lbContactInfo.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbContactInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbContactInfo.Location = new System.Drawing.Point(14, 279);
     this.lbContactInfo.Name = "lbContactInfo";
     this.lbContactInfo.Size = new System.Drawing.Size(147, 18);
     this.lbContactInfo.TabIndex = 68;
     this.lbContactInfo.Text = "Contact Information";
     //
     // lbStreet
     //
     this.lbStreet.AutoSize = true;
     this.lbStreet.Location = new System.Drawing.Point(380, 57);
     this.lbStreet.Name = "lbStreet";
     this.lbStreet.Size = new System.Drawing.Size(51, 17);
     this.lbStreet.TabIndex = 47;
     this.lbStreet.Text = "Street:";
     //
     // lbAddress
     //
     this.lbAddress.AutoSize = true;
     this.lbAddress.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbAddress.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbAddress.Location = new System.Drawing.Point(380, 23);
     this.lbAddress.Name = "lbAddress";
     this.lbAddress.Size = new System.Drawing.Size(57, 18);
     this.lbAddress.TabIndex = 44;
     this.lbAddress.Text = "Adress";
     //
     // lbDOB
     //
     this.lbDOB.AutoSize = true;
     this.lbDOB.Location = new System.Drawing.Point(20, 120);
     this.lbDOB.Name = "lbDOB";
     this.lbDOB.Size = new System.Drawing.Size(97, 17);
     this.lbDOB.TabIndex = 70;
     this.lbDOB.Text = "Date-of-birth: ";
     //
     // lbEmail
     //
     this.lbEmail.AutoSize = true;
     this.lbEmail.Location = new System.Drawing.Point(20, 317);
     this.lbEmail.Name = "lbEmail";
     this.lbEmail.Size = new System.Drawing.Size(52, 17);
     this.lbEmail.TabIndex = 64;
     this.lbEmail.Text = "E-Mail:";
     //
     // lbPersInfo
     //
     this.lbPersInfo.AutoSize = true;
     this.lbPersInfo.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbPersInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbPersInfo.Location = new System.Drawing.Point(14, 23);
     this.lbPersInfo.Name = "lbPersInfo";
     this.lbPersInfo.Size = new System.Drawing.Size(155, 18);
     this.lbPersInfo.TabIndex = 67;
     this.lbPersInfo.Text = "Personal Information";
     //
     // lbName
     //
     this.lbName.AutoSize = true;
     this.lbName.Location = new System.Drawing.Point(20, 56);
     this.lbName.Name = "lbName";
     this.lbName.Size = new System.Drawing.Size(84, 17);
     this.lbName.TabIndex = 41;
     this.lbName.Text = "First Name:";
     //
     // lbSurname
     //
     this.lbSurname.AutoSize = true;
     this.lbSurname.Location = new System.Drawing.Point(20, 91);
     this.lbSurname.Name = "lbSurname";
     this.lbSurname.Size = new System.Drawing.Size(72, 17);
     this.lbSurname.TabIndex = 43;
     this.lbSurname.Text = "Surname:";
     //
     // tabAddDetails
     //
     this.tabAddDetails.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabAddDetails.Controls.Add(this.btAddIntrestest);
     this.tabAddDetails.Controls.Add(this.dtpRelDateOfBirth);
     this.tabAddDetails.Controls.Add(this.label78);
     this.tabAddDetails.Controls.Add(this.cbContactToAddDetail);
     this.tabAddDetails.Controls.Add(this.lbRelDob);
     this.tabAddDetails.Controls.Add(this.cbxAddRel);
     this.tabAddDetails.Controls.Add(this.btCreateRela);
     this.tabAddDetails.Controls.Add(this.cbxRelType);
     this.tabAddDetails.Controls.Add(this.tbxRelaSurname);
     this.tabAddDetails.Controls.Add(this.tbxRelaName);
     this.tabAddDetails.Controls.Add(this.lbRelType);
     this.tabAddDetails.Controls.Add(this.lbRelaSurname);
     this.tabAddDetails.Controls.Add(this.lbRelaName);
     this.tabAddDetails.Controls.Add(this.lbxRelatives);
     this.tabAddDetails.Controls.Add(this.lbRelatives);
     this.tabAddDetails.Controls.Add(this.clbInterests);
     this.tabAddDetails.Controls.Add(this.lbInterest);
     this.tabAddDetails.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabAddDetails.Location = new System.Drawing.Point(4, 26);
     this.tabAddDetails.Name = "tabAddDetails";
     this.tabAddDetails.Padding = new System.Windows.Forms.Padding(3);
     this.tabAddDetails.Size = new System.Drawing.Size(798, 468);
     this.tabAddDetails.TabIndex = 1;
     this.tabAddDetails.Text = "Add Details";
     //
     // btAddIntrestest
     //
     this.btAddIntrestest.Location = new System.Drawing.Point(345, 412);
     this.btAddIntrestest.Name = "btAddIntrestest";
     this.btAddIntrestest.Size = new System.Drawing.Size(131, 35);
     this.btAddIntrestest.TabIndex = 88;
     this.btAddIntrestest.Text = "Save intrests";
     this.btAddIntrestest.UseVisualStyleBackColor = true;
     this.btAddIntrestest.Click += new System.EventHandler(this.BtAddIntrestestClick);
     //
     // dtpRelDateOfBirth
     //
     this.dtpRelDateOfBirth.Location = new System.Drawing.Point(572, 238);
     this.dtpRelDateOfBirth.Name = "dtpRelDateOfBirth";
     this.dtpRelDateOfBirth.Size = new System.Drawing.Size(194, 25);
     this.dtpRelDateOfBirth.TabIndex = 8;
     //
     // label78
     //
     this.label78.AutoSize = true;
     this.label78.Location = new System.Drawing.Point(19, 46);
     this.label78.Name = "label78";
     this.label78.Size = new System.Drawing.Size(108, 17);
     this.label78.TabIndex = 87;
     this.label78.Text = "Select Contact:";
     //
     // cbContactToAddDetail
     //
     this.cbContactToAddDetail.FormattingEnabled = true;
     this.cbContactToAddDetail.Location = new System.Drawing.Point(17, 73);
     this.cbContactToAddDetail.Name = "cbContactToAddDetail";
     this.cbContactToAddDetail.Size = new System.Drawing.Size(317, 25);
     this.cbContactToAddDetail.TabIndex = 1;
     this.cbContactToAddDetail.SelectedIndexChanged += new System.EventHandler(this.CbContactToAddDetailSelectedIndexChanged);
     //
     // lbRelDob
     //
     this.lbRelDob.AutoSize = true;
     this.lbRelDob.Location = new System.Drawing.Point(458, 244);
     this.lbRelDob.Name = "lbRelDob";
     this.lbRelDob.Size = new System.Drawing.Size(101, 17);
     this.lbRelDob.TabIndex = 83;
     this.lbRelDob.Text = "Date Of Birth: ";
     //
     // cbxAddRel
     //
     this.cbxAddRel.AutoSize = true;
     this.cbxAddRel.Location = new System.Drawing.Point(355, 75);
     this.cbxAddRel.Name = "cbxAddRel";
     this.cbxAddRel.Size = new System.Drawing.Size(335, 21);
     this.cbxAddRel.TabIndex = 5;
     this.cbxAddRel.Text = "Create new family member for selected contact";
     this.cbxAddRel.UseVisualStyleBackColor = true;
     this.cbxAddRel.CheckedChanged += new System.EventHandler(this.CbxAddRelCheckedChanged);
     //
     // btCreateRela
     //
     this.btCreateRela.Location = new System.Drawing.Point(592, 328);
     this.btCreateRela.Name = "btCreateRela";
     this.btCreateRela.Size = new System.Drawing.Size(174, 35);
     this.btCreateRela.TabIndex = 10;
     this.btCreateRela.Text = "Save family member";
     this.btCreateRela.UseVisualStyleBackColor = true;
     this.btCreateRela.Click += new System.EventHandler(this.BtCreateRelaClick1);
     //
     // cbxRelType
     //
     this.cbxRelType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxRelType.FormattingEnabled = true;
     this.cbxRelType.Location = new System.Drawing.Point(572, 279);
     this.cbxRelType.Name = "cbxRelType";
     this.cbxRelType.Size = new System.Drawing.Size(194, 25);
     this.cbxRelType.TabIndex = 9;
     //
     // tbxRelaSurname
     //
     this.tbxRelaSurname.Location = new System.Drawing.Point(572, 203);
     this.tbxRelaSurname.Name = "tbxRelaSurname";
     this.tbxRelaSurname.Size = new System.Drawing.Size(194, 25);
     this.tbxRelaSurname.TabIndex = 7;
     //
     // tbxRelaName
     //
     this.tbxRelaName.Location = new System.Drawing.Point(572, 167);
     this.tbxRelaName.Name = "tbxRelaName";
     this.tbxRelaName.Size = new System.Drawing.Size(194, 25);
     this.tbxRelaName.TabIndex = 6;
     //
     // lbRelType
     //
     this.lbRelType.AutoSize = true;
     this.lbRelType.Location = new System.Drawing.Point(458, 285);
     this.lbRelType.Name = "lbRelType";
     this.lbRelType.Size = new System.Drawing.Size(95, 17);
     this.lbRelType.TabIndex = 84;
     this.lbRelType.Text = "Relative Type";
     //
     // lbRelaSurname
     //
     this.lbRelaSurname.AutoSize = true;
     this.lbRelaSurname.Location = new System.Drawing.Point(458, 206);
     this.lbRelaSurname.Name = "lbRelaSurname";
     this.lbRelaSurname.Size = new System.Drawing.Size(68, 17);
     this.lbRelaSurname.TabIndex = 82;
     this.lbRelaSurname.Text = "Surname";
     //
     // lbRelaName
     //
     this.lbRelaName.AutoSize = true;
     this.lbRelaName.Location = new System.Drawing.Point(458, 170);
     this.lbRelaName.Name = "lbRelaName";
     this.lbRelaName.Size = new System.Drawing.Size(84, 17);
     this.lbRelaName.TabIndex = 81;
     this.lbRelaName.Text = "First Name:";
     //
     // lbxRelatives
     //
     this.lbxRelatives.FormattingEnabled = true;
     this.lbxRelatives.ItemHeight = 17;
     this.lbxRelatives.Location = new System.Drawing.Point(17, 140);
     this.lbxRelatives.Name = "lbxRelatives";
     this.lbxRelatives.Size = new System.Drawing.Size(317, 89);
     this.lbxRelatives.TabIndex = 2;
     //
     // lbRelatives
     //
     this.lbRelatives.AutoSize = true;
     this.lbRelatives.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbRelatives.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbRelatives.Location = new System.Drawing.Point(19, 19);
     this.lbRelatives.Name = "lbRelatives";
     this.lbRelatives.Size = new System.Drawing.Size(122, 18);
     this.lbRelatives.TabIndex = 40;
     this.lbRelatives.Text = "Family Members";
     //
     // clbInterests
     //
     this.clbInterests.CheckOnClick = true;
     this.clbInterests.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.clbInterests.FormattingEnabled = true;
     this.clbInterests.Location = new System.Drawing.Point(22, 303);
     this.clbInterests.MultiColumn = true;
     this.clbInterests.Name = "clbInterests";
     this.clbInterests.Size = new System.Drawing.Size(312, 144);
     this.clbInterests.TabIndex = 4;
     //
     // lbInterest
     //
     this.lbInterest.AutoSize = true;
     this.lbInterest.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbInterest.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbInterest.Location = new System.Drawing.Point(19, 274);
     this.lbInterest.Name = "lbInterest";
     this.lbInterest.Size = new System.Drawing.Size(71, 18);
     this.lbInterest.TabIndex = 38;
     this.lbInterest.Text = "Interests";
     //
     // tabViewContacts
     //
     this.tabViewContacts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabViewContacts.Controls.Add(this.btSelectContact);
     this.tabViewContacts.Controls.Add(this.btDeleteContact);
     this.tabViewContacts.Controls.Add(this.dataGridViewContacts);
     this.tabViewContacts.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabViewContacts.Location = new System.Drawing.Point(4, 26);
     this.tabViewContacts.Name = "tabViewContacts";
     this.tabViewContacts.Padding = new System.Windows.Forms.Padding(3);
     this.tabViewContacts.Size = new System.Drawing.Size(798, 468);
     this.tabViewContacts.TabIndex = 3;
     this.tabViewContacts.Text = "View Contacts";
     //
     // btSelectContact
     //
     this.btSelectContact.Location = new System.Drawing.Point(20, 398);
     this.btSelectContact.Name = "btSelectContact";
     this.btSelectContact.Size = new System.Drawing.Size(177, 35);
     this.btSelectContact.TabIndex = 4;
     this.btSelectContact.Text = "Select Contact to Edit";
     this.btSelectContact.UseVisualStyleBackColor = true;
     this.btSelectContact.Click += new System.EventHandler(this.BtSelectContactClick);
     //
     // btDeleteContact
     //
     this.btDeleteContact.Location = new System.Drawing.Point(613, 398);
     this.btDeleteContact.Name = "btDeleteContact";
     this.btDeleteContact.Size = new System.Drawing.Size(162, 35);
     this.btDeleteContact.TabIndex = 3;
     this.btDeleteContact.Text = "Delete Contact";
     this.btDeleteContact.UseVisualStyleBackColor = true;
     this.btDeleteContact.Click += new System.EventHandler(this.BtDeleteContactClick);
     //
     // dataGridViewContacts
     //
     this.dataGridViewContacts.AllowUserToAddRows = false;
     this.dataGridViewContacts.AllowUserToDeleteRows = false;
     this.dataGridViewContacts.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.dataGridViewContacts.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewContacts.Location = new System.Drawing.Point(20, 19);
     this.dataGridViewContacts.Name = "dataGridViewContacts";
     this.dataGridViewContacts.ReadOnly = true;
     this.dataGridViewContacts.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewContacts.Size = new System.Drawing.Size(755, 351);
     this.dataGridViewContacts.TabIndex = 2;
     //
     // tabContactNote
     //
     this.tabContactNote.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabContactNote.Controls.Add(this.btContactNoteSave);
     this.tabContactNote.Controls.Add(this.btContactNoteDel);
     this.tabContactNote.Controls.Add(this.btContactNoteClear);
     this.tabContactNote.Controls.Add(this.rtbContactNoteBody);
     this.tabContactNote.Controls.Add(this.tbContactNoteSubject);
     this.tabContactNote.Controls.Add(this.cbContactNoteNote);
     this.tabContactNote.Controls.Add(this.cbContactNoteRelative);
     this.tabContactNote.Controls.Add(this.cbContactNoteContact);
     this.tabContactNote.Controls.Add(this.label59);
     this.tabContactNote.Controls.Add(this.label49);
     this.tabContactNote.Controls.Add(this.lbSelectRelative);
     this.tabContactNote.Controls.Add(this.lbRelativeInfo);
     this.tabContactNote.Controls.Add(this.lbAddContactNoteInfo);
     this.tabContactNote.Controls.Add(this.lbContactNoteSelectNote);
     this.tabContactNote.Controls.Add(this.label18);
     this.tabContactNote.Location = new System.Drawing.Point(4, 26);
     this.tabContactNote.Name = "tabContactNote";
     this.tabContactNote.Size = new System.Drawing.Size(798, 468);
     this.tabContactNote.TabIndex = 4;
     this.tabContactNote.Text = "Add/View contact notes";
     //
     // btContactNoteSave
     //
     this.btContactNoteSave.Location = new System.Drawing.Point(342, 390);
     this.btContactNoteSave.Name = "btContactNoteSave";
     this.btContactNoteSave.Size = new System.Drawing.Size(75, 35);
     this.btContactNoteSave.TabIndex = 3;
     this.btContactNoteSave.Text = "Save";
     this.btContactNoteSave.UseVisualStyleBackColor = true;
     this.btContactNoteSave.Click += new System.EventHandler(this.BtContactNoteSaveClick);
     //
     // btContactNoteDel
     //
     this.btContactNoteDel.Location = new System.Drawing.Point(221, 390);
     this.btContactNoteDel.Name = "btContactNoteDel";
     this.btContactNoteDel.Size = new System.Drawing.Size(75, 35);
     this.btContactNoteDel.TabIndex = 4;
     this.btContactNoteDel.Text = "Remove";
     this.btContactNoteDel.UseVisualStyleBackColor = true;
     this.btContactNoteDel.Visible = false;
     this.btContactNoteDel.Click += new System.EventHandler(this.BtContactNoteDelClick);
     //
     // btContactNoteClear
     //
     this.btContactNoteClear.Location = new System.Drawing.Point(109, 390);
     this.btContactNoteClear.Name = "btContactNoteClear";
     this.btContactNoteClear.Size = new System.Drawing.Size(75, 35);
     this.btContactNoteClear.TabIndex = 4;
     this.btContactNoteClear.Text = "Clear";
     this.btContactNoteClear.UseVisualStyleBackColor = true;
     this.btContactNoteClear.Click += new System.EventHandler(this.BtContactNoteClearClick);
     //
     // rtbContactNoteBody
     //
     this.rtbContactNoteBody.Location = new System.Drawing.Point(109, 232);
     this.rtbContactNoteBody.Name = "rtbContactNoteBody";
     this.rtbContactNoteBody.Size = new System.Drawing.Size(308, 133);
     this.rtbContactNoteBody.TabIndex = 2;
     this.rtbContactNoteBody.Text = "";
     //
     // tbContactNoteSubject
     //
     this.tbContactNoteSubject.Location = new System.Drawing.Point(109, 193);
     this.tbContactNoteSubject.Name = "tbContactNoteSubject";
     this.tbContactNoteSubject.Size = new System.Drawing.Size(308, 25);
     this.tbContactNoteSubject.TabIndex = 1;
     //
     // cbContactNoteNote
     //
     this.cbContactNoteNote.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbContactNoteNote.FormattingEnabled = true;
     this.cbContactNoteNote.Location = new System.Drawing.Point(174, 121);
     this.cbContactNoteNote.Name = "cbContactNoteNote";
     this.cbContactNoteNote.Size = new System.Drawing.Size(243, 25);
     this.cbContactNoteNote.TabIndex = 1;
     this.cbContactNoteNote.Visible = false;
     this.cbContactNoteNote.SelectedIndexChanged += new System.EventHandler(this.CbContactNoteNoteSelectedIndexChanged);
     //
     // cbContactNoteRelative
     //
     this.cbContactNoteRelative.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbContactNoteRelative.FormattingEnabled = true;
     this.cbContactNoteRelative.Location = new System.Drawing.Point(174, 73);
     this.cbContactNoteRelative.Name = "cbContactNoteRelative";
     this.cbContactNoteRelative.Size = new System.Drawing.Size(243, 25);
     this.cbContactNoteRelative.TabIndex = 1;
     this.cbContactNoteRelative.Visible = false;
     this.cbContactNoteRelative.SelectedIndexChanged += new System.EventHandler(this.CbContactNoteRelativeSelectedIndexChanged);
     //
     // cbContactNoteContact
     //
     this.cbContactNoteContact.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbContactNoteContact.FormattingEnabled = true;
     this.cbContactNoteContact.Location = new System.Drawing.Point(174, 24);
     this.cbContactNoteContact.Name = "cbContactNoteContact";
     this.cbContactNoteContact.Size = new System.Drawing.Size(243, 25);
     this.cbContactNoteContact.TabIndex = 1;
     this.cbContactNoteContact.SelectedIndexChanged += new System.EventHandler(this.CbContactNoteContactSelectedIndexChanged);
     //
     // label59
     //
     this.label59.AutoSize = true;
     this.label59.Location = new System.Drawing.Point(27, 232);
     this.label59.Name = "label59";
     this.label59.Size = new System.Drawing.Size(42, 17);
     this.label59.TabIndex = 0;
     this.label59.Text = "Note:";
     //
     // label49
     //
     this.label49.AutoSize = true;
     this.label49.Location = new System.Drawing.Point(27, 197);
     this.label49.Name = "label49";
     this.label49.Size = new System.Drawing.Size(61, 17);
     this.label49.TabIndex = 0;
     this.label49.Text = "Subject:";
     //
     // lbSelectRelative
     //
     this.lbSelectRelative.AutoSize = true;
     this.lbSelectRelative.Location = new System.Drawing.Point(27, 76);
     this.lbSelectRelative.Name = "lbSelectRelative";
     this.lbSelectRelative.Size = new System.Drawing.Size(109, 17);
     this.lbSelectRelative.TabIndex = 0;
     this.lbSelectRelative.Text = "Select Relative:";
     this.lbSelectRelative.Visible = false;
     //
     // lbRelativeInfo
     //
     this.lbRelativeInfo.AutoSize = true;
     this.lbRelativeInfo.Location = new System.Drawing.Point(427, 76);
     this.lbRelativeInfo.Name = "lbRelativeInfo";
     this.lbRelativeInfo.Size = new System.Drawing.Size(275, 17);
     this.lbRelativeInfo.TabIndex = 0;
     this.lbRelativeInfo.Text = "(Leave Blank to add new note to Contact)";
     this.lbRelativeInfo.Visible = false;
     //
     // lbAddContactNoteInfo
     //
     this.lbAddContactNoteInfo.AutoSize = true;
     this.lbAddContactNoteInfo.Location = new System.Drawing.Point(427, 124);
     this.lbAddContactNoteInfo.Name = "lbAddContactNoteInfo";
     this.lbAddContactNoteInfo.Size = new System.Drawing.Size(204, 17);
     this.lbAddContactNoteInfo.TabIndex = 0;
     this.lbAddContactNoteInfo.Text = "(Leave Blank to add new note)";
     this.lbAddContactNoteInfo.Visible = false;
     //
     // lbContactNoteSelectNote
     //
     this.lbContactNoteSelectNote.AutoSize = true;
     this.lbContactNoteSelectNote.Location = new System.Drawing.Point(25, 120);
     this.lbContactNoteSelectNote.Name = "lbContactNoteSelectNote";
     this.lbContactNoteSelectNote.Size = new System.Drawing.Size(87, 17);
     this.lbContactNoteSelectNote.TabIndex = 0;
     this.lbContactNoteSelectNote.Text = "Select Note:";
     this.lbContactNoteSelectNote.Visible = false;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(25, 32);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(108, 17);
     this.label18.TabIndex = 0;
     this.label18.Text = "Select Contact:";
     //
     // tabCtrlUserManual
     //
     this.tabCtrlUserManual.Controls.Add(this.tabUserManual);
     this.tabCtrlUserManual.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCtrlUserManual.Location = new System.Drawing.Point(157, 61);
     this.tabCtrlUserManual.Name = "tabCtrlUserManual";
     this.tabCtrlUserManual.SelectedIndex = 0;
     this.tabCtrlUserManual.Size = new System.Drawing.Size(807, 498);
     this.tabCtrlUserManual.TabIndex = 19;
     this.tabCtrlUserManual.Visible = false;
     //
     // tabUserManual
     //
     this.tabUserManual.Controls.Add(this.webUserManual);
     this.tabUserManual.Location = new System.Drawing.Point(4, 26);
     this.tabUserManual.Name = "tabUserManual";
     this.tabUserManual.Padding = new System.Windows.Forms.Padding(3);
     this.tabUserManual.Size = new System.Drawing.Size(799, 468);
     this.tabUserManual.TabIndex = 1;
     this.tabUserManual.Text = "User Manual";
     this.tabUserManual.UseVisualStyleBackColor = true;
     //
     // webUserManual
     //
     this.webUserManual.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webUserManual.Location = new System.Drawing.Point(3, 3);
     this.webUserManual.MinimumSize = new System.Drawing.Size(20, 20);
     this.webUserManual.Name = "webUserManual";
     this.webUserManual.Size = new System.Drawing.Size(793, 462);
     this.webUserManual.TabIndex = 0;
     //
     // Home1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(186)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.BackgroundImage = global::CsiCrm.Properties.Resources.Untitled_61;
     this.ClientSize = new System.Drawing.Size(1180, 744);
     this.Controls.Add(this.btUserManual);
     this.Controls.Add(this.btJournal);
     this.Controls.Add(this.btAppointments);
     this.Controls.Add(this.btCompanies);
     this.Controls.Add(this.btContacts);
     this.Controls.Add(this.btHome);
     this.Controls.Add(this.tabControl2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.monthCalendar1);
     this.Controls.Add(this.pictureBox2);
     this.Controls.Add(this.tabCtrlUserManual);
     this.Controls.Add(this.tabCtrlCompanies);
     this.Controls.Add(this.tabCtrlJournal);
     this.Controls.Add(this.tabCtrlContact);
     this.Controls.Add(this.tabCtrlAppoinments);
     this.Controls.Add(this.pbHome);
     this.MaximumSize = new System.Drawing.Size(1196, 782);
     this.MinimumSize = new System.Drawing.Size(1196, 782);
     this.Name = "Home1";
     this.Text = "Form1";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tabControl2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     this.tabCalender.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tabCtrlJournal.ResumeLayout(false);
     this.tabJournalCompany.ResumeLayout(false);
     this.tabJournalCompany.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     this.tabContactJournal.ResumeLayout(false);
     this.tabContactJournal.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
     this.tabSearchAllNotes.ResumeLayout(false);
     this.tabSearchAllNotes.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
     this.tabCtrlCompanies.ResumeLayout(false);
     this.tabAddCompany.ResumeLayout(false);
     this.tabAddCompany.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxCompanyLogo)).EndInit();
     this.tabViewCompanyNote.ResumeLayout(false);
     this.tabViewCompanyNote.PerformLayout();
     this.tabViewCompanyContacts.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgwCompanyContacts)).EndInit();
     this.tabCtrlAppoinments.ResumeLayout(false);
     this.tabAddAppointment.ResumeLayout(false);
     this.tabAddAppointment.PerformLayout();
     this.tabViewAppointment.ResumeLayout(false);
     this.tabViewAppointment.PerformLayout();
     this.panelSearchOptionsAppointments.ResumeLayout(false);
     this.panelSearchOptionsAppointments.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvViewAppoinments)).EndInit();
     this.tabAppointmentDetails.ResumeLayout(false);
     this.tabAppointmentDetails.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbHome)).EndInit();
     this.tabCtrlContact.ResumeLayout(false);
     this.tabAddContact.ResumeLayout(false);
     this.tabAddContact.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxImage)).EndInit();
     this.tabAddDetails.ResumeLayout(false);
     this.tabAddDetails.PerformLayout();
     this.tabViewContacts.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewContacts)).EndInit();
     this.tabContactNote.ResumeLayout(false);
     this.tabContactNote.PerformLayout();
     this.tabCtrlUserManual.ResumeLayout(false);
     this.tabUserManual.ResumeLayout(false);
     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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OperatorsForm));
     this.pictureBoxOpProperties = new System.Windows.Forms.PictureBox();
     this.label1 = new System.Windows.Forms.Label();
     this.groupBoxName = new System.Windows.Forms.GroupBox();
     this.textBoxName = new System.Windows.Forms.TextBox();
     this.groupBoxPredicate = new System.Windows.Forms.GroupBox();
     this.textBoxPredicate = new System.Windows.Forms.TextBox();
     this.groupBoxAttributesList1 = new System.Windows.Forms.GroupBox();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.groupBoxAttributesList2 = new System.Windows.Forms.GroupBox();
     this.listBox1 = new System.Windows.Forms.ListBox();
     this.groupBoxGroupByTypes = new System.Windows.Forms.GroupBox();
     this.domainUpDownGroupBy = new System.Windows.Forms.DomainUpDown();
     this.buttonAccept = new System.Windows.Forms.Button();
     this.buttonCancel = new System.Windows.Forms.Button();
     this.checkedListBox2 = new System.Windows.Forms.CheckedListBox();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.domainUpDown1 = new System.Windows.Forms.DomainUpDown();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.listBox2 = new System.Windows.Forms.ListBox();
     this.groupBox8 = new System.Windows.Forms.GroupBox();
     this.groupBox9 = new System.Windows.Forms.GroupBox();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.groupBox10 = new System.Windows.Forms.GroupBox();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.groupBoxTag = new System.Windows.Forms.GroupBox();
     this.textBoxTag = new System.Windows.Forms.TextBox();
     this.UniqueNameRequiredLabel = new System.Windows.Forms.Label();
     this.GroupByTypeNeeded = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxOpProperties)).BeginInit();
     this.groupBoxName.SuspendLayout();
     this.groupBoxPredicate.SuspendLayout();
     this.groupBoxAttributesList1.SuspendLayout();
     this.groupBoxAttributesList2.SuspendLayout();
     this.groupBoxGroupByTypes.SuspendLayout();
     this.groupBox6.SuspendLayout();
     this.groupBox7.SuspendLayout();
     this.groupBox8.SuspendLayout();
     this.groupBox9.SuspendLayout();
     this.groupBox10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.groupBoxTag.SuspendLayout();
     this.SuspendLayout();
     //
     // pictureBoxOpProperties
     //
     this.pictureBoxOpProperties.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.pictureBoxOpProperties.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxOpProperties.Image")));
     this.pictureBoxOpProperties.Location = new System.Drawing.Point(8, 4);
     this.pictureBoxOpProperties.Name = "pictureBoxOpProperties";
     this.pictureBoxOpProperties.Size = new System.Drawing.Size(50, 50);
     this.pictureBoxOpProperties.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBoxOpProperties.TabIndex = 0;
     this.pictureBoxOpProperties.TabStop = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Modern No. 20", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(8, 58);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(161, 16);
     this.label1.TabIndex = 1;
     this.label1.Text = "Output Stream Operator";
     //
     // groupBoxName
     //
     this.groupBoxName.Controls.Add(this.textBoxName);
     this.groupBoxName.Location = new System.Drawing.Point(8, 77);
     this.groupBoxName.Name = "groupBoxName";
     this.groupBoxName.Size = new System.Drawing.Size(272, 42);
     this.groupBoxName.TabIndex = 2;
     this.groupBoxName.TabStop = false;
     this.groupBoxName.Text = "Name:";
     //
     // textBoxName
     //
     this.textBoxName.Dock = System.Windows.Forms.DockStyle.Top;
     this.textBoxName.Location = new System.Drawing.Point(3, 16);
     this.textBoxName.Name = "textBoxName";
     this.textBoxName.Size = new System.Drawing.Size(266, 20);
     this.textBoxName.TabIndex = 0;
     this.textBoxName.Text = "Enter Name Here";
     //
     // groupBoxPredicate
     //
     this.groupBoxPredicate.Controls.Add(this.GroupByTypeNeeded);
     this.groupBoxPredicate.Controls.Add(this.UniqueNameRequiredLabel);
     this.groupBoxPredicate.Controls.Add(this.textBoxPredicate);
     this.groupBoxPredicate.Location = new System.Drawing.Point(8, 125);
     this.groupBoxPredicate.Name = "groupBoxPredicate";
     this.groupBoxPredicate.Size = new System.Drawing.Size(272, 42);
     this.groupBoxPredicate.TabIndex = 3;
     this.groupBoxPredicate.TabStop = false;
     this.groupBoxPredicate.Text = "Predicate:";
     //
     // textBoxPredicate
     //
     this.textBoxPredicate.Dock = System.Windows.Forms.DockStyle.Top;
     this.textBoxPredicate.Location = new System.Drawing.Point(3, 16);
     this.textBoxPredicate.Name = "textBoxPredicate";
     this.textBoxPredicate.Size = new System.Drawing.Size(266, 20);
     this.textBoxPredicate.TabIndex = 0;
     this.textBoxPredicate.Text = "Enter Predicate Here";
     //
     // groupBoxAttributesList1
     //
     this.groupBoxAttributesList1.Controls.Add(this.checkedListBox1);
     this.groupBoxAttributesList1.Location = new System.Drawing.Point(8, 167);
     this.groupBoxAttributesList1.Name = "groupBoxAttributesList1";
     this.groupBoxAttributesList1.Size = new System.Drawing.Size(272, 83);
     this.groupBoxAttributesList1.TabIndex = 4;
     this.groupBoxAttributesList1.TabStop = false;
     this.groupBoxAttributesList1.Text = "Attributes List 1:";
     //
     // checkedListBox1
     //
     this.checkedListBox1.CheckOnClick = true;
     this.checkedListBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.Items.AddRange(new object[] {
     "CheckedItem1",
     "CheckedItem2",
     "CheckedItem3",
     "CheckedItem4",
     "CheckedItem5"});
     this.checkedListBox1.Location = new System.Drawing.Point(3, 16);
     this.checkedListBox1.Name = "checkedListBox1";
     this.checkedListBox1.Size = new System.Drawing.Size(266, 64);
     this.checkedListBox1.Sorted = true;
     this.checkedListBox1.TabIndex = 0;
     this.checkedListBox1.ThreeDCheckBoxes = true;
     //
     // groupBoxAttributesList2
     //
     this.groupBoxAttributesList2.Controls.Add(this.listBox1);
     this.groupBoxAttributesList2.Location = new System.Drawing.Point(8, 253);
     this.groupBoxAttributesList2.Name = "groupBoxAttributesList2";
     this.groupBoxAttributesList2.Size = new System.Drawing.Size(272, 75);
     this.groupBoxAttributesList2.TabIndex = 5;
     this.groupBoxAttributesList2.TabStop = false;
     this.groupBoxAttributesList2.Text = "Attributes List 2:";
     //
     // listBox1
     //
     this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listBox1.FormattingEnabled = true;
     this.listBox1.Items.AddRange(new object[] {
     "Item1",
     "Item2",
     "Item3",
     "Item4",
     "Item5",
     "Item6",
     "Item7",
     "Item8"});
     this.listBox1.Location = new System.Drawing.Point(3, 16);
     this.listBox1.Name = "listBox1";
     this.listBox1.Size = new System.Drawing.Size(266, 56);
     this.listBox1.Sorted = true;
     this.listBox1.TabIndex = 0;
     //
     // groupBoxGroupByTypes
     //
     this.groupBoxGroupByTypes.Controls.Add(this.domainUpDownGroupBy);
     this.groupBoxGroupByTypes.Location = new System.Drawing.Point(64, 4);
     this.groupBoxGroupByTypes.Name = "groupBoxGroupByTypes";
     this.groupBoxGroupByTypes.Size = new System.Drawing.Size(206, 50);
     this.groupBoxGroupByTypes.TabIndex = 6;
     this.groupBoxGroupByTypes.TabStop = false;
     this.groupBoxGroupByTypes.Text = "GroupBy Types:";
     //
     // domainUpDownGroupBy
     //
     this.domainUpDownGroupBy.Dock = System.Windows.Forms.DockStyle.Fill;
     this.domainUpDownGroupBy.Items.Add("GroupByAvg");
     this.domainUpDownGroupBy.Items.Add("GroupByCount");
     this.domainUpDownGroupBy.Items.Add("GroupByMax");
     this.domainUpDownGroupBy.Items.Add("GroupByMin");
     this.domainUpDownGroupBy.Items.Add("GroupBySum");
     this.domainUpDownGroupBy.Location = new System.Drawing.Point(3, 16);
     this.domainUpDownGroupBy.Name = "domainUpDownGroupBy";
     this.domainUpDownGroupBy.Size = new System.Drawing.Size(200, 20);
     this.domainUpDownGroupBy.TabIndex = 0;
     this.domainUpDownGroupBy.Text = "Select a Type to Group On";
     //
     // buttonAccept
     //
     this.buttonAccept.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonAccept.Location = new System.Drawing.Point(199, 383);
     this.buttonAccept.Name = "buttonAccept";
     this.buttonAccept.Size = new System.Drawing.Size(78, 34);
     this.buttonAccept.TabIndex = 7;
     this.buttonAccept.Text = "Accept";
     this.buttonAccept.UseVisualStyleBackColor = true;
     this.buttonAccept.Click += new System.EventHandler(this.buttonAccept_Click);
     //
     // buttonCancel
     //
     this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCancel.Location = new System.Drawing.Point(137, 383);
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.Size = new System.Drawing.Size(56, 34);
     this.buttonCancel.TabIndex = 8;
     this.buttonCancel.Text = "Cancel";
     this.buttonCancel.UseVisualStyleBackColor = true;
     this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
     //
     // checkedListBox2
     //
     this.checkedListBox2.CheckOnClick = true;
     this.checkedListBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.checkedListBox2.FormattingEnabled = true;
     this.checkedListBox2.Items.AddRange(new object[] {
     "CheckedItem1",
     "CheckedItem2",
     "CheckedItem3",
     "CheckedItem4",
     "CheckedItem5"});
     this.checkedListBox2.Location = new System.Drawing.Point(3, 16);
     this.checkedListBox2.Name = "checkedListBox2";
     this.checkedListBox2.Size = new System.Drawing.Size(217, 64);
     this.checkedListBox2.Sorted = true;
     this.checkedListBox2.TabIndex = 0;
     this.checkedListBox2.ThreeDCheckBoxes = true;
     //
     // groupBox6
     //
     this.groupBox6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox6.Controls.Add(this.domainUpDown1);
     this.groupBox6.Location = new System.Drawing.Point(74, 6);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(157, 50);
     this.groupBox6.TabIndex = 6;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "GroupBy Types:";
     //
     // domainUpDown1
     //
     this.domainUpDown1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.domainUpDown1.Items.Add("GroupByAvg");
     this.domainUpDown1.Items.Add("GroupByCount");
     this.domainUpDown1.Items.Add("GroupByMax");
     this.domainUpDown1.Items.Add("GroupByMin");
     this.domainUpDown1.Items.Add("GroupBySum");
     this.domainUpDown1.Location = new System.Drawing.Point(3, 16);
     this.domainUpDown1.Name = "domainUpDown1";
     this.domainUpDown1.Size = new System.Drawing.Size(151, 20);
     this.domainUpDown1.TabIndex = 0;
     this.domainUpDown1.Text = "Select a Type to Group On";
     //
     // button1
     //
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Location = new System.Drawing.Point(88, 338);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(56, 34);
     this.button1.TabIndex = 8;
     this.button1.Text = "Cancel";
     this.button1.UseVisualStyleBackColor = true;
     //
     // button2
     //
     this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button2.Location = new System.Drawing.Point(150, 338);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(78, 34);
     this.button2.TabIndex = 7;
     this.button2.Text = "Accept";
     this.button2.UseVisualStyleBackColor = true;
     //
     // groupBox7
     //
     this.groupBox7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox7.Controls.Add(this.listBox2);
     this.groupBox7.Location = new System.Drawing.Point(8, 259);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(223, 75);
     this.groupBox7.TabIndex = 5;
     this.groupBox7.TabStop = false;
     this.groupBox7.Text = "Attributes List 2:";
     //
     // listBox2
     //
     this.listBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listBox2.FormattingEnabled = true;
     this.listBox2.Items.AddRange(new object[] {
     "Item1",
     "Item2",
     "Item3",
     "Item4",
     "Item5",
     "Item6",
     "Item7",
     "Item8"});
     this.listBox2.Location = new System.Drawing.Point(3, 16);
     this.listBox2.Name = "listBox2";
     this.listBox2.Size = new System.Drawing.Size(217, 56);
     this.listBox2.Sorted = true;
     this.listBox2.TabIndex = 0;
     //
     // groupBox8
     //
     this.groupBox8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox8.Controls.Add(this.checkedListBox2);
     this.groupBox8.Location = new System.Drawing.Point(8, 173);
     this.groupBox8.Name = "groupBox8";
     this.groupBox8.Size = new System.Drawing.Size(223, 83);
     this.groupBox8.TabIndex = 4;
     this.groupBox8.TabStop = false;
     this.groupBox8.Text = "Attributes List 1:";
     //
     // groupBox9
     //
     this.groupBox9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox9.Controls.Add(this.textBox1);
     this.groupBox9.Location = new System.Drawing.Point(8, 125);
     this.groupBox9.Name = "groupBox9";
     this.groupBox9.Size = new System.Drawing.Size(223, 42);
     this.groupBox9.TabIndex = 3;
     this.groupBox9.TabStop = false;
     this.groupBox9.Text = "Predicate:";
     //
     // textBox1
     //
     this.textBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.textBox1.Location = new System.Drawing.Point(3, 16);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(217, 20);
     this.textBox1.TabIndex = 0;
     this.textBox1.Text = "Enter Predicate Here";
     //
     // groupBox10
     //
     this.groupBox10.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox10.Controls.Add(this.textBox2);
     this.groupBox10.Location = new System.Drawing.Point(8, 77);
     this.groupBox10.Name = "groupBox10";
     this.groupBox10.Size = new System.Drawing.Size(223, 42);
     this.groupBox10.TabIndex = 2;
     this.groupBox10.TabStop = false;
     this.groupBox10.Text = "Name:";
     //
     // textBox2
     //
     this.textBox2.Dock = System.Windows.Forms.DockStyle.Top;
     this.textBox2.Location = new System.Drawing.Point(3, 16);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(217, 20);
     this.textBox2.TabIndex = 0;
     this.textBox2.Text = "Enter Name Here";
     //
     // label2
     //
     this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Modern No. 20", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(5, 59);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(161, 16);
     this.label2.TabIndex = 1;
     this.label2.Text = "Output Stream Operator";
     //
     // pictureBox1
     //
     this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(8, 6);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(50, 50);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // groupBoxTag
     //
     this.groupBoxTag.Controls.Add(this.textBoxTag);
     this.groupBoxTag.Location = new System.Drawing.Point(8, 334);
     this.groupBoxTag.Name = "groupBoxTag";
     this.groupBoxTag.Size = new System.Drawing.Size(272, 42);
     this.groupBoxTag.TabIndex = 9;
     this.groupBoxTag.TabStop = false;
     this.groupBoxTag.Text = "Tag:";
     //
     // textBoxTag
     //
     this.textBoxTag.Dock = System.Windows.Forms.DockStyle.Top;
     this.textBoxTag.Location = new System.Drawing.Point(3, 16);
     this.textBoxTag.Multiline = true;
     this.textBoxTag.Name = "textBoxTag";
     this.textBoxTag.Size = new System.Drawing.Size(266, 20);
     this.textBoxTag.TabIndex = 0;
     this.textBoxTag.Text = "Enter Tag Here";
     //
     // UniqueNameRequiredLabel
     //
     this.UniqueNameRequiredLabel.AutoSize = true;
     this.UniqueNameRequiredLabel.ForeColor = System.Drawing.Color.Red;
     this.UniqueNameRequiredLabel.Location = new System.Drawing.Point(67, -3);
     this.UniqueNameRequiredLabel.Name = "UniqueNameRequiredLabel";
     this.UniqueNameRequiredLabel.Size = new System.Drawing.Size(118, 13);
     this.UniqueNameRequiredLabel.TabIndex = 10;
     this.UniqueNameRequiredLabel.Text = "Unique Name Required";
     this.UniqueNameRequiredLabel.Visible = false;
     //
     // GroupByTypeNeeded
     //
     this.GroupByTypeNeeded.AutoSize = true;
     this.GroupByTypeNeeded.ForeColor = System.Drawing.Color.Red;
     this.GroupByTypeNeeded.Location = new System.Drawing.Point(67, 0);
     this.GroupByTypeNeeded.Name = "GroupByTypeNeeded";
     this.GroupByTypeNeeded.Size = new System.Drawing.Size(119, 13);
     this.GroupByTypeNeeded.TabIndex = 11;
     this.GroupByTypeNeeded.Text = "GroupBy Type Needed!";
     this.GroupByTypeNeeded.Visible = false;
     //
     // OperatorsForm
     //
     this.AcceptButton = this.buttonAccept;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(291, 429);
     this.Controls.Add(this.groupBoxTag);
     this.Controls.Add(this.groupBoxGroupByTypes);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.pictureBoxOpProperties);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.groupBoxName);
     this.Controls.Add(this.groupBoxPredicate);
     this.Controls.Add(this.groupBoxAttributesList1);
     this.Controls.Add(this.groupBoxAttributesList2);
     this.Controls.Add(this.buttonAccept);
     this.MaximizeBox = false;
     this.MaximumSize = new System.Drawing.Size(307, 465);
     this.MinimizeBox = false;
     this.MinimumSize = new System.Drawing.Size(307, 465);
     this.Name = "OperatorsForm";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Operators";
     this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.OperatorsForm_KeyPress);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxOpProperties)).EndInit();
     this.groupBoxName.ResumeLayout(false);
     this.groupBoxName.PerformLayout();
     this.groupBoxPredicate.ResumeLayout(false);
     this.groupBoxPredicate.PerformLayout();
     this.groupBoxAttributesList1.ResumeLayout(false);
     this.groupBoxAttributesList2.ResumeLayout(false);
     this.groupBoxGroupByTypes.ResumeLayout(false);
     this.groupBox6.ResumeLayout(false);
     this.groupBox7.ResumeLayout(false);
     this.groupBox8.ResumeLayout(false);
     this.groupBox9.ResumeLayout(false);
     this.groupBox9.PerformLayout();
     this.groupBox10.ResumeLayout(false);
     this.groupBox10.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.groupBoxTag.ResumeLayout(false);
     this.groupBoxTag.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.bttNuevo = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.clbFunciones = new System.Windows.Forms.CheckedListBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.cmbRol = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.bttModificar = new System.Windows.Forms.Button();
     this.bttEliminar = new System.Windows.Forms.Button();
     this.ckbInhabilitar = new System.Windows.Forms.CheckBox();
     this.txtbNuevo = new System.Windows.Forms.TextBox();
     this.tbControl = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.gboxFunc = new System.Windows.Forms.GroupBox();
     this.clbFunciones_mod = new System.Windows.Forms.CheckedListBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.label2 = new System.Windows.Forms.Label();
     this.ckbInhabiliNuevo = new System.Windows.Forms.CheckBox();
     this.bttGuardarCambios = new System.Windows.Forms.Button();
     this.txtBoxRolMod = new System.Windows.Forms.TextBox();
     this.lblRolExistenteN = new System.Windows.Forms.Label();
     this.lblRolExistenteMod = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tbControl.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.gboxFunc.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.SuspendLayout();
     //
     // bttNuevo
     //
     this.bttNuevo.Enabled = false;
     this.bttNuevo.Location = new System.Drawing.Point(31, 184);
     this.bttNuevo.Name = "bttNuevo";
     this.bttNuevo.Size = new System.Drawing.Size(75, 23);
     this.bttNuevo.TabIndex = 0;
     this.bttNuevo.Text = "Crear Nuevo";
     this.bttNuevo.UseVisualStyleBackColor = true;
     this.bttNuevo.Click += new System.EventHandler(this.bttNuevo_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.lblRolExistenteN);
     this.groupBox1.Controls.Add(this.ckbInhabiliNuevo);
     this.groupBox1.Controls.Add(this.txtbNuevo);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(12, 25);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(208, 106);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Roles";
     //
     // clbFunciones
     //
     this.clbFunciones.FormattingEnabled = true;
     this.clbFunciones.Location = new System.Drawing.Point(6, 19);
     this.clbFunciones.Name = "clbFunciones";
     this.clbFunciones.Size = new System.Drawing.Size(120, 139);
     this.clbFunciones.TabIndex = 2;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.clbFunciones);
     this.groupBox2.Location = new System.Drawing.Point(226, 25);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(153, 170);
     this.groupBox2.TabIndex = 3;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Funcionalidades";
     //
     // cmbRol
     //
     this.cmbRol.FormattingEnabled = true;
     this.cmbRol.Location = new System.Drawing.Point(60, 33);
     this.cmbRol.Name = "cmbRol";
     this.cmbRol.Size = new System.Drawing.Size(121, 21);
     this.cmbRol.TabIndex = 4;
     this.cmbRol.SelectedIndexChanged += new System.EventHandler(this.cmbRol_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(6, 33);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(38, 13);
     this.label1.TabIndex = 4;
     this.label1.Text = "   Rol :";
     //
     // bttModificar
     //
     this.bttModificar.Location = new System.Drawing.Point(106, 77);
     this.bttModificar.Name = "bttModificar";
     this.bttModificar.Size = new System.Drawing.Size(75, 23);
     this.bttModificar.TabIndex = 4;
     this.bttModificar.Text = "Modificar";
     this.bttModificar.UseVisualStyleBackColor = true;
     this.bttModificar.Click += new System.EventHandler(this.bttModificar_Click);
     //
     // bttEliminar
     //
     this.bttEliminar.Location = new System.Drawing.Point(25, 77);
     this.bttEliminar.Name = "bttEliminar";
     this.bttEliminar.Size = new System.Drawing.Size(75, 23);
     this.bttEliminar.TabIndex = 5;
     this.bttEliminar.Text = "Eliminar";
     this.bttEliminar.UseVisualStyleBackColor = true;
     this.bttEliminar.Click += new System.EventHandler(this.bttEliminar_Click);
     //
     // ckbInhabilitar
     //
     this.ckbInhabilitar.AutoSize = true;
     this.ckbInhabilitar.Location = new System.Drawing.Point(124, 156);
     this.ckbInhabilitar.Name = "ckbInhabilitar";
     this.ckbInhabilitar.Size = new System.Drawing.Size(90, 17);
     this.ckbInhabilitar.TabIndex = 6;
     this.ckbInhabilitar.Text = "Inhabilitar Rol";
     this.ckbInhabilitar.UseVisualStyleBackColor = true;
     this.ckbInhabilitar.Visible = false;
     //
     // txtbNuevo
     //
     this.txtbNuevo.Location = new System.Drawing.Point(75, 31);
     this.txtbNuevo.Name = "txtbNuevo";
     this.txtbNuevo.Size = new System.Drawing.Size(100, 20);
     this.txtbNuevo.TabIndex = 6;
     this.txtbNuevo.TextChanged += new System.EventHandler(this.txtbNuevo_TextChanged);
     //
     // tbControl
     //
     this.tbControl.Controls.Add(this.tabPage1);
     this.tbControl.Controls.Add(this.tabPage2);
     this.tbControl.Location = new System.Drawing.Point(12, 12);
     this.tbControl.Name = "tbControl";
     this.tbControl.SelectedIndex = 0;
     this.tbControl.Size = new System.Drawing.Size(416, 258);
     this.tbControl.TabIndex = 6;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.groupBox1);
     this.tabPage1.Controls.Add(this.groupBox2);
     this.tabPage1.Controls.Add(this.bttNuevo);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(408, 232);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Crear Rol";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.bttGuardarCambios);
     this.tabPage2.Controls.Add(this.ckbInhabilitar);
     this.tabPage2.Controls.Add(this.groupBox4);
     this.tabPage2.Controls.Add(this.gboxFunc);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(408, 232);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "Modificar o Eliminar Rol";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // checkedListBox1
     //
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.Location = new System.Drawing.Point(6, 19);
     this.checkedListBox1.Name = "checkedListBox1";
     this.checkedListBox1.Size = new System.Drawing.Size(120, 139);
     this.checkedListBox1.TabIndex = 2;
     //
     // gboxFunc
     //
     this.gboxFunc.Controls.Add(this.clbFunciones_mod);
     this.gboxFunc.Location = new System.Drawing.Point(249, 26);
     this.gboxFunc.Name = "gboxFunc";
     this.gboxFunc.Size = new System.Drawing.Size(153, 170);
     this.gboxFunc.TabIndex = 4;
     this.gboxFunc.TabStop = false;
     this.gboxFunc.Text = "Funcionalidades";
     this.gboxFunc.Visible = false;
     //
     // clbFunciones_mod
     //
     this.clbFunciones_mod.FormattingEnabled = true;
     this.clbFunciones_mod.Location = new System.Drawing.Point(6, 19);
     this.clbFunciones_mod.Name = "clbFunciones_mod";
     this.clbFunciones_mod.Size = new System.Drawing.Size(120, 139);
     this.clbFunciones_mod.TabIndex = 2;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.lblRolExistenteMod);
     this.groupBox4.Controls.Add(this.txtBoxRolMod);
     this.groupBox4.Controls.Add(this.label2);
     this.groupBox4.Controls.Add(this.bttEliminar);
     this.groupBox4.Controls.Add(this.cmbRol);
     this.groupBox4.Controls.Add(this.bttModificar);
     this.groupBox4.Location = new System.Drawing.Point(18, 26);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(208, 106);
     this.groupBox4.TabIndex = 5;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Roles";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(6, 33);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(38, 13);
     this.label2.TabIndex = 4;
     this.label2.Text = "   Rol :";
     //
     // ckbInhabiliNuevo
     //
     this.ckbInhabiliNuevo.AutoSize = true;
     this.ckbInhabiliNuevo.Location = new System.Drawing.Point(85, 72);
     this.ckbInhabiliNuevo.Name = "ckbInhabiliNuevo";
     this.ckbInhabiliNuevo.Size = new System.Drawing.Size(90, 17);
     this.ckbInhabiliNuevo.TabIndex = 7;
     this.ckbInhabiliNuevo.Text = "Inhabilitar Rol";
     this.ckbInhabiliNuevo.UseVisualStyleBackColor = true;
     //
     // bttGuardarCambios
     //
     this.bttGuardarCambios.Location = new System.Drawing.Point(258, 203);
     this.bttGuardarCambios.Name = "bttGuardarCambios";
     this.bttGuardarCambios.Size = new System.Drawing.Size(117, 23);
     this.bttGuardarCambios.TabIndex = 7;
     this.bttGuardarCambios.Text = "Guardar Cambios";
     this.bttGuardarCambios.UseVisualStyleBackColor = true;
     this.bttGuardarCambios.Visible = false;
     this.bttGuardarCambios.Click += new System.EventHandler(this.bttGuardarCambios_Click);
     //
     // txtBoxRolMod
     //
     this.txtBoxRolMod.Location = new System.Drawing.Point(60, 33);
     this.txtBoxRolMod.Name = "txtBoxRolMod";
     this.txtBoxRolMod.Size = new System.Drawing.Size(100, 20);
     this.txtBoxRolMod.TabIndex = 6;
     this.txtBoxRolMod.Visible = false;
     this.txtBoxRolMod.TextChanged += new System.EventHandler(this.txtBoxRolMod_TextChanged);
     //
     // lblRolExistenteN
     //
     this.lblRolExistenteN.AutoSize = true;
     this.lblRolExistenteN.ForeColor = System.Drawing.Color.Red;
     this.lblRolExistenteN.Location = new System.Drawing.Point(43, 54);
     this.lblRolExistenteN.Name = "lblRolExistenteN";
     this.lblRolExistenteN.Size = new System.Drawing.Size(141, 13);
     this.lblRolExistenteN.TabIndex = 4;
     this.lblRolExistenteN.Text = "*Rol existe! Use otro nombre";
     this.lblRolExistenteN.Visible = false;
     //
     // lblRolExistenteMod
     //
     this.lblRolExistenteMod.AutoSize = true;
     this.lblRolExistenteMod.ForeColor = System.Drawing.Color.Red;
     this.lblRolExistenteMod.Location = new System.Drawing.Point(61, 61);
     this.lblRolExistenteMod.Name = "lblRolExistenteMod";
     this.lblRolExistenteMod.Size = new System.Drawing.Size(141, 13);
     this.lblRolExistenteMod.TabIndex = 8;
     this.lblRolExistenteMod.Text = "*Rol existe! Use otro nombre";
     this.lblRolExistenteMod.Visible = false;
     //
     // frmRoles
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(433, 272);
     this.Controls.Add(this.tbControl);
     this.Name = "frmRoles";
     this.Text = "ABM Roles";
     this.Load += new System.EventHandler(this.frmRoles_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.tbControl.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage2.PerformLayout();
     this.gboxFunc.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.ResumeLayout(false);
 }
Example #48
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components               = new System.ComponentModel.Container();
     this.FieldSetsListBox         = new System.Windows.Forms.ListBox();
     this.FieldSetsLabel           = new System.Windows.Forms.Label();
     this.FieldsLabel              = new System.Windows.Forms.Label();
     this.FieldsListBox            = new System.Windows.Forms.CheckedListBox();
     this.ToolTip                  = new System.Windows.Forms.ToolTip(this.components);
     this.EditModeImage            = new System.Windows.Forms.PictureBox();
     this.ReaderModeImage          = new System.Windows.Forms.PictureBox();
     this.OrderByImage             = new System.Windows.Forms.PictureBox();
     this.ParameterModeImage       = new System.Windows.Forms.PictureBox();
     this.TableControl             = new DataJuggler.Win.Controls.LabelTextBoxControl();
     this.EditPanel                = new System.Windows.Forms.Panel();
     this.ReaderModeCheckBox       = new DataJuggler.Win.Controls.LabelCheckBoxControl();
     this.OrderByModeCheckBox      = new DataJuggler.Win.Controls.LabelCheckBoxControl();
     this.SaveCancelControl2       = new DataTierClient.Controls.SaveCancelControl();
     this.ParameterModeCheckBox    = new DataJuggler.Win.Controls.LabelCheckBoxControl();
     this.FieldSetNameControl      = new DataJuggler.Win.Controls.LabelTextBoxControl();
     this.TagsPanel                = new System.Windows.Forms.Panel();
     this.BottomFillerPanel        = new DataJuggler.Win.Controls.Objects.PanelExtender();
     this.ValidationLabel          = new DataJuggler.Win.Controls.LabelLabelControl();
     this.Filler1                  = new System.Windows.Forms.Panel();
     this.SaveCancelControl        = new DataTierClient.Controls.SaveCancelControl();
     this.OrderByFieldsListBox     = new System.Windows.Forms.ListBox();
     this.OrderByFieldsLabel       = new System.Windows.Forms.Label();
     this.MoveDownButton           = new System.Windows.Forms.Button();
     this.MoveUpButton             = new System.Windows.Forms.Button();
     this.DeleteButton             = new DataTierClient.Controls.TabButton();
     this.AddButton                = new DataTierClient.Controls.TabButton();
     this.EditButton               = new DataTierClient.Controls.TabButton();
     this.DescendingCheckBox       = new DataJuggler.Win.Controls.LabelCheckBoxControl();
     this.SelectedFieldsCountLabel = new DataJuggler.Win.Controls.LabelLabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.EditModeImage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReaderModeImage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderByImage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ParameterModeImage)).BeginInit();
     this.EditPanel.SuspendLayout();
     this.TagsPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // FieldSetsListBox
     //
     this.FieldSetsListBox.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FieldSetsListBox.FormattingEnabled = true;
     this.FieldSetsListBox.ItemHeight        = 18;
     this.FieldSetsListBox.Location          = new System.Drawing.Point(60, 85);
     this.FieldSetsListBox.Name                  = "FieldSetsListBox";
     this.FieldSetsListBox.Size                  = new System.Drawing.Size(222, 130);
     this.FieldSetsListBox.TabIndex              = 101;
     this.FieldSetsListBox.SelectedIndexChanged += new System.EventHandler(this.FieldSetsListBox_SelectedIndexChanged);
     //
     // FieldSetsLabel
     //
     this.FieldSetsLabel.Font      = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FieldSetsLabel.Location  = new System.Drawing.Point(60, 64);
     this.FieldSetsLabel.Name      = "FieldSetsLabel";
     this.FieldSetsLabel.Size      = new System.Drawing.Size(178, 20);
     this.FieldSetsLabel.TabIndex  = 100;
     this.FieldSetsLabel.Text      = "Field Sets:";
     this.FieldSetsLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // FieldsLabel
     //
     this.FieldsLabel.Font      = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FieldsLabel.Location  = new System.Drawing.Point(378, 85);
     this.FieldsLabel.Name      = "FieldsLabel";
     this.FieldsLabel.Size      = new System.Drawing.Size(100, 20);
     this.FieldsLabel.TabIndex  = 107;
     this.FieldsLabel.Text      = "Fields:";
     this.FieldsLabel.TextAlign = System.Drawing.ContentAlignment.BottomRight;
     //
     // FieldsListBox
     //
     this.FieldsListBox.CheckOnClick      = true;
     this.FieldsListBox.Enabled           = false;
     this.FieldsListBox.FormattingEnabled = true;
     this.FieldsListBox.Location          = new System.Drawing.Point(482, 85);
     this.FieldsListBox.Name     = "FieldsListBox";
     this.FieldsListBox.Size     = new System.Drawing.Size(316, 312);
     this.FieldsListBox.TabIndex = 105;
     this.ToolTip.SetToolTip(this.FieldsListBox, "Press Ctrl + A to Check All.\r\nPress Ctrl + N to Check None.");
     this.FieldsListBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.FieldsListBox_ItemCheck);
     this.FieldsListBox.KeyDown   += new System.Windows.Forms.KeyEventHandler(this.FieldsListBox_KeyDown);
     //
     // EditModeImage
     //
     this.EditModeImage.BackgroundImage       = global::DataTierClient.Properties.Resources.EditMode;
     this.EditModeImage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.EditModeImage.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
     this.EditModeImage.Dock     = System.Windows.Forms.DockStyle.Right;
     this.EditModeImage.Location = new System.Drawing.Point(1077, 0);
     this.EditModeImage.Name     = "EditModeImage";
     this.EditModeImage.Size     = new System.Drawing.Size(128, 40);
     this.EditModeImage.TabIndex = 127;
     this.EditModeImage.TabStop  = false;
     this.ToolTip.SetToolTip(this.EditModeImage, "In Parameter Mode you may select up to four fields.");
     this.EditModeImage.Visible = false;
     //
     // ReaderModeImage
     //
     this.ReaderModeImage.BackgroundImage       = global::DataTierClient.Properties.Resources.ReaderMode;
     this.ReaderModeImage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ReaderModeImage.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ReaderModeImage.Location = new System.Drawing.Point(380, 0);
     this.ReaderModeImage.Name     = "ReaderModeImage";
     this.ReaderModeImage.Size     = new System.Drawing.Size(182, 40);
     this.ReaderModeImage.TabIndex = 126;
     this.ReaderModeImage.TabStop  = false;
     this.ToolTip.SetToolTip(this.ReaderModeImage, "In Parameter Mode you may select up to four fields.");
     this.ReaderModeImage.Visible = false;
     //
     // OrderByImage
     //
     this.OrderByImage.BackgroundImage       = global::DataTierClient.Properties.Resources.OrderBy;
     this.OrderByImage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.OrderByImage.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
     this.OrderByImage.Location = new System.Drawing.Point(190, 0);
     this.OrderByImage.Name     = "OrderByImage";
     this.OrderByImage.Size     = new System.Drawing.Size(182, 40);
     this.OrderByImage.TabIndex = 123;
     this.OrderByImage.TabStop  = false;
     this.ToolTip.SetToolTip(this.OrderByImage, "In Parameter Mode you may select up to four fields.");
     this.OrderByImage.Visible = false;
     //
     // ParameterModeImage
     //
     this.ParameterModeImage.BackgroundImage       = global::DataTierClient.Properties.Resources.Parameter_Mode;
     this.ParameterModeImage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ParameterModeImage.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ParameterModeImage.Location = new System.Drawing.Point(0, 0);
     this.ParameterModeImage.Name     = "ParameterModeImage";
     this.ParameterModeImage.Size     = new System.Drawing.Size(182, 40);
     this.ParameterModeImage.TabIndex = 119;
     this.ParameterModeImage.TabStop  = false;
     this.ToolTip.SetToolTip(this.ParameterModeImage, "In Parameter Mode you may select up to four fields.");
     this.ParameterModeImage.Visible = false;
     //
     // TableControl
     //
     this.TableControl.BackColor             = System.Drawing.Color.Transparent;
     this.TableControl.BottomMargin          = 0;
     this.TableControl.Editable              = false;
     this.TableControl.Encrypted             = false;
     this.TableControl.Font                  = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TableControl.LabelBottomMargin     = 0;
     this.TableControl.LabelColor            = System.Drawing.SystemColors.ControlText;
     this.TableControl.LabelFont             = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold);
     this.TableControl.LabelText             = "Selected Table:";
     this.TableControl.LabelTopMargin        = 0;
     this.TableControl.LabelWidth            = 180;
     this.TableControl.Location              = new System.Drawing.Point(299, 52);
     this.TableControl.MultiLine             = false;
     this.TableControl.Name                  = "TableControl";
     this.TableControl.OnTextChangedListener = null;
     this.TableControl.PasswordMode          = false;
     this.TableControl.ScrollBars            = System.Windows.Forms.ScrollBars.None;
     this.TableControl.Size                  = new System.Drawing.Size(499, 32);
     this.TableControl.TabIndex              = 112;
     this.TableControl.TextBoxBottomMargin   = 0;
     this.TableControl.TextBoxDisabledColor  = System.Drawing.Color.LightGray;
     this.TableControl.TextBoxEditableColor  = System.Drawing.Color.White;
     this.TableControl.TextBoxFont           = new System.Drawing.Font("Verdana", 12F);
     this.TableControl.TextBoxTopMargin      = 0;
     //
     // EditPanel
     //
     this.EditPanel.Controls.Add(this.ReaderModeCheckBox);
     this.EditPanel.Controls.Add(this.OrderByModeCheckBox);
     this.EditPanel.Controls.Add(this.SaveCancelControl2);
     this.EditPanel.Controls.Add(this.ParameterModeCheckBox);
     this.EditPanel.Controls.Add(this.FieldSetNameControl);
     this.EditPanel.Location = new System.Drawing.Point(3, 262);
     this.EditPanel.Name     = "EditPanel";
     this.EditPanel.Size     = new System.Drawing.Size(447, 195);
     this.EditPanel.TabIndex = 115;
     //
     // ReaderModeCheckBox
     //
     this.ReaderModeCheckBox.BackColor = System.Drawing.Color.Transparent;
     this.ReaderModeCheckBox.CheckBoxHorizontalOffSet = 2;
     this.ReaderModeCheckBox.CheckBoxVerticalOffSet   = 3;
     this.ReaderModeCheckBox.CheckChangedListener     = null;
     this.ReaderModeCheckBox.Checked    = false;
     this.ReaderModeCheckBox.Editable   = true;
     this.ReaderModeCheckBox.Font       = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ReaderModeCheckBox.LabelColor = System.Drawing.SystemColors.ControlText;
     this.ReaderModeCheckBox.LabelFont  = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ReaderModeCheckBox.LabelText  = "Reader Mode:";
     this.ReaderModeCheckBox.LabelWidth = 180;
     this.ReaderModeCheckBox.Location   = new System.Drawing.Point(20, 115);
     this.ReaderModeCheckBox.Name       = "ReaderModeCheckBox";
     this.ReaderModeCheckBox.Size       = new System.Drawing.Size(211, 24);
     this.ReaderModeCheckBox.TabIndex   = 119;
     //
     // OrderByModeCheckBox
     //
     this.OrderByModeCheckBox.BackColor = System.Drawing.Color.Transparent;
     this.OrderByModeCheckBox.CheckBoxHorizontalOffSet = 2;
     this.OrderByModeCheckBox.CheckBoxVerticalOffSet   = 3;
     this.OrderByModeCheckBox.CheckChangedListener     = null;
     this.OrderByModeCheckBox.Checked    = false;
     this.OrderByModeCheckBox.Editable   = true;
     this.OrderByModeCheckBox.Font       = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.OrderByModeCheckBox.LabelColor = System.Drawing.SystemColors.ControlText;
     this.OrderByModeCheckBox.LabelFont  = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.OrderByModeCheckBox.LabelText  = "Order By Mode:";
     this.OrderByModeCheckBox.LabelWidth = 180;
     this.OrderByModeCheckBox.Location   = new System.Drawing.Point(20, 85);
     this.OrderByModeCheckBox.Name       = "OrderByModeCheckBox";
     this.OrderByModeCheckBox.Size       = new System.Drawing.Size(211, 24);
     this.OrderByModeCheckBox.TabIndex   = 118;
     //
     // SaveCancelControl2
     //
     this.SaveCancelControl2.BackColor = System.Drawing.Color.Transparent;
     this.SaveCancelControl2.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.SaveCancelControl2.Location  = new System.Drawing.Point(0, 155);
     this.SaveCancelControl2.Name      = "SaveCancelControl2";
     this.SaveCancelControl2.Size      = new System.Drawing.Size(447, 40);
     this.SaveCancelControl2.TabIndex  = 117;
     //
     // ParameterModeCheckBox
     //
     this.ParameterModeCheckBox.BackColor = System.Drawing.Color.Transparent;
     this.ParameterModeCheckBox.CheckBoxHorizontalOffSet = 2;
     this.ParameterModeCheckBox.CheckBoxVerticalOffSet   = 3;
     this.ParameterModeCheckBox.CheckChangedListener     = null;
     this.ParameterModeCheckBox.Checked    = false;
     this.ParameterModeCheckBox.Editable   = true;
     this.ParameterModeCheckBox.Font       = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ParameterModeCheckBox.LabelColor = System.Drawing.SystemColors.ControlText;
     this.ParameterModeCheckBox.LabelFont  = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ParameterModeCheckBox.LabelText  = "Parameter Mode:";
     this.ParameterModeCheckBox.LabelWidth = 180;
     this.ParameterModeCheckBox.Location   = new System.Drawing.Point(20, 54);
     this.ParameterModeCheckBox.Name       = "ParameterModeCheckBox";
     this.ParameterModeCheckBox.Size       = new System.Drawing.Size(211, 24);
     this.ParameterModeCheckBox.TabIndex   = 116;
     //
     // FieldSetNameControl
     //
     this.FieldSetNameControl.BackColor             = System.Drawing.Color.Transparent;
     this.FieldSetNameControl.BottomMargin          = 0;
     this.FieldSetNameControl.Editable              = false;
     this.FieldSetNameControl.Encrypted             = false;
     this.FieldSetNameControl.Font                  = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FieldSetNameControl.LabelBottomMargin     = 0;
     this.FieldSetNameControl.LabelColor            = System.Drawing.SystemColors.ControlText;
     this.FieldSetNameControl.LabelFont             = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold);
     this.FieldSetNameControl.LabelText             = "Field Set Name:";
     this.FieldSetNameControl.LabelTopMargin        = 0;
     this.FieldSetNameControl.LabelWidth            = 180;
     this.FieldSetNameControl.Location              = new System.Drawing.Point(20, 16);
     this.FieldSetNameControl.MultiLine             = false;
     this.FieldSetNameControl.Name                  = "FieldSetNameControl";
     this.FieldSetNameControl.OnTextChangedListener = null;
     this.FieldSetNameControl.PasswordMode          = false;
     this.FieldSetNameControl.ScrollBars            = System.Windows.Forms.ScrollBars.None;
     this.FieldSetNameControl.Size                  = new System.Drawing.Size(409, 32);
     this.FieldSetNameControl.TabIndex              = 115;
     this.FieldSetNameControl.TextBoxBottomMargin   = 0;
     this.FieldSetNameControl.TextBoxDisabledColor  = System.Drawing.Color.LightGray;
     this.FieldSetNameControl.TextBoxEditableColor  = System.Drawing.Color.White;
     this.FieldSetNameControl.TextBoxFont           = new System.Drawing.Font("Verdana", 12F);
     this.FieldSetNameControl.TextBoxTopMargin      = 2;
     //
     // TagsPanel
     //
     this.TagsPanel.Controls.Add(this.EditModeImage);
     this.TagsPanel.Controls.Add(this.ReaderModeImage);
     this.TagsPanel.Controls.Add(this.OrderByImage);
     this.TagsPanel.Controls.Add(this.ParameterModeImage);
     this.TagsPanel.Dock     = System.Windows.Forms.DockStyle.Top;
     this.TagsPanel.Location = new System.Drawing.Point(0, 0);
     this.TagsPanel.Name     = "TagsPanel";
     this.TagsPanel.Size     = new System.Drawing.Size(1205, 40);
     this.TagsPanel.TabIndex = 119;
     //
     // BottomFillerPanel
     //
     this.BottomFillerPanel.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.BottomFillerPanel.Location = new System.Drawing.Point(0, 492);
     this.BottomFillerPanel.Name     = "BottomFillerPanel";
     this.BottomFillerPanel.Size     = new System.Drawing.Size(1205, 20);
     this.BottomFillerPanel.TabIndex = 130;
     //
     // ValidationLabel
     //
     this.ValidationLabel.Dock            = System.Windows.Forms.DockStyle.Bottom;
     this.ValidationLabel.Font            = new System.Drawing.Font("Verdana", 12F);
     this.ValidationLabel.LabelColor      = System.Drawing.Color.Firebrick;
     this.ValidationLabel.LabelFont       = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ValidationLabel.LabelText       = "Error:";
     this.ValidationLabel.LabelWidth      = 80;
     this.ValidationLabel.Location        = new System.Drawing.Point(0, 468);
     this.ValidationLabel.Margin          = new System.Windows.Forms.Padding(6, 5, 6, 5);
     this.ValidationLabel.Name            = "ValidationLabel";
     this.ValidationLabel.Size            = new System.Drawing.Size(1205, 24);
     this.ValidationLabel.TabIndex        = 131;
     this.ValidationLabel.ValueLabelColor = System.Drawing.Color.Firebrick;
     this.ValidationLabel.ValueLabelFont  = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ValidationLabel.Visible         = false;
     //
     // Filler1
     //
     this.Filler1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.Filler1.Location = new System.Drawing.Point(0, 464);
     this.Filler1.Name     = "Filler1";
     this.Filler1.Size     = new System.Drawing.Size(1205, 4);
     this.Filler1.TabIndex = 133;
     //
     // SaveCancelControl
     //
     this.SaveCancelControl.BackColor = System.Drawing.Color.Transparent;
     this.SaveCancelControl.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.SaveCancelControl.Location  = new System.Drawing.Point(0, 512);
     this.SaveCancelControl.Name      = "SaveCancelControl";
     this.SaveCancelControl.Size      = new System.Drawing.Size(1205, 40);
     this.SaveCancelControl.TabIndex  = 110;
     //
     // OrderByFieldsListBox
     //
     this.OrderByFieldsListBox.Enabled           = false;
     this.OrderByFieldsListBox.FormattingEnabled = true;
     this.OrderByFieldsListBox.ItemHeight        = 18;
     this.OrderByFieldsListBox.Location          = new System.Drawing.Point(817, 85);
     this.OrderByFieldsListBox.Name                  = "OrderByFieldsListBox";
     this.OrderByFieldsListBox.Size                  = new System.Drawing.Size(316, 148);
     this.OrderByFieldsListBox.TabIndex              = 136;
     this.OrderByFieldsListBox.SelectedIndexChanged += new System.EventHandler(this.OrderByFields_SelectedIndexChanged);
     //
     // OrderByFieldsLabel
     //
     this.OrderByFieldsLabel.Font            = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.OrderByFieldsLabel.Location        = new System.Drawing.Point(815, 62);
     this.OrderByFieldsLabel.Name            = "OrderByFieldsLabel";
     this.OrderByFieldsLabel.Size            = new System.Drawing.Size(154, 20);
     this.OrderByFieldsLabel.TabIndex        = 135;
     this.OrderByFieldsLabel.Text            = "Order By Fields:";
     this.OrderByFieldsLabel.TextAlign       = System.Drawing.ContentAlignment.MiddleLeft;
     this.OrderByFieldsLabel.EnabledChanged += new System.EventHandler(this.OrderByFieldsLabel_EnabledChanged);
     //
     // MoveDownButton
     //
     this.MoveDownButton.BackgroundImage       = global::DataTierClient.Properties.Resources.Arrow_Down_Gray;
     this.MoveDownButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.MoveDownButton.Enabled = false;
     this.MoveDownButton.FlatAppearance.BorderSize = 0;
     this.MoveDownButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.MoveDownButton.Location  = new System.Drawing.Point(1137, 127);
     this.MoveDownButton.Name      = "MoveDownButton";
     this.MoveDownButton.Size      = new System.Drawing.Size(32, 32);
     this.MoveDownButton.TabIndex  = 138;
     this.MoveDownButton.UseVisualStyleBackColor = true;
     this.MoveDownButton.EnabledChanged         += new System.EventHandler(this.MoveDownButton_EnabledChanged);
     this.MoveDownButton.Click += new System.EventHandler(this.MoveDownButton_Click);
     //
     // MoveUpButton
     //
     this.MoveUpButton.BackgroundImage       = global::DataTierClient.Properties.Resources.Arrow_Up_Gray;
     this.MoveUpButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.MoveUpButton.Enabled = false;
     this.MoveUpButton.FlatAppearance.BorderSize = 0;
     this.MoveUpButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.MoveUpButton.Location  = new System.Drawing.Point(1137, 89);
     this.MoveUpButton.Name      = "MoveUpButton";
     this.MoveUpButton.Size      = new System.Drawing.Size(32, 32);
     this.MoveUpButton.TabIndex  = 137;
     this.MoveUpButton.UseVisualStyleBackColor = true;
     this.MoveUpButton.EnabledChanged         += new System.EventHandler(this.MoveUpButton_EnabledChanged);
     this.MoveUpButton.Click      += new System.EventHandler(this.MoveUpButton_Click);
     this.MoveUpButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.MoveUpButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // DeleteButton
     //
     this.DeleteButton.BackgroundImage       = global::DataTierClient.Properties.Resources.DeepGray;
     this.DeleteButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.DeleteButton.ButtonNumber          = 0;
     this.DeleteButton.ButtonText            = "Delete";
     this.DeleteButton.Font             = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DeleteButton.Location         = new System.Drawing.Point(206, 223);
     this.DeleteButton.Margin           = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.DeleteButton.Name             = "DeleteButton";
     this.DeleteButton.NotSelectedImage = global::DataTierClient.Properties.Resources.DeepGray;
     this.DeleteButton.Selected         = false;
     this.DeleteButton.SelectedImage    = global::DataTierClient.Properties.Resources.DeepBlue;
     this.DeleteButton.ShowNotSelectedImageWhenDisabled = true;
     this.DeleteButton.Size     = new System.Drawing.Size(76, 26);
     this.DeleteButton.TabIndex = 104;
     //
     // AddButton
     //
     this.AddButton.BackgroundImage       = global::DataTierClient.Properties.Resources.DeepBlue;
     this.AddButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.AddButton.ButtonNumber          = 0;
     this.AddButton.ButtonText            = "Add";
     this.AddButton.Font             = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AddButton.Location         = new System.Drawing.Point(60, 223);
     this.AddButton.Margin           = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.AddButton.Name             = "AddButton";
     this.AddButton.NotSelectedImage = global::DataTierClient.Properties.Resources.DeepGray;
     this.AddButton.Selected         = true;
     this.AddButton.SelectedImage    = global::DataTierClient.Properties.Resources.DeepBlue;
     this.AddButton.ShowNotSelectedImageWhenDisabled = true;
     this.AddButton.Size     = new System.Drawing.Size(64, 26);
     this.AddButton.TabIndex = 102;
     //
     // EditButton
     //
     this.EditButton.BackgroundImage       = global::DataTierClient.Properties.Resources.DeepGray;
     this.EditButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.EditButton.ButtonNumber          = 0;
     this.EditButton.ButtonText            = "Edit";
     this.EditButton.Font             = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.EditButton.Location         = new System.Drawing.Point(133, 223);
     this.EditButton.Margin           = new System.Windows.Forms.Padding(4, 3, 4, 3);
     this.EditButton.Name             = "EditButton";
     this.EditButton.NotSelectedImage = global::DataTierClient.Properties.Resources.DeepGray;
     this.EditButton.Selected         = false;
     this.EditButton.SelectedImage    = global::DataTierClient.Properties.Resources.DeepBlue;
     this.EditButton.ShowNotSelectedImageWhenDisabled = true;
     this.EditButton.Size     = new System.Drawing.Size(64, 26);
     this.EditButton.TabIndex = 103;
     //
     // DescendingCheckBox
     //
     this.DescendingCheckBox.BackColor = System.Drawing.Color.Transparent;
     this.DescendingCheckBox.CheckBoxHorizontalOffSet = 2;
     this.DescendingCheckBox.CheckBoxVerticalOffSet   = 3;
     this.DescendingCheckBox.CheckChangedListener     = null;
     this.DescendingCheckBox.Checked    = false;
     this.DescendingCheckBox.Editable   = true;
     this.DescendingCheckBox.Font       = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DescendingCheckBox.LabelColor = System.Drawing.SystemColors.ControlText;
     this.DescendingCheckBox.LabelFont  = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DescendingCheckBox.LabelText  = "Descending:";
     this.DescendingCheckBox.LabelWidth = 120;
     this.DescendingCheckBox.Location   = new System.Drawing.Point(996, 60);
     this.DescendingCheckBox.Name       = "DescendingCheckBox";
     this.DescendingCheckBox.Size       = new System.Drawing.Size(155, 24);
     this.DescendingCheckBox.TabIndex   = 139;
     //
     // SelectedFieldsCountLabel
     //
     this.SelectedFieldsCountLabel.Font            = new System.Drawing.Font("Verdana", 12F);
     this.SelectedFieldsCountLabel.ForeColor       = System.Drawing.Color.Black;
     this.SelectedFieldsCountLabel.LabelColor      = System.Drawing.Color.Black;
     this.SelectedFieldsCountLabel.LabelFont       = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.SelectedFieldsCountLabel.LabelText       = "Count:";
     this.SelectedFieldsCountLabel.LabelWidth      = 80;
     this.SelectedFieldsCountLabel.Location        = new System.Drawing.Point(482, 417);
     this.SelectedFieldsCountLabel.Margin          = new System.Windows.Forms.Padding(6, 5, 6, 5);
     this.SelectedFieldsCountLabel.Name            = "SelectedFieldsCountLabel";
     this.SelectedFieldsCountLabel.Size            = new System.Drawing.Size(305, 24);
     this.SelectedFieldsCountLabel.TabIndex        = 140;
     this.SelectedFieldsCountLabel.ValueLabelColor = System.Drawing.Color.Black;
     this.SelectedFieldsCountLabel.ValueLabelFont  = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.SelectedFieldsCountLabel.Visible         = false;
     //
     // FieldSetEditor
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.BackColor     = System.Drawing.Color.Linen;
     this.Controls.Add(this.SelectedFieldsCountLabel);
     this.Controls.Add(this.DescendingCheckBox);
     this.Controls.Add(this.MoveDownButton);
     this.Controls.Add(this.MoveUpButton);
     this.Controls.Add(this.OrderByFieldsListBox);
     this.Controls.Add(this.OrderByFieldsLabel);
     this.Controls.Add(this.Filler1);
     this.Controls.Add(this.ValidationLabel);
     this.Controls.Add(this.BottomFillerPanel);
     this.Controls.Add(this.TagsPanel);
     this.Controls.Add(this.EditPanel);
     this.Controls.Add(this.TableControl);
     this.Controls.Add(this.SaveCancelControl);
     this.Controls.Add(this.FieldsLabel);
     this.Controls.Add(this.FieldsListBox);
     this.Controls.Add(this.DeleteButton);
     this.Controls.Add(this.AddButton);
     this.Controls.Add(this.FieldSetsListBox);
     this.Controls.Add(this.FieldSetsLabel);
     this.Controls.Add(this.EditButton);
     this.DoubleBuffered = true;
     this.Font           = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name           = "FieldSetEditor";
     this.Size           = new System.Drawing.Size(1205, 552);
     ((System.ComponentModel.ISupportInitialize)(this.EditModeImage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReaderModeImage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderByImage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ParameterModeImage)).EndInit();
     this.EditPanel.ResumeLayout(false);
     this.TagsPanel.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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PrintOptions));
     this.rdoSelectedRows = new System.Windows.Forms.RadioButton();
     this.rdoAllRows = new System.Windows.Forms.RadioButton();
     this.lblTitle = new System.Windows.Forms.Label();
     this.txtTitle = new System.Windows.Forms.TextBox();
     this.btnFont = new System.Windows.Forms.Button();
     this.gboxRowsToPrint = new System.Windows.Forms.GroupBox();
     this.lblColumnsToPrint = new System.Windows.Forms.Label();
     this.btnOK = new System.Windows.Forms.Button();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnHelp = new System.Windows.Forms.Button();
     this.chklst = new System.Windows.Forms.CheckedListBox();
     this.gboxRowsToPrint.SuspendLayout();
     this.SuspendLayout();
     //
     // rdoSelectedRows
     //
     this.rdoSelectedRows.AutoSize = true;
     this.rdoSelectedRows.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdoSelectedRows.Location = new System.Drawing.Point(91, 19);
     this.rdoSelectedRows.Name = "rdoSelectedRows";
     this.rdoSelectedRows.Size = new System.Drawing.Size(75, 17);
     this.rdoSelectedRows.TabIndex = 1;
     this.rdoSelectedRows.TabStop = true;
     this.rdoSelectedRows.Text = "Selected";
     this.rdoSelectedRows.UseVisualStyleBackColor = true;
     //
     // rdoAllRows
     //
     this.rdoAllRows.AutoSize = true;
     this.rdoAllRows.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdoAllRows.Location = new System.Drawing.Point(9, 19);
     this.rdoAllRows.Name = "rdoAllRows";
     this.rdoAllRows.Size = new System.Drawing.Size(39, 17);
     this.rdoAllRows.TabIndex = 0;
     this.rdoAllRows.TabStop = true;
     this.rdoAllRows.Text = "All";
     this.rdoAllRows.UseVisualStyleBackColor = true;
     //
     // lblTitle
     //
     this.lblTitle.AutoSize = true;
     this.lblTitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.Location = new System.Drawing.Point(220, 120);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(80, 13);
     this.lblTitle.TabIndex = 20;
     this.lblTitle.Text = "Title of print ";
     //
     // txtTitle
     //
     this.txtTitle.AcceptsReturn = true;
     this.txtTitle.Location = new System.Drawing.Point(220, 139);
     this.txtTitle.Multiline = true;
     this.txtTitle.Name = "txtTitle";
     this.txtTitle.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtTitle.Size = new System.Drawing.Size(176, 75);
     this.txtTitle.TabIndex = 19;
     //
     // btnFont
     //
     this.btnFont.BackColor = System.Drawing.SystemColors.Control;
     this.btnFont.Cursor = System.Windows.Forms.Cursors.Default;
     this.btnFont.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnFont.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnFont.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnFont.Image = ((System.Drawing.Image)(resources.GetObject("btnFont.Image")));
     this.btnFont.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnFont.Location = new System.Drawing.Point(220, 83);
     this.btnFont.Name = "btnFont";
     this.btnFont.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnFont.Size = new System.Drawing.Size(56, 25);
     this.btnFont.TabIndex = 18;
     this.btnFont.Text = "&Font";
     this.btnFont.UseVisualStyleBackColor = false;
     this.btnFont.Click += new System.EventHandler(this.btnFont_Click);
     //
     // gboxRowsToPrint
     //
     this.gboxRowsToPrint.Controls.Add(this.rdoSelectedRows);
     this.gboxRowsToPrint.Controls.Add(this.rdoAllRows);
     this.gboxRowsToPrint.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gboxRowsToPrint.Location = new System.Drawing.Point(220, 22);
     this.gboxRowsToPrint.Name = "gboxRowsToPrint";
     this.gboxRowsToPrint.Size = new System.Drawing.Size(173, 42);
     this.gboxRowsToPrint.TabIndex = 17;
     this.gboxRowsToPrint.TabStop = false;
     this.gboxRowsToPrint.Text = "Rows to print";
     //
     // lblColumnsToPrint
     //
     this.lblColumnsToPrint.AutoSize = true;
     this.lblColumnsToPrint.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblColumnsToPrint.Location = new System.Drawing.Point(8, 9);
     this.lblColumnsToPrint.Name = "lblColumnsToPrint";
     this.lblColumnsToPrint.Size = new System.Drawing.Size(102, 13);
     this.lblColumnsToPrint.TabIndex = 16;
     this.lblColumnsToPrint.Text = "Columns to print ";
     //
     // btnOK
     //
     this.btnOK.BackColor = System.Drawing.SystemColors.Control;
     this.btnOK.Cursor = System.Windows.Forms.Cursors.Default;
     this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnOK.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnOK.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnOK.Image = ((System.Drawing.Image)(resources.GetObject("btnOK.Image")));
     this.btnOK.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnOK.Location = new System.Drawing.Point(220, 262);
     this.btnOK.Name = "btnOK";
     this.btnOK.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnOK.Size = new System.Drawing.Size(56, 25);
     this.btnOK.TabIndex = 13;
     this.btnOK.Text = "&OK";
     this.btnOK.UseVisualStyleBackColor = false;
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.BackColor = System.Drawing.SystemColors.Control;
     this.btnCancel.Cursor = System.Windows.Forms.Cursors.Default;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnCancel.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnCancel.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
     this.btnCancel.Location = new System.Drawing.Point(282, 262);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnCancel.Size = new System.Drawing.Size(56, 25);
     this.btnCancel.TabIndex = 14;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.UseVisualStyleBackColor = false;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnHelp
     //
     this.btnHelp.BackColor = System.Drawing.SystemColors.Control;
     this.btnHelp.Cursor = System.Windows.Forms.Cursors.Default;
     this.btnHelp.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnHelp.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.btnHelp.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnHelp.Image = ((System.Drawing.Image)(resources.GetObject("btnHelp.Image")));
     this.btnHelp.Location = new System.Drawing.Point(344, 262);
     this.btnHelp.Name = "btnHelp";
     this.btnHelp.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.btnHelp.Size = new System.Drawing.Size(56, 25);
     this.btnHelp.TabIndex = 15;
     this.btnHelp.Text = "&Help";
     this.btnHelp.UseVisualStyleBackColor = false;
     //
     // chklst
     //
     this.chklst.CheckOnClick = true;
     this.chklst.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chklst.FormattingEnabled = true;
     this.chklst.Location = new System.Drawing.Point(8, 28);
     this.chklst.Name = "chklst";
     this.chklst.Size = new System.Drawing.Size(200, 259);
     this.chklst.TabIndex = 12;
     //
     // PrintOptions
     //
     this.AcceptButton = this.btnOK;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(410, 307);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.txtTitle);
     this.Controls.Add(this.btnFont);
     this.Controls.Add(this.gboxRowsToPrint);
     this.Controls.Add(this.lblColumnsToPrint);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnHelp);
     this.Controls.Add(this.chklst);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "PrintOptions";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Print Options";
     this.Load += new System.EventHandler(this.PrintOtions_Load);
     this.gboxRowsToPrint.ResumeLayout(false);
     this.gboxRowsToPrint.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.BTN_Submit = new System.Windows.Forms.Button();
     this.TimeStepsLabel = new System.Windows.Forms.Label();
     this.HowManyStatesLabel = new System.Windows.Forms.Label();
     this.RuleLabel = new System.Windows.Forms.Label();
     this.TimeStepsTextBox = new System.Windows.Forms.TextBox();
     this.HowManyStatesTextBox = new System.Windows.Forms.TextBox();
     this.NumRule_Txt = new System.Windows.Forms.TextBox();
     this.ArraySizeTB = new System.Windows.Forms.TextBox();
     this.ArraySizeLabel = new System.Windows.Forms.Label();
     this.InfiniteCB = new System.Windows.Forms.CheckBox();
     this.FiniteCB = new System.Windows.Forms.CheckBox();
     this.PeriodicCB = new System.Windows.Forms.CheckBox();
     this.NullCB = new System.Windows.Forms.CheckBox();
     this.ParallelCB = new System.Windows.Forms.CheckBox();
     this.SequentialCB = new System.Windows.Forms.CheckBox();
     this.ChangedStatesCLB = new System.Windows.Forms.CheckedListBox();
     this.LeftToRight = new System.Windows.Forms.CheckBox();
     this.RightToLeft = new System.Windows.Forms.CheckBox();
     this.Random = new System.Windows.Forms.CheckBox();
     this.RandomizeSS = new System.Windows.Forms.Button();
     this.UserCB = new System.Windows.Forms.CheckBox();
     this.SuspendLayout();
     //
     // BTN_Submit
     //
     this.BTN_Submit.Location = new System.Drawing.Point(465, 521);
     this.BTN_Submit.Name = "BTN_Submit";
     this.BTN_Submit.Size = new System.Drawing.Size(146, 43);
     this.BTN_Submit.TabIndex = 4;
     this.BTN_Submit.Text = "Submit";
     this.BTN_Submit.UseVisualStyleBackColor = true;
     this.BTN_Submit.Click += new System.EventHandler(this.BTN_Submit_Click);
     //
     // TimeStepsLabel
     //
     this.TimeStepsLabel.AutoSize = true;
     this.TimeStepsLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TimeStepsLabel.Location = new System.Drawing.Point(415, 31);
     this.TimeStepsLabel.Name = "TimeStepsLabel";
     this.TimeStepsLabel.Size = new System.Drawing.Size(253, 29);
     this.TimeStepsLabel.TabIndex = 3;
     this.TimeStepsLabel.Text = "How many time steps?";
     //
     // HowManyStatesLabel
     //
     this.HowManyStatesLabel.AutoSize = true;
     this.HowManyStatesLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.HowManyStatesLabel.Location = new System.Drawing.Point(306, 141);
     this.HowManyStatesLabel.Name = "HowManyStatesLabel";
     this.HowManyStatesLabel.Size = new System.Drawing.Size(451, 29);
     this.HowManyStatesLabel.TabIndex = 4;
     this.HowManyStatesLabel.Text = "How many states do you want to change?";
     //
     // RuleLabel
     //
     this.RuleLabel.AutoSize = true;
     this.RuleLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RuleLabel.Location = new System.Drawing.Point(455, 373);
     this.RuleLabel.Name = "RuleLabel";
     this.RuleLabel.Size = new System.Drawing.Size(156, 29);
     this.RuleLabel.TabIndex = 6;
     this.RuleLabel.Text = "Rule Number";
     //
     // TimeStepsTextBox
     //
     this.TimeStepsTextBox.Location = new System.Drawing.Point(488, 78);
     this.TimeStepsTextBox.Name = "TimeStepsTextBox";
     this.TimeStepsTextBox.Size = new System.Drawing.Size(100, 26);
     this.TimeStepsTextBox.TabIndex = 1;
     //
     // HowManyStatesTextBox
     //
     this.HowManyStatesTextBox.Location = new System.Drawing.Point(488, 198);
     this.HowManyStatesTextBox.Name = "HowManyStatesTextBox";
     this.HowManyStatesTextBox.Size = new System.Drawing.Size(100, 26);
     this.HowManyStatesTextBox.TabIndex = 2;
     this.HowManyStatesTextBox.TextChanged += new System.EventHandler(this.HowManyStatesTextBox_TextChanged);
     //
     // NumRule_Txt
     //
     this.NumRule_Txt.Location = new System.Drawing.Point(488, 449);
     this.NumRule_Txt.Name = "NumRule_Txt";
     this.NumRule_Txt.Size = new System.Drawing.Size(100, 26);
     this.NumRule_Txt.TabIndex = 4;
     //
     // ArraySizeTB
     //
     this.ArraySizeTB.Location = new System.Drawing.Point(35, 449);
     this.ArraySizeTB.Name = "ArraySizeTB";
     this.ArraySizeTB.Size = new System.Drawing.Size(111, 26);
     this.ArraySizeTB.TabIndex = 17;
     this.ArraySizeTB.TextChanged += new System.EventHandler(this.ArraySizeTB_TextChanged);
     //
     // ArraySizeLabel
     //
     this.ArraySizeLabel.AutoSize = true;
     this.ArraySizeLabel.Location = new System.Drawing.Point(50, 426);
     this.ArraySizeLabel.Name = "ArraySizeLabel";
     this.ArraySizeLabel.Size = new System.Drawing.Size(81, 20);
     this.ArraySizeLabel.TabIndex = 18;
     this.ArraySizeLabel.Text = "Array Size";
     //
     // InfiniteCB
     //
     this.InfiniteCB.AutoSize = true;
     this.InfiniteCB.Location = new System.Drawing.Point(35, 67);
     this.InfiniteCB.Name = "InfiniteCB";
     this.InfiniteCB.Size = new System.Drawing.Size(83, 24);
     this.InfiniteCB.TabIndex = 19;
     this.InfiniteCB.Text = "Infinite";
     this.InfiniteCB.UseVisualStyleBackColor = true;
     this.InfiniteCB.CheckedChanged += new System.EventHandler(this.InfiniteCB_CheckedChanged);
     //
     // FiniteCB
     //
     this.FiniteCB.AutoSize = true;
     this.FiniteCB.Location = new System.Drawing.Point(127, 67);
     this.FiniteCB.Name = "FiniteCB";
     this.FiniteCB.Size = new System.Drawing.Size(74, 24);
     this.FiniteCB.TabIndex = 20;
     this.FiniteCB.Text = "Finite";
     this.FiniteCB.UseVisualStyleBackColor = true;
     this.FiniteCB.CheckedChanged += new System.EventHandler(this.FiniteCB_CheckedChanged);
     //
     // PeriodicCB
     //
     this.PeriodicCB.AutoSize = true;
     this.PeriodicCB.Location = new System.Drawing.Point(35, 334);
     this.PeriodicCB.Name = "PeriodicCB";
     this.PeriodicCB.Size = new System.Drawing.Size(163, 24);
     this.PeriodicCB.TabIndex = 21;
     this.PeriodicCB.Text = "Periodic Boundary";
     this.PeriodicCB.UseVisualStyleBackColor = true;
     this.PeriodicCB.CheckedChanged += new System.EventHandler(this.PeriodicCB_CheckedChanged);
     //
     // NullCB
     //
     this.NullCB.AutoSize = true;
     this.NullCB.Location = new System.Drawing.Point(35, 364);
     this.NullCB.Name = "NullCB";
     this.NullCB.Size = new System.Drawing.Size(133, 24);
     this.NullCB.TabIndex = 22;
     this.NullCB.Text = "Null Boundary";
     this.NullCB.UseVisualStyleBackColor = true;
     this.NullCB.CheckedChanged += new System.EventHandler(this.NullCB_CheckedChanged);
     //
     // ParallelCB
     //
     this.ParallelCB.AutoSize = true;
     this.ParallelCB.Location = new System.Drawing.Point(35, 141);
     this.ParallelCB.Name = "ParallelCB";
     this.ParallelCB.Size = new System.Drawing.Size(86, 24);
     this.ParallelCB.TabIndex = 28;
     this.ParallelCB.Text = "Parallel";
     this.ParallelCB.UseVisualStyleBackColor = true;
     this.ParallelCB.CheckedChanged += new System.EventHandler(this.ParallelCB_CheckedChanged);
     //
     // SequentialCB
     //
     this.SequentialCB.AutoSize = true;
     this.SequentialCB.Location = new System.Drawing.Point(127, 141);
     this.SequentialCB.Name = "SequentialCB";
     this.SequentialCB.Size = new System.Drawing.Size(111, 24);
     this.SequentialCB.TabIndex = 29;
     this.SequentialCB.Text = "Sequential";
     this.SequentialCB.UseVisualStyleBackColor = true;
     this.SequentialCB.CheckedChanged += new System.EventHandler(this.SequentialCB_CheckedChanged);
     //
     // ChangedStatesCLB
     //
     this.ChangedStatesCLB.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.ChangedStatesCLB.CheckOnClick = true;
     this.ChangedStatesCLB.FormattingEnabled = true;
     this.ChangedStatesCLB.HorizontalScrollbar = true;
     this.ChangedStatesCLB.Location = new System.Drawing.Point(269, 250);
     this.ChangedStatesCLB.Margin = new System.Windows.Forms.Padding(1);
     this.ChangedStatesCLB.MultiColumn = true;
     this.ChangedStatesCLB.Name = "ChangedStatesCLB";
     this.ChangedStatesCLB.ScrollAlwaysVisible = true;
     this.ChangedStatesCLB.Size = new System.Drawing.Size(555, 88);
     this.ChangedStatesCLB.TabIndex = 3;
     //
     // LeftToRight
     //
     this.LeftToRight.AutoSize = true;
     this.LeftToRight.Location = new System.Drawing.Point(35, 190);
     this.LeftToRight.Name = "LeftToRight";
     this.LeftToRight.Size = new System.Drawing.Size(127, 24);
     this.LeftToRight.TabIndex = 32;
     this.LeftToRight.Text = "Left To Right";
     this.LeftToRight.UseVisualStyleBackColor = true;
     this.LeftToRight.CheckedChanged += new System.EventHandler(this.LeftToRight_CheckedChanged);
     //
     // RightToLeft
     //
     this.RightToLeft.AutoSize = true;
     this.RightToLeft.Location = new System.Drawing.Point(35, 220);
     this.RightToLeft.Name = "RightToLeft";
     this.RightToLeft.Size = new System.Drawing.Size(127, 24);
     this.RightToLeft.TabIndex = 33;
     this.RightToLeft.Text = "Right To Left";
     this.RightToLeft.UseVisualStyleBackColor = true;
     this.RightToLeft.CheckedChanged += new System.EventHandler(this.RightToLeft_CheckedChanged);
     //
     // Random
     //
     this.Random.AutoSize = true;
     this.Random.Location = new System.Drawing.Point(35, 250);
     this.Random.Name = "Random";
     this.Random.Size = new System.Drawing.Size(96, 24);
     this.Random.TabIndex = 34;
     this.Random.Text = "Random";
     this.Random.UseVisualStyleBackColor = true;
     this.Random.CheckedChanged += new System.EventHandler(this.Random_CheckedChanged);
     //
     // RandomizeSS
     //
     this.RandomizeSS.BackColor = System.Drawing.SystemColors.Control;
     this.RandomizeSS.Location = new System.Drawing.Point(854, 261);
     this.RandomizeSS.Name = "RandomizeSS";
     this.RandomizeSS.Size = new System.Drawing.Size(203, 47);
     this.RandomizeSS.TabIndex = 35;
     this.RandomizeSS.Text = "Randomize Starting State";
     this.RandomizeSS.UseVisualStyleBackColor = false;
     this.RandomizeSS.Click += new System.EventHandler(this.RandomizeSS_Click);
     //
     // UserCB
     //
     this.UserCB.AutoSize = true;
     this.UserCB.Location = new System.Drawing.Point(35, 281);
     this.UserCB.Name = "UserCB";
     this.UserCB.Size = new System.Drawing.Size(69, 24);
     this.UserCB.TabIndex = 36;
     this.UserCB.Text = "User";
     this.UserCB.UseVisualStyleBackColor = true;
     this.UserCB.CheckedChanged += new System.EventHandler(this.UserCB_CheckedChanged);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.AutoValidate = System.Windows.Forms.AutoValidate.EnablePreventFocusChange;
     this.ClientSize = new System.Drawing.Size(1081, 639);
     this.Controls.Add(this.UserCB);
     this.Controls.Add(this.RandomizeSS);
     this.Controls.Add(this.Random);
     this.Controls.Add(this.RightToLeft);
     this.Controls.Add(this.LeftToRight);
     this.Controls.Add(this.ChangedStatesCLB);
     this.Controls.Add(this.SequentialCB);
     this.Controls.Add(this.ParallelCB);
     this.Controls.Add(this.NullCB);
     this.Controls.Add(this.PeriodicCB);
     this.Controls.Add(this.FiniteCB);
     this.Controls.Add(this.InfiniteCB);
     this.Controls.Add(this.ArraySizeLabel);
     this.Controls.Add(this.ArraySizeTB);
     this.Controls.Add(this.NumRule_Txt);
     this.Controls.Add(this.HowManyStatesTextBox);
     this.Controls.Add(this.TimeStepsTextBox);
     this.Controls.Add(this.RuleLabel);
     this.Controls.Add(this.HowManyStatesLabel);
     this.Controls.Add(this.TimeStepsLabel);
     this.Controls.Add(this.BTN_Submit);
     this.Name = "Form1";
     this.Text = "Wolfram Rules";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.TextChanged += new System.EventHandler(this.Form1_TextChanged);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Overrides the method used to provide basic behaviour for selecting editor.
        /// Shows our custom control for editing the value.
        /// </summary>
        /// <param name="context">The context of the editing control</param>
        /// <param name="provider">A valid service provider</param>
        /// <param name="value">The current value of the object to edit</param>
        /// <returns>The new value of the object</returns>
        public override object EditValue(System.ComponentModel.ITypeDescriptorContext context, System.IServiceProvider provider, object value)
        {
            if (context != null
                && context.Instance != null
                && provider != null)
            {
                edSvc = (System.Windows.Forms.Design.IWindowsFormsEditorService)provider.GetService(typeof(System.Windows.Forms.Design.IWindowsFormsEditorService));

                if (edSvc != null)
                {
                    // Create a CheckedListBox and populate it with all the enum values
                    clb = new System.Windows.Forms.CheckedListBox();
                    clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
                    clb.CheckOnClick = true;
                    clb.MouseDown += new System.Windows.Forms.MouseEventHandler(this.OnMouseDown);
                    clb.MouseMove += new System.Windows.Forms.MouseEventHandler(this.OnMouseMoved);

                    tooltipControl = new System.Windows.Forms.ToolTip();
                    tooltipControl.ShowAlways = true;

                    foreach (string name in System.Enum.GetNames(context.PropertyDescriptor.PropertyType))
                    {
                        // Get the enum value
                        object enumVal = System.Enum.Parse(context.PropertyDescriptor.PropertyType, name);
                        // Get the int value
                        int intVal = (int)System.Convert.ChangeType(enumVal, typeof(int), System.Globalization.CultureInfo.CurrentCulture);

                        // Get the description attribute for this field
                        System.Reflection.FieldInfo fi = context.PropertyDescriptor.PropertyType.GetField(name);
                        System.ComponentModel.DescriptionAttribute[] attrs = (System.ComponentModel.DescriptionAttribute[])fi.GetCustomAttributes(typeof(System.ComponentModel.DescriptionAttribute), false);

                        // Store the the description
                        string tooltip = attrs.Length > 0 ? attrs[0].Description : string.Empty;

                        // Get the int value of the current enum value (the one being edited)
                        int intEdited = (int)System.Convert.ChangeType(value, typeof(int), System.Globalization.CultureInfo.CurrentCulture);

                        // Creates a clbItem that stores the name, the int value and the tooltip
                        EnumEditorItem item = new EnumEditorItem(enumVal.ToString(), intVal, tooltip);

                        // Get the checkstate from the value being edited
                        //bool checkedItem = (intEdited & intVal) > 0;
                        bool checkedItem = (intEdited & intVal) == intVal;

                        // Add the item with the right check state
                        clb.Items.Add(item, checkedItem);
                    }

                    // Show our CheckedListbox as a DropDownControl.
                    // This methods returns only when the dropdowncontrol is closed
                    edSvc.DropDownControl(clb);

                    // Get the sum of all checked flags
                    int result = 0;
                    foreach (EnumEditorItem obj in clb.CheckedItems)
                    {
                        //result += obj.Value;
                        result |= obj.Value;
                    }

                    // return the right enum value corresponding to the result
                    return System.Enum.ToObject(context.PropertyDescriptor.PropertyType, result);
                }
            }

            return value;
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMapServices));
     this.cmbCon = new System.Windows.Forms.ComboBox();
     this.cmbSrv = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.chbLayers = new System.Windows.Forms.CheckedListBox();
     this.lblLayers = new System.Windows.Forms.Label();
     this.btnAdd = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.btnChangeOutput = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // cmbCon
     //
     this.cmbCon.FormattingEnabled = true;
     this.cmbCon.Location = new System.Drawing.Point(3, 53);
     this.cmbCon.Name = "cmbCon";
     this.cmbCon.Size = new System.Drawing.Size(271, 21);
     this.cmbCon.TabIndex = 0;
     this.cmbCon.SelectedValueChanged += new System.EventHandler(this.cmbCon_SelectedValueChanged);
     //
     // cmbSrv
     //
     this.cmbSrv.FormattingEnabled = true;
     this.cmbSrv.Location = new System.Drawing.Point(3, 95);
     this.cmbSrv.Name = "cmbSrv";
     this.cmbSrv.Size = new System.Drawing.Size(271, 21);
     this.cmbSrv.TabIndex = 1;
     this.cmbSrv.SelectedValueChanged += new System.EventHandler(this.cmbSrv_SelectedValueChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(0, 78);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(74, 13);
     this.label1.TabIndex = 2;
     this.label1.Text = "Service Name";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(0, 36);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(132, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "ArcGIS Server Connection";
     //
     // chbLayers
     //
     this.chbLayers.CheckOnClick = true;
     this.chbLayers.FormattingEnabled = true;
     this.chbLayers.HorizontalScrollbar = true;
     this.chbLayers.Location = new System.Drawing.Point(3, 149);
     this.chbLayers.Name = "chbLayers";
     this.chbLayers.Size = new System.Drawing.Size(271, 139);
     this.chbLayers.TabIndex = 4;
     this.chbLayers.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.chbLayers_ItemCheck);
     //
     // lblLayers
     //
     this.lblLayers.AutoSize = true;
     this.lblLayers.Location = new System.Drawing.Point(0, 132);
     this.lblLayers.Name = "lblLayers";
     this.lblLayers.Size = new System.Drawing.Size(176, 13);
     this.lblLayers.TabIndex = 5;
     this.lblLayers.Text = "Download Data for Checked Layers";
     //
     // btnAdd
     //
     this.btnAdd.Location = new System.Drawing.Point(216, 25);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(27, 23);
     this.btnAdd.TabIndex = 6;
     this.btnAdd.Text = "+";
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(244, 25);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(27, 23);
     this.button1.TabIndex = 7;
     this.button1.Text = "-";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // btnChangeOutput
     //
     this.btnChangeOutput.Location = new System.Drawing.Point(3, 3);
     this.btnChangeOutput.Name = "btnChangeOutput";
     this.btnChangeOutput.Size = new System.Drawing.Size(108, 23);
     this.btnChangeOutput.TabIndex = 8;
     this.btnChangeOutput.Text = "Change Output DB";
     this.btnChangeOutput.UseVisualStyleBackColor = true;
     this.btnChangeOutput.Click += new System.EventHandler(this.btnChangeOutput_Click);
     //
     // frmMapServices
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(280, 291);
     this.Controls.Add(this.btnChangeOutput);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.lblLayers);
     this.Controls.Add(this.chbLayers);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.cmbSrv);
     this.Controls.Add(this.cmbCon);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmMapServices";
     this.Text = "Map Services Setup";
     this.TopMost = true;
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnStart = new System.Windows.Forms.Button();
     this.btnTestSound = new System.Windows.Forms.Button();
     this.btnSettings = new System.Windows.Forms.Button();
     this.boxFilters = new System.Windows.Forms.CheckedListBox();
     this.btnAdd = new System.Windows.Forms.Button();
     this.bntRemove = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // btnStart
     //
     this.btnStart.Location = new System.Drawing.Point(13, 13);
     this.btnStart.Name = "btnStart";
     this.btnStart.Size = new System.Drawing.Size(75, 23);
     this.btnStart.TabIndex = 0;
     this.btnStart.Text = "Start";
     this.btnStart.UseVisualStyleBackColor = true;
     this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
     //
     // btnTestSound
     //
     this.btnTestSound.Location = new System.Drawing.Point(13, 43);
     this.btnTestSound.Name = "btnTestSound";
     this.btnTestSound.Size = new System.Drawing.Size(75, 23);
     this.btnTestSound.TabIndex = 1;
     this.btnTestSound.Text = "Test sound";
     this.btnTestSound.UseVisualStyleBackColor = true;
     this.btnTestSound.Click += new System.EventHandler(this.btnTestSound_Click);
     //
     // btnSettings
     //
     this.btnSettings.Location = new System.Drawing.Point(13, 85);
     this.btnSettings.Name = "btnSettings";
     this.btnSettings.Size = new System.Drawing.Size(75, 23);
     this.btnSettings.TabIndex = 5;
     this.btnSettings.Text = "Edit";
     this.btnSettings.UseVisualStyleBackColor = true;
     this.btnSettings.Click += new System.EventHandler(this.btnSettings_Click);
     //
     // boxFilters
     //
     this.boxFilters.FormattingEnabled = true;
     this.boxFilters.Location = new System.Drawing.Point(112, 13);
     this.boxFilters.Name = "boxFilters";
     this.boxFilters.Size = new System.Drawing.Size(140, 169);
     this.boxFilters.TabIndex = 8;
     this.boxFilters.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.boxFilters_ItemCheck);
     this.boxFilters.MouseClick += new System.Windows.Forms.MouseEventHandler(this.boxFilters_MouseClick);
     this.boxFilters.MouseUp += new System.Windows.Forms.MouseEventHandler(this.boxFilters_MouseUp);
     //
     // btnAdd
     //
     this.btnAdd.Location = new System.Drawing.Point(13, 115);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(75, 23);
     this.btnAdd.TabIndex = 9;
     this.btnAdd.Text = "Add";
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // bntRemove
     //
     this.bntRemove.Location = new System.Drawing.Point(13, 145);
     this.bntRemove.Name = "bntRemove";
     this.bntRemove.Size = new System.Drawing.Size(75, 23);
     this.bntRemove.TabIndex = 10;
     this.bntRemove.Text = "Remove";
     this.bntRemove.UseVisualStyleBackColor = true;
     this.bntRemove.Click += new System.EventHandler(this.bntRemove_Click);
     //
     // LootAlert
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(272, 200);
     this.Controls.Add(this.bntRemove);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.boxFilters);
     this.Controls.Add(this.btnSettings);
     this.Controls.Add(this.btnTestSound);
     this.Controls.Add(this.btnStart);
     this.Name = "LootAlert";
     this.Text = "Loot Alert";
     this.ResumeLayout(false);
 }
 /// <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();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.label1          = new System.Windows.Forms.Label();
     this.label2          = new System.Windows.Forms.Label();
     this.textBox1        = new System.Windows.Forms.TextBox();
     this.textBox2        = new System.Windows.Forms.TextBox();
     this.numericUpDown1  = new System.Windows.Forms.NumericUpDown();
     this.checkBox1       = new System.Windows.Forms.CheckBox();
     this.button1         = new System.Windows.Forms.Button();
     this.comboBox1       = new System.Windows.Forms.ComboBox();
     this.radioButton1    = new System.Windows.Forms.RadioButton();
     this.radioButton2    = new System.Windows.Forms.RadioButton();
     this.radioButton3    = new System.Windows.Forms.RadioButton();
     this.groupBox1       = new System.Windows.Forms.GroupBox();
     this.pictureBox1     = new System.Windows.Forms.PictureBox();
     this.RHScrollBar     = new System.Windows.Forms.HScrollBar();
     this.label3          = new System.Windows.Forms.Label();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.label4          = new System.Windows.Forms.Label();
     this.label5          = new System.Windows.Forms.Label();
     this.label6          = new System.Windows.Forms.Label();
     this.label7          = new System.Windows.Forms.Label();
     this.linkLabel1      = new System.Windows.Forms.LinkLabel();
     this.GHScrollBar     = new System.Windows.Forms.HScrollBar();
     this.BHScrollBar     = new System.Windows.Forms.HScrollBar();
     this.errorProvider1  = new System.Windows.Forms.ErrorProvider(this.components);
     this.Rlabel          = new System.Windows.Forms.Label();
     this.Glabel          = new System.Windows.Forms.Label();
     this.Blabel          = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Location    = new System.Drawing.Point(148, 90);
     this.dateTimePicker1.Name        = "dateTimePicker1";
     this.dateTimePicker1.Size        = new System.Drawing.Size(189, 20);
     this.dateTimePicker1.TabIndex    = 0;
     this.dateTimePicker1.Validating += new System.ComponentModel.CancelEventHandler(this.DateTimePicker1Validating);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(24, 37);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(67, 23);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Jméno";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(24, 63);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(65, 23);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Příjmení";
     //
     // textBox1
     //
     this.textBox1.Location    = new System.Drawing.Point(148, 34);
     this.textBox1.Name        = "textBox1";
     this.textBox1.Size        = new System.Drawing.Size(140, 20);
     this.textBox1.TabIndex    = 3;
     this.textBox1.Validating += new System.ComponentModel.CancelEventHandler(this.TextBoxValidating);
     //
     // textBox2
     //
     this.textBox2.Location    = new System.Drawing.Point(148, 60);
     this.textBox2.Name        = "textBox2";
     this.textBox2.Size        = new System.Drawing.Size(140, 20);
     this.textBox2.TabIndex    = 4;
     this.textBox2.Validating += new System.ComponentModel.CancelEventHandler(this.TextBox2Validating);
     //
     // numericUpDown1
     //
     this.numericUpDown1.Location = new System.Drawing.Point(147, 116);
     this.numericUpDown1.Maximum  = new decimal(new int[] {
         999999999,
         0,
         0,
         0
     });
     this.numericUpDown1.Name        = "numericUpDown1";
     this.numericUpDown1.Size        = new System.Drawing.Size(141, 20);
     this.numericUpDown1.TabIndex    = 5;
     this.numericUpDown1.Validating += new System.ComponentModel.CancelEventHandler(this.NumericUpDown1Validating);
     //
     // checkBox1
     //
     this.checkBox1.Location = new System.Drawing.Point(23, 462);
     this.checkBox1.Name     = "checkBox1";
     this.checkBox1.Size     = new System.Drawing.Size(149, 24);
     this.checkBox1.TabIndex = 6;
     this.checkBox1.Text     = "Souhlasím s podmínkami";
     this.checkBox1.UseVisualStyleBackColor = true;
     this.checkBox1.CheckedChanged         += new System.EventHandler(this.CheckBox1CheckedChanged);
     //
     // button1
     //
     this.button1.Enabled  = false;
     this.button1.Location = new System.Drawing.Point(62, 492);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(198, 34);
     this.button1.TabIndex = 7;
     this.button1.Text     = "Odeslat";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.Odeslat_Click);
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
         "Afghánistán",
         "Albánie",
         "Alžírsko",
         "Andorra",
         "Angola",
         "Antigua a Barbuda",
         "Argentina",
         "Arménie",
         "Austrálie",
         "Ázerbájdžán",
         "Bahamy",
         "Bahrajn",
         "Bangladéš",
         "Barbados",
         "Belgie",
         "Belize",
         "Bělorusko",
         "Benin",
         "Bhútán",
         "Bolívie",
         "Bosna a Hercegovina",
         "Botswana",
         "Brazílie",
         "Brunej",
         "Bulharsko",
         "Burkina Faso",
         "Burundi",
         "Čad",
         "Černá Hora",
         "Česká republika",
         "Čína",
         "Dánsko",
         "Dominika",
         "Dominikánská republika",
         "Džibutsko",
         "Egypt",
         "Ekvádor",
         "Eritrea",
         "Estonsko",
         "Etiopie",
         "Fidži",
         "Filipíny",
         "Finsko",
         "Francie",
         "Gabon",
         "Gambie",
         "Ghana",
         "Grenada",
         "Gruzie",
         "Guatemala",
         "Guinea",
         "Guinea-Bissau",
         "Guyana",
         "Haiti",
         "Honduras",
         "Chile",
         "Chorvatsko",
         "Indie",
         "Indonésie",
         "Irák",
         "Írán",
         "Irsko",
         "Island",
         "Itálie",
         "Izrael",
         "Jamajka",
         "Japonsko",
         "Jemen",
         "Jihoafrická republika",
         "Jižní Korea",
         "Jižní Súdán",
         "Jordánsko",
         "Kambodža",
         "Kamerun",
         "Kanada",
         "Kapverdy",
         "Katar",
         "Kazachstán",
         "Keňa",
         "Kiribati",
         "Kolumbie",
         "Komory",
         "Konžská republika",
         "Konžská demokratická republika",
         "Kostarika",
         "Kuba",
         "Kuvajt",
         "Kypr",
         "Kyrgyzstán",
         "Laos",
         "Lesotho",
         "Libanon",
         "Libérie",
         "Libye",
         "Lichtenštejnsko",
         "Litva",
         "Lotyšsko",
         "Lucembursko",
         "Madagaskar",
         "Maďarsko",
         "Malajsie",
         "Malawi",
         "Maledivy",
         "Mali",
         "Malta",
         "Maroko",
         "Marshallovy ostrovy",
         "Mauricius",
         "Mauritánie",
         "Mexiko",
         "Mikronésie",
         "Moldavsko",
         "Monako",
         "Mongolsko",
         "Mosambik",
         "Myanmar (Barma)",
         "Namibie",
         "Nauru",
         "Německo",
         "Nepál",
         "Niger",
         "Nigérie",
         "Nikaragua",
         "Nizozemsko",
         "Norsko",
         "Nový Zéland",
         "Omán",
         "Pákistán",
         "Palau",
         "Palestina",
         "Panama",
         "Papua Nová Guinea",
         "Paraguay",
         "Peru",
         "Pobřeží slonoviny",
         "Polsko",
         "Portugalsko",
         "Rakousko",
         "Rovníková Guinea",
         "Rumunsko",
         "Rusko",
         "Rwanda",
         "Řecko",
         "Salvador",
         "Samoa",
         "San Marino",
         "Saúdská Arábie",
         "Senegal",
         "Severní Korea",
         "Severní Makedonie",
         "Seychely",
         "Sierra Leone",
         "Singapur",
         "Slovensko",
         "Slovinsko",
         "Somálsko",
         "Spojené arabské emiráty",
         "Spojené království (Velká Británie)",
         "Spojené státy americké",
         "Srbsko",
         "Srí Lanka",
         "Středoafrická republika",
         "Súdán",
         "Surinam",
         "Svatá Lucie",
         "Svatý Kryštof a Nevis",
         "Svatý Tomáš a Princův ostrov",
         "Svatý Vincenc a Grenadiny",
         "Svazijsko",
         "Sýrie",
         "Šalomounovy ostrovy",
         "Španělsko",
         "Švédsko",
         "Švýcarsko",
         "Tádžikistán",
         "Taiwan",
         "Tanzanie",
         "Thajsko",
         "Togo",
         "Tonga",
         "Trinidad a Tobago",
         "Tunisko",
         "Turecko",
         "Turkmenistán",
         "Tuvalu",
         "Uganda",
         "Ukrajina",
         "Uruguay",
         "Uzbekistán",
         "Vanuatu",
         "Vatikán",
         "Venezuela",
         "Vietnam",
         "Východní Timor",
         "Zambie",
         "Zimbabwe"
     });
     this.comboBox1.Location              = new System.Drawing.Point(146, 149);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(142, 21);
     this.comboBox1.TabIndex              = 8;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.ComboBox1SelectedIndexChanged);
     this.comboBox1.Validating           += new System.ComponentModel.CancelEventHandler(this.ComboBox1Validating);
     //
     // radioButton1
     //
     this.radioButton1.Location = new System.Drawing.Point(9, 19);
     this.radioButton1.Name     = "radioButton1";
     this.radioButton1.Size     = new System.Drawing.Size(104, 24);
     this.radioButton1.TabIndex = 9;
     this.radioButton1.Text     = "Muž";
     this.radioButton1.UseVisualStyleBackColor = true;
     //
     // radioButton2
     //
     this.radioButton2.Location = new System.Drawing.Point(9, 40);
     this.radioButton2.Name     = "radioButton2";
     this.radioButton2.Size     = new System.Drawing.Size(104, 24);
     this.radioButton2.TabIndex = 10;
     this.radioButton2.Text     = "Žena";
     this.radioButton2.UseVisualStyleBackColor = true;
     //
     // radioButton3
     //
     this.radioButton3.Checked  = true;
     this.radioButton3.Location = new System.Drawing.Point(9, 60);
     this.radioButton3.Name     = "radioButton3";
     this.radioButton3.Size     = new System.Drawing.Size(124, 24);
     this.radioButton3.TabIndex = 11;
     this.radioButton3.TabStop  = true;
     this.radioButton3.Text     = "Jiné/Nechi uvádět";
     this.radioButton3.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.radioButton1);
     this.groupBox1.Controls.Add(this.radioButton3);
     this.groupBox1.Controls.Add(this.radioButton2);
     this.groupBox1.Location    = new System.Drawing.Point(148, 177);
     this.groupBox1.Name        = "groupBox1";
     this.groupBox1.Size        = new System.Drawing.Size(140, 96);
     this.groupBox1.TabIndex    = 12;
     this.groupBox1.TabStop     = false;
     this.groupBox1.Text        = "Pohlaví";
     this.groupBox1.Validating += new System.ComponentModel.CancelEventHandler(this.GroupBox1Validating);
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
     this.pictureBox1.Location  = new System.Drawing.Point(409, 379);
     this.pictureBox1.Name      = "pictureBox1";
     this.pictureBox1.Size      = new System.Drawing.Size(86, 79);
     this.pictureBox1.TabIndex  = 13;
     this.pictureBox1.TabStop   = false;
     //
     // RHScrollBar
     //
     this.RHScrollBar.Location      = new System.Drawing.Point(146, 389);
     this.RHScrollBar.Maximum       = 264;
     this.RHScrollBar.Name          = "RHScrollBar";
     this.RHScrollBar.Size          = new System.Drawing.Size(141, 17);
     this.RHScrollBar.TabIndex      = 15;
     this.RHScrollBar.ValueChanged += new System.EventHandler(this.HScrollBarValueChanged);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(24, 90);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(83, 23);
     this.label3.TabIndex = 16;
     this.label3.Text     = "Datum narození";
     //
     // checkedListBox1
     //
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.Items.AddRange(new object[] {
         "Fotbal",
         "Volejbal",
         "Floorball",
         "Golf",
         "Hokej",
         "Basketball",
         "Baseball",
         "Tenis",
         "Biatlon"
     });
     this.checkedListBox1.Location = new System.Drawing.Point(147, 279);
     this.checkedListBox1.Name     = "checkedListBox1";
     this.checkedListBox1.Size     = new System.Drawing.Size(134, 94);
     this.checkedListBox1.TabIndex = 17;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(24, 118);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(113, 23);
     this.label4.TabIndex = 18;
     this.label4.Text     = "Telefoní číslo (+420)";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(25, 148);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(113, 23);
     this.label5.TabIndex = 19;
     this.label5.Text     = "Oblíbená destinace";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(29, 279);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(83, 23);
     this.label6.TabIndex = 20;
     this.label6.Text     = "Oblíbený sport";
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(24, 389);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(113, 23);
     this.label7.TabIndex = 21;
     this.label7.Text     = "Vaše oblíbená barva";
     //
     // linkLabel1
     //
     this.linkLabel1.Location     = new System.Drawing.Point(160, 466);
     this.linkLabel1.Name         = "linkLabel1";
     this.linkLabel1.Size         = new System.Drawing.Size(100, 23);
     this.linkLabel1.TabIndex     = 22;
     this.linkLabel1.TabStop      = true;
     this.linkLabel1.Text         = "smlouvy";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkLabel1LinkClicked);
     //
     // GHScrollBar
     //
     this.GHScrollBar.Location      = new System.Drawing.Point(147, 415);
     this.GHScrollBar.Maximum       = 264;
     this.GHScrollBar.Name          = "GHScrollBar";
     this.GHScrollBar.Size          = new System.Drawing.Size(140, 17);
     this.GHScrollBar.TabIndex      = 23;
     this.GHScrollBar.ValueChanged += new System.EventHandler(this.HScrollBarValueChanged);
     //
     // BHScrollBar
     //
     this.BHScrollBar.Location      = new System.Drawing.Point(147, 442);
     this.BHScrollBar.Maximum       = 264;
     this.BHScrollBar.Name          = "BHScrollBar";
     this.BHScrollBar.Size          = new System.Drawing.Size(140, 17);
     this.BHScrollBar.TabIndex      = 24;
     this.BHScrollBar.ValueChanged += new System.EventHandler(this.HScrollBarValueChanged);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // Rlabel
     //
     this.Rlabel.Location = new System.Drawing.Point(303, 396);
     this.Rlabel.Name     = "Rlabel";
     this.Rlabel.Size     = new System.Drawing.Size(63, 23);
     this.Rlabel.TabIndex = 25;
     this.Rlabel.Text     = "0";
     //
     // Glabel
     //
     this.Glabel.Location = new System.Drawing.Point(303, 419);
     this.Glabel.Name     = "Glabel";
     this.Glabel.Size     = new System.Drawing.Size(63, 23);
     this.Glabel.TabIndex = 26;
     this.Glabel.Text     = "0";
     //
     // Blabel
     //
     this.Blabel.Location = new System.Drawing.Point(303, 442);
     this.Blabel.Name     = "Blabel";
     this.Blabel.Size     = new System.Drawing.Size(63, 23);
     this.Blabel.TabIndex = 27;
     this.Blabel.Text     = "0";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.Window;
     this.ClientSize          = new System.Drawing.Size(636, 587);
     this.Controls.Add(this.Blabel);
     this.Controls.Add(this.Glabel);
     this.Controls.Add(this.Rlabel);
     this.Controls.Add(this.BHScrollBar);
     this.Controls.Add(this.GHScrollBar);
     this.Controls.Add(this.linkLabel1);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.checkedListBox1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.RHScrollBar);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.comboBox1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.checkBox1);
     this.Controls.Add(this.numericUpDown1);
     this.Controls.Add(this.textBox2);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.dateTimePicker1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.Name            = "MainForm";
     this.Text            = "Prvky forms";
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).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()
 {
     System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem(new string[] {
     "Rectangle",
     "Rectangle1"}, -1);
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tpSelectedShape = new System.Windows.Forms.TabPage();
     this.txtPropExplain1 = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.btnCancel = new System.Windows.Forms.Button();
     this.chkLstProperties1 = new System.Windows.Forms.CheckedListBox();
     this.btnUpdate1 = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.txtShapeName1 = new System.Windows.Forms.TextBox();
     this.tpAllShapes = new System.Windows.Forms.TabPage();
     this.txtPropExplain2 = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.chkLstProperties2 = new System.Windows.Forms.CheckedListBox();
     this.btnCancel2 = new System.Windows.Forms.Button();
     this.btnUpdate2 = new System.Windows.Forms.Button();
     this.lv = new System.Windows.Forms.ListView();
     this.chShapeType = new System.Windows.Forms.ColumnHeader();
     this.chShapeName = new System.Windows.Forms.ColumnHeader();
     this.label2 = new System.Windows.Forms.Label();
     this.txtShapeName2 = new System.Windows.Forms.TextBox();
     this.pnlSelectedShapeBack = new System.Windows.Forms.Panel();
     this.tabControl1.SuspendLayout();
     this.tpSelectedShape.SuspendLayout();
     this.tpAllShapes.SuspendLayout();
     this.pnlSelectedShapeBack.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tpSelectedShape);
     this.tabControl1.Controls.Add(this.tpAllShapes);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(402, 252);
     this.tabControl1.TabIndex = 0;
     this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
     //
     // tpSelectedShape
     //
     this.tpSelectedShape.Controls.Add(this.pnlSelectedShapeBack);
     this.tpSelectedShape.Location = new System.Drawing.Point(4, 22);
     this.tpSelectedShape.Name = "tpSelectedShape";
     this.tpSelectedShape.Padding = new System.Windows.Forms.Padding(3);
     this.tpSelectedShape.Size = new System.Drawing.Size(394, 226);
     this.tpSelectedShape.TabIndex = 0;
     this.tpSelectedShape.Text = "Selected Shape";
     this.tpSelectedShape.UseVisualStyleBackColor = true;
     //
     // txtPropExplain1
     //
     this.txtPropExplain1.BackColor = System.Drawing.Color.White;
     this.txtPropExplain1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtPropExplain1.Location = new System.Drawing.Point(186, 111);
     this.txtPropExplain1.Multiline = true;
     this.txtPropExplain1.Name = "txtPropExplain1";
     this.txtPropExplain1.ReadOnly = true;
     this.txtPropExplain1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtPropExplain1.Size = new System.Drawing.Size(178, 79);
     this.txtPropExplain1.TabIndex = 15;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(13, 95);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(131, 13);
     this.label3.TabIndex = 10;
     this.label3.Text = "GDI Generation Properties";
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(301, 46);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(51, 22);
     this.btnCancel.TabIndex = 9;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     //
     // chkLstProperties1
     //
     this.chkLstProperties1.FormattingEnabled = true;
     this.chkLstProperties1.Items.AddRange(new object[] {
     "Write Color Variable",
     "Write Bounds Scalable",
     "Write Bounds Variable",
     "Write Blend Variable"});
     this.chkLstProperties1.Location = new System.Drawing.Point(16, 111);
     this.chkLstProperties1.Name = "chkLstProperties1";
     this.chkLstProperties1.Size = new System.Drawing.Size(161, 79);
     this.chkLstProperties1.TabIndex = 8;
     this.chkLstProperties1.SelectedIndexChanged += new System.EventHandler(this.chkLstProperties1_SelectedIndexChanged);
     //
     // btnUpdate1
     //
     this.btnUpdate1.Location = new System.Drawing.Point(244, 46);
     this.btnUpdate1.Name = "btnUpdate1";
     this.btnUpdate1.Size = new System.Drawing.Size(51, 22);
     this.btnUpdate1.TabIndex = 6;
     this.btnUpdate1.Text = "Update";
     this.btnUpdate1.UseVisualStyleBackColor = true;
     this.btnUpdate1.Click += new System.EventHandler(this.btnUpdate1_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(22, 51);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(38, 13);
     this.label1.TabIndex = 1;
     this.label1.Text = "Name:";
     //
     // txtShapeName1
     //
     this.txtShapeName1.Location = new System.Drawing.Point(66, 48);
     this.txtShapeName1.Name = "txtShapeName1";
     this.txtShapeName1.Size = new System.Drawing.Size(161, 20);
     this.txtShapeName1.TabIndex = 0;
     //
     // tpAllShapes
     //
     this.tpAllShapes.Controls.Add(this.txtPropExplain2);
     this.tpAllShapes.Controls.Add(this.label4);
     this.tpAllShapes.Controls.Add(this.chkLstProperties2);
     this.tpAllShapes.Controls.Add(this.btnCancel2);
     this.tpAllShapes.Controls.Add(this.btnUpdate2);
     this.tpAllShapes.Controls.Add(this.lv);
     this.tpAllShapes.Controls.Add(this.label2);
     this.tpAllShapes.Controls.Add(this.txtShapeName2);
     this.tpAllShapes.Location = new System.Drawing.Point(4, 22);
     this.tpAllShapes.Name = "tpAllShapes";
     this.tpAllShapes.Padding = new System.Windows.Forms.Padding(3);
     this.tpAllShapes.Size = new System.Drawing.Size(394, 226);
     this.tpAllShapes.TabIndex = 1;
     this.tpAllShapes.Text = "All Shapes";
     this.tpAllShapes.UseVisualStyleBackColor = true;
     //
     // txtPropExplain2
     //
     this.txtPropExplain2.BackColor = System.Drawing.Color.White;
     this.txtPropExplain2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtPropExplain2.Location = new System.Drawing.Point(206, 135);
     this.txtPropExplain2.Multiline = true;
     this.txtPropExplain2.Name = "txtPropExplain2";
     this.txtPropExplain2.ReadOnly = true;
     this.txtPropExplain2.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtPropExplain2.Size = new System.Drawing.Size(178, 79);
     this.txtPropExplain2.TabIndex = 16;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(36, 119);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(131, 13);
     this.label4.TabIndex = 12;
     this.label4.Text = "GDI Generation Properties";
     //
     // chkLstProperties2
     //
     this.chkLstProperties2.FormattingEnabled = true;
     this.chkLstProperties2.Items.AddRange(new object[] {
     "Write Color Variable",
     "Write Bounds Scalable",
     "Write Bounds Variable",
     "Write Blend Variable"});
     this.chkLstProperties2.Location = new System.Drawing.Point(39, 135);
     this.chkLstProperties2.Name = "chkLstProperties2";
     this.chkLstProperties2.Size = new System.Drawing.Size(161, 79);
     this.chkLstProperties2.TabIndex = 11;
     this.chkLstProperties2.SelectedIndexChanged += new System.EventHandler(this.chkLstProperties2_SelectedIndexChanged);
     //
     // btnCancel2
     //
     this.btnCancel2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel2.Location = new System.Drawing.Point(313, 88);
     this.btnCancel2.Name = "btnCancel2";
     this.btnCancel2.Size = new System.Drawing.Size(51, 22);
     this.btnCancel2.TabIndex = 10;
     this.btnCancel2.Text = "Cancel";
     this.btnCancel2.UseVisualStyleBackColor = true;
     //
     // btnUpdate2
     //
     this.btnUpdate2.Location = new System.Drawing.Point(256, 88);
     this.btnUpdate2.Name = "btnUpdate2";
     this.btnUpdate2.Size = new System.Drawing.Size(51, 22);
     this.btnUpdate2.TabIndex = 5;
     this.btnUpdate2.Text = "Update";
     this.btnUpdate2.UseVisualStyleBackColor = true;
     this.btnUpdate2.Click += new System.EventHandler(this.btnUpdate2_Click);
     //
     // lv
     //
     this.lv.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.chShapeType,
     this.chShapeName});
     this.lv.FullRowSelect = true;
     this.lv.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
     listViewItem1});
     this.lv.Location = new System.Drawing.Point(48, 4);
     this.lv.MultiSelect = false;
     this.lv.Name = "lv";
     this.lv.Size = new System.Drawing.Size(294, 78);
     this.lv.TabIndex = 4;
     this.lv.UseCompatibleStateImageBehavior = false;
     this.lv.View = System.Windows.Forms.View.Details;
     this.lv.SelectedIndexChanged += new System.EventHandler(this.lv_SelectedIndexChanged);
     //
     // chShapeType
     //
     this.chShapeType.Text = "Shape Type";
     this.chShapeType.Width = 104;
     //
     // chShapeName
     //
     this.chShapeName.Text = "Shape Name";
     this.chShapeName.Width = 100;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(21, 93);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(38, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "Name:";
     //
     // txtShapeName2
     //
     this.txtShapeName2.Location = new System.Drawing.Point(63, 88);
     this.txtShapeName2.Name = "txtShapeName2";
     this.txtShapeName2.Size = new System.Drawing.Size(161, 20);
     this.txtShapeName2.TabIndex = 2;
     //
     // pnlSelectedShapeBack
     //
     this.pnlSelectedShapeBack.Controls.Add(this.txtShapeName1);
     this.pnlSelectedShapeBack.Controls.Add(this.txtPropExplain1);
     this.pnlSelectedShapeBack.Controls.Add(this.label1);
     this.pnlSelectedShapeBack.Controls.Add(this.label3);
     this.pnlSelectedShapeBack.Controls.Add(this.btnUpdate1);
     this.pnlSelectedShapeBack.Controls.Add(this.chkLstProperties1);
     this.pnlSelectedShapeBack.Controls.Add(this.btnCancel);
     this.pnlSelectedShapeBack.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlSelectedShapeBack.Location = new System.Drawing.Point(3, 3);
     this.pnlSelectedShapeBack.Name = "pnlSelectedShapeBack";
     this.pnlSelectedShapeBack.Size = new System.Drawing.Size(388, 220);
     this.pnlSelectedShapeBack.TabIndex = 16;
     //
     // frmShapeProperties
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(402, 252);
     this.Controls.Add(this.tabControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "frmShapeProperties";
     this.Text = "Shape Properties";
     this.Load += new System.EventHandler(this.frmShapeProperties_Load);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmShapeProperties_FormClosed);
     this.tabControl1.ResumeLayout(false);
     this.tpSelectedShape.ResumeLayout(false);
     this.tpAllShapes.ResumeLayout(false);
     this.tpAllShapes.PerformLayout();
     this.pnlSelectedShapeBack.ResumeLayout(false);
     this.pnlSelectedShapeBack.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SelectComputerForm));
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.buttonLoad = new System.Windows.Forms.Button();
     this.buttonSave = new System.Windows.Forms.Button();
     this.buttonRemove = new System.Windows.Forms.Button();
     this.buttonAdd = new System.Windows.Forms.Button();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.buttonSelect = new System.Windows.Forms.Button();
     this.buttonToClipboard = new System.Windows.Forms.Button();
     this.buttonClear = new System.Windows.Forms.Button();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.buttonClientGroupAll = new System.Windows.Forms.Button();
     this.buttonClientGroup9 = new System.Windows.Forms.Button();
     this.buttonClientGroup8 = new System.Windows.Forms.Button();
     this.buttonClientGroup7 = new System.Windows.Forms.Button();
     this.buttonClientGroup6 = new System.Windows.Forms.Button();
     this.buttonClientGroup5 = new System.Windows.Forms.Button();
     this.buttonClientGroup4 = new System.Windows.Forms.Button();
     this.buttonClientGroup3 = new System.Windows.Forms.Button();
     this.buttonClientGroup2 = new System.Windows.Forms.Button();
     this.buttonClientGroup1 = new System.Windows.Forms.Button();
     this.checkedListBoxClients = new System.Windows.Forms.CheckedListBox();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.groupBox1.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.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.groupBox1.Controls.Add(this.groupBox4);
     this.groupBox1.Controls.Add(this.groupBox3);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.checkedListBoxClients);
     this.groupBox1.Location = new System.Drawing.Point(7, 2);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(778, 486);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     //
     // groupBox4
     //
     this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox4.Controls.Add(this.buttonLoad);
     this.groupBox4.Controls.Add(this.buttonSave);
     this.groupBox4.Controls.Add(this.buttonRemove);
     this.groupBox4.Controls.Add(this.buttonAdd);
     this.groupBox4.Location = new System.Drawing.Point(669, 132);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(98, 150);
     this.groupBox4.TabIndex = 6;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "List";
     //
     // buttonLoad
     //
     this.buttonLoad.Location = new System.Drawing.Point(11, 19);
     this.buttonLoad.Name = "buttonLoad";
     this.buttonLoad.Size = new System.Drawing.Size(75, 23);
     this.buttonLoad.TabIndex = 7;
     this.buttonLoad.Text = "Load";
     this.buttonLoad.UseVisualStyleBackColor = true;
     this.buttonLoad.Click += new System.EventHandler(this.buttonLoad_Click);
     //
     // buttonSave
     //
     this.buttonSave.Location = new System.Drawing.Point(11, 107);
     this.buttonSave.Name = "buttonSave";
     this.buttonSave.Size = new System.Drawing.Size(75, 23);
     this.buttonSave.TabIndex = 10;
     this.buttonSave.Text = "Save";
     this.buttonSave.UseVisualStyleBackColor = true;
     this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
     //
     // buttonRemove
     //
     this.buttonRemove.Location = new System.Drawing.Point(11, 77);
     this.buttonRemove.Name = "buttonRemove";
     this.buttonRemove.Size = new System.Drawing.Size(75, 23);
     this.buttonRemove.TabIndex = 9;
     this.buttonRemove.Text = "Remove";
     this.buttonRemove.UseVisualStyleBackColor = true;
     this.buttonRemove.Click += new System.EventHandler(this.buttonRemove_Click);
     //
     // buttonAdd
     //
     this.buttonAdd.Location = new System.Drawing.Point(11, 48);
     this.buttonAdd.Name = "buttonAdd";
     this.buttonAdd.Size = new System.Drawing.Size(75, 23);
     this.buttonAdd.TabIndex = 8;
     this.buttonAdd.Text = "Add";
     this.buttonAdd.UseVisualStyleBackColor = true;
     this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
     //
     // groupBox3
     //
     this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox3.Controls.Add(this.buttonSelect);
     this.groupBox3.Controls.Add(this.buttonToClipboard);
     this.groupBox3.Controls.Add(this.buttonClear);
     this.groupBox3.Location = new System.Drawing.Point(669, 10);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(98, 116);
     this.groupBox3.TabIndex = 2;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Select Pool";
     //
     // buttonSelect
     //
     this.buttonSelect.Location = new System.Drawing.Point(12, 19);
     this.buttonSelect.Name = "buttonSelect";
     this.buttonSelect.Size = new System.Drawing.Size(75, 23);
     this.buttonSelect.TabIndex = 3;
     this.buttonSelect.Text = "Select";
     this.buttonSelect.UseVisualStyleBackColor = true;
     this.buttonSelect.Click += new System.EventHandler(this.buttonSelect_Click);
     //
     // buttonToClipboard
     //
     this.buttonToClipboard.Location = new System.Drawing.Point(12, 48);
     this.buttonToClipboard.Name = "buttonToClipboard";
     this.buttonToClipboard.Size = new System.Drawing.Size(75, 23);
     this.buttonToClipboard.TabIndex = 4;
     this.buttonToClipboard.Text = "ToClipboard";
     this.buttonToClipboard.UseVisualStyleBackColor = true;
     this.buttonToClipboard.Click += new System.EventHandler(this.buttonToClipboard_Click);
     //
     // buttonClear
     //
     this.buttonClear.Location = new System.Drawing.Point(12, 77);
     this.buttonClear.Name = "buttonClear";
     this.buttonClear.Size = new System.Drawing.Size(75, 23);
     this.buttonClear.TabIndex = 5;
     this.buttonClear.Text = "Clear";
     this.buttonClear.UseVisualStyleBackColor = true;
     this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click);
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.buttonClientGroupAll);
     this.groupBox2.Controls.Add(this.buttonClientGroup9);
     this.groupBox2.Controls.Add(this.buttonClientGroup8);
     this.groupBox2.Controls.Add(this.buttonClientGroup7);
     this.groupBox2.Controls.Add(this.buttonClientGroup6);
     this.groupBox2.Controls.Add(this.buttonClientGroup5);
     this.groupBox2.Controls.Add(this.buttonClientGroup4);
     this.groupBox2.Controls.Add(this.buttonClientGroup3);
     this.groupBox2.Controls.Add(this.buttonClientGroup2);
     this.groupBox2.Controls.Add(this.buttonClientGroup1);
     this.groupBox2.Location = new System.Drawing.Point(669, 288);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(98, 185);
     this.groupBox2.TabIndex = 11;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Sub Pools";
     //
     // buttonClientGroupAll
     //
     this.buttonClientGroupAll.Location = new System.Drawing.Point(47, 135);
     this.buttonClientGroupAll.Name = "buttonClientGroupAll";
     this.buttonClientGroupAll.Size = new System.Drawing.Size(30, 23);
     this.buttonClientGroupAll.TabIndex = 21;
     this.buttonClientGroupAll.Text = "A";
     this.buttonClientGroupAll.UseVisualStyleBackColor = true;
     this.buttonClientGroupAll.Click += new System.EventHandler(this.buttonClientGroupAll_Click);
     //
     // buttonClientGroup9
     //
     this.buttonClientGroup9.Location = new System.Drawing.Point(14, 135);
     this.buttonClientGroup9.Name = "buttonClientGroup9";
     this.buttonClientGroup9.Size = new System.Drawing.Size(30, 23);
     this.buttonClientGroup9.TabIndex = 20;
     this.buttonClientGroup9.Text = "9";
     this.buttonClientGroup9.UseVisualStyleBackColor = true;
     this.buttonClientGroup9.Click += new System.EventHandler(this.buttonClientGroup9_Click);
     //
     // buttonClientGroup8
     //
     this.buttonClientGroup8.Location = new System.Drawing.Point(47, 106);
     this.buttonClientGroup8.Name = "buttonClientGroup8";
     this.buttonClientGroup8.Size = new System.Drawing.Size(30, 23);
     this.buttonClientGroup8.TabIndex = 19;
     this.buttonClientGroup8.Text = "8";
     this.buttonClientGroup8.UseVisualStyleBackColor = true;
     this.buttonClientGroup8.Click += new System.EventHandler(this.buttonClientGroup8_Click);
     //
     // buttonClientGroup7
     //
     this.buttonClientGroup7.Location = new System.Drawing.Point(14, 106);
     this.buttonClientGroup7.Name = "buttonClientGroup7";
     this.buttonClientGroup7.Size = new System.Drawing.Size(30, 23);
     this.buttonClientGroup7.TabIndex = 18;
     this.buttonClientGroup7.Text = "7";
     this.buttonClientGroup7.UseVisualStyleBackColor = true;
     this.buttonClientGroup7.Click += new System.EventHandler(this.buttonClientGroup7_Click);
     //
     // buttonClientGroup6
     //
     this.buttonClientGroup6.Location = new System.Drawing.Point(47, 77);
     this.buttonClientGroup6.Name = "buttonClientGroup6";
     this.buttonClientGroup6.Size = new System.Drawing.Size(30, 23);
     this.buttonClientGroup6.TabIndex = 17;
     this.buttonClientGroup6.Text = "6";
     this.buttonClientGroup6.UseVisualStyleBackColor = true;
     this.buttonClientGroup6.Click += new System.EventHandler(this.buttonClientGroup6_Click);
     //
     // buttonClientGroup5
     //
     this.buttonClientGroup5.Location = new System.Drawing.Point(14, 77);
     this.buttonClientGroup5.Name = "buttonClientGroup5";
     this.buttonClientGroup5.Size = new System.Drawing.Size(30, 23);
     this.buttonClientGroup5.TabIndex = 16;
     this.buttonClientGroup5.Text = "5";
     this.buttonClientGroup5.UseVisualStyleBackColor = true;
     this.buttonClientGroup5.Click += new System.EventHandler(this.buttonClientGroup5_Click);
     //
     // buttonClientGroup4
     //
     this.buttonClientGroup4.Location = new System.Drawing.Point(47, 48);
     this.buttonClientGroup4.Name = "buttonClientGroup4";
     this.buttonClientGroup4.Size = new System.Drawing.Size(30, 23);
     this.buttonClientGroup4.TabIndex = 15;
     this.buttonClientGroup4.Text = "4";
     this.buttonClientGroup4.UseVisualStyleBackColor = true;
     this.buttonClientGroup4.Click += new System.EventHandler(this.buttonClientGroup4_Click);
     //
     // buttonClientGroup3
     //
     this.buttonClientGroup3.Location = new System.Drawing.Point(14, 48);
     this.buttonClientGroup3.Name = "buttonClientGroup3";
     this.buttonClientGroup3.Size = new System.Drawing.Size(30, 23);
     this.buttonClientGroup3.TabIndex = 14;
     this.buttonClientGroup3.Text = "3";
     this.buttonClientGroup3.UseVisualStyleBackColor = true;
     this.buttonClientGroup3.Click += new System.EventHandler(this.buttonClientGroup3_Click);
     //
     // buttonClientGroup2
     //
     this.buttonClientGroup2.Location = new System.Drawing.Point(47, 19);
     this.buttonClientGroup2.Name = "buttonClientGroup2";
     this.buttonClientGroup2.Size = new System.Drawing.Size(30, 23);
     this.buttonClientGroup2.TabIndex = 13;
     this.buttonClientGroup2.Text = "2";
     this.buttonClientGroup2.UseVisualStyleBackColor = true;
     this.buttonClientGroup2.Click += new System.EventHandler(this.buttonClientGroup2_Click);
     //
     // buttonClientGroup1
     //
     this.buttonClientGroup1.Location = new System.Drawing.Point(14, 19);
     this.buttonClientGroup1.Name = "buttonClientGroup1";
     this.buttonClientGroup1.Size = new System.Drawing.Size(30, 23);
     this.buttonClientGroup1.TabIndex = 12;
     this.buttonClientGroup1.Text = "1";
     this.buttonClientGroup1.UseVisualStyleBackColor = true;
     this.buttonClientGroup1.Click += new System.EventHandler(this.buttonClientGroup1_Click);
     //
     // checkedListBoxClients
     //
     this.checkedListBoxClients.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.checkedListBoxClients.BackColor = System.Drawing.SystemColors.Window;
     this.checkedListBoxClients.CheckOnClick = true;
     this.checkedListBoxClients.FormattingEnabled = true;
     this.checkedListBoxClients.Items.AddRange(new object[] {
     "localhost"});
     this.checkedListBoxClients.Location = new System.Drawing.Point(11, 15);
     this.checkedListBoxClients.MultiColumn = true;
     this.checkedListBoxClients.Name = "checkedListBoxClients";
     this.checkedListBoxClients.Size = new System.Drawing.Size(652, 454);
     this.checkedListBoxClients.TabIndex = 1;
     this.checkedListBoxClients.Click += new System.EventHandler(this.checkedListBoxClients_Click);
     this.checkedListBoxClients.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.checkedListBoxClients_KeyPress);
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // SelectComputerForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(794, 497);
     this.Controls.Add(this.groupBox1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "SelectComputerForm";
     this.Text = "Select-Pool";
     this.Layout += new System.Windows.Forms.LayoutEventHandler(this.SelectComputerForm_Layout);
     this.groupBox1.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox2.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.Descrip_TextBox = new System.Windows.Forms.TextBox();
     this.Visibilidad_Label = new System.Windows.Forms.Label();
     this.Descripcion_Label = new System.Windows.Forms.Label();
     this.Visibilidad_ComboBox = new System.Windows.Forms.ComboBox();
     this.Stock_Label = new System.Windows.Forms.Label();
     this.Stock_TextBox = new System.Windows.Forms.TextBox();
     this.FechaFin_Label = new System.Windows.Forms.Label();
     this.Estado_Label = new System.Windows.Forms.Label();
     this.Estado_ComboBox = new System.Windows.Forms.ComboBox();
     this.Tipo_Label = new System.Windows.Forms.Label();
     this.TipoPubli_ComboBox = new System.Windows.Forms.ComboBox();
     this.FechaFin_DateTimePicker = new System.Windows.Forms.DateTimePicker();
     this.Precio_textBox = new System.Windows.Forms.TextBox();
     this.Precio_Label = new System.Windows.Forms.Label();
     this.Limpiar_button = new System.Windows.Forms.Button();
     this.Guardar_button = new System.Windows.Forms.Button();
     this.PermitirPreg_label = new System.Windows.Forms.Label();
     this.PermitirPreguntas_Checkbox = new System.Windows.Forms.CheckBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.volverButton = new System.Windows.Forms.Button();
     this.Rubro_checkedListBox = new System.Windows.Forms.CheckedListBox();
     this.label1 = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // Descrip_TextBox
     //
     this.Descrip_TextBox.Location = new System.Drawing.Point(156, 59);
     this.Descrip_TextBox.Name = "Descrip_TextBox";
     this.Descrip_TextBox.Size = new System.Drawing.Size(200, 20);
     this.Descrip_TextBox.TabIndex = 2;
     this.Descrip_TextBox.TextChanged += new System.EventHandler(this.Descrip_TextBox_TextChanged);
     //
     // Visibilidad_Label
     //
     this.Visibilidad_Label.AutoSize = true;
     this.Visibilidad_Label.Location = new System.Drawing.Point(16, 35);
     this.Visibilidad_Label.Name = "Visibilidad_Label";
     this.Visibilidad_Label.Size = new System.Drawing.Size(53, 13);
     this.Visibilidad_Label.TabIndex = 1;
     this.Visibilidad_Label.Text = "Visibilidad";
     //
     // Descripcion_Label
     //
     this.Descripcion_Label.AutoSize = true;
     this.Descripcion_Label.Location = new System.Drawing.Point(16, 62);
     this.Descripcion_Label.Name = "Descripcion_Label";
     this.Descripcion_Label.Size = new System.Drawing.Size(63, 13);
     this.Descripcion_Label.TabIndex = 2;
     this.Descripcion_Label.Text = "Descripción";
     //
     // Visibilidad_ComboBox
     //
     this.Visibilidad_ComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Visibilidad_ComboBox.FormattingEnabled = true;
     this.Visibilidad_ComboBox.Location = new System.Drawing.Point(156, 32);
     this.Visibilidad_ComboBox.Name = "Visibilidad_ComboBox";
     this.Visibilidad_ComboBox.Size = new System.Drawing.Size(200, 21);
     this.Visibilidad_ComboBox.TabIndex = 1;
     this.Visibilidad_ComboBox.SelectedIndexChanged += new System.EventHandler(this.Visibilidad_ComboBox_SelectedIndexChanged);
     //
     // Stock_Label
     //
     this.Stock_Label.AutoSize = true;
     this.Stock_Label.Location = new System.Drawing.Point(16, 88);
     this.Stock_Label.Name = "Stock_Label";
     this.Stock_Label.Size = new System.Drawing.Size(35, 13);
     this.Stock_Label.TabIndex = 4;
     this.Stock_Label.Text = "Stock";
     //
     // Stock_TextBox
     //
     this.Stock_TextBox.Location = new System.Drawing.Point(156, 85);
     this.Stock_TextBox.Name = "Stock_TextBox";
     this.Stock_TextBox.Size = new System.Drawing.Size(200, 20);
     this.Stock_TextBox.TabIndex = 3;
     this.Stock_TextBox.TextChanged += new System.EventHandler(this.Stock_TextBox_TextChanged);
     this.Stock_TextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Stock_TextBox_KeyPress);
     //
     // FechaFin_Label
     //
     this.FechaFin_Label.AutoSize = true;
     this.FechaFin_Label.Location = new System.Drawing.Point(16, 115);
     this.FechaFin_Label.Name = "FechaFin_Label";
     this.FechaFin_Label.Size = new System.Drawing.Size(110, 13);
     this.FechaFin_Label.TabIndex = 6;
     this.FechaFin_Label.Text = "Fecha de Finalización";
     //
     // Estado_Label
     //
     this.Estado_Label.AutoSize = true;
     this.Estado_Label.Location = new System.Drawing.Point(16, 140);
     this.Estado_Label.Name = "Estado_Label";
     this.Estado_Label.Size = new System.Drawing.Size(40, 13);
     this.Estado_Label.TabIndex = 8;
     this.Estado_Label.Text = "Estado";
     //
     // Estado_ComboBox
     //
     this.Estado_ComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.Estado_ComboBox.FormattingEnabled = true;
     this.Estado_ComboBox.Location = new System.Drawing.Point(156, 137);
     this.Estado_ComboBox.Name = "Estado_ComboBox";
     this.Estado_ComboBox.Size = new System.Drawing.Size(200, 21);
     this.Estado_ComboBox.TabIndex = 5;
     this.Estado_ComboBox.SelectedIndexChanged += new System.EventHandler(this.Estado_ComboBox_SelectedIndexChanged);
     //
     // Tipo_Label
     //
     this.Tipo_Label.AutoSize = true;
     this.Tipo_Label.Location = new System.Drawing.Point(16, 167);
     this.Tipo_Label.Name = "Tipo_Label";
     this.Tipo_Label.Size = new System.Drawing.Size(28, 13);
     this.Tipo_Label.TabIndex = 11;
     this.Tipo_Label.Text = "Tipo";
     //
     // TipoPubli_ComboBox
     //
     this.TipoPubli_ComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.TipoPubli_ComboBox.FormattingEnabled = true;
     this.TipoPubli_ComboBox.Location = new System.Drawing.Point(156, 164);
     this.TipoPubli_ComboBox.Name = "TipoPubli_ComboBox";
     this.TipoPubli_ComboBox.Size = new System.Drawing.Size(200, 21);
     this.TipoPubli_ComboBox.TabIndex = 6;
     this.TipoPubli_ComboBox.SelectedIndexChanged += new System.EventHandler(this.TipoPubli_ComboBox_SelectedIndexChanged);
     //
     // FechaFin_DateTimePicker
     //
     this.FechaFin_DateTimePicker.Location = new System.Drawing.Point(156, 111);
     this.FechaFin_DateTimePicker.Name = "FechaFin_DateTimePicker";
     this.FechaFin_DateTimePicker.Size = new System.Drawing.Size(200, 20);
     this.FechaFin_DateTimePicker.TabIndex = 4;
     this.FechaFin_DateTimePicker.ValueChanged += new System.EventHandler(this.FechaFin_DateTimePicker_ValueChanged);
     //
     // Precio_textBox
     //
     this.Precio_textBox.Location = new System.Drawing.Point(156, 307);
     this.Precio_textBox.Name = "Precio_textBox";
     this.Precio_textBox.Size = new System.Drawing.Size(200, 20);
     this.Precio_textBox.TabIndex = 8;
     this.Precio_textBox.TextChanged += new System.EventHandler(this.Precio_textBox_TextChanged);
     this.Precio_textBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Precio_textBox_KeyPress);
     //
     // Precio_Label
     //
     this.Precio_Label.AutoSize = true;
     this.Precio_Label.Location = new System.Drawing.Point(16, 310);
     this.Precio_Label.Name = "Precio_Label";
     this.Precio_Label.Size = new System.Drawing.Size(37, 13);
     this.Precio_Label.TabIndex = 15;
     this.Precio_Label.Text = "Precio";
     //
     // Limpiar_button
     //
     this.Limpiar_button.Location = new System.Drawing.Point(142, 368);
     this.Limpiar_button.Name = "Limpiar_button";
     this.Limpiar_button.Size = new System.Drawing.Size(105, 38);
     this.Limpiar_button.TabIndex = 11;
     this.Limpiar_button.Text = "Limpiar";
     this.Limpiar_button.UseVisualStyleBackColor = true;
     this.Limpiar_button.Click += new System.EventHandler(this.Limpiar_button_Click);
     //
     // Guardar_button
     //
     this.Guardar_button.Location = new System.Drawing.Point(263, 368);
     this.Guardar_button.Name = "Guardar_button";
     this.Guardar_button.Size = new System.Drawing.Size(105, 38);
     this.Guardar_button.TabIndex = 10;
     this.Guardar_button.Text = "Guardar";
     this.Guardar_button.UseVisualStyleBackColor = true;
     this.Guardar_button.Click += new System.EventHandler(this.Guardar_button_Click);
     //
     // PermitirPreg_label
     //
     this.PermitirPreg_label.AutoSize = true;
     this.PermitirPreg_label.Location = new System.Drawing.Point(16, 333);
     this.PermitirPreg_label.Name = "PermitirPreg_label";
     this.PermitirPreg_label.Size = new System.Drawing.Size(92, 13);
     this.PermitirPreg_label.TabIndex = 21;
     this.PermitirPreg_label.Text = "Permitir Preguntas";
     //
     // PermitirPreguntas_Checkbox
     //
     this.PermitirPreguntas_Checkbox.AutoSize = true;
     this.PermitirPreguntas_Checkbox.Location = new System.Drawing.Point(156, 332);
     this.PermitirPreguntas_Checkbox.Name = "PermitirPreguntas_Checkbox";
     this.PermitirPreguntas_Checkbox.Size = new System.Drawing.Size(15, 14);
     this.PermitirPreguntas_Checkbox.TabIndex = 9;
     this.PermitirPreguntas_Checkbox.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.volverButton);
     this.groupBox1.Controls.Add(this.Rubro_checkedListBox);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.PermitirPreguntas_Checkbox);
     this.groupBox1.Controls.Add(this.PermitirPreg_label);
     this.groupBox1.Controls.Add(this.Guardar_button);
     this.groupBox1.Controls.Add(this.Limpiar_button);
     this.groupBox1.Controls.Add(this.Precio_Label);
     this.groupBox1.Controls.Add(this.Precio_textBox);
     this.groupBox1.Controls.Add(this.FechaFin_DateTimePicker);
     this.groupBox1.Controls.Add(this.TipoPubli_ComboBox);
     this.groupBox1.Controls.Add(this.Tipo_Label);
     this.groupBox1.Controls.Add(this.Estado_ComboBox);
     this.groupBox1.Controls.Add(this.Estado_Label);
     this.groupBox1.Controls.Add(this.FechaFin_Label);
     this.groupBox1.Controls.Add(this.Stock_TextBox);
     this.groupBox1.Controls.Add(this.Stock_Label);
     this.groupBox1.Controls.Add(this.Visibilidad_ComboBox);
     this.groupBox1.Controls.Add(this.Descripcion_Label);
     this.groupBox1.Controls.Add(this.Visibilidad_Label);
     this.groupBox1.Controls.Add(this.Descrip_TextBox);
     this.groupBox1.Location = new System.Drawing.Point(17, 14);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(393, 427);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Creación o Modificación de Publicación";
     //
     // volverButton
     //
     this.volverButton.Location = new System.Drawing.Point(19, 368);
     this.volverButton.Name = "volverButton";
     this.volverButton.Size = new System.Drawing.Size(105, 38);
     this.volverButton.TabIndex = 26;
     this.volverButton.Text = "<< Volver";
     this.volverButton.UseVisualStyleBackColor = true;
     this.volverButton.Click += new System.EventHandler(this.volverButton_Click);
     //
     // Rubro_checkedListBox
     //
     this.Rubro_checkedListBox.FormattingEnabled = true;
     this.Rubro_checkedListBox.Location = new System.Drawing.Point(156, 192);
     this.Rubro_checkedListBox.Name = "Rubro_checkedListBox";
     this.Rubro_checkedListBox.Size = new System.Drawing.Size(200, 109);
     this.Rubro_checkedListBox.TabIndex = 7;
     this.Rubro_checkedListBox.SelectedIndexChanged += new System.EventHandler(this.Rubro_checkedListBox_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(16, 195);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(36, 13);
     this.label1.TabIndex = 25;
     this.label1.Text = "Rubro";
     //
     // GenerarPubliForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(434, 453);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.Name = "GenerarPubliForm";
     this.Text = "Administrar Publicaciones - Mercado Negro";
     this.Load += new System.EventHandler(this.GenerarPubliForm_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     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.textBox1 = new System.Windows.Forms.TextBox();
     this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
     this.button1 = new System.Windows.Forms.Button();
     this.listView1 = new System.Windows.Forms.ListView();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(29, 23);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(100, 21);
     this.textBox1.TabIndex = 0;
     //
     // checkedListBox1
     //
     this.checkedListBox1.FormattingEnabled = true;
     this.checkedListBox1.Items.AddRange(new object[] {
     "类别",
     "名称",
     "使用部门",
     "保管部门",
     "增添日期",
     "已删除",
     "在库"});
     this.checkedListBox1.Location = new System.Drawing.Point(189, 24);
     this.checkedListBox1.Name = "checkedListBox1";
     this.checkedListBox1.Size = new System.Drawing.Size(130, 20);
     this.checkedListBox1.TabIndex = 2;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(404, 20);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 3;
     this.button1.Text = "查询";
     this.button1.UseVisualStyleBackColor = true;
     //
     // listView1
     //
     this.listView1.Location = new System.Drawing.Point(29, 79);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(450, 187);
     this.listView1.TabIndex = 4;
     this.listView1.UseCompatibleStateImageBehavior = false;
     //
     // Form5
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(559, 307);
     this.Controls.Add(this.listView1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.checkedListBox1);
     this.Controls.Add(this.textBox1);
     this.Name = "Form5";
     this.Text = "资产信息查询";
     this.Load += new System.EventHandler(this.onLoad);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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();
     this.ForceAutoSnipe            = new System.Windows.Forms.Button();
     this.AvoidRegionLock           = new System.Windows.Forms.CheckBox();
     this.label4                    = new System.Windows.Forms.Label();
     this.groupBox23                = new System.Windows.Forms.GroupBox();
     this.UpdateNotToSnipe          = new System.Windows.Forms.Button();
     this.SelectallNottoSnipe       = new System.Windows.Forms.CheckBox();
     this.checkedListBox_NotToSnipe = new System.Windows.Forms.CheckedListBox();
     this.SnipePokemonPokeCom       = new System.Windows.Forms.CheckBox();
     this.groupBox1                 = new System.Windows.Forms.GroupBox();
     this.PokemonImage              = new System.Windows.Forms.PictureBox();
     this.comboBox1                 = new System.Windows.Forms.ComboBox();
     this.SnipeMe                   = new System.Windows.Forms.Button();
     this.label6                    = new System.Windows.Forms.Label();
     this.label64                   = new System.Windows.Forms.Label();
     this.SnipeInfo                 = new System.Windows.Forms.TextBox();
     this.groupBox2                 = new System.Windows.Forms.GroupBox();
     this.checkBoxExternalWeb       = new System.Windows.Forms.CheckBox();
     this.buttonGo                  = new System.Windows.Forms.Button();
     this.comboBoxLinks             = new System.Windows.Forms.ComboBox();
     this.btnInstall                = new System.Windows.Forms.Button();
     this.label1                    = new System.Windows.Forms.Label();
     this.label2                    = new System.Windows.Forms.Label();
     this.timer1                    = new System.Windows.Forms.Timer(this.components);
     this.nudSecondsSnipe           = new System.Windows.Forms.NumericUpDown();
     this.label8                    = new System.Windows.Forms.Label();
     this.label9                    = new System.Windows.Forms.Label();
     this.nudTriesSnipe             = new System.Windows.Forms.NumericUpDown();
     this.checkBoxSnipeTransfer     = new System.Windows.Forms.CheckBox();
     this.groupBox23.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PokemonImage)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudSecondsSnipe)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nudTriesSnipe)).BeginInit();
     this.SuspendLayout();
     //
     // ForceAutoSnipe
     //
     this.ForceAutoSnipe.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ForceAutoSnipe.Location = new System.Drawing.Point(12, 334);
     this.ForceAutoSnipe.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.ForceAutoSnipe.Name     = "ForceAutoSnipe";
     this.ForceAutoSnipe.Size     = new System.Drawing.Size(212, 28);
     this.ForceAutoSnipe.TabIndex = 77;
     this.ForceAutoSnipe.Text     = "Start Auto Snipe";
     this.ForceAutoSnipe.UseVisualStyleBackColor = true;
     this.ForceAutoSnipe.Click += new System.EventHandler(this.ForceAutoSnipe_Click);
     //
     // AvoidRegionLock
     //
     this.AvoidRegionLock.AutoSize   = true;
     this.AvoidRegionLock.Checked    = true;
     this.AvoidRegionLock.CheckState = System.Windows.Forms.CheckState.Checked;
     this.AvoidRegionLock.Location   = new System.Drawing.Point(4, 393);
     this.AvoidRegionLock.Margin     = new System.Windows.Forms.Padding(4);
     this.AvoidRegionLock.Name       = "AvoidRegionLock";
     this.AvoidRegionLock.Size       = new System.Drawing.Size(177, 17);
     this.AvoidRegionLock.TabIndex   = 78;
     this.AvoidRegionLock.Text       = "Avoid Region Locked Pokemon";
     this.AvoidRegionLock.UseVisualStyleBackColor = true;
     this.AvoidRegionLock.CheckedChanged         += new System.EventHandler(this.AvoidRegionLock_CheckedChanged);
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.DarkRed;
     this.label4.Location  = new System.Drawing.Point(135, 246);
     this.label4.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(227, 16);
     this.label4.TabIndex  = 81;
     this.label4.Text      = "(Format: 30.123456, -97.123456 )";
     //
     // groupBox23
     //
     this.groupBox23.Controls.Add(this.UpdateNotToSnipe);
     this.groupBox23.Controls.Add(this.SelectallNottoSnipe);
     this.groupBox23.Controls.Add(this.checkedListBox_NotToSnipe);
     this.groupBox23.Location = new System.Drawing.Point(4, 4);
     this.groupBox23.Margin   = new System.Windows.Forms.Padding(4);
     this.groupBox23.Name     = "groupBox23";
     this.groupBox23.Padding  = new System.Windows.Forms.Padding(4);
     this.groupBox23.Size     = new System.Drawing.Size(228, 324);
     this.groupBox23.TabIndex = 79;
     this.groupBox23.TabStop  = false;
     this.groupBox23.Text     = "Pokemon - Not to Snipe";
     //
     // UpdateNotToSnipe
     //
     this.UpdateNotToSnipe.Font     = new System.Drawing.Font("Microsoft Sans Serif", 6F);
     this.UpdateNotToSnipe.Location = new System.Drawing.Point(108, 294);
     this.UpdateNotToSnipe.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.UpdateNotToSnipe.Name     = "UpdateNotToSnipe";
     this.UpdateNotToSnipe.Size     = new System.Drawing.Size(113, 22);
     this.UpdateNotToSnipe.TabIndex = 33;
     this.UpdateNotToSnipe.Text     = "Update";
     this.UpdateNotToSnipe.UseVisualStyleBackColor = true;
     this.UpdateNotToSnipe.Click += new System.EventHandler(this.UpdateNotToSnipe_Click);
     //
     // SelectallNottoSnipe
     //
     this.SelectallNottoSnipe.AutoSize = true;
     this.SelectallNottoSnipe.Location = new System.Drawing.Point(8, 295);
     this.SelectallNottoSnipe.Margin   = new System.Windows.Forms.Padding(4);
     this.SelectallNottoSnipe.Name     = "SelectallNottoSnipe";
     this.SelectallNottoSnipe.Size     = new System.Drawing.Size(69, 17);
     this.SelectallNottoSnipe.TabIndex = 32;
     this.SelectallNottoSnipe.Text     = "Select all";
     this.SelectallNottoSnipe.UseVisualStyleBackColor = true;
     this.SelectallNottoSnipe.CheckedChanged         += new System.EventHandler(this.SelectallNottoSnipe_CheckedChanged);
     //
     // checkedListBox_NotToSnipe
     //
     this.checkedListBox_NotToSnipe.CheckOnClick      = true;
     this.checkedListBox_NotToSnipe.FormattingEnabled = true;
     this.checkedListBox_NotToSnipe.Location          = new System.Drawing.Point(8, 25);
     this.checkedListBox_NotToSnipe.Margin            = new System.Windows.Forms.Padding(4);
     this.checkedListBox_NotToSnipe.Name = "checkedListBox_NotToSnipe";
     this.checkedListBox_NotToSnipe.ScrollAlwaysVisible = true;
     this.checkedListBox_NotToSnipe.Size     = new System.Drawing.Size(212, 229);
     this.checkedListBox_NotToSnipe.TabIndex = 0;
     //
     // SnipePokemonPokeCom
     //
     this.SnipePokemonPokeCom.AutoSize = true;
     this.SnipePokemonPokeCom.Enabled  = false;
     this.SnipePokemonPokeCom.Location = new System.Drawing.Point(4, 369);
     this.SnipePokemonPokeCom.Margin   = new System.Windows.Forms.Padding(4);
     this.SnipePokemonPokeCom.Name     = "SnipePokemonPokeCom";
     this.SnipePokemonPokeCom.Size     = new System.Drawing.Size(195, 17);
     this.SnipePokemonPokeCom.TabIndex = 80;
     this.SnipePokemonPokeCom.Text     = "Enable Automatic Pokemon Sniping";
     this.SnipePokemonPokeCom.UseVisualStyleBackColor = true;
     this.SnipePokemonPokeCom.CheckedChanged         += new System.EventHandler(this.SnipePokemonPokeCom_CheckedChanged);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.PokemonImage);
     this.groupBox1.Controls.Add(this.comboBox1);
     this.groupBox1.Controls.Add(this.SnipeMe);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label64);
     this.groupBox1.Controls.Add(this.SnipeInfo);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Location = new System.Drawing.Point(268, 4);
     this.groupBox1.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Padding  = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox1.Size     = new System.Drawing.Size(391, 340);
     this.groupBox1.TabIndex = 84;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Manual Sniping ";
     //
     // PokemonImage
     //
     this.PokemonImage.Location = new System.Drawing.Point(111, 25);
     this.PokemonImage.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.PokemonImage.Name     = "PokemonImage";
     this.PokemonImage.Size     = new System.Drawing.Size(197, 172);
     this.PokemonImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.PokemonImage.TabIndex = 76;
     this.PokemonImage.TabStop  = false;
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location          = new System.Drawing.Point(111, 215);
     this.comboBox1.Margin            = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(199, 21);
     this.comboBox1.TabIndex              = 75;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // SnipeMe
     //
     this.SnipeMe.BackColor = System.Drawing.Color.MediumAquamarine;
     this.SnipeMe.Enabled   = false;
     this.SnipeMe.Location  = new System.Drawing.Point(21, 298);
     this.SnipeMe.Margin    = new System.Windows.Forms.Padding(4);
     this.SnipeMe.Name      = "SnipeMe";
     this.SnipeMe.Size      = new System.Drawing.Size(345, 27);
     this.SnipeMe.TabIndex  = 74;
     this.SnipeMe.Text      = "Snipe Me!";
     this.SnipeMe.UseVisualStyleBackColor = false;
     this.SnipeMe.Click += new System.EventHandler(this.SnipeMe_Click);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(21, 220);
     this.label6.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(86, 13);
     this.label6.TabIndex = 72;
     this.label6.Text     = "Pokemon Name:";
     //
     // label64
     //
     this.label64.AutoSize = true;
     this.label64.Location = new System.Drawing.Point(21, 249);
     this.label64.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label64.Name     = "label64";
     this.label64.Size     = new System.Drawing.Size(98, 13);
     this.label64.TabIndex = 72;
     this.label64.Text     = "Latitude, Longitude";
     //
     // SnipeInfo
     //
     this.SnipeInfo.Location     = new System.Drawing.Point(21, 268);
     this.SnipeInfo.Margin       = new System.Windows.Forms.Padding(4);
     this.SnipeInfo.Name         = "SnipeInfo";
     this.SnipeInfo.Size         = new System.Drawing.Size(345, 20);
     this.SnipeInfo.TabIndex     = 73;
     this.SnipeInfo.TextChanged += new System.EventHandler(this.SnipeInfo_TextChanged);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.checkBoxExternalWeb);
     this.groupBox2.Controls.Add(this.buttonGo);
     this.groupBox2.Controls.Add(this.comboBoxLinks);
     this.groupBox2.Controls.Add(this.btnInstall);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.ForeColor = System.Drawing.Color.DarkRed;
     this.groupBox2.Location  = new System.Drawing.Point(4, 418);
     this.groupBox2.Margin    = new System.Windows.Forms.Padding(4);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(649, 81);
     this.groupBox2.TabIndex  = 85;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "URI Service";
     //
     // checkBoxExternalWeb
     //
     this.checkBoxExternalWeb.ForeColor = System.Drawing.SystemColors.ControlText;
     this.checkBoxExternalWeb.Location  = new System.Drawing.Point(11, 55);
     this.checkBoxExternalWeb.Name      = "checkBoxExternalWeb";
     this.checkBoxExternalWeb.Size      = new System.Drawing.Size(169, 20);
     this.checkBoxExternalWeb.TabIndex  = 96;
     this.checkBoxExternalWeb.Text      = "Open In External Browser";
     this.checkBoxExternalWeb.UseVisualStyleBackColor = true;
     //
     // buttonGo
     //
     this.buttonGo.ForeColor = System.Drawing.SystemColors.ControlText;
     this.buttonGo.Location  = new System.Drawing.Point(413, 52);
     this.buttonGo.Name      = "buttonGo";
     this.buttonGo.Size      = new System.Drawing.Size(54, 23);
     this.buttonGo.TabIndex  = 95;
     this.buttonGo.Text      = "Go";
     this.buttonGo.UseVisualStyleBackColor = true;
     this.buttonGo.Click += new System.EventHandler(this.buttonGo_Click);
     //
     // comboBoxLinks
     //
     this.comboBoxLinks.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxLinks.FormattingEnabled = true;
     this.comboBoxLinks.Location          = new System.Drawing.Point(217, 54);
     this.comboBoxLinks.Name     = "comboBoxLinks";
     this.comboBoxLinks.Size     = new System.Drawing.Size(190, 21);
     this.comboBoxLinks.TabIndex = 94;
     //
     // btnInstall
     //
     this.btnInstall.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnInstall.Location  = new System.Drawing.Point(539, 52);
     this.btnInstall.Margin    = new System.Windows.Forms.Padding(4);
     this.btnInstall.Name      = "btnInstall";
     this.btnInstall.Size      = new System.Drawing.Size(103, 22);
     this.btnInstall.TabIndex  = 5;
     this.btnInstall.Text      = "Install Service";
     this.btnInstall.UseVisualStyleBackColor = true;
     this.btnInstall.Click += new System.EventHandler(this.btnInstall_Click);
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label1.Location  = new System.Drawing.Point(7, 16);
     this.label1.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(616, 13);
     this.label1.TabIndex  = 86;
     this.label1.Text      = "Handles \"pokesniper2:// and msniper://\" URI Protocols. So if you have another app" +
                             "lication to do it.  Is  advisable uninstall before";
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label2.Location  = new System.Drawing.Point(7, 35);
     this.label2.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(403, 13);
     this.label2.TabIndex  = 87;
     this.label2.Text      = "With Service Installed you can snipe directly from pokesniper URIs like these pag" +
                             "es:";
     //
     // timer1
     //
     this.timer1.Interval = 10000;
     this.timer1.Tick    += new System.EventHandler(this.timer1_Tick);
     //
     // nudSecondsSnipe
     //
     this.nudSecondsSnipe.Location = new System.Drawing.Point(613, 360);
     this.nudSecondsSnipe.Maximum  = new decimal(new int[] {
         600,
         0,
         0,
         0
     });
     this.nudSecondsSnipe.Minimum = new decimal(new int[] {
         2,
         0,
         0,
         0
     });
     this.nudSecondsSnipe.Name     = "nudSecondsSnipe";
     this.nudSecondsSnipe.Size     = new System.Drawing.Size(46, 20);
     this.nudSecondsSnipe.TabIndex = 86;
     this.nudSecondsSnipe.Value    = new decimal(new int[] {
         6,
         0,
         0,
         0
     });
     this.nudSecondsSnipe.ValueChanged += new System.EventHandler(this.nudSecondsSnipe_ValueChanged);
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(490, 361);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(117, 20);
     this.label8.TabIndex = 87;
     this.label8.Text     = "Seconds to wait there:";
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(268, 363);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(149, 17);
     this.label9.TabIndex = 89;
     this.label9.Text     = "Num Tries Finding Encounter:";
     //
     // nudTriesSnipe
     //
     this.nudTriesSnipe.Location = new System.Drawing.Point(424, 361);
     this.nudTriesSnipe.Maximum  = new decimal(new int[] {
         300,
         0,
         0,
         0
     });
     this.nudTriesSnipe.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.nudTriesSnipe.Name     = "nudTriesSnipe";
     this.nudTriesSnipe.Size     = new System.Drawing.Size(46, 20);
     this.nudTriesSnipe.TabIndex = 88;
     this.nudTriesSnipe.Value    = new decimal(new int[] {
         3,
         0,
         0,
         0
     });
     this.nudTriesSnipe.ValueChanged += new System.EventHandler(this.nudTriesSnipe_ValueChanged);
     //
     // checkBoxSnipeTransfer
     //
     this.checkBoxSnipeTransfer.AutoSize  = true;
     this.checkBoxSnipeTransfer.ForeColor = System.Drawing.SystemColors.ControlText;
     this.checkBoxSnipeTransfer.Location  = new System.Drawing.Point(271, 395);
     this.checkBoxSnipeTransfer.Name      = "checkBoxSnipeTransfer";
     this.checkBoxSnipeTransfer.Size      = new System.Drawing.Size(192, 17);
     this.checkBoxSnipeTransfer.TabIndex  = 97;
     this.checkBoxSnipeTransfer.Text      = "Transfer directly at snipe succesful.";
     this.checkBoxSnipeTransfer.UseVisualStyleBackColor = true;
     //
     // SniperPanel
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.Controls.Add(this.checkBoxSnipeTransfer);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.nudTriesSnipe);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.nudSecondsSnipe);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.ForceAutoSnipe);
     this.Controls.Add(this.AvoidRegionLock);
     this.Controls.Add(this.groupBox23);
     this.Controls.Add(this.SnipePokemonPokeCom);
     this.Controls.Add(this.groupBox1);
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name   = "SniperPanel";
     this.Size   = new System.Drawing.Size(685, 514);
     this.groupBox23.ResumeLayout(false);
     this.groupBox23.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PokemonImage)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudSecondsSnipe)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nudTriesSnipe)).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.dataMemberClass = new System.Windows.Forms.DataGridView();
     this.groupDeliqStatus = new System.Windows.Forms.GroupBox();
     this.rbDelinquent = new System.Windows.Forms.RadioButton();
     this.rbNone = new System.Windows.Forms.RadioButton();
     this.numDelValue = new System.Windows.Forms.NumericUpDown();
     this.ContextMenuBlank = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.cbBasis = new System.Windows.Forms.ComboBox();
     this.cbDelUnits = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.lblApplied = new System.Windows.Forms.Label();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnSave = new System.Windows.Forms.Button();
     this.checkedMemberType = new System.Windows.Forms.CheckedListBox();
     this.checkStatus = new System.Windows.Forms.CheckBox();
     this.label3 = new System.Windows.Forms.Label();
     this.txtStatusDesc = new System.Windows.Forms.TextBox();
     this.lblName = new System.Windows.Forms.Label();
     this.btnDelete = new System.Windows.Forms.Button();
     this.btnEdit = new System.Windows.Forms.Button();
     this.btnAdd = new System.Windows.Forms.Button();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.lblClassification = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnRetrieve = new System.Windows.Forms.Button();
     this.checkArchived = new System.Windows.Forms.CheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.dataMemberClass)).BeginInit();
     this.groupDeliqStatus.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numDelValue)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // dataMemberClass
     //
     this.dataMemberClass.AllowUserToAddRows = false;
     this.dataMemberClass.AllowUserToDeleteRows = false;
     this.dataMemberClass.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.dataMemberClass.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.dataMemberClass.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataMemberClass.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
     this.dataMemberClass.Location = new System.Drawing.Point(12, 49);
     this.dataMemberClass.Name = "dataMemberClass";
     this.dataMemberClass.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataMemberClass.Size = new System.Drawing.Size(674, 145);
     this.dataMemberClass.TabIndex = 3;
     this.dataMemberClass.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dataMemberClass_CellFormatting);
     //
     // groupDeliqStatus
     //
     this.groupDeliqStatus.Controls.Add(this.rbDelinquent);
     this.groupDeliqStatus.Controls.Add(this.rbNone);
     this.groupDeliqStatus.Controls.Add(this.numDelValue);
     this.groupDeliqStatus.Controls.Add(this.cbBasis);
     this.groupDeliqStatus.Controls.Add(this.cbDelUnits);
     this.groupDeliqStatus.Controls.Add(this.label4);
     this.groupDeliqStatus.Location = new System.Drawing.Point(10, 63);
     this.groupDeliqStatus.Name = "groupDeliqStatus";
     this.groupDeliqStatus.Size = new System.Drawing.Size(371, 126);
     this.groupDeliqStatus.TabIndex = 11;
     this.groupDeliqStatus.TabStop = false;
     this.groupDeliqStatus.Text = "Deliquency Status";
     //
     // rbDelinquent
     //
     this.rbDelinquent.AutoSize = true;
     this.rbDelinquent.Location = new System.Drawing.Point(6, 59);
     this.rbDelinquent.Name = "rbDelinquent";
     this.rbDelinquent.Size = new System.Drawing.Size(133, 25);
     this.rbDelinquent.TabIndex = 13;
     this.rbDelinquent.TabStop = true;
     this.rbDelinquent.Text = "Deliquent After";
     this.rbDelinquent.UseVisualStyleBackColor = true;
     this.rbDelinquent.CheckedChanged += new System.EventHandler(this.rbDelinquent_CheckedChanged);
     //
     // rbNone
     //
     this.rbNone.AutoSize = true;
     this.rbNone.Location = new System.Drawing.Point(6, 28);
     this.rbNone.Name = "rbNone";
     this.rbNone.Size = new System.Drawing.Size(161, 25);
     this.rbNone.TabIndex = 12;
     this.rbNone.TabStop = true;
     this.rbNone.Text = "None (Good Payer)";
     this.rbNone.UseVisualStyleBackColor = true;
     //
     // numDelValue
     //
     this.numDelValue.ContextMenuStrip = this.ContextMenuBlank;
     this.numDelValue.Location = new System.Drawing.Point(168, 57);
     this.numDelValue.Maximum = new decimal(new int[] {
     50,
     0,
     0,
     0});
     this.numDelValue.Name = "numDelValue";
     this.numDelValue.Size = new System.Drawing.Size(60, 29);
     this.numDelValue.TabIndex = 14;
     this.numDelValue.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCopyPaste);
     this.numDelValue.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtWholeNum);
     //
     // ContextMenuBlank
     //
     this.ContextMenuBlank.Name = "ContextMenuBlank";
     this.ContextMenuBlank.Size = new System.Drawing.Size(61, 4);
     //
     // cbBasis
     //
     this.cbBasis.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbBasis.FormattingEnabled = true;
     this.cbBasis.ItemHeight = 21;
     this.cbBasis.Items.AddRange(new object[] {
     "Amortization Due Date",
     "Loan Maturity Date"});
     this.cbBasis.Location = new System.Drawing.Point(105, 92);
     this.cbBasis.Name = "cbBasis";
     this.cbBasis.Size = new System.Drawing.Size(261, 29);
     this.cbBasis.TabIndex = 17;
     //
     // cbDelUnits
     //
     this.cbDelUnits.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbDelUnits.FormattingEnabled = true;
     this.cbDelUnits.ItemHeight = 21;
     this.cbDelUnits.Items.AddRange(new object[] {
     "Days",
     "Months",
     "Years"});
     this.cbDelUnits.Location = new System.Drawing.Point(234, 57);
     this.cbDelUnits.Name = "cbDelUnits";
     this.cbDelUnits.Size = new System.Drawing.Size(132, 29);
     this.cbDelUnits.TabIndex = 15;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(75, 95);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(24, 21);
     this.label4.TabIndex = 16;
     this.label4.Text = "of";
     //
     // lblApplied
     //
     this.lblApplied.AutoSize = true;
     this.lblApplied.Location = new System.Drawing.Point(395, 34);
     this.lblApplied.Name = "lblApplied";
     this.lblApplied.Size = new System.Drawing.Size(93, 21);
     this.lblApplied.TabIndex = 18;
     this.lblApplied.Text = "Applied For:";
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(576, 190);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(92, 32);
     this.btnCancel.TabIndex = 24;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(478, 190);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(92, 32);
     this.btnSave.TabIndex = 23;
     this.btnSave.Text = "&Save";
     this.btnSave.UseVisualStyleBackColor = true;
     //
     // checkedMemberType
     //
     this.checkedMemberType.FormattingEnabled = true;
     this.checkedMemberType.Location = new System.Drawing.Point(395, 63);
     this.checkedMemberType.Name = "checkedMemberType";
     this.checkedMemberType.Size = new System.Drawing.Size(273, 124);
     this.checkedMemberType.TabIndex = 19;
     //
     // checkStatus
     //
     this.checkStatus.AutoSize = true;
     this.checkStatus.Location = new System.Drawing.Point(78, 195);
     this.checkStatus.Name = "checkStatus";
     this.checkStatus.Size = new System.Drawing.Size(71, 25);
     this.checkStatus.TabIndex = 21;
     this.checkStatus.Text = "Active";
     this.checkStatus.UseVisualStyleBackColor = true;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(12, 195);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 21);
     this.label3.TabIndex = 20;
     this.label3.Text = "Status:";
     //
     // txtStatusDesc
     //
     this.txtStatusDesc.Enabled = false;
     this.txtStatusDesc.Location = new System.Drawing.Point(168, 31);
     this.txtStatusDesc.MaxLength = 50;
     this.txtStatusDesc.Name = "txtStatusDesc";
     this.txtStatusDesc.Size = new System.Drawing.Size(213, 29);
     this.txtStatusDesc.TabIndex = 10;
     //
     // lblName
     //
     this.lblName.AutoSize = true;
     this.lblName.Location = new System.Drawing.Point(12, 34);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(150, 21);
     this.lblName.TabIndex = 9;
     this.lblName.Text = "Classification Name:";
     //
     // btnDelete
     //
     this.btnDelete.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnDelete.Location = new System.Drawing.Point(594, 200);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(92, 32);
     this.btnDelete.TabIndex = 7;
     this.btnDelete.Text = "&Delete";
     this.btnDelete.UseVisualStyleBackColor = true;
     //
     // btnEdit
     //
     this.btnEdit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnEdit.Location = new System.Drawing.Point(496, 200);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(92, 32);
     this.btnEdit.TabIndex = 6;
     this.btnEdit.Text = "&Edit";
     this.btnEdit.UseVisualStyleBackColor = true;
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnAdd.Location = new System.Drawing.Point(398, 200);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(92, 32);
     this.btnAdd.TabIndex = 5;
     this.btnAdd.Text = "&Add";
     this.btnAdd.UseVisualStyleBackColor = true;
     //
     // txtSearch
     //
     this.txtSearch.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtSearch.Location = new System.Drawing.Point(173, 14);
     this.txtSearch.MaxLength = 50;
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(507, 29);
     this.txtSearch.TabIndex = 2;
     //
     // lblClassification
     //
     this.lblClassification.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.lblClassification.AutoSize = true;
     this.lblClassification.Location = new System.Drawing.Point(12, 17);
     this.lblClassification.Name = "lblClassification";
     this.lblClassification.Size = new System.Drawing.Size(155, 21);
     this.lblClassification.TabIndex = 1;
     this.lblClassification.Text = "Search Classification:";
     //
     // groupBox1
     //
     this.groupBox1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.groupBox1.Controls.Add(this.btnRetrieve);
     this.groupBox1.Controls.Add(this.groupDeliqStatus);
     this.groupBox1.Controls.Add(this.lblName);
     this.groupBox1.Controls.Add(this.lblApplied);
     this.groupBox1.Controls.Add(this.txtStatusDesc);
     this.groupBox1.Controls.Add(this.btnCancel);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.btnSave);
     this.groupBox1.Controls.Add(this.checkStatus);
     this.groupBox1.Controls.Add(this.checkedMemberType);
     this.groupBox1.Location = new System.Drawing.Point(12, 238);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(674, 223);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Add/Modify Classification";
     //
     // btnRetrieve
     //
     this.btnRetrieve.Location = new System.Drawing.Point(168, 190);
     this.btnRetrieve.Name = "btnRetrieve";
     this.btnRetrieve.Size = new System.Drawing.Size(92, 32);
     this.btnRetrieve.TabIndex = 22;
     this.btnRetrieve.Text = "&Retrieve";
     this.btnRetrieve.UseVisualStyleBackColor = true;
     //
     // checkArchived
     //
     this.checkArchived.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.checkArchived.AutoSize = true;
     this.checkArchived.BackColor = System.Drawing.Color.Yellow;
     this.checkArchived.Location = new System.Drawing.Point(12, 205);
     this.checkArchived.Name = "checkArchived";
     this.checkArchived.Size = new System.Drawing.Size(131, 25);
     this.checkArchived.TabIndex = 4;
     this.checkArchived.Text = "Show Archives";
     this.checkArchived.UseVisualStyleBackColor = false;
     //
     // MemberClassification
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 21F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(704, 474);
     this.Controls.Add(this.checkArchived);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.lblClassification);
     this.Controls.Add(this.btnDelete);
     this.Controls.Add(this.txtSearch);
     this.Controls.Add(this.btnEdit);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.dataMemberClass);
     this.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.MinimumSize = new System.Drawing.Size(720, 512);
     this.Name = "MemberClassification";
     this.Text = "Membership Classification";
     ((System.ComponentModel.ISupportInitialize)(this.dataMemberClass)).EndInit();
     this.groupDeliqStatus.ResumeLayout(false);
     this.groupDeliqStatus.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numDelValue)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }