예제 #1
0
        private void insertTextFromClipboard(AxXMLSPYPLUGINLib.AxAuthentic axActiveAuthenticControl)
        {
            string strClipboardString = utils.clipboard.getStringWithClipboardData();

            // encode clipboard content
            System.IO.MemoryStream msClipboardData = new System.IO.MemoryStream();
            // populate msClipboardData with strClipboardString contents
            XmlTextWriter xtwClipboardData = new XmlTextWriter(msClipboardData, null);

            xtwClipboardData.WriteString(strClipboardString);
            xtwClipboardData.Close();
            string strTransformedClipboardString = System.Text.ASCIIEncoding.ASCII.GetString(msClipboardData.ToArray()); // new XmlTextReader(xtwClipboardData).ReadInnerXml();

            // at the moment because I am not able to directly inject the newline element in the middle of this string, I have to add it manual to the selected text (with the user having to Save are reload the page)
            // when doing this transformation we also have to clean the clipboard so that we don't get two pastes
            // we also check to see if the encoding changed anything
            if (strClipboardString.IndexOf(Environment.NewLine) > -1 || strTransformedClipboardString != strClipboardString)
            {
                authentic.setCurrentSelectedText(axActiveAuthenticControl, strTransformedClipboardString);
                utils.clipboard.SetClipboardData("");   // we have to clean it or the Authentic control will paste the content
            }
            else
            {
                utils.clipboard.SetClipboardData(strClipboardString); // under normal circuntances there is no need to clear the clipboard and we can just paste the (normalized) string
            }
        }
예제 #2
0
        public static void setCurrentSelectedText(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject, string strTextToSet)
        {
            // We need to handle the case when the text that is being added
            // has newlines in it.  We want to preserve the user's formatting
            // when it goes onto the altova control.
            if (strTextToSet.IndexOf(Environment.NewLine) > -1)
            {
                string strText = strTextToSet;

                while (strText.IndexOf(Environment.NewLine) > -1)
                {
                    int    newlinePos = strText.IndexOf(Environment.NewLine);
                    string tmp        = strText.Substring(0, newlinePos);

                    // We need to remove the newline as well from the current string
                    strText = strText.Remove(0, newlinePos + Environment.NewLine.Length);
                    setCurrentSelectedText(axTargetAuthenticObject, tmp);
                    authentic.authentic_InsertNewLine(axTargetAuthenticObject);
                }

                // Add the last line
                if (!strText.Trim().Equals(""))
                {
                    setCurrentSelectedText(axTargetAuthenticObject, strText);
                }
            }
            else
            {
                axTargetAuthenticObject.AuthenticView.Selection.Text = strTextToSet;
            }
        }
예제 #3
0
 public static void authentic_SelectNextTag(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject)
 {
     if (axTargetAuthenticObject.AuthenticView.Selection.SelectNext(XMLSPYPLUGINLib.SPYAuthenticElementKind.spyAuthenticTag) != null)
     {
         axTargetAuthenticObject.AuthenticView.Selection.SelectNext(XMLSPYPLUGINLib.SPYAuthenticElementKind.spyAuthenticTag).Select();
     }
 }
예제 #4
0
 public static void loadXmlFileInTargetAuthenticView(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject, string urlToXml, string urlToXsd, string urlToSps)
 {
     try
     {
         if (File.Exists(urlToXsd) &&
             File.Exists(urlToXml) &&
             File.Exists(urlToSps))
         {
             axTargetAuthenticObject.SchemaLoadObject.URL     = urlToXsd;
             axTargetAuthenticObject.DesignDataLoadObject.URL = urlToSps;
             axTargetAuthenticObject.XMLDataLoadObject.URL    = urlToXml;
             axTargetAuthenticObject.XMLDataSaveUrl           = urlToXml;
             axTargetAuthenticObject.EntryHelpersEnabled      = true;
             axTargetAuthenticObject.AllowDrop = true;
             axTargetAuthenticObject.StartEditing();
             axTargetAuthenticObject.Visible = true;
         }
         else
         {
             axTargetAuthenticObject.Visible = false;
         }
     }
     catch (Exception e)
     {
         axTargetAuthenticObject.Visible = false;
         MessageBox.Show("Error in loadXmlFileInTargetAuthenticView: " + e.Message);
     }
 }
예제 #5
0
 private void checkForEnterAndInsertNewLine(AxXMLSPYPLUGINLib.AxAuthentic axActiveAuthenticControl, char cKeyPressed)
 {
     if (0x0d == cKeyPressed)                    // 0x0d (13) Enter
     {
         utils.authentic.authentic_InsertNewLine(axActiveAuthenticControl);
     }
 }
예제 #6
0
 /// <summary>
 /// Description: This method is used to add a newline into the specified authentic object
 ///
 /// History:
 ///   11/25/2006 - Mike : Fixed a bug where the cursor wasn't going to the added newline
 /// </summary>
 /// <param name="axTargetAuthenticObject"></param>
 public static void authentic_InsertNewLine(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject)
 {
     XMLSPYPLUGINLib.AuthenticRange ar = axTargetAuthenticObject.AuthenticView.Selection;
     authentic_InsertElementInCurrentSelectionPos_spyAuthenticInsertAt(axTargetAuthenticObject, "newline");
     axTargetAuthenticObject.AuthenticView.Selection = ar;
     axTargetAuthenticObject.AuthenticView.Selection =
         axTargetAuthenticObject.AuthenticView.Selection.GotoNextCursorPosition();
 }
예제 #7
0
 // This sets the cursor to the begining on the previous Tag
 public static void authentic_GotoPreviousTag(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject)
 {
     if (axTargetAuthenticObject.AuthenticView.Selection.SelectPrevious(XMLSPYPLUGINLib.SPYAuthenticElementKind.spyAuthenticTag) != null)
     {
         axTargetAuthenticObject.AuthenticView.Selection.SelectPrevious(XMLSPYPLUGINLib.SPYAuthenticElementKind.spyAuthenticTag).Select();
     }
     axTargetAuthenticObject.SelectionSet(axTargetAuthenticObject.CurrentSelection.Start, 0, null, 0);
 }
예제 #8
0
 public static void authentic_SelectPreviousTag(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject)
 {
     try
     {
         axTargetAuthenticObject.AuthenticView.Selection.SelectPrevious(XMLSPYPLUGINLib.SPYAuthenticElementKind.spyAuthenticTag).Select();
     }
     catch { }
 }
예제 #9
0
 public static void authentic_SelectNextWord(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject)
 {
     try
     {
         axTargetAuthenticObject.AuthenticView.Selection.SelectNext(XMLSPYPLUGINLib.SPYAuthenticElementKind.spyAuthenticWord).Select();
     }
     catch { }
 }
예제 #10
0
 static XMLSPYPLUGINLib.XMLData findXmlDataRecursively(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject, string strElementToFind)
 {
     XMLSPYPLUGINLib.XMLData xdXmlData = axTargetAuthenticObject.AuthenticView.WholeDocument.FirstXMLData;
     while (xdXmlData.Name != strElementToFind)
     {
         xdXmlData = xdXmlData.Parent;
     }
     return(xdXmlData);
 }
예제 #11
0
        private void axAuthentic1_SelectionChanged(object sender, System.EventArgs e)
        {
            axAuthentic1.Select();
            AxXMLSPYPLUGINLib.AxAuthentic       axAuth  = (AxXMLSPYPLUGINLib.AxAuthentic)sender;
            XMLSPYPLUGINLib.AuthenticEventClass auEvent = (XMLSPYPLUGINLib.AuthenticEventClass)axAuth.@event;

            txtDebugInformation.Text = auEvent.keyCode + txtDebugInformation.Text;

            return;
        }
예제 #12
0
 private void loadXmlFileInTargetAuthenticView(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject, string urlToXml, string urlToXsd, string urlToSps)
 {
     axTargetAuthenticObject.SchemaLoadObject.URL     = urlToXsd;
     axTargetAuthenticObject.DesignDataLoadObject.URL = urlToSps;
     axTargetAuthenticObject.XMLDataLoadObject.URL    = urlToXml;
     axTargetAuthenticObject.XMLDataSaveUrl           = urlToXml;
     axTargetAuthenticObject.EntryHelpersEnabled      = true;
     axTargetAuthenticObject.AllowDrop = true;
     axTargetAuthenticObject.StartEditing();
 }
예제 #13
0
 private void checkForCtrlVandInsertDataFromClipboard(AxXMLSPYPLUGINLib.AxAuthentic axActiveAuthenticControl, char cKeyPressed, bool bCheckForImages)
 {
     if (0x56 == cKeyPressed) // 0x56 (86) V
     {
         if (bLeftCtrlDown)   // if the left control key is pressed
         {
             if (true == bCheckForImages && true == utils.clipboard.isClipboardDataAnBitmap())
             {
                 insertImageFromClipboard();
             }
             else
             {
                 insertTextFromClipboard(axActiveAuthenticControl);
             }
         }
     }
 }
예제 #14
0
 public static void authentic_InsertImage(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject, string strPathToImage)
 {
     if ("" != axTargetAuthenticObject.AuthenticView.Selection.Text)         // if there is some text selected, we have to select the next item
     {
         // move this into a method call authentic_ClearCurrentSelection
         axTargetAuthenticObject.AuthenticView.Selection =
             axTargetAuthenticObject.AuthenticView.Selection.GotoNextCursorPosition();
     }
     // XMLSPYPLUGINLib.AuthenticRange ar = axTargetAuthenticObject.AuthenticView.Selection;
     if (true == authentic_InsertElementInCurrentSelectionPos_spyAuthenticInsertBefore(axTargetAuthenticObject, "img") &&
         (axTargetAuthenticObject.AuthenticView.Selection.FirstXMLData.Name == "src"))
     {
         axTargetAuthenticObject.AuthenticView.Selection.FirstXMLData.TextValue = strPathToImage;
         authentic.authentic_GotoNextTag(axTargetAuthenticObject);
         // this authentic_GotoNextTag is sort of working since it is removing the focus from the img's src tag entry area, but it is not putting the focus after it
     }
     else
     {
         MessageBox.Show("Could not paste image due to a bug in the code. Please select some text and try again");
         //this bit is not working
         //authentic_SelectNextTag(axTargetAuthenticObject); // it now needs to be SelectNextTag due to changes in the 2007 Altova component
         //axTargetAuthenticObject.AuthenticView.Selection.Text = strPathToImage;
     }
 }
예제 #15
0
 public static void authentic_InsertElementInCurrentSelectionPos(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject, string strElementToInsert)
 {
     axTargetAuthenticObject.AuthenticView.Selection.PerformAction(XMLSPYPLUGINLib.SpyAuthenticActions.spyAuthenticInsertAt, strElementToInsert);
 }
예제 #16
0
 public static void authentic_InsertNewLine(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject)
 {
     authentic_InsertElementInCurrentSelectionPos(axTargetAuthenticObject, "newline");
     axTargetAuthenticObject.SelectionSet(axTargetAuthenticObject.CurrentSelection.Start, 0, null, 0);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ascxViewFindingsBydate));
     this.axAuthentic_SelectedFinding = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.label1 = new System.Windows.Forms.Label();
     this.cbCurrentProjects = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.lvFindingsInProject = new System.Windows.Forms.ListView();
     this.chDateModified = new System.Windows.Forms.ColumnHeader();
     this.chFinding = new System.Windows.Forms.ColumnHeader();
     this.btReloadFindingFromTempFile = new System.Windows.Forms.Button();
     this.lbTempFileLocation = new System.Windows.Forms.Label();
     this.btSaveFinding = new System.Windows.Forms.Button();
     this.label3 = new System.Windows.Forms.Label();
     this.lbUnsavedData = new System.Windows.Forms.Label();
     this.lblFindingSaved = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.cbEditMode = new System.Windows.Forms.ComboBox();
     this.txtSelectedFinding = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_SelectedFinding)).BeginInit();
     this.SuspendLayout();
     //
     // axAuthentic_SelectedFinding
     //
     this.axAuthentic_SelectedFinding.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.axAuthentic_SelectedFinding.Enabled = true;
     this.axAuthentic_SelectedFinding.Location = new System.Drawing.Point(336, 64);
     this.axAuthentic_SelectedFinding.Name = "axAuthentic_SelectedFinding";
     this.axAuthentic_SelectedFinding.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_SelectedFinding.OcxState")));
     this.axAuthentic_SelectedFinding.Size = new System.Drawing.Size(760, 288);
     this.axAuthentic_SelectedFinding.TabIndex = 25;
     this.axAuthentic_SelectedFinding.SelectionChanged += new System.EventHandler(this.axAuthentic_SelectedFinding_SelectionChanged);
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(336, 28);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(192, 24);
     this.label1.TabIndex = 26;
     this.label1.Text = "Finding:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // cbCurrentProjects
     //
     this.cbCurrentProjects.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbCurrentProjects.Location = new System.Drawing.Point(0, 32);
     this.cbCurrentProjects.Name = "cbCurrentProjects";
     this.cbCurrentProjects.Size = new System.Drawing.Size(328, 21);
     this.cbCurrentProjects.TabIndex = 27;
     this.cbCurrentProjects.SelectedIndexChanged += new System.EventHandler(this.cbCurrentProjects_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(0, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(96, 24);
     this.label2.TabIndex = 26;
     this.label2.Text = "Select Project";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lvFindingsInProject
     //
     this.lvFindingsInProject.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
         | System.Windows.Forms.AnchorStyles.Left)));
     this.lvFindingsInProject.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
                                                                                           this.chDateModified,
                                                                                           this.chFinding});
     this.lvFindingsInProject.FullRowSelect = true;
     this.lvFindingsInProject.Location = new System.Drawing.Point(0, 64);
     this.lvFindingsInProject.MultiSelect = false;
     this.lvFindingsInProject.Name = "lvFindingsInProject";
     this.lvFindingsInProject.Size = new System.Drawing.Size(328, 288);
     this.lvFindingsInProject.Sorting = System.Windows.Forms.SortOrder.Descending;
     this.lvFindingsInProject.TabIndex = 28;
     this.lvFindingsInProject.View = System.Windows.Forms.View.Details;
     this.lvFindingsInProject.SelectedIndexChanged += new System.EventHandler(this.lvFindingsInProject_SelectedIndexChanged);
     //
     // chDateModified
     //
     this.chDateModified.Text = "Date Modified";
     this.chDateModified.Width = 100;
     //
     // chFinding
     //
     this.chFinding.Text = "Finding";
     this.chFinding.Width = 224;
     //
     // btReloadFindingFromTempFile
     //
     this.btReloadFindingFromTempFile.Location = new System.Drawing.Point(552, 8);
     this.btReloadFindingFromTempFile.Name = "btReloadFindingFromTempFile";
     this.btReloadFindingFromTempFile.Size = new System.Drawing.Size(168, 24);
     this.btReloadFindingFromTempFile.TabIndex = 29;
     this.btReloadFindingFromTempFile.Text = "Reload Finding from Temp File";
     this.btReloadFindingFromTempFile.Click += new System.EventHandler(this.btReloadFindingFromTempFile_Click);
     //
     // lbTempFileLocation
     //
     this.lbTempFileLocation.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.lbTempFileLocation.Location = new System.Drawing.Point(400, 32);
     this.lbTempFileLocation.Name = "lbTempFileLocation";
     this.lbTempFileLocation.Size = new System.Drawing.Size(512, 32);
     this.lbTempFileLocation.TabIndex = 30;
     this.lbTempFileLocation.Text = "...";
     this.lbTempFileLocation.Click += new System.EventHandler(this.lbTempFileLocation_Click);
     //
     // btSaveFinding
     //
     this.btSaveFinding.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveFinding.Location = new System.Drawing.Point(992, 8);
     this.btSaveFinding.Name = "btSaveFinding";
     this.btSaveFinding.Size = new System.Drawing.Size(104, 32);
     this.btSaveFinding.TabIndex = 29;
     this.btSaveFinding.Text = "Save Finding";
     this.btSaveFinding.Click += new System.EventHandler(this.btSaveFinding_Click);
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(728, 8);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(176, 32);
     this.label3.TabIndex = 30;
     this.label3.Text = "use this if you want to change the xml file externaly (for example to spell check" +
         " it)";
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location = new System.Drawing.Point(912, 16);
     this.lbUnsavedData.Name = "lbUnsavedData";
     this.lbUnsavedData.Size = new System.Drawing.Size(56, 24);
     this.lbUnsavedData.TabIndex = 31;
     this.lbUnsavedData.Text = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible = false;
     //
     // lblFindingSaved
     //
     this.lblFindingSaved.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblFindingSaved.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblFindingSaved.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(192)), ((System.Byte)(0)));
     this.lblFindingSaved.Location = new System.Drawing.Point(912, 16);
     this.lblFindingSaved.Name = "lblFindingSaved";
     this.lblFindingSaved.Size = new System.Drawing.Size(56, 24);
     this.lblFindingSaved.TabIndex = 32;
     this.lblFindingSaved.Text = "Findings Saved";
     this.lblFindingSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblFindingSaved.Visible = false;
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(336, 13);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(64, 16);
     this.label4.TabIndex = 33;
     this.label4.Text = "Edit Mode:";
     //
     // cbEditMode
     //
     this.cbEditMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbEditMode.Items.AddRange(new object[] {
                                                     "Authentic",
                                                     "Notepad"});
     this.cbEditMode.Location = new System.Drawing.Point(408, 9);
     this.cbEditMode.Name = "cbEditMode";
     this.cbEditMode.Size = new System.Drawing.Size(81, 21);
     this.cbEditMode.TabIndex = 34;
     this.cbEditMode.SelectedIndexChanged += new System.EventHandler(this.cbEditMode_SelectedIndexChanged);
     //
     // txtSelectedFinding
     //
     this.txtSelectedFinding.AcceptsReturn = true;
     this.txtSelectedFinding.AcceptsTab = true;
     this.txtSelectedFinding.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.txtSelectedFinding.Location = new System.Drawing.Point(336, 64);
     this.txtSelectedFinding.Multiline = true;
     this.txtSelectedFinding.Name = "txtSelectedFinding";
     this.txtSelectedFinding.Size = new System.Drawing.Size(760, 288);
     this.txtSelectedFinding.TabIndex = 35;
     this.txtSelectedFinding.Text = "";
     //
     // ascxViewFindingsBydate
     //
     this.Controls.Add(this.txtSelectedFinding);
     this.Controls.Add(this.cbEditMode);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.lblFindingSaved);
     this.Controls.Add(this.lbUnsavedData);
     this.Controls.Add(this.lbTempFileLocation);
     this.Controls.Add(this.btReloadFindingFromTempFile);
     this.Controls.Add(this.lvFindingsInProject);
     this.Controls.Add(this.cbCurrentProjects);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.axAuthentic_SelectedFinding);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.btSaveFinding);
     this.Controls.Add(this.label3);
     this.Name = "ascxViewFindingsBydate";
     this.Size = new System.Drawing.Size(1104, 360);
     this.Load += new System.EventHandler(this.ascxViewFindingsBydate_Load);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_SelectedFinding)).EndInit();
     this.ResumeLayout(false);
 }
예제 #18
0
 public static string getCurrentSelectedText(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject)
 {
     return(axTargetAuthenticObject.AuthenticView.Selection.Text);
 }
예제 #19
0
        private void processAuthenticKeyboardEvent(AxXMLSPYPLUGINLib.AxAuthentic axActiveAuthenticControl, char cKeyPressed, utils.LocalWindowsHook lwhSender)
        {
            try
            {
                // find out which control is currently selected
                string strCurrentSelectedControl = "";
                if (axActiveAuthenticControl.AuthenticView.Selection.FirstXMLData.kind != XMLSPYPLUGINLib.SPYXMLDataKind.spyXMLDataText)
                {
                    strCurrentSelectedControl = axActiveAuthenticControl.AuthenticView.Selection.FirstXMLData.Name;
                }
                else
                if (axActiveAuthenticControl.AuthenticView.Selection.FirstXMLData.Parent.kind != XMLSPYPLUGINLib.SPYXMLDataKind.spyXMLDataText)
                {
                    strCurrentSelectedControl = axActiveAuthenticControl.AuthenticView.Selection.FirstXMLData.Parent.Name;
                }
                else
                {
                    strCurrentSelectedControl = "Error in recognizing SPYXMLDataKind";
                }
                // apply Gui Funcionality
                switch (strCurrentSelectedControl)
                {
                case "value":                       // this could be the Target DNS or IP
                    string strParentControl = axActiveAuthenticControl.AuthenticView.Selection.FirstXMLData.Parent.Name;
                    if (cKeyPressed == 0x0d)
                    {
                        // 05-Feb-07: [Dinis], This is a hack to make the Enter work with the DnsName and IP elements (which use an attribute for its value and don't work in the new version of the Authentic component)

                        // get the value of the current element which should be either DnsValue or IP
                        string strValueOfCurrentElement = axActiveAuthenticControl.AuthenticView.Selection.FirstXMLData.TextValue;
                        // get the parent.parent object which should be a 'Target' Element
                        XMLSPYPLUGINLib.XMLData xdData = axActiveAuthenticControl.AuthenticView.Selection.FirstXMLData.Parent.Parent;
                        if (xdData.Name == "Target")
                        {
                            // Now we are going to create manually either the 'DnsValue' or the 'IP' Element (the name we need is conveiniently in strParentControl)
                            XMLSPYPLUGINLib.XMLData xdXmlDataElement = axActiveAuthenticControl.CreateChild(XMLSPYPLUGINLib.SPYXMLDataKind.spyXMLDataElement);
                            xdXmlDataElement.Name = strParentControl;
                            // create the atribute 'value'
                            XMLSPYPLUGINLib.XMLData xdXmlDataAttribute = axActiveAuthenticControl.CreateChild(XMLSPYPLUGINLib.SPYXMLDataKind.spyXMLDataAttr);
                            xdXmlDataAttribute.Name = "value";
                            // add addit it to the xdXmlDataElement
                            xdXmlDataElement.AppendChild(xdXmlDataAttribute);
                            // now that we have an 'DnsValue' or 'IP' element ready we need to find the correct location to insert it (note that due to the current xsd you cannot append it at the end)
                            // Get first Child
                            XMLSPYPLUGINLib.XMLData xdChild = xdData.GetFirstChild(XMLSPYPLUGINLib.SPYXMLDataKind.spyXMLDataElement);
                            // and go though all childs until we find the current one
                            for (int iChildId = 0; iChildId < xdData.CountChildren(); iChildId++)
                            {
                                // at lack of better choise we will use the 'value' attribute to try to fing the location to insert (the only problem will happen if there is a duplicate 'value' (which would be a mistake in this case))
                                if (xdChild.Name == strParentControl && getAttributeFromElement(xdChild, "value") == strValueOfCurrentElement)
                                {
                                    // This will place the new Element before the current one
                                    xdData.InsertChild(xdXmlDataElement);
                                    // xdData.AppendChild(xdXmlDataElement);   /// this one doesn't work since it all puts it at the end
                                    break;
                                }
                                // move to the next child (we need to do this so that the InsertChild works as expected
                                if (iChildId < xdData.CountChildren() - 1)                // don't go to the next child if we are on the last one
                                {
                                    xdChild = xdData.GetNextChild();
                                }
                            }
                        }
                    }
                    break;

                    switch (strParentControl)
                    {
                    case "DnsName":
                        authentic.authentic_GotoNextTag(axActiveAuthenticControl);
                        authentic.authentic_GotoNextTag(axActiveAuthenticControl);
                        authentic.authentic_GotoNextTag(axActiveAuthenticControl);
                        authentic.authentic_GotoNextTag(axActiveAuthenticControl);

                        ///string strText =

                        string strParentContol2 = axActiveAuthenticControl.AuthenticView.Selection.FirstXMLData.Name;

                        // bool bResulta = authentic.authentic_InsertElementInCurrentSelectionPos_spyAuthenticInsertBefore(axActiveAuthenticControl, "DnsName");
                        break;

                    case "IP":
                        break;
                    }
                    break;

                case "level2":
                case "level3":
                    checkForCtrlVandInsertDataFromClipboard(axActiveAuthenticControl, cKeyPressed, false);
                    checkForEnterAndInsertNewLine(axActiveAuthenticControl, cKeyPressed);

                    //if (0x0d == cKeyPressed)			// 0x0d (13) Enter
                    //	utils.authentic.authentic_InsertNewLine(axActiveAuthenticControl);
                    break;

                case "AdittionalDetails":
                    checkForCtrlVandInsertDataFromClipboard(axActiveAuthenticControl, cKeyPressed, true);
                    if (0x08 == cKeyPressed)                                                    // 0x08 (08) Del
                    {
                        break;
                    }
                    checkForEnterAndInsertNewLine(axActiveAuthenticControl, cKeyPressed);
                    //if (0x0d == cKeyPressed)			// 0x0d (13) Enter
                    //	utils.authentic.authentic_InsertNewLine(axActiveAuthenticControl);
                    break;
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);      // this was being thrown during normal ORG usage
            }
        }
예제 #20
0
 public static void authentic_InsertImage(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject, string strPathToImage)
 {
     authentic_InsertElementInCurrentSelectionPos(axTargetAuthenticObject, "img");
     authentic_SelectPreviousTag(axTargetAuthenticObject);
     axTargetAuthenticObject.AuthenticView.Selection.Text = strPathToImage;
 }
예제 #21
0
 /// <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(frmAuthenticTest));
     this.axAuthentic1 = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.label1 = new System.Windows.Forms.Label();
     this.txtXsdFile = new System.Windows.Forms.TextBox();
     this.txtXmlFile = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtSpsFile = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.btTest = new System.Windows.Forms.Button();
     this.lbTextChanged = new System.Windows.Forms.Label();
     this.lbKeyPressed = new System.Windows.Forms.Label();
     this.btnApplyHooks = new System.Windows.Forms.Button();
     this.txtDebugInformation = new System.Windows.Forms.TextBox();
     this.lbCurrentSelectedControl = new System.Windows.Forms.Label();
     this.btSelectPreviousElement = new System.Windows.Forms.Button();
     this.btSelectPreviousWord = new System.Windows.Forms.Button();
     this.btAssignIssueID = new System.Windows.Forms.Button();
     this.btTest2 = new System.Windows.Forms.Button();
     this.lbLeftShift = new System.Windows.Forms.Label();
     this.lbLeftCtrl = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic1)).BeginInit();
     this.SuspendLayout();
     //
     // axAuthentic1
     //
     this.axAuthentic1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.axAuthentic1.Enabled = true;
     this.axAuthentic1.Location = new System.Drawing.Point(0, 88);
     this.axAuthentic1.Name = "axAuthentic1";
     this.axAuthentic1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic1.OcxState")));
     this.axAuthentic1.Size = new System.Drawing.Size(744, 320);
     this.axAuthentic1.TabIndex = 0;
     this.axAuthentic1.SelectionChanged += new System.EventHandler(this.axAuthentic1_SelectionChanged);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 16);
     this.label1.TabIndex = 1;
     this.label1.Text = "XSD file:";
     this.label1.Visible = false;
     //
     // txtXsdFile
     //
     this.txtXsdFile.Location = new System.Drawing.Point(56, 8);
     this.txtXsdFile.Name = "txtXsdFile";
     this.txtXsdFile.Size = new System.Drawing.Size(272, 20);
     this.txtXsdFile.TabIndex = 2;
     this.txtXsdFile.Visible = false;
     //
     // txtXmlFile
     //
     this.txtXmlFile.Location = new System.Drawing.Point(56, 32);
     this.txtXmlFile.Name = "txtXmlFile";
     this.txtXmlFile.Size = new System.Drawing.Size(272, 20);
     this.txtXmlFile.TabIndex = 2;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 34);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(48, 16);
     this.label2.TabIndex = 1;
     this.label2.Text = "Xml file:";
     //
     // txtSpsFile
     //
     this.txtSpsFile.Location = new System.Drawing.Point(56, 56);
     this.txtSpsFile.Name = "txtSpsFile";
     this.txtSpsFile.Size = new System.Drawing.Size(272, 20);
     this.txtSpsFile.TabIndex = 2;
     this.txtSpsFile.Visible = false;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(7, 56);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(48, 16);
     this.label3.TabIndex = 1;
     this.label3.Text = "SPS file:";
     this.label3.Visible = false;
     //
     // btTest
     //
     this.btTest.Location = new System.Drawing.Point(496, 32);
     this.btTest.Name = "btTest";
     this.btTest.Size = new System.Drawing.Size(72, 24);
     this.btTest.TabIndex = 3;
     this.btTest.Text = "Test";
     this.btTest.Click += new System.EventHandler(this.btTest_Click);
     //
     // lbTextChanged
     //
     this.lbTextChanged.ForeColor = System.Drawing.Color.Red;
     this.lbTextChanged.Location = new System.Drawing.Point(384, 32);
     this.lbTextChanged.Name = "lbTextChanged";
     this.lbTextChanged.Size = new System.Drawing.Size(80, 16);
     this.lbTextChanged.TabIndex = 4;
     this.lbTextChanged.Text = "Text Changed";
     this.lbTextChanged.Visible = false;
     //
     // lbKeyPressed
     //
     this.lbKeyPressed.Location = new System.Drawing.Point(384, 48);
     this.lbKeyPressed.Name = "lbKeyPressed";
     this.lbKeyPressed.Size = new System.Drawing.Size(80, 16);
     this.lbKeyPressed.TabIndex = 5;
     this.lbKeyPressed.Text = "...";
     //
     // btnApplyHooks
     //
     this.btnApplyHooks.Location = new System.Drawing.Point(576, 32);
     this.btnApplyHooks.Name = "btnApplyHooks";
     this.btnApplyHooks.Size = new System.Drawing.Size(104, 24);
     this.btnApplyHooks.TabIndex = 6;
     this.btnApplyHooks.Text = "Apply Hooks";
     //
     // txtDebugInformation
     //
     this.txtDebugInformation.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.txtDebugInformation.Location = new System.Drawing.Point(752, 88);
     this.txtDebugInformation.Multiline = true;
     this.txtDebugInformation.Name = "txtDebugInformation";
     this.txtDebugInformation.Size = new System.Drawing.Size(136, 312);
     this.txtDebugInformation.TabIndex = 7;
     //
     // lbCurrentSelectedControl
     //
     this.lbCurrentSelectedControl.Location = new System.Drawing.Point(384, 72);
     this.lbCurrentSelectedControl.Name = "lbCurrentSelectedControl";
     this.lbCurrentSelectedControl.Size = new System.Drawing.Size(328, 16);
     this.lbCurrentSelectedControl.TabIndex = 5;
     this.lbCurrentSelectedControl.Text = "...";
     //
     // btSelectPreviousElement
     //
     this.btSelectPreviousElement.Location = new System.Drawing.Point(336, 56);
     this.btSelectPreviousElement.Name = "btSelectPreviousElement";
     this.btSelectPreviousElement.Size = new System.Drawing.Size(16, 24);
     this.btSelectPreviousElement.TabIndex = 8;
     this.btSelectPreviousElement.Text = "<";
     this.btSelectPreviousElement.Click += new System.EventHandler(this.btSelectPreviousElement_Click);
     //
     // btSelectPreviousWord
     //
     this.btSelectPreviousWord.Location = new System.Drawing.Point(336, 24);
     this.btSelectPreviousWord.Name = "btSelectPreviousWord";
     this.btSelectPreviousWord.Size = new System.Drawing.Size(16, 24);
     this.btSelectPreviousWord.TabIndex = 8;
     this.btSelectPreviousWord.Text = "w";
     this.btSelectPreviousWord.Click += new System.EventHandler(this.btSelectPreviousWord_Click);
     //
     // btAssignIssueID
     //
     this.btAssignIssueID.Location = new System.Drawing.Point(376, 0);
     this.btAssignIssueID.Name = "btAssignIssueID";
     this.btAssignIssueID.Size = new System.Drawing.Size(104, 24);
     this.btAssignIssueID.TabIndex = 9;
     this.btAssignIssueID.Text = "Assign Issue ID";
     this.btAssignIssueID.Click += new System.EventHandler(this.btAssignIssueID_Click);
     //
     // btTest2
     //
     this.btTest2.Location = new System.Drawing.Point(706, 33);
     this.btTest2.Name = "btTest2";
     this.btTest2.Size = new System.Drawing.Size(75, 23);
     this.btTest2.TabIndex = 10;
     this.btTest2.Text = "test2";
     this.btTest2.UseVisualStyleBackColor = true;
     this.btTest2.Click += new System.EventHandler(this.btTest2_Click);
     //
     // lbLeftShift
     //
     this.lbLeftShift.AutoSize = true;
     this.lbLeftShift.Location = new System.Drawing.Point(466, 69);
     this.lbLeftShift.Name = "lbLeftShift";
     this.lbLeftShift.Size = new System.Drawing.Size(49, 13);
     this.lbLeftShift.TabIndex = 11;
     this.lbLeftShift.Text = "Left Shift";
     this.lbLeftShift.Visible = false;
     //
     // lbLeftCtrl
     //
     this.lbLeftCtrl.AutoSize = true;
     this.lbLeftCtrl.Location = new System.Drawing.Point(531, 69);
     this.lbLeftCtrl.Name = "lbLeftCtrl";
     this.lbLeftCtrl.Size = new System.Drawing.Size(43, 13);
     this.lbLeftCtrl.TabIndex = 11;
     this.lbLeftCtrl.Text = "Left Ctrl";
     this.lbLeftCtrl.Visible = false;
     //
     // frmAuthenticTest
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(896, 406);
     this.Controls.Add(this.lbLeftCtrl);
     this.Controls.Add(this.lbLeftShift);
     this.Controls.Add(this.btTest2);
     this.Controls.Add(this.btAssignIssueID);
     this.Controls.Add(this.btSelectPreviousElement);
     this.Controls.Add(this.txtDebugInformation);
     this.Controls.Add(this.btnApplyHooks);
     this.Controls.Add(this.lbKeyPressed);
     this.Controls.Add(this.lbTextChanged);
     this.Controls.Add(this.txtXmlFile);
     this.Controls.Add(this.btTest);
     this.Controls.Add(this.txtXsdFile);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.axAuthentic1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.txtSpsFile);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.lbCurrentSelectedControl);
     this.Controls.Add(this.btSelectPreviousWord);
     this.KeyPreview = true;
     this.Name = "frmAuthenticTest";
     this.Text = "AuthenticTest";
     this.Load += new System.EventHandler(this.AuthenticTest_Load);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic1)).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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ascxRecommendations));
     this.axAuthentic_Recomendations = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.groupBox1                  = new System.Windows.Forms.GroupBox();
     this.btReloadDB                 = new System.Windows.Forms.Button();
     this.btSelectNextTag            = new System.Windows.Forms.Button();
     this.btInsertNewLine            = new System.Windows.Forms.Button();
     this.btInsertImageFromClipboard = new System.Windows.Forms.Button();
     this.btSaveRecommendations      = new System.Windows.Forms.Button();
     this.btSelectPreviousTag        = new System.Windows.Forms.Button();
     this.lbRecommendationsSaved     = new System.Windows.Forms.Label();
     this.lbUnsavedData              = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_Recomendations)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // axAuthentic_Recomendations
     //
     this.axAuthentic_Recomendations.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.axAuthentic_Recomendations.Enabled           = true;
     this.axAuthentic_Recomendations.Location          = new System.Drawing.Point(8, 80);
     this.axAuthentic_Recomendations.Name              = "axAuthentic_Recomendations";
     this.axAuthentic_Recomendations.OcxState          = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_Recomendations.OcxState")));
     this.axAuthentic_Recomendations.Size              = new System.Drawing.Size(576, 256);
     this.axAuthentic_Recomendations.TabIndex          = 18;
     this.axAuthentic_Recomendations.SelectionChanged += new System.EventHandler(this.axAuthentic1_SelectionChanged);
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.lbRecommendationsSaved);
     this.groupBox1.Controls.Add(this.lbUnsavedData);
     this.groupBox1.Controls.Add(this.btReloadDB);
     this.groupBox1.Controls.Add(this.btSelectNextTag);
     this.groupBox1.Controls.Add(this.btInsertNewLine);
     this.groupBox1.Controls.Add(this.btInsertImageFromClipboard);
     this.groupBox1.Controls.Add(this.btSaveRecommendations);
     this.groupBox1.Controls.Add(this.btSelectPreviousTag);
     this.groupBox1.Location = new System.Drawing.Point(8, 8);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(576, 64);
     this.groupBox1.TabIndex = 17;
     this.groupBox1.TabStop  = false;
     //
     // btReloadDB
     //
     this.btReloadDB.Location = new System.Drawing.Point(240, 16);
     this.btReloadDB.Name     = "btReloadDB";
     this.btReloadDB.Size     = new System.Drawing.Size(48, 40);
     this.btReloadDB.TabIndex = 20;
     this.btReloadDB.Text     = "Reload DB";
     this.btReloadDB.Click   += new System.EventHandler(this.btReloadDB_Click);
     //
     // btSelectNextTag
     //
     this.btSelectNextTag.Location = new System.Drawing.Point(32, 16);
     this.btSelectNextTag.Name     = "btSelectNextTag";
     this.btSelectNextTag.Size     = new System.Drawing.Size(16, 40);
     this.btSelectNextTag.TabIndex = 5;
     this.btSelectNextTag.Text     = ">";
     this.btSelectNextTag.Click   += new System.EventHandler(this.btSelectNextTag_Click);
     //
     // btInsertNewLine
     //
     this.btInsertNewLine.Location = new System.Drawing.Point(56, 16);
     this.btInsertNewLine.Name     = "btInsertNewLine";
     this.btInsertNewLine.Size     = new System.Drawing.Size(64, 40);
     this.btInsertNewLine.TabIndex = 4;
     this.btInsertNewLine.Text     = "Insert New Line";
     this.btInsertNewLine.Click   += new System.EventHandler(this.btInsertNewLine_Click);
     //
     // btInsertImageFromClipboard
     //
     this.btInsertImageFromClipboard.Location = new System.Drawing.Point(128, 16);
     this.btInsertImageFromClipboard.Name     = "btInsertImageFromClipboard";
     this.btInsertImageFromClipboard.Size     = new System.Drawing.Size(104, 40);
     this.btInsertImageFromClipboard.TabIndex = 4;
     this.btInsertImageFromClipboard.Text     = "Paste Image from Clipboard";
     this.btInsertImageFromClipboard.Visible  = false;
     //
     // btSaveRecommendations
     //
     this.btSaveRecommendations.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveRecommendations.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btSaveRecommendations.Location = new System.Drawing.Point(424, 16);
     this.btSaveRecommendations.Name     = "btSaveRecommendations";
     this.btSaveRecommendations.Size     = new System.Drawing.Size(136, 40);
     this.btSaveRecommendations.TabIndex = 3;
     this.btSaveRecommendations.Text     = "Save Recommendations";
     this.btSaveRecommendations.Click   += new System.EventHandler(this.btSaveRecommendations_Click);
     //
     // btSelectPreviousTag
     //
     this.btSelectPreviousTag.Location = new System.Drawing.Point(8, 16);
     this.btSelectPreviousTag.Name     = "btSelectPreviousTag";
     this.btSelectPreviousTag.Size     = new System.Drawing.Size(16, 40);
     this.btSelectPreviousTag.TabIndex = 5;
     this.btSelectPreviousTag.Text     = "<";
     this.btSelectPreviousTag.Click   += new System.EventHandler(this.btSelectPreviousTag_Click);
     //
     // lbRecommendationsSaved
     //
     this.lbRecommendationsSaved.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbRecommendationsSaved.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lbRecommendationsSaved.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(192)), ((System.Byte)(0)));
     this.lbRecommendationsSaved.Location  = new System.Drawing.Point(360, 24);
     this.lbRecommendationsSaved.Name      = "lbRecommendationsSaved";
     this.lbRecommendationsSaved.Size      = new System.Drawing.Size(56, 24);
     this.lbRecommendationsSaved.TabIndex  = 21;
     this.lbRecommendationsSaved.Text      = "Findings Saved";
     this.lbRecommendationsSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbRecommendationsSaved.Visible   = false;
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location  = new System.Drawing.Point(360, 24);
     this.lbUnsavedData.Name      = "lbUnsavedData";
     this.lbUnsavedData.Size      = new System.Drawing.Size(56, 24);
     this.lbUnsavedData.TabIndex  = 22;
     this.lbUnsavedData.Text      = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible   = false;
     //
     // ascxRecommendations
     //
     this.Controls.Add(this.axAuthentic_Recomendations);
     this.Controls.Add(this.groupBox1);
     this.Name = "ascxRecommendations";
     this.Size = new System.Drawing.Size(592, 344);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_Recomendations)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #23
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(ascxProjects));
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.lbXmlBreaksXsdSchema = new System.Windows.Forms.Label();
     this.btSaveProjectMetadata = new System.Windows.Forms.Button();
     this.lblProjectsSaved = new System.Windows.Forms.Label();
     this.lbUnsavedData = new System.Windows.Forms.Label();
     this.axAuthentic_Project = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_Project)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.lbXmlBreaksXsdSchema);
     this.groupBox1.Controls.Add(this.btSaveProjectMetadata);
     this.groupBox1.Controls.Add(this.lblProjectsSaved);
     this.groupBox1.Controls.Add(this.lbUnsavedData);
     this.groupBox1.Location = new System.Drawing.Point(250, 8);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(342, 64);
     this.groupBox1.TabIndex = 15;
     this.groupBox1.TabStop = false;
     //
     // lbXmlBreaksXsdSchema
     //
     this.lbXmlBreaksXsdSchema.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbXmlBreaksXsdSchema.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbXmlBreaksXsdSchema.ForeColor = System.Drawing.Color.Red;
     this.lbXmlBreaksXsdSchema.Location = new System.Drawing.Point(14, 14);
     this.lbXmlBreaksXsdSchema.Name = "lbXmlBreaksXsdSchema";
     this.lbXmlBreaksXsdSchema.Size = new System.Drawing.Size(105, 40);
     this.lbXmlBreaksXsdSchema.TabIndex = 7;
     this.lbXmlBreaksXsdSchema.Text = "Xml breaks XSD schema!!";
     this.lbXmlBreaksXsdSchema.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolTip1.SetToolTip(this.lbXmlBreaksXsdSchema, "Click to view XSD errors");
     this.lbXmlBreaksXsdSchema.Visible = false;
     this.lbXmlBreaksXsdSchema.Click += new System.EventHandler(this.lbXmlBreaksXsdSchema_Click);
     //
     // btSaveProjectMetadata
     //
     this.btSaveProjectMetadata.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveProjectMetadata.Enabled = false;
     this.btSaveProjectMetadata.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btSaveProjectMetadata.Location = new System.Drawing.Point(190, 16);
     this.btSaveProjectMetadata.Name = "btSaveProjectMetadata";
     this.btSaveProjectMetadata.Size = new System.Drawing.Size(136, 40);
     this.btSaveProjectMetadata.TabIndex = 3;
     this.btSaveProjectMetadata.Text = "Save Project Metadata";
     this.btSaveProjectMetadata.Click += new System.EventHandler(this.btSaveProjectMetadata_Click);
     //
     // lblProjectsSaved
     //
     this.lblProjectsSaved.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblProjectsSaved.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblProjectsSaved.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.lblProjectsSaved.Location = new System.Drawing.Point(124, 15);
     this.lblProjectsSaved.Name = "lblProjectsSaved";
     this.lblProjectsSaved.Size = new System.Drawing.Size(56, 37);
     this.lblProjectsSaved.TabIndex = 8;
     this.lblProjectsSaved.Text = "Projects Saved";
     this.lblProjectsSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblProjectsSaved.Visible = false;
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location = new System.Drawing.Point(119, 12);
     this.lbUnsavedData.Name = "lbUnsavedData";
     this.lbUnsavedData.Size = new System.Drawing.Size(65, 40);
     this.lbUnsavedData.TabIndex = 7;
     this.lbUnsavedData.Text = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible = false;
     //
     // axAuthentic_Project
     //
     this.axAuthentic_Project.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.axAuthentic_Project.Enabled = true;
     this.axAuthentic_Project.Location = new System.Drawing.Point(8, 80);
     this.axAuthentic_Project.Name = "axAuthentic_Project";
     this.axAuthentic_Project.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_Project.OcxState")));
     this.axAuthentic_Project.Size = new System.Drawing.Size(584, 296);
     this.axAuthentic_Project.TabIndex = 16;
     this.axAuthentic_Project.SelectionChanged += new System.EventHandler(this.axAuthentic_Project_SelectionChanged);
     //
     // ascxProjects
     //
     this.Controls.Add(this.axAuthentic_Project);
     this.Controls.Add(this.groupBox1);
     this.Name = "ascxProjects";
     this.Size = new System.Drawing.Size(600, 384);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_Project)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ascxRecommendations));
     this.axAuthentic_Recomendations = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btReloadDB = new System.Windows.Forms.Button();
     this.btSelectNextTag = new System.Windows.Forms.Button();
     this.btInsertNewLine = new System.Windows.Forms.Button();
     this.btInsertImageFromClipboard = new System.Windows.Forms.Button();
     this.btSaveRecommendations = new System.Windows.Forms.Button();
     this.btSelectPreviousTag = new System.Windows.Forms.Button();
     this.lbRecommendationsSaved = new System.Windows.Forms.Label();
     this.lbUnsavedData = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_Recomendations)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // axAuthentic_Recomendations
     //
     this.axAuthentic_Recomendations.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.axAuthentic_Recomendations.Enabled = true;
     this.axAuthentic_Recomendations.Location = new System.Drawing.Point(8, 80);
     this.axAuthentic_Recomendations.Name = "axAuthentic_Recomendations";
     this.axAuthentic_Recomendations.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_Recomendations.OcxState")));
     this.axAuthentic_Recomendations.Size = new System.Drawing.Size(576, 256);
     this.axAuthentic_Recomendations.TabIndex = 18;
     this.axAuthentic_Recomendations.SelectionChanged += new System.EventHandler(this.axAuthentic1_SelectionChanged);
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
         | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.lbRecommendationsSaved);
     this.groupBox1.Controls.Add(this.lbUnsavedData);
     this.groupBox1.Controls.Add(this.btReloadDB);
     this.groupBox1.Controls.Add(this.btSelectNextTag);
     this.groupBox1.Controls.Add(this.btInsertNewLine);
     this.groupBox1.Controls.Add(this.btInsertImageFromClipboard);
     this.groupBox1.Controls.Add(this.btSaveRecommendations);
     this.groupBox1.Controls.Add(this.btSelectPreviousTag);
     this.groupBox1.Location = new System.Drawing.Point(8, 8);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(576, 64);
     this.groupBox1.TabIndex = 17;
     this.groupBox1.TabStop = false;
     //
     // btReloadDB
     //
     this.btReloadDB.Location = new System.Drawing.Point(240, 16);
     this.btReloadDB.Name = "btReloadDB";
     this.btReloadDB.Size = new System.Drawing.Size(48, 40);
     this.btReloadDB.TabIndex = 20;
     this.btReloadDB.Text = "Reload DB";
     this.btReloadDB.Click += new System.EventHandler(this.btReloadDB_Click);
     //
     // btSelectNextTag
     //
     this.btSelectNextTag.Location = new System.Drawing.Point(32, 16);
     this.btSelectNextTag.Name = "btSelectNextTag";
     this.btSelectNextTag.Size = new System.Drawing.Size(16, 40);
     this.btSelectNextTag.TabIndex = 5;
     this.btSelectNextTag.Text = ">";
     this.btSelectNextTag.Click += new System.EventHandler(this.btSelectNextTag_Click);
     //
     // btInsertNewLine
     //
     this.btInsertNewLine.Location = new System.Drawing.Point(56, 16);
     this.btInsertNewLine.Name = "btInsertNewLine";
     this.btInsertNewLine.Size = new System.Drawing.Size(64, 40);
     this.btInsertNewLine.TabIndex = 4;
     this.btInsertNewLine.Text = "Insert New Line";
     this.btInsertNewLine.Click += new System.EventHandler(this.btInsertNewLine_Click);
     //
     // btInsertImageFromClipboard
     //
     this.btInsertImageFromClipboard.Location = new System.Drawing.Point(128, 16);
     this.btInsertImageFromClipboard.Name = "btInsertImageFromClipboard";
     this.btInsertImageFromClipboard.Size = new System.Drawing.Size(104, 40);
     this.btInsertImageFromClipboard.TabIndex = 4;
     this.btInsertImageFromClipboard.Text = "Paste Image from Clipboard";
     this.btInsertImageFromClipboard.Visible = false;
     //
     // btSaveRecommendations
     //
     this.btSaveRecommendations.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveRecommendations.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btSaveRecommendations.Location = new System.Drawing.Point(424, 16);
     this.btSaveRecommendations.Name = "btSaveRecommendations";
     this.btSaveRecommendations.Size = new System.Drawing.Size(136, 40);
     this.btSaveRecommendations.TabIndex = 3;
     this.btSaveRecommendations.Text = "Save Recommendations";
     this.btSaveRecommendations.Click += new System.EventHandler(this.btSaveRecommendations_Click);
     //
     // btSelectPreviousTag
     //
     this.btSelectPreviousTag.Location = new System.Drawing.Point(8, 16);
     this.btSelectPreviousTag.Name = "btSelectPreviousTag";
     this.btSelectPreviousTag.Size = new System.Drawing.Size(16, 40);
     this.btSelectPreviousTag.TabIndex = 5;
     this.btSelectPreviousTag.Text = "<";
     this.btSelectPreviousTag.Click += new System.EventHandler(this.btSelectPreviousTag_Click);
     //
     // lbRecommendationsSaved
     //
     this.lbRecommendationsSaved.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbRecommendationsSaved.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lbRecommendationsSaved.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(192)), ((System.Byte)(0)));
     this.lbRecommendationsSaved.Location = new System.Drawing.Point(360, 24);
     this.lbRecommendationsSaved.Name = "lbRecommendationsSaved";
     this.lbRecommendationsSaved.Size = new System.Drawing.Size(56, 24);
     this.lbRecommendationsSaved.TabIndex = 21;
     this.lbRecommendationsSaved.Text = "Findings Saved";
     this.lbRecommendationsSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbRecommendationsSaved.Visible = false;
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location = new System.Drawing.Point(360, 24);
     this.lbUnsavedData.Name = "lbUnsavedData";
     this.lbUnsavedData.Size = new System.Drawing.Size(56, 24);
     this.lbUnsavedData.TabIndex = 22;
     this.lbUnsavedData.Text = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible = false;
     //
     // ascxRecommendations
     //
     this.Controls.Add(this.axAuthentic_Recomendations);
     this.Controls.Add(this.groupBox1);
     this.Name = "ascxRecommendations";
     this.Size = new System.Drawing.Size(592, 344);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_Recomendations)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #25
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(ascxExecutiveSummary));
     this.axAuthentic_ExecutiveSummary = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.btSaveReportContents         = new System.Windows.Forms.Button();
     this.lblReportContentsSaved       = new System.Windows.Forms.Label();
     this.groupBox1                     = new System.Windows.Forms.GroupBox();
     this.lbXmlBreaksXsdSchema          = new System.Windows.Forms.Label();
     this.lbUnsavedData                 = new System.Windows.Forms.Label();
     this.cbReportContentsTemplates     = new System.Windows.Forms.ComboBox();
     this.lbReportContentsTemplateLabel = new System.Windows.Forms.Label();
     this.groupBox2                     = new System.Windows.Forms.GroupBox();
     this.btReportContents_UseTemplate  = new System.Windows.Forms.Button();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_ExecutiveSummary)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // axAuthentic_ExecutiveSummary
     //
     this.axAuthentic_ExecutiveSummary.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.axAuthentic_ExecutiveSummary.Enabled           = true;
     this.axAuthentic_ExecutiveSummary.Location          = new System.Drawing.Point(8, 84);
     this.axAuthentic_ExecutiveSummary.Name              = "axAuthentic_ExecutiveSummary";
     this.axAuthentic_ExecutiveSummary.OcxState          = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_ExecutiveSummary.OcxState")));
     this.axAuthentic_ExecutiveSummary.Size              = new System.Drawing.Size(739, 280);
     this.axAuthentic_ExecutiveSummary.TabIndex          = 18;
     this.axAuthentic_ExecutiveSummary.SelectionChanged += new System.EventHandler(this.axAuthentic_ExecutiveSummary_SelectionChanged);
     //
     // btSaveReportContents
     //
     this.btSaveReportContents.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveReportContents.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btSaveReportContents.Location = new System.Drawing.Point(235, 16);
     this.btSaveReportContents.Name     = "btSaveReportContents";
     this.btSaveReportContents.Size     = new System.Drawing.Size(120, 40);
     this.btSaveReportContents.TabIndex = 3;
     this.btSaveReportContents.Text     = "Save Report Contents";
     this.btSaveReportContents.Click   += new System.EventHandler(this.btSaveExecutiveSummary_Click);
     //
     // lblReportContentsSaved
     //
     this.lblReportContentsSaved.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblReportContentsSaved.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblReportContentsSaved.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.lblReportContentsSaved.Location  = new System.Drawing.Point(118, 19);
     this.lblReportContentsSaved.Name      = "lblReportContentsSaved";
     this.lblReportContentsSaved.Size      = new System.Drawing.Size(109, 32);
     this.lblReportContentsSaved.TabIndex  = 19;
     this.lblReportContentsSaved.Text      = "Report Contents Saved";
     this.lblReportContentsSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblReportContentsSaved.Visible   = false;
     this.lblReportContentsSaved.Click    += new System.EventHandler(this.lblReportContentsSaved_Click);
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.lbXmlBreaksXsdSchema);
     this.groupBox1.Controls.Add(this.btSaveReportContents);
     this.groupBox1.Controls.Add(this.lbUnsavedData);
     this.groupBox1.Controls.Add(this.lblReportContentsSaved);
     this.groupBox1.Location = new System.Drawing.Point(376, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(371, 64);
     this.groupBox1.TabIndex = 17;
     this.groupBox1.TabStop  = false;
     //
     // lbXmlBreaksXsdSchema
     //
     this.lbXmlBreaksXsdSchema.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbXmlBreaksXsdSchema.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbXmlBreaksXsdSchema.ForeColor = System.Drawing.Color.Red;
     this.lbXmlBreaksXsdSchema.Location  = new System.Drawing.Point(6, 17);
     this.lbXmlBreaksXsdSchema.Name      = "lbXmlBreaksXsdSchema";
     this.lbXmlBreaksXsdSchema.Size      = new System.Drawing.Size(105, 40);
     this.lbXmlBreaksXsdSchema.TabIndex  = 24;
     this.lbXmlBreaksXsdSchema.Text      = "Xml breaks XSD schema!!";
     this.lbXmlBreaksXsdSchema.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolTip1.SetToolTip(this.lbXmlBreaksXsdSchema, "Click to view XSD errors");
     this.lbXmlBreaksXsdSchema.Visible = false;
     this.lbXmlBreaksXsdSchema.Click  += new System.EventHandler(this.lbXmlBreaksXsdSchema_Click);
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location  = new System.Drawing.Point(131, 17);
     this.lbUnsavedData.Name      = "lbUnsavedData";
     this.lbUnsavedData.Size      = new System.Drawing.Size(80, 38);
     this.lbUnsavedData.TabIndex  = 20;
     this.lbUnsavedData.Text      = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible   = false;
     this.lbUnsavedData.Click    += new System.EventHandler(this.lbUnsavedData_Click);
     //
     // cbReportContentsTemplates
     //
     this.cbReportContentsTemplates.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbReportContentsTemplates.FormattingEnabled = true;
     this.cbReportContentsTemplates.Location          = new System.Drawing.Point(9, 35);
     this.cbReportContentsTemplates.Name     = "cbReportContentsTemplates";
     this.cbReportContentsTemplates.Size     = new System.Drawing.Size(163, 21);
     this.cbReportContentsTemplates.TabIndex = 22;
     //
     // lbReportContentsTemplateLabel
     //
     this.lbReportContentsTemplateLabel.AutoSize = true;
     this.lbReportContentsTemplateLabel.Location = new System.Drawing.Point(6, 19);
     this.lbReportContentsTemplateLabel.Name     = "lbReportContentsTemplateLabel";
     this.lbReportContentsTemplateLabel.Size     = new System.Drawing.Size(102, 13);
     this.lbReportContentsTemplateLabel.TabIndex = 21;
     this.lbReportContentsTemplateLabel.Text     = "Available Templates";
     this.lbReportContentsTemplateLabel.Click   += new System.EventHandler(this.lbReportContentsTemplateLabel_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.cbReportContentsTemplates);
     this.groupBox2.Controls.Add(this.btReportContents_UseTemplate);
     this.groupBox2.Controls.Add(this.lbReportContentsTemplateLabel);
     this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox2.Location  = new System.Drawing.Point(8, 12);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(289, 66);
     this.groupBox2.TabIndex  = 23;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "Report Contents Templates";
     //
     // btReportContents_UseTemplate
     //
     this.btReportContents_UseTemplate.Location = new System.Drawing.Point(179, 35);
     this.btReportContents_UseTemplate.Name     = "btReportContents_UseTemplate";
     this.btReportContents_UseTemplate.Size     = new System.Drawing.Size(104, 23);
     this.btReportContents_UseTemplate.TabIndex = 23;
     this.btReportContents_UseTemplate.Text     = "Use Template";
     this.btReportContents_UseTemplate.UseVisualStyleBackColor = true;
     this.btReportContents_UseTemplate.Click += new System.EventHandler(this.btReportContents_UseTemplate_Click);
     //
     // ascxExecutiveSummary
     //
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.axAuthentic_ExecutiveSummary);
     this.Controls.Add(this.groupBox1);
     this.Name = "ascxExecutiveSummary";
     this.Size = new System.Drawing.Size(755, 376);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_ExecutiveSummary)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.ResumeLayout(false);
 }
예제 #26
0
 public static bool authentic_InsertElementInCurrentSelectionPos_spyAuthenticInsertBefore(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject, string strElementToInsert)
 {
     return(axTargetAuthenticObject.AuthenticView.Selection.PerformAction(XMLSPYPLUGINLib.SpyAuthenticActions.spyAuthenticInsertBefore, strElementToInsert));
 }
예제 #27
0
 /// <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(ascxTargetTasks));
     this.lbTargetsInCurrentProject = new System.Windows.Forms.ListBox();
     this.lbCurrentProject          = new System.Windows.Forms.Label();
     this.label1                  = new System.Windows.Forms.Label();
     this.label3                  = new System.Windows.Forms.Label();
     this.groupBox1               = new System.Windows.Forms.GroupBox();
     this.lblTargetTasksSaved     = new System.Windows.Forms.Label();
     this.btSaveTasks             = new System.Windows.Forms.Button();
     this.lbUnsavedData           = new System.Windows.Forms.Label();
     this.axAuthentic_TargetTasks = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.btReloadTargetsList     = new System.Windows.Forms.Button();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_TargetTasks)).BeginInit();
     this.SuspendLayout();
     //
     // lbTargetsInCurrentProject
     //
     this.lbTargetsInCurrentProject.Location              = new System.Drawing.Point(24, 88);
     this.lbTargetsInCurrentProject.Name                  = "lbTargetsInCurrentProject";
     this.lbTargetsInCurrentProject.Size                  = new System.Drawing.Size(160, 147);
     this.lbTargetsInCurrentProject.TabIndex              = 15;
     this.lbTargetsInCurrentProject.SelectedIndexChanged += new System.EventHandler(this.lbTargetsInCurrentProject_SelectedIndexChanged);
     //
     // lbCurrentProject
     //
     this.lbCurrentProject.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbCurrentProject.Location = new System.Drawing.Point(96, 8);
     this.lbCurrentProject.Name     = "lbCurrentProject";
     this.lbCurrentProject.Size     = new System.Drawing.Size(312, 16);
     this.lbCurrentProject.TabIndex = 14;
     this.lbCurrentProject.Text     = "...";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(96, 16);
     this.label1.TabIndex = 12;
     this.label1.Text     = "Current Project";
     //
     // label3
     //
     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, 40);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(160, 16);
     this.label3.TabIndex = 13;
     this.label3.Text     = "Targets in Current Project:";
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.lblTargetTasksSaved);
     this.groupBox1.Controls.Add(this.btSaveTasks);
     this.groupBox1.Controls.Add(this.lbUnsavedData);
     this.groupBox1.Location = new System.Drawing.Point(192, 24);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(464, 64);
     this.groupBox1.TabIndex = 17;
     this.groupBox1.TabStop  = false;
     //
     // lblTargetTasksSaved
     //
     this.lblTargetTasksSaved.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblTargetTasksSaved.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTargetTasksSaved.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.lblTargetTasksSaved.Location  = new System.Drawing.Point(280, 24);
     this.lblTargetTasksSaved.Name      = "lblTargetTasksSaved";
     this.lblTargetTasksSaved.Size      = new System.Drawing.Size(80, 24);
     this.lblTargetTasksSaved.TabIndex  = 9;
     this.lblTargetTasksSaved.Text      = "Targets Tasks Saved";
     this.lblTargetTasksSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblTargetTasksSaved.Visible   = false;
     //
     // btSaveTasks
     //
     this.btSaveTasks.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveTasks.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btSaveTasks.Location = new System.Drawing.Point(368, 16);
     this.btSaveTasks.Name     = "btSaveTasks";
     this.btSaveTasks.Size     = new System.Drawing.Size(80, 40);
     this.btSaveTasks.TabIndex = 3;
     this.btSaveTasks.Text     = "Save Tasks";
     this.btSaveTasks.Click   += new System.EventHandler(this.btSaveTasks_Click);
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location  = new System.Drawing.Point(304, 24);
     this.lbUnsavedData.Name      = "lbUnsavedData";
     this.lbUnsavedData.Size      = new System.Drawing.Size(56, 24);
     this.lbUnsavedData.TabIndex  = 10;
     this.lbUnsavedData.Text      = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible   = false;
     //
     // axAuthentic_TargetTasks
     //
     this.axAuthentic_TargetTasks.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.axAuthentic_TargetTasks.Enabled           = true;
     this.axAuthentic_TargetTasks.Location          = new System.Drawing.Point(192, 88);
     this.axAuthentic_TargetTasks.Name              = "axAuthentic_TargetTasks";
     this.axAuthentic_TargetTasks.OcxState          = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_TargetTasks.OcxState")));
     this.axAuthentic_TargetTasks.Size              = new System.Drawing.Size(464, 320);
     this.axAuthentic_TargetTasks.TabIndex          = 16;
     this.axAuthentic_TargetTasks.SelectionChanged += new System.EventHandler(this.axAuthentic_TargetTasks_SelectionChanged);
     //
     // btReloadTargetsList
     //
     this.btReloadTargetsList.Location = new System.Drawing.Point(24, 64);
     this.btReloadTargetsList.Name     = "btReloadTargetsList";
     this.btReloadTargetsList.Size     = new System.Drawing.Size(160, 20);
     this.btReloadTargetsList.TabIndex = 18;
     this.btReloadTargetsList.Text     = "Reload Target\'s List";
     this.btReloadTargetsList.Click   += new System.EventHandler(this.btReloadTargetsList_Click);
     //
     // ascxTargetTasks
     //
     this.Controls.Add(this.btReloadTargetsList);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.axAuthentic_TargetTasks);
     this.Controls.Add(this.lbTargetsInCurrentProject);
     this.Controls.Add(this.lbCurrentProject);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label3);
     this.Name = "ascxTargetTasks";
     this.Size = new System.Drawing.Size(664, 416);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_TargetTasks)).EndInit();
     this.ResumeLayout(false);
 }
예제 #28
0
 // This sets the cursor to the beggining on the next Tag
 public static void authentic_GotoNextTag(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject)
 {
     axTargetAuthenticObject.AuthenticView.Selection.SelectNext(XMLSPYPLUGINLib.SPYAuthenticElementKind.spyAuthenticTag).Select();
     axTargetAuthenticObject.SelectionSet(axTargetAuthenticObject.CurrentSelection.Start, 0, null, 0);
 }
예제 #29
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(ascxFindings));
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.lbCurrentProject = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.lbTargetsInCurrentProject = new System.Windows.Forms.ListBox();
     this.lbFindingsInCurrentTarget = new System.Windows.Forms.ListBox();
     this.axAuthentic_Findings = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.btSaveFinding = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.lbNextIdToBeAssigned = new System.Windows.Forms.Label();
     this.lbNextIdLabel = new System.Windows.Forms.Label();
     this.btAssignIdToFinding = new System.Windows.Forms.Button();
     this.lblAssignIdWarning = new System.Windows.Forms.Label();
     this.lbUnsavedData = new System.Windows.Forms.Label();
     this.lblFindingSaved = new System.Windows.Forms.Label();
     this.btDeleteSelectedFinding = new System.Windows.Forms.Button();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.btAddNewFinding = new System.Windows.Forms.Button();
     this.txtNewFindingName = new System.Windows.Forms.TextBox();
     this.cbFindingsTemplates = new System.Windows.Forms.ComboBox();
     this.btReloadTargetsList = new System.Windows.Forms.Button();
     this.label4 = new System.Windows.Forms.Label();
     this.cbTemplateToUse = new System.Windows.Forms.ComboBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.btRenameFinding = new System.Windows.Forms.Button();
     this.txtRenameFinding = new System.Windows.Forms.TextBox();
     this.txtTargetsFilter = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.btAddFindingUsingTemplate = new System.Windows.Forms.Button();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.axWebBrowser_Targets = new System.Windows.Forms.WebBrowser();
     this.lbRtbCursorPosition = new System.Windows.Forms.Label();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.lbXmlBreaksXsdSchema = new System.Windows.Forms.Label();
     this.rtbSelectedFinding = new System.Windows.Forms.RichTextBox();
     this.axWebBrowser_WindowsExplorer = new System.Windows.Forms.WebBrowser();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.gbRtbNotepadEditorTools = new System.Windows.Forms.GroupBox();
     this.label6 = new System.Windows.Forms.Label();
     this.txtRtbNotepadSearchContents = new System.Windows.Forms.TextBox();
     this.lbRtbNotepadSearchCount = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_Findings)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.gbRtbNotepadEditorTools.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(0, 2);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(96, 16);
     this.label1.TabIndex = 0;
     this.label1.Text = "Current Project";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(12, 6);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(160, 16);
     this.label2.TabIndex = 0;
     this.label2.Text = "Findings in Current Target";
     //
     // lbCurrentProject
     //
     this.lbCurrentProject.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbCurrentProject.Location = new System.Drawing.Point(96, 1);
     this.lbCurrentProject.Name = "lbCurrentProject";
     this.lbCurrentProject.Size = new System.Drawing.Size(424, 16);
     this.lbCurrentProject.TabIndex = 0;
     this.lbCurrentProject.Text = "...";
     //
     // label3
     //
     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, 8);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(160, 16);
     this.label3.TabIndex = 0;
     this.label3.Text = "Targets in Current Project:";
     //
     // lbTargetsInCurrentProject
     //
     this.lbTargetsInCurrentProject.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.lbTargetsInCurrentProject.Location = new System.Drawing.Point(13, 52);
     this.lbTargetsInCurrentProject.Name = "lbTargetsInCurrentProject";
     this.lbTargetsInCurrentProject.Size = new System.Drawing.Size(163, 82);
     this.lbTargetsInCurrentProject.Sorted = true;
     this.lbTargetsInCurrentProject.TabIndex = 1;
     this.lbTargetsInCurrentProject.SelectedIndexChanged += new System.EventHandler(this.lbTargetsInCurrentProject_SelectedIndexChanged);
     //
     // lbFindingsInCurrentTarget
     //
     this.lbFindingsInCurrentTarget.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.lbFindingsInCurrentTarget.Location = new System.Drawing.Point(10, 27);
     this.lbFindingsInCurrentTarget.Name = "lbFindingsInCurrentTarget";
     this.lbFindingsInCurrentTarget.Size = new System.Drawing.Size(166, 134);
     this.lbFindingsInCurrentTarget.Sorted = true;
     this.lbFindingsInCurrentTarget.TabIndex = 1;
     this.lbFindingsInCurrentTarget.SelectedIndexChanged += new System.EventHandler(this.lbFindingsInCurrentTarget_SelectedIndexChanged);
     //
     // axAuthentic_Findings
     //
     this.axAuthentic_Findings.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.axAuthentic_Findings.Enabled = true;
     this.axAuthentic_Findings.Location = new System.Drawing.Point(-2, 60);
     this.axAuthentic_Findings.Name = "axAuthentic_Findings";
     this.axAuthentic_Findings.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_Findings.OcxState")));
     this.axAuthentic_Findings.Size = new System.Drawing.Size(612, 322);
     this.axAuthentic_Findings.TabIndex = 2;
     this.axAuthentic_Findings.Enter += new System.EventHandler(this.axAuthentic1_Enter);
     this.axAuthentic_Findings.SelectionChanged += new System.EventHandler(this.axAuthentic1_SelectionChanged);
     //
     // btSaveFinding
     //
     this.btSaveFinding.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveFinding.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btSaveFinding.Location = new System.Drawing.Point(189, 19);
     this.btSaveFinding.Name = "btSaveFinding";
     this.btSaveFinding.Size = new System.Drawing.Size(93, 24);
     this.btSaveFinding.TabIndex = 3;
     this.btSaveFinding.Text = "Save Finding";
     this.btSaveFinding.Click += new System.EventHandler(this.btSaveFinding_Click);
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.lbNextIdToBeAssigned);
     this.groupBox1.Controls.Add(this.lbNextIdLabel);
     this.groupBox1.Controls.Add(this.btAssignIdToFinding);
     this.groupBox1.Controls.Add(this.lblAssignIdWarning);
     this.groupBox1.Location = new System.Drawing.Point(447, 8);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(159, 84);
     this.groupBox1.TabIndex = 5;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Automatically Assign ID";
     //
     // lbNextIdToBeAssigned
     //
     this.lbNextIdToBeAssigned.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbNextIdToBeAssigned.ForeColor = System.Drawing.Color.Black;
     this.lbNextIdToBeAssigned.Location = new System.Drawing.Point(66, 18);
     this.lbNextIdToBeAssigned.Name = "lbNextIdToBeAssigned";
     this.lbNextIdToBeAssigned.Size = new System.Drawing.Size(88, 16);
     this.lbNextIdToBeAssigned.TabIndex = 6;
     this.lbNextIdToBeAssigned.Text = "..";
     this.lbNextIdToBeAssigned.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbNextIdLabel
     //
     this.lbNextIdLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbNextIdLabel.ForeColor = System.Drawing.Color.Black;
     this.lbNextIdLabel.Location = new System.Drawing.Point(6, 16);
     this.lbNextIdLabel.Name = "lbNextIdLabel";
     this.lbNextIdLabel.Size = new System.Drawing.Size(69, 18);
     this.lbNextIdLabel.TabIndex = 6;
     this.lbNextIdLabel.Text = "Next ID:";
     this.lbNextIdLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.lbNextIdLabel.Click += new System.EventHandler(this.lbNextIdLabel_Click);
     //
     // btAssignIdToFinding
     //
     this.btAssignIdToFinding.Location = new System.Drawing.Point(7, 38);
     this.btAssignIdToFinding.Name = "btAssignIdToFinding";
     this.btAssignIdToFinding.Size = new System.Drawing.Size(125, 24);
     this.btAssignIdToFinding.TabIndex = 4;
     this.btAssignIdToFinding.Text = "Assign Id To Finding*";
     this.btAssignIdToFinding.Click += new System.EventHandler(this.btAssignIdToFinding_Click);
     //
     // lblAssignIdWarning
     //
     this.lblAssignIdWarning.Font = new System.Drawing.Font("Microsoft Sans Serif", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAssignIdWarning.Location = new System.Drawing.Point(7, 65);
     this.lblAssignIdWarning.Name = "lblAssignIdWarning";
     this.lblAssignIdWarning.Size = new System.Drawing.Size(146, 13);
     this.lblAssignIdWarning.TabIndex = 7;
     this.lblAssignIdWarning.Text = "* Data will be saved when clicked";
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location = new System.Drawing.Point(126, 12);
     this.lbUnsavedData.Name = "lbUnsavedData";
     this.lbUnsavedData.Size = new System.Drawing.Size(66, 37);
     this.lbUnsavedData.TabIndex = 6;
     this.lbUnsavedData.Text = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible = false;
     //
     // lblFindingSaved
     //
     this.lblFindingSaved.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblFindingSaved.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblFindingSaved.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.lblFindingSaved.Location = new System.Drawing.Point(133, 16);
     this.lblFindingSaved.Name = "lblFindingSaved";
     this.lblFindingSaved.Size = new System.Drawing.Size(56, 29);
     this.lblFindingSaved.TabIndex = 6;
     this.lblFindingSaved.Text = "Findings Saved";
     this.lblFindingSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblFindingSaved.Visible = false;
     //
     // btDeleteSelectedFinding
     //
     this.btDeleteSelectedFinding.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.btDeleteSelectedFinding.Location = new System.Drawing.Point(10, 305);
     this.btDeleteSelectedFinding.Name = "btDeleteSelectedFinding";
     this.btDeleteSelectedFinding.Size = new System.Drawing.Size(160, 20);
     this.btDeleteSelectedFinding.TabIndex = 6;
     this.btDeleteSelectedFinding.Text = "Delete Selected Finding";
     this.btDeleteSelectedFinding.Click += new System.EventHandler(this.btDeleteSelectedFinding_Click);
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.btAddNewFinding);
     this.groupBox2.Controls.Add(this.txtNewFindingName);
     this.groupBox2.Location = new System.Drawing.Point(10, 161);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(167, 48);
     this.groupBox2.TabIndex = 7;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Add Finding";
     //
     // btAddNewFinding
     //
     this.btAddNewFinding.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btAddNewFinding.Location = new System.Drawing.Point(127, 19);
     this.btAddNewFinding.Name = "btAddNewFinding";
     this.btAddNewFinding.Size = new System.Drawing.Size(34, 20);
     this.btAddNewFinding.TabIndex = 1;
     this.btAddNewFinding.Text = "Add";
     this.btAddNewFinding.Click += new System.EventHandler(this.btAddNewFinding_Click);
     //
     // txtNewFindingName
     //
     this.txtNewFindingName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtNewFindingName.Location = new System.Drawing.Point(6, 19);
     this.txtNewFindingName.Name = "txtNewFindingName";
     this.txtNewFindingName.Size = new System.Drawing.Size(115, 20);
     this.txtNewFindingName.TabIndex = 0;
     //
     // cbFindingsTemplates
     //
     this.cbFindingsTemplates.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.cbFindingsTemplates.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbFindingsTemplates.FormattingEnabled = true;
     this.cbFindingsTemplates.Location = new System.Drawing.Point(8, 21);
     this.cbFindingsTemplates.Name = "cbFindingsTemplates";
     this.cbFindingsTemplates.Size = new System.Drawing.Size(113, 21);
     this.cbFindingsTemplates.TabIndex = 3;
     //
     // btReloadTargetsList
     //
     this.btReloadTargetsList.Location = new System.Drawing.Point(11, 24);
     this.btReloadTargetsList.Name = "btReloadTargetsList";
     this.btReloadTargetsList.Size = new System.Drawing.Size(94, 20);
     this.btReloadTargetsList.TabIndex = 16;
     this.btReloadTargetsList.Text = "Reload Target\'s List";
     this.btReloadTargetsList.Click += new System.EventHandler(this.btReloadTargetsList_Click);
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(3, 10);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(197, 19);
     this.label4.TabIndex = 0;
     this.label4.Text = "Edit/view selected Finding with :";
     //
     // cbTemplateToUse
     //
     this.cbTemplateToUse.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbTemplateToUse.Items.AddRange(new object[] {
     "Authentic - Simple Mode",
     "Authentic - All Fields Mode",
     "Windows Explorer",
     "Text Editor (i.e. Notepad)"});
     this.cbTemplateToUse.Location = new System.Drawing.Point(3, 28);
     this.cbTemplateToUse.Name = "cbTemplateToUse";
     this.cbTemplateToUse.Size = new System.Drawing.Size(259, 21);
     this.cbTemplateToUse.TabIndex = 18;
     this.cbTemplateToUse.SelectedIndexChanged += new System.EventHandler(this.cbTemplateToUse_SelectedIndexChanged);
     //
     // groupBox4
     //
     this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox4.Controls.Add(this.btRenameFinding);
     this.groupBox4.Controls.Add(this.txtRenameFinding);
     this.groupBox4.Location = new System.Drawing.Point(10, 258);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(166, 41);
     this.groupBox4.TabIndex = 19;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Rename Finding";
     //
     // btRenameFinding
     //
     this.btRenameFinding.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btRenameFinding.Location = new System.Drawing.Point(104, 16);
     this.btRenameFinding.Name = "btRenameFinding";
     this.btRenameFinding.Size = new System.Drawing.Size(56, 20);
     this.btRenameFinding.TabIndex = 1;
     this.btRenameFinding.Text = "Rename";
     this.btRenameFinding.Click += new System.EventHandler(this.btRenameFinding_Click);
     //
     // txtRenameFinding
     //
     this.txtRenameFinding.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtRenameFinding.Location = new System.Drawing.Point(8, 16);
     this.txtRenameFinding.Name = "txtRenameFinding";
     this.txtRenameFinding.Size = new System.Drawing.Size(95, 20);
     this.txtRenameFinding.TabIndex = 0;
     //
     // txtTargetsFilter
     //
     this.txtTargetsFilter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtTargetsFilter.Location = new System.Drawing.Point(138, 26);
     this.txtTargetsFilter.Name = "txtTargetsFilter";
     this.txtTargetsFilter.Size = new System.Drawing.Size(37, 20);
     this.txtTargetsFilter.TabIndex = 20;
     this.txtTargetsFilter.Text = "*";
     this.txtTargetsFilter.TextChanged += new System.EventHandler(this.txtTargetsFilter_TextChanged);
     //
     // label5
     //
     this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(109, 29);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(32, 13);
     this.label5.TabIndex = 21;
     this.label5.Text = "Filter:";
     //
     // 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.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.splitContainer1.Location = new System.Drawing.Point(-2, -2);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.btReloadTargetsList);
     this.splitContainer1.Panel1.Controls.Add(this.lbTargetsInCurrentProject);
     this.splitContainer1.Panel1.Controls.Add(this.label3);
     this.splitContainer1.Panel1.Controls.Add(this.txtTargetsFilter);
     this.splitContainer1.Panel1.Controls.Add(this.label5);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.groupBox3);
     this.splitContainer1.Panel2.Controls.Add(this.label2);
     this.splitContainer1.Panel2.Controls.Add(this.lbFindingsInCurrentTarget);
     this.splitContainer1.Panel2.Controls.Add(this.btDeleteSelectedFinding);
     this.splitContainer1.Panel2.Controls.Add(this.groupBox4);
     this.splitContainer1.Panel2.Controls.Add(this.groupBox2);
     this.splitContainer1.Size = new System.Drawing.Size(183, 487);
     this.splitContainer1.SplitterDistance = 144;
     this.splitContainer1.TabIndex = 22;
     //
     // groupBox3
     //
     this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox3.Controls.Add(this.cbFindingsTemplates);
     this.groupBox3.Controls.Add(this.btAddFindingUsingTemplate);
     this.groupBox3.Location = new System.Drawing.Point(10, 211);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(167, 47);
     this.groupBox3.TabIndex = 7;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Add Finding usign Template";
     this.groupBox3.Enter += new System.EventHandler(this.groupBox3_Enter);
     //
     // btAddFindingUsingTemplate
     //
     this.btAddFindingUsingTemplate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btAddFindingUsingTemplate.Location = new System.Drawing.Point(127, 21);
     this.btAddFindingUsingTemplate.Name = "btAddFindingUsingTemplate";
     this.btAddFindingUsingTemplate.Size = new System.Drawing.Size(34, 20);
     this.btAddFindingUsingTemplate.TabIndex = 1;
     this.btAddFindingUsingTemplate.Text = "Add";
     this.btAddFindingUsingTemplate.Click += new System.EventHandler(this.btAddFindingUsingTemplate_Click);
     //
     // splitContainer2
     //
     this.splitContainer2.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.splitContainer2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.splitContainer2.Location = new System.Drawing.Point(-2, -2);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.axWebBrowser_Targets);
     this.splitContainer2.Panel1.Controls.Add(this.groupBox1);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.gbRtbNotepadEditorTools);
     this.splitContainer2.Panel2.Controls.Add(this.groupBox5);
     this.splitContainer2.Panel2.Controls.Add(this.cbTemplateToUse);
     this.splitContainer2.Panel2.Controls.Add(this.label4);
     this.splitContainer2.Panel2.Controls.Add(this.rtbSelectedFinding);
     this.splitContainer2.Panel2.Controls.Add(this.axWebBrowser_WindowsExplorer);
     this.splitContainer2.Panel2.Controls.Add(this.axAuthentic_Findings);
     this.splitContainer2.Size = new System.Drawing.Size(617, 491);
     this.splitContainer2.SplitterDistance = 99;
     this.splitContainer2.TabIndex = 23;
     //
     // axWebBrowser_Targets
     //
     this.axWebBrowser_Targets.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.axWebBrowser_Targets.Location = new System.Drawing.Point(3, 8);
     this.axWebBrowser_Targets.MinimumSize = new System.Drawing.Size(20, 20);
     this.axWebBrowser_Targets.Name = "axWebBrowser_Targets";
     this.axWebBrowser_Targets.Size = new System.Drawing.Size(438, 84);
     this.axWebBrowser_Targets.TabIndex = 24;
     //
     // lbRtbCursorPosition
     //
     this.lbRtbCursorPosition.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.lbRtbCursorPosition.AutoSize = true;
     this.lbRtbCursorPosition.Location = new System.Drawing.Point(521, 13);
     this.lbRtbCursorPosition.Name = "lbRtbCursorPosition";
     this.lbRtbCursorPosition.Size = new System.Drawing.Size(68, 13);
     this.lbRtbCursorPosition.TabIndex = 22;
     this.lbRtbCursorPosition.Text = " Row:1 Col:1";
     this.lbRtbCursorPosition.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupBox5
     //
     this.groupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox5.Controls.Add(this.lblFindingSaved);
     this.groupBox5.Controls.Add(this.btSaveFinding);
     this.groupBox5.Controls.Add(this.lbXmlBreaksXsdSchema);
     this.groupBox5.Controls.Add(this.lbUnsavedData);
     this.groupBox5.Location = new System.Drawing.Point(314, 1);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(293, 52);
     this.groupBox5.TabIndex = 21;
     this.groupBox5.TabStop = false;
     //
     // lbXmlBreaksXsdSchema
     //
     this.lbXmlBreaksXsdSchema.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbXmlBreaksXsdSchema.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbXmlBreaksXsdSchema.ForeColor = System.Drawing.Color.Red;
     this.lbXmlBreaksXsdSchema.Location = new System.Drawing.Point(10, 10);
     this.lbXmlBreaksXsdSchema.Name = "lbXmlBreaksXsdSchema";
     this.lbXmlBreaksXsdSchema.Size = new System.Drawing.Size(105, 40);
     this.lbXmlBreaksXsdSchema.TabIndex = 11;
     this.lbXmlBreaksXsdSchema.Text = "Xml breaks XSD schema!!";
     this.lbXmlBreaksXsdSchema.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolTip1.SetToolTip(this.lbXmlBreaksXsdSchema, "Click to view XSD errors");
     this.lbXmlBreaksXsdSchema.Visible = false;
     this.lbXmlBreaksXsdSchema.Click += new System.EventHandler(this.lbXmlBreaksXsdSchema_Click);
     //
     // rtbSelectedFinding
     //
     this.rtbSelectedFinding.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.rtbSelectedFinding.Location = new System.Drawing.Point(-2, 60);
     this.rtbSelectedFinding.Name = "rtbSelectedFinding";
     this.rtbSelectedFinding.Size = new System.Drawing.Size(612, 284);
     this.rtbSelectedFinding.TabIndex = 20;
     this.rtbSelectedFinding.Text = "";
     this.rtbSelectedFinding.SelectionChanged += new System.EventHandler(this.rtbSelectedFinding_SelectionChanged);
     this.rtbSelectedFinding.TextChanged += new System.EventHandler(this.rtbSelectedFinding_TextChanged);
     //
     // axWebBrowser_WindowsExplorer
     //
     this.axWebBrowser_WindowsExplorer.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.axWebBrowser_WindowsExplorer.Location = new System.Drawing.Point(-2, 60);
     this.axWebBrowser_WindowsExplorer.MinimumSize = new System.Drawing.Size(20, 20);
     this.axWebBrowser_WindowsExplorer.Name = "axWebBrowser_WindowsExplorer";
     this.axWebBrowser_WindowsExplorer.Size = new System.Drawing.Size(614, 321);
     this.axWebBrowser_WindowsExplorer.TabIndex = 19;
     //
     // splitContainer3
     //
     this.splitContainer3.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.splitContainer3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.splitContainer3.Location = new System.Drawing.Point(6, 21);
     this.splitContainer3.Name = "splitContainer3";
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.BackColor = System.Drawing.SystemColors.Control;
     this.splitContainer3.Panel1.Controls.Add(this.splitContainer1);
     this.splitContainer3.Panel1.ForeColor = System.Drawing.SystemColors.ControlText;
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.splitContainer2);
     this.splitContainer3.Size = new System.Drawing.Size(803, 488);
     this.splitContainer3.SplitterDistance = 185;
     this.splitContainer3.TabIndex = 24;
     //
     // gbRtbNotepadEditorTools
     //
     this.gbRtbNotepadEditorTools.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gbRtbNotepadEditorTools.Controls.Add(this.txtRtbNotepadSearchContents);
     this.gbRtbNotepadEditorTools.Controls.Add(this.label6);
     this.gbRtbNotepadEditorTools.Controls.Add(this.lbRtbNotepadSearchCount);
     this.gbRtbNotepadEditorTools.Controls.Add(this.lbRtbCursorPosition);
     this.gbRtbNotepadEditorTools.Location = new System.Drawing.Point(2, 348);
     this.gbRtbNotepadEditorTools.Name = "gbRtbNotepadEditorTools";
     this.gbRtbNotepadEditorTools.Size = new System.Drawing.Size(607, 32);
     this.gbRtbNotepadEditorTools.TabIndex = 23;
     this.gbRtbNotepadEditorTools.TabStop = false;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(7, 13);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(100, 13);
     this.label6.TabIndex = 23;
     this.label6.Text = "Search contents for";
     //
     // txtRtbNotepadSearchContents
     //
     this.txtRtbNotepadSearchContents.Location = new System.Drawing.Point(113, 10);
     this.txtRtbNotepadSearchContents.Name = "txtRtbNotepadSearchContents";
     this.txtRtbNotepadSearchContents.Size = new System.Drawing.Size(149, 20);
     this.txtRtbNotepadSearchContents.TabIndex = 24;
     this.txtRtbNotepadSearchContents.TextChanged += new System.EventHandler(this.txtRtbNotepadSearchContents_TextChanged);
     //
     // lbRtbNotepadSearchCount
     //
     this.lbRtbNotepadSearchCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lbRtbNotepadSearchCount.AutoSize = true;
     this.lbRtbNotepadSearchCount.Location = new System.Drawing.Point(267, 13);
     this.lbRtbNotepadSearchCount.Name = "lbRtbNotepadSearchCount";
     this.lbRtbNotepadSearchCount.Size = new System.Drawing.Size(16, 13);
     this.lbRtbNotepadSearchCount.TabIndex = 22;
     this.lbRtbNotepadSearchCount.Text = "...";
     this.lbRtbNotepadSearchCount.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // ascxFindings
     //
     this.Controls.Add(this.lbCurrentProject);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.splitContainer3);
     this.Name = "ascxFindings";
     this.Size = new System.Drawing.Size(812, 512);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_Findings)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.ResumeLayout(false);
     this.gbRtbNotepadEditorTools.ResumeLayout(false);
     this.gbRtbNotepadEditorTools.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(ascxIssueTracking));
     this.axAuthentic_IssueTracking          = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.btDeleteSelectedIssueTrackingFiles = new System.Windows.Forms.Button();
     this.lbCurrentIssueTrackingFiles        = new System.Windows.Forms.ListBox();
     this.lbIssueTrackingFileSaved           = new System.Windows.Forms.Label();
     this.btSaveFinding   = new System.Windows.Forms.Button();
     this.label1          = new System.Windows.Forms.Label();
     this.cbTemplateToUse = new System.Windows.Forms.ComboBox();
     this.lbUnsavedData   = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_IssueTracking)).BeginInit();
     this.SuspendLayout();
     //
     // axAuthentic_IssueTracking
     //
     this.axAuthentic_IssueTracking.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.axAuthentic_IssueTracking.Enabled           = true;
     this.axAuthentic_IssueTracking.Location          = new System.Drawing.Point(192, 48);
     this.axAuthentic_IssueTracking.Name              = "axAuthentic_IssueTracking";
     this.axAuthentic_IssueTracking.OcxState          = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_IssueTracking.OcxState")));
     this.axAuthentic_IssueTracking.Size              = new System.Drawing.Size(688, 400);
     this.axAuthentic_IssueTracking.TabIndex          = 21;
     this.axAuthentic_IssueTracking.SelectionChanged += new System.EventHandler(this.axAuthentic_IssueTracking_SelectionChanged);
     //
     // btDeleteSelectedIssueTrackingFiles
     //
     this.btDeleteSelectedIssueTrackingFiles.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btDeleteSelectedIssueTrackingFiles.Location = new System.Drawing.Point(0, 371);
     this.btDeleteSelectedIssueTrackingFiles.Name     = "btDeleteSelectedIssueTrackingFiles";
     this.btDeleteSelectedIssueTrackingFiles.Size     = new System.Drawing.Size(192, 32);
     this.btDeleteSelectedIssueTrackingFiles.TabIndex = 20;
     this.btDeleteSelectedIssueTrackingFiles.Text     = "Delete Selected Issue Tracking File";
     this.btDeleteSelectedIssueTrackingFiles.Click   += new System.EventHandler(this.btDeleteSelectedIssueTrackingFiles_Click);
     //
     // lbCurrentIssueTrackingFiles
     //
     this.lbCurrentIssueTrackingFiles.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                     | System.Windows.Forms.AnchorStyles.Left)));
     this.lbCurrentIssueTrackingFiles.Location              = new System.Drawing.Point(0, 48);
     this.lbCurrentIssueTrackingFiles.Name                  = "lbCurrentIssueTrackingFiles";
     this.lbCurrentIssueTrackingFiles.Size                  = new System.Drawing.Size(184, 316);
     this.lbCurrentIssueTrackingFiles.TabIndex              = 19;
     this.lbCurrentIssueTrackingFiles.SelectedIndexChanged += new System.EventHandler(this.lbCurrentIssueTrackingFiles_SelectedIndexChanged);
     //
     // lbIssueTrackingFileSaved
     //
     this.lbIssueTrackingFileSaved.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbIssueTrackingFileSaved.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbIssueTrackingFileSaved.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.lbIssueTrackingFileSaved.Location  = new System.Drawing.Point(584, 8);
     this.lbIssueTrackingFileSaved.Name      = "lbIssueTrackingFileSaved";
     this.lbIssueTrackingFileSaved.Size      = new System.Drawing.Size(136, 24);
     this.lbIssueTrackingFileSaved.TabIndex  = 23;
     this.lbIssueTrackingFileSaved.Text      = "Findings Saved";
     this.lbIssueTrackingFileSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbIssueTrackingFileSaved.Visible   = false;
     //
     // btSaveFinding
     //
     this.btSaveFinding.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveFinding.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btSaveFinding.Location = new System.Drawing.Point(728, 8);
     this.btSaveFinding.Name     = "btSaveFinding";
     this.btSaveFinding.Size     = new System.Drawing.Size(152, 24);
     this.btSaveFinding.TabIndex = 22;
     this.btSaveFinding.Text     = "Save Issue Tracking File";
     this.btSaveFinding.Click   += new System.EventHandler(this.btSaveFinding_Click);
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location  = new System.Drawing.Point(0, 0);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(96, 24);
     this.label1.TabIndex  = 23;
     this.label1.Text      = "Template To Use";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label1.Visible   = false;
     //
     // cbTemplateToUse
     //
     this.cbTemplateToUse.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbTemplateToUse.Items.AddRange(new object[] {
         "Issue Tracking - Just Items and Status",
         "Issue Tracking - With Resolution Info",
         "Edit Project Data",
         "Edit Findings Data",
         "Edit Executive Summary",
         "Edit Targets"
     });
     this.cbTemplateToUse.Location              = new System.Drawing.Point(0, 24);
     this.cbTemplateToUse.Name                  = "cbTemplateToUse";
     this.cbTemplateToUse.Size                  = new System.Drawing.Size(184, 21);
     this.cbTemplateToUse.TabIndex              = 24;
     this.cbTemplateToUse.SelectedIndexChanged += new System.EventHandler(this.cbTemplateToUse_SelectedIndexChanged);
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location  = new System.Drawing.Point(600, 8);
     this.lbUnsavedData.Name      = "lbUnsavedData";
     this.lbUnsavedData.Size      = new System.Drawing.Size(112, 24);
     this.lbUnsavedData.TabIndex  = 25;
     this.lbUnsavedData.Text      = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible   = false;
     //
     // ascxIssueTracking
     //
     this.Controls.Add(this.lbUnsavedData);
     this.Controls.Add(this.cbTemplateToUse);
     this.Controls.Add(this.lbIssueTrackingFileSaved);
     this.Controls.Add(this.btSaveFinding);
     this.Controls.Add(this.axAuthentic_IssueTracking);
     this.Controls.Add(this.btDeleteSelectedIssueTrackingFiles);
     this.Controls.Add(this.lbCurrentIssueTrackingFiles);
     this.Controls.Add(this.label1);
     this.Name  = "ascxIssueTracking";
     this.Size  = new System.Drawing.Size(888, 456);
     this.Load += new System.EventHandler(this.ascxIssueTracking_Load);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_IssueTracking)).EndInit();
     this.ResumeLayout(false);
 }
예제 #31
0
 /// <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(ascxTargetTasks));
     this.lbTargetsInCurrentProject = new System.Windows.Forms.ListBox();
     this.lbCurrentProject = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.lblTargetTasksSaved = new System.Windows.Forms.Label();
     this.btSaveTasks = new System.Windows.Forms.Button();
     this.lbUnsavedData = new System.Windows.Forms.Label();
     this.axAuthentic_TargetTasks = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.btReloadTargetsList = new System.Windows.Forms.Button();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_TargetTasks)).BeginInit();
     this.SuspendLayout();
     //
     // lbTargetsInCurrentProject
     //
     this.lbTargetsInCurrentProject.Location = new System.Drawing.Point(24, 88);
     this.lbTargetsInCurrentProject.Name = "lbTargetsInCurrentProject";
     this.lbTargetsInCurrentProject.Size = new System.Drawing.Size(160, 147);
     this.lbTargetsInCurrentProject.TabIndex = 15;
     this.lbTargetsInCurrentProject.SelectedIndexChanged += new System.EventHandler(this.lbTargetsInCurrentProject_SelectedIndexChanged);
     //
     // lbCurrentProject
     //
     this.lbCurrentProject.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbCurrentProject.Location = new System.Drawing.Point(96, 8);
     this.lbCurrentProject.Name = "lbCurrentProject";
     this.lbCurrentProject.Size = new System.Drawing.Size(312, 16);
     this.lbCurrentProject.TabIndex = 14;
     this.lbCurrentProject.Text = "...";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(96, 16);
     this.label1.TabIndex = 12;
     this.label1.Text = "Current Project";
     //
     // label3
     //
     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, 40);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(160, 16);
     this.label3.TabIndex = 13;
     this.label3.Text = "Targets in Current Project:";
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.lblTargetTasksSaved);
     this.groupBox1.Controls.Add(this.btSaveTasks);
     this.groupBox1.Controls.Add(this.lbUnsavedData);
     this.groupBox1.Location = new System.Drawing.Point(192, 24);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(464, 64);
     this.groupBox1.TabIndex = 17;
     this.groupBox1.TabStop = false;
     //
     // lblTargetTasksSaved
     //
     this.lblTargetTasksSaved.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblTargetTasksSaved.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTargetTasksSaved.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.lblTargetTasksSaved.Location = new System.Drawing.Point(280, 24);
     this.lblTargetTasksSaved.Name = "lblTargetTasksSaved";
     this.lblTargetTasksSaved.Size = new System.Drawing.Size(80, 24);
     this.lblTargetTasksSaved.TabIndex = 9;
     this.lblTargetTasksSaved.Text = "Targets Tasks Saved";
     this.lblTargetTasksSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblTargetTasksSaved.Visible = false;
     //
     // btSaveTasks
     //
     this.btSaveTasks.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveTasks.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btSaveTasks.Location = new System.Drawing.Point(368, 16);
     this.btSaveTasks.Name = "btSaveTasks";
     this.btSaveTasks.Size = new System.Drawing.Size(80, 40);
     this.btSaveTasks.TabIndex = 3;
     this.btSaveTasks.Text = "Save Tasks";
     this.btSaveTasks.Click += new System.EventHandler(this.btSaveTasks_Click);
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location = new System.Drawing.Point(304, 24);
     this.lbUnsavedData.Name = "lbUnsavedData";
     this.lbUnsavedData.Size = new System.Drawing.Size(56, 24);
     this.lbUnsavedData.TabIndex = 10;
     this.lbUnsavedData.Text = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible = false;
     //
     // axAuthentic_TargetTasks
     //
     this.axAuthentic_TargetTasks.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.axAuthentic_TargetTasks.Enabled = true;
     this.axAuthentic_TargetTasks.Location = new System.Drawing.Point(192, 88);
     this.axAuthentic_TargetTasks.Name = "axAuthentic_TargetTasks";
     this.axAuthentic_TargetTasks.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_TargetTasks.OcxState")));
     this.axAuthentic_TargetTasks.Size = new System.Drawing.Size(464, 320);
     this.axAuthentic_TargetTasks.TabIndex = 16;
     this.axAuthentic_TargetTasks.SelectionChanged += new System.EventHandler(this.axAuthentic_TargetTasks_SelectionChanged);
     //
     // btReloadTargetsList
     //
     this.btReloadTargetsList.Location = new System.Drawing.Point(24, 64);
     this.btReloadTargetsList.Name = "btReloadTargetsList";
     this.btReloadTargetsList.Size = new System.Drawing.Size(160, 20);
     this.btReloadTargetsList.TabIndex = 18;
     this.btReloadTargetsList.Text = "Reload Target\'s List";
     this.btReloadTargetsList.Click += new System.EventHandler(this.btReloadTargetsList_Click);
     //
     // ascxTargetTasks
     //
     this.Controls.Add(this.btReloadTargetsList);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.axAuthentic_TargetTasks);
     this.Controls.Add(this.lbTargetsInCurrentProject);
     this.Controls.Add(this.lbCurrentProject);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label3);
     this.Name = "ascxTargetTasks";
     this.Size = new System.Drawing.Size(664, 416);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_TargetTasks)).EndInit();
     this.ResumeLayout(false);
 }
예제 #32
0
 /// <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(ascxIssueTracking));
     this.axAuthentic_IssueTracking = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.btDeleteSelectedIssueTrackingFiles = new System.Windows.Forms.Button();
     this.lbCurrentIssueTrackingFiles = new System.Windows.Forms.ListBox();
     this.lbIssueTrackingFileSaved = new System.Windows.Forms.Label();
     this.btSaveFinding = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.cbTemplateToUse = new System.Windows.Forms.ComboBox();
     this.lbUnsavedData = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_IssueTracking)).BeginInit();
     this.SuspendLayout();
     //
     // axAuthentic_IssueTracking
     //
     this.axAuthentic_IssueTracking.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.axAuthentic_IssueTracking.Enabled = true;
     this.axAuthentic_IssueTracking.Location = new System.Drawing.Point(192, 48);
     this.axAuthentic_IssueTracking.Name = "axAuthentic_IssueTracking";
     this.axAuthentic_IssueTracking.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_IssueTracking.OcxState")));
     this.axAuthentic_IssueTracking.Size = new System.Drawing.Size(688, 400);
     this.axAuthentic_IssueTracking.TabIndex = 21;
     this.axAuthentic_IssueTracking.SelectionChanged += new System.EventHandler(this.axAuthentic_IssueTracking_SelectionChanged);
     //
     // btDeleteSelectedIssueTrackingFiles
     //
     this.btDeleteSelectedIssueTrackingFiles.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btDeleteSelectedIssueTrackingFiles.Location = new System.Drawing.Point(0, 371);
     this.btDeleteSelectedIssueTrackingFiles.Name = "btDeleteSelectedIssueTrackingFiles";
     this.btDeleteSelectedIssueTrackingFiles.Size = new System.Drawing.Size(192, 32);
     this.btDeleteSelectedIssueTrackingFiles.TabIndex = 20;
     this.btDeleteSelectedIssueTrackingFiles.Text = "Delete Selected Issue Tracking File";
     this.btDeleteSelectedIssueTrackingFiles.Click += new System.EventHandler(this.btDeleteSelectedIssueTrackingFiles_Click);
     //
     // lbCurrentIssueTrackingFiles
     //
     this.lbCurrentIssueTrackingFiles.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.lbCurrentIssueTrackingFiles.Location = new System.Drawing.Point(0, 48);
     this.lbCurrentIssueTrackingFiles.Name = "lbCurrentIssueTrackingFiles";
     this.lbCurrentIssueTrackingFiles.Size = new System.Drawing.Size(184, 316);
     this.lbCurrentIssueTrackingFiles.TabIndex = 19;
     this.lbCurrentIssueTrackingFiles.SelectedIndexChanged += new System.EventHandler(this.lbCurrentIssueTrackingFiles_SelectedIndexChanged);
     //
     // lbIssueTrackingFileSaved
     //
     this.lbIssueTrackingFileSaved.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbIssueTrackingFileSaved.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbIssueTrackingFileSaved.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.lbIssueTrackingFileSaved.Location = new System.Drawing.Point(584, 8);
     this.lbIssueTrackingFileSaved.Name = "lbIssueTrackingFileSaved";
     this.lbIssueTrackingFileSaved.Size = new System.Drawing.Size(136, 24);
     this.lbIssueTrackingFileSaved.TabIndex = 23;
     this.lbIssueTrackingFileSaved.Text = "Findings Saved";
     this.lbIssueTrackingFileSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbIssueTrackingFileSaved.Visible = false;
     //
     // btSaveFinding
     //
     this.btSaveFinding.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveFinding.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btSaveFinding.Location = new System.Drawing.Point(728, 8);
     this.btSaveFinding.Name = "btSaveFinding";
     this.btSaveFinding.Size = new System.Drawing.Size(152, 24);
     this.btSaveFinding.TabIndex = 22;
     this.btSaveFinding.Text = "Save Issue Tracking File";
     this.btSaveFinding.Click += new System.EventHandler(this.btSaveFinding_Click);
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(0, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(96, 24);
     this.label1.TabIndex = 23;
     this.label1.Text = "Template To Use";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label1.Visible = false;
     //
     // cbTemplateToUse
     //
     this.cbTemplateToUse.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbTemplateToUse.Items.AddRange(new object[] {
     "Issue Tracking - Just Items and Status",
     "Issue Tracking - With Resolution Info",
     "Edit Project Data",
     "Edit Findings Data",
     "Edit Executive Summary",
     "Edit Targets"});
     this.cbTemplateToUse.Location = new System.Drawing.Point(0, 24);
     this.cbTemplateToUse.Name = "cbTemplateToUse";
     this.cbTemplateToUse.Size = new System.Drawing.Size(184, 21);
     this.cbTemplateToUse.TabIndex = 24;
     this.cbTemplateToUse.SelectedIndexChanged += new System.EventHandler(this.cbTemplateToUse_SelectedIndexChanged);
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location = new System.Drawing.Point(600, 8);
     this.lbUnsavedData.Name = "lbUnsavedData";
     this.lbUnsavedData.Size = new System.Drawing.Size(112, 24);
     this.lbUnsavedData.TabIndex = 25;
     this.lbUnsavedData.Text = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible = false;
     //
     // ascxIssueTracking
     //
     this.Controls.Add(this.lbUnsavedData);
     this.Controls.Add(this.cbTemplateToUse);
     this.Controls.Add(this.lbIssueTrackingFileSaved);
     this.Controls.Add(this.btSaveFinding);
     this.Controls.Add(this.axAuthentic_IssueTracking);
     this.Controls.Add(this.btDeleteSelectedIssueTrackingFiles);
     this.Controls.Add(this.lbCurrentIssueTrackingFiles);
     this.Controls.Add(this.label1);
     this.Name = "ascxIssueTracking";
     this.Size = new System.Drawing.Size(888, 456);
     this.Load += new System.EventHandler(this.ascxIssueTracking_Load);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_IssueTracking)).EndInit();
     this.ResumeLayout(false);
 }
예제 #33
0
        /// <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(frmAuthenticTest));
            this.axAuthentic1             = new AxXMLSPYPLUGINLib.AxAuthentic();
            this.label1                   = new System.Windows.Forms.Label();
            this.txtXsdFile               = new System.Windows.Forms.TextBox();
            this.txtXmlFile               = new System.Windows.Forms.TextBox();
            this.label2                   = new System.Windows.Forms.Label();
            this.txtSpsFile               = new System.Windows.Forms.TextBox();
            this.label3                   = new System.Windows.Forms.Label();
            this.btTest                   = new System.Windows.Forms.Button();
            this.lbTextChanged            = new System.Windows.Forms.Label();
            this.lbKeyPressed             = new System.Windows.Forms.Label();
            this.btnApplyHooks            = new System.Windows.Forms.Button();
            this.txtDebugInformation      = new System.Windows.Forms.TextBox();
            this.lbCurrentSelectedControl = new System.Windows.Forms.Label();
            this.btSelectPreviousElement  = new System.Windows.Forms.Button();
            this.btSelectPreviousWord     = new System.Windows.Forms.Button();
            this.btAssignIssueID          = new System.Windows.Forms.Button();
            this.btTest2                  = new System.Windows.Forms.Button();
            this.lbLeftShift              = new System.Windows.Forms.Label();
            this.lbLeftCtrl               = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.axAuthentic1)).BeginInit();
            this.SuspendLayout();
            //
            // axAuthentic1
            //
            this.axAuthentic1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                             | System.Windows.Forms.AnchorStyles.Left)));
            this.axAuthentic1.Enabled           = true;
            this.axAuthentic1.Location          = new System.Drawing.Point(0, 88);
            this.axAuthentic1.Name              = "axAuthentic1";
            this.axAuthentic1.OcxState          = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic1.OcxState")));
            this.axAuthentic1.Size              = new System.Drawing.Size(744, 320);
            this.axAuthentic1.TabIndex          = 0;
            this.axAuthentic1.SelectionChanged += new System.EventHandler(this.axAuthentic1_SelectionChanged);
            //
            // label1
            //
            this.label1.Location = new System.Drawing.Point(8, 12);
            this.label1.Name     = "label1";
            this.label1.Size     = new System.Drawing.Size(48, 16);
            this.label1.TabIndex = 1;
            this.label1.Text     = "XSD file:";
            this.label1.Visible  = false;
            //
            // txtXsdFile
            //
            this.txtXsdFile.Location = new System.Drawing.Point(56, 8);
            this.txtXsdFile.Name     = "txtXsdFile";
            this.txtXsdFile.Size     = new System.Drawing.Size(272, 20);
            this.txtXsdFile.TabIndex = 2;
            this.txtXsdFile.Visible  = false;
            //
            // txtXmlFile
            //
            this.txtXmlFile.Location = new System.Drawing.Point(56, 32);
            this.txtXmlFile.Name     = "txtXmlFile";
            this.txtXmlFile.Size     = new System.Drawing.Size(272, 20);
            this.txtXmlFile.TabIndex = 2;
            //
            // label2
            //
            this.label2.Location = new System.Drawing.Point(8, 34);
            this.label2.Name     = "label2";
            this.label2.Size     = new System.Drawing.Size(48, 16);
            this.label2.TabIndex = 1;
            this.label2.Text     = "Xml file:";
            //
            // txtSpsFile
            //
            this.txtSpsFile.Location = new System.Drawing.Point(56, 56);
            this.txtSpsFile.Name     = "txtSpsFile";
            this.txtSpsFile.Size     = new System.Drawing.Size(272, 20);
            this.txtSpsFile.TabIndex = 2;
            this.txtSpsFile.Visible  = false;
            //
            // label3
            //
            this.label3.Location = new System.Drawing.Point(7, 56);
            this.label3.Name     = "label3";
            this.label3.Size     = new System.Drawing.Size(48, 16);
            this.label3.TabIndex = 1;
            this.label3.Text     = "SPS file:";
            this.label3.Visible  = false;
            //
            // btTest
            //
            this.btTest.Location = new System.Drawing.Point(496, 32);
            this.btTest.Name     = "btTest";
            this.btTest.Size     = new System.Drawing.Size(72, 24);
            this.btTest.TabIndex = 3;
            this.btTest.Text     = "Test";
            this.btTest.Click   += new System.EventHandler(this.btTest_Click);
            //
            // lbTextChanged
            //
            this.lbTextChanged.ForeColor = System.Drawing.Color.Red;
            this.lbTextChanged.Location  = new System.Drawing.Point(384, 32);
            this.lbTextChanged.Name      = "lbTextChanged";
            this.lbTextChanged.Size      = new System.Drawing.Size(80, 16);
            this.lbTextChanged.TabIndex  = 4;
            this.lbTextChanged.Text      = "Text Changed";
            this.lbTextChanged.Visible   = false;
            //
            // lbKeyPressed
            //
            this.lbKeyPressed.Location = new System.Drawing.Point(384, 48);
            this.lbKeyPressed.Name     = "lbKeyPressed";
            this.lbKeyPressed.Size     = new System.Drawing.Size(80, 16);
            this.lbKeyPressed.TabIndex = 5;
            this.lbKeyPressed.Text     = "...";
            //
            // btnApplyHooks
            //
            this.btnApplyHooks.Location = new System.Drawing.Point(576, 32);
            this.btnApplyHooks.Name     = "btnApplyHooks";
            this.btnApplyHooks.Size     = new System.Drawing.Size(104, 24);
            this.btnApplyHooks.TabIndex = 6;
            this.btnApplyHooks.Text     = "Apply Hooks";
            //
            // txtDebugInformation
            //
            this.txtDebugInformation.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.txtDebugInformation.Location  = new System.Drawing.Point(752, 88);
            this.txtDebugInformation.Multiline = true;
            this.txtDebugInformation.Name      = "txtDebugInformation";
            this.txtDebugInformation.Size      = new System.Drawing.Size(136, 312);
            this.txtDebugInformation.TabIndex  = 7;
            //
            // lbCurrentSelectedControl
            //
            this.lbCurrentSelectedControl.Location = new System.Drawing.Point(384, 72);
            this.lbCurrentSelectedControl.Name     = "lbCurrentSelectedControl";
            this.lbCurrentSelectedControl.Size     = new System.Drawing.Size(328, 16);
            this.lbCurrentSelectedControl.TabIndex = 5;
            this.lbCurrentSelectedControl.Text     = "...";
            //
            // btSelectPreviousElement
            //
            this.btSelectPreviousElement.Location = new System.Drawing.Point(336, 56);
            this.btSelectPreviousElement.Name     = "btSelectPreviousElement";
            this.btSelectPreviousElement.Size     = new System.Drawing.Size(16, 24);
            this.btSelectPreviousElement.TabIndex = 8;
            this.btSelectPreviousElement.Text     = "<";
            this.btSelectPreviousElement.Click   += new System.EventHandler(this.btSelectPreviousElement_Click);
            //
            // btSelectPreviousWord
            //
            this.btSelectPreviousWord.Location = new System.Drawing.Point(336, 24);
            this.btSelectPreviousWord.Name     = "btSelectPreviousWord";
            this.btSelectPreviousWord.Size     = new System.Drawing.Size(16, 24);
            this.btSelectPreviousWord.TabIndex = 8;
            this.btSelectPreviousWord.Text     = "w";
            this.btSelectPreviousWord.Click   += new System.EventHandler(this.btSelectPreviousWord_Click);
            //
            // btAssignIssueID
            //
            this.btAssignIssueID.Location = new System.Drawing.Point(376, 0);
            this.btAssignIssueID.Name     = "btAssignIssueID";
            this.btAssignIssueID.Size     = new System.Drawing.Size(104, 24);
            this.btAssignIssueID.TabIndex = 9;
            this.btAssignIssueID.Text     = "Assign Issue ID";
            this.btAssignIssueID.Click   += new System.EventHandler(this.btAssignIssueID_Click);
            //
            // btTest2
            //
            this.btTest2.Location = new System.Drawing.Point(706, 33);
            this.btTest2.Name     = "btTest2";
            this.btTest2.Size     = new System.Drawing.Size(75, 23);
            this.btTest2.TabIndex = 10;
            this.btTest2.Text     = "test2";
            this.btTest2.UseVisualStyleBackColor = true;
            this.btTest2.Click += new System.EventHandler(this.btTest2_Click);
            //
            // lbLeftShift
            //
            this.lbLeftShift.AutoSize = true;
            this.lbLeftShift.Location = new System.Drawing.Point(466, 69);
            this.lbLeftShift.Name     = "lbLeftShift";
            this.lbLeftShift.Size     = new System.Drawing.Size(49, 13);
            this.lbLeftShift.TabIndex = 11;
            this.lbLeftShift.Text     = "Left Shift";
            this.lbLeftShift.Visible  = false;
            //
            // lbLeftCtrl
            //
            this.lbLeftCtrl.AutoSize = true;
            this.lbLeftCtrl.Location = new System.Drawing.Point(531, 69);
            this.lbLeftCtrl.Name     = "lbLeftCtrl";
            this.lbLeftCtrl.Size     = new System.Drawing.Size(43, 13);
            this.lbLeftCtrl.TabIndex = 11;
            this.lbLeftCtrl.Text     = "Left Ctrl";
            this.lbLeftCtrl.Visible  = false;
            //
            // frmAuthenticTest
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(896, 406);
            this.Controls.Add(this.lbLeftCtrl);
            this.Controls.Add(this.lbLeftShift);
            this.Controls.Add(this.btTest2);
            this.Controls.Add(this.btAssignIssueID);
            this.Controls.Add(this.btSelectPreviousElement);
            this.Controls.Add(this.txtDebugInformation);
            this.Controls.Add(this.btnApplyHooks);
            this.Controls.Add(this.lbKeyPressed);
            this.Controls.Add(this.lbTextChanged);
            this.Controls.Add(this.txtXmlFile);
            this.Controls.Add(this.btTest);
            this.Controls.Add(this.txtXsdFile);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.axAuthentic1);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.txtSpsFile);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.lbCurrentSelectedControl);
            this.Controls.Add(this.btSelectPreviousWord);
            this.KeyPreview = true;
            this.Name       = "frmAuthenticTest";
            this.Text       = "AuthenticTest";
            this.Load      += new System.EventHandler(this.AuthenticTest_Load);
            ((System.ComponentModel.ISupportInitialize)(this.axAuthentic1)).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(ascxExecutiveSummary));
     this.axAuthentic_ExecutiveSummary = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.btSaveReportContents = new System.Windows.Forms.Button();
     this.lblReportContentsSaved = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.lbXmlBreaksXsdSchema = new System.Windows.Forms.Label();
     this.lbUnsavedData = new System.Windows.Forms.Label();
     this.cbReportContentsTemplates = new System.Windows.Forms.ComboBox();
     this.lbReportContentsTemplateLabel = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.btReportContents_UseTemplate = new System.Windows.Forms.Button();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_ExecutiveSummary)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // axAuthentic_ExecutiveSummary
     //
     this.axAuthentic_ExecutiveSummary.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.axAuthentic_ExecutiveSummary.Enabled = true;
     this.axAuthentic_ExecutiveSummary.Location = new System.Drawing.Point(8, 84);
     this.axAuthentic_ExecutiveSummary.Name = "axAuthentic_ExecutiveSummary";
     this.axAuthentic_ExecutiveSummary.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_ExecutiveSummary.OcxState")));
     this.axAuthentic_ExecutiveSummary.Size = new System.Drawing.Size(739, 280);
     this.axAuthentic_ExecutiveSummary.TabIndex = 18;
     this.axAuthentic_ExecutiveSummary.SelectionChanged += new System.EventHandler(this.axAuthentic_ExecutiveSummary_SelectionChanged);
     //
     // btSaveReportContents
     //
     this.btSaveReportContents.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveReportContents.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btSaveReportContents.Location = new System.Drawing.Point(235, 16);
     this.btSaveReportContents.Name = "btSaveReportContents";
     this.btSaveReportContents.Size = new System.Drawing.Size(120, 40);
     this.btSaveReportContents.TabIndex = 3;
     this.btSaveReportContents.Text = "Save Report Contents";
     this.btSaveReportContents.Click += new System.EventHandler(this.btSaveExecutiveSummary_Click);
     //
     // lblReportContentsSaved
     //
     this.lblReportContentsSaved.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblReportContentsSaved.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblReportContentsSaved.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.lblReportContentsSaved.Location = new System.Drawing.Point(118, 19);
     this.lblReportContentsSaved.Name = "lblReportContentsSaved";
     this.lblReportContentsSaved.Size = new System.Drawing.Size(109, 32);
     this.lblReportContentsSaved.TabIndex = 19;
     this.lblReportContentsSaved.Text = "Report Contents Saved";
     this.lblReportContentsSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblReportContentsSaved.Visible = false;
     this.lblReportContentsSaved.Click += new System.EventHandler(this.lblReportContentsSaved_Click);
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.lbXmlBreaksXsdSchema);
     this.groupBox1.Controls.Add(this.btSaveReportContents);
     this.groupBox1.Controls.Add(this.lbUnsavedData);
     this.groupBox1.Controls.Add(this.lblReportContentsSaved);
     this.groupBox1.Location = new System.Drawing.Point(376, 12);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(371, 64);
     this.groupBox1.TabIndex = 17;
     this.groupBox1.TabStop = false;
     //
     // lbXmlBreaksXsdSchema
     //
     this.lbXmlBreaksXsdSchema.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbXmlBreaksXsdSchema.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbXmlBreaksXsdSchema.ForeColor = System.Drawing.Color.Red;
     this.lbXmlBreaksXsdSchema.Location = new System.Drawing.Point(6, 17);
     this.lbXmlBreaksXsdSchema.Name = "lbXmlBreaksXsdSchema";
     this.lbXmlBreaksXsdSchema.Size = new System.Drawing.Size(105, 40);
     this.lbXmlBreaksXsdSchema.TabIndex = 24;
     this.lbXmlBreaksXsdSchema.Text = "Xml breaks XSD schema!!";
     this.lbXmlBreaksXsdSchema.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolTip1.SetToolTip(this.lbXmlBreaksXsdSchema, "Click to view XSD errors");
     this.lbXmlBreaksXsdSchema.Visible = false;
     this.lbXmlBreaksXsdSchema.Click += new System.EventHandler(this.lbXmlBreaksXsdSchema_Click);
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location = new System.Drawing.Point(131, 17);
     this.lbUnsavedData.Name = "lbUnsavedData";
     this.lbUnsavedData.Size = new System.Drawing.Size(80, 38);
     this.lbUnsavedData.TabIndex = 20;
     this.lbUnsavedData.Text = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible = false;
     this.lbUnsavedData.Click += new System.EventHandler(this.lbUnsavedData_Click);
     //
     // cbReportContentsTemplates
     //
     this.cbReportContentsTemplates.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbReportContentsTemplates.FormattingEnabled = true;
     this.cbReportContentsTemplates.Location = new System.Drawing.Point(9, 35);
     this.cbReportContentsTemplates.Name = "cbReportContentsTemplates";
     this.cbReportContentsTemplates.Size = new System.Drawing.Size(163, 21);
     this.cbReportContentsTemplates.TabIndex = 22;
     //
     // lbReportContentsTemplateLabel
     //
     this.lbReportContentsTemplateLabel.AutoSize = true;
     this.lbReportContentsTemplateLabel.Location = new System.Drawing.Point(6, 19);
     this.lbReportContentsTemplateLabel.Name = "lbReportContentsTemplateLabel";
     this.lbReportContentsTemplateLabel.Size = new System.Drawing.Size(102, 13);
     this.lbReportContentsTemplateLabel.TabIndex = 21;
     this.lbReportContentsTemplateLabel.Text = "Available Templates";
     this.lbReportContentsTemplateLabel.Click += new System.EventHandler(this.lbReportContentsTemplateLabel_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.cbReportContentsTemplates);
     this.groupBox2.Controls.Add(this.btReportContents_UseTemplate);
     this.groupBox2.Controls.Add(this.lbReportContentsTemplateLabel);
     this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox2.Location = new System.Drawing.Point(8, 12);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(289, 66);
     this.groupBox2.TabIndex = 23;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Report Contents Templates";
     //
     // btReportContents_UseTemplate
     //
     this.btReportContents_UseTemplate.Location = new System.Drawing.Point(179, 35);
     this.btReportContents_UseTemplate.Name = "btReportContents_UseTemplate";
     this.btReportContents_UseTemplate.Size = new System.Drawing.Size(104, 23);
     this.btReportContents_UseTemplate.TabIndex = 23;
     this.btReportContents_UseTemplate.Text = "Use Template";
     this.btReportContents_UseTemplate.UseVisualStyleBackColor = true;
     this.btReportContents_UseTemplate.Click += new System.EventHandler(this.btReportContents_UseTemplate_Click);
     //
     // ascxExecutiveSummary
     //
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.axAuthentic_ExecutiveSummary);
     this.Controls.Add(this.groupBox1);
     this.Name = "ascxExecutiveSummary";
     this.Size = new System.Drawing.Size(755, 376);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_ExecutiveSummary)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.ResumeLayout(false);
 }
예제 #35
0
 public static XMLSPYPLUGINLib.AuthenticRangeClass authentic_SelectPreviousTag(AxXMLSPYPLUGINLib.AxAuthentic axTargetAuthenticObject)
 {
     try
     {
         XMLSPYPLUGINLib.AuthenticRangeClass arcSelectedObject = (XMLSPYPLUGINLib.AuthenticRangeClass)axTargetAuthenticObject.AuthenticView.Selection.SelectPrevious(XMLSPYPLUGINLib.SPYAuthenticElementKind.spyAuthenticTag);
         arcSelectedObject.Select();
         return(arcSelectedObject);
     }
     catch {}
     return(null);
 }
예제 #36
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(ascxTargets));
     this.axAuthentic_Targets       = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.lbTargetsInCurrentProject = new System.Windows.Forms.ListBox();
     this.lbCurrentProject          = new System.Windows.Forms.Label();
     this.label1                 = new System.Windows.Forms.Label();
     this.label3                 = new System.Windows.Forms.Label();
     this.groupBox3              = new System.Windows.Forms.GroupBox();
     this.btAddNewTarget         = new System.Windows.Forms.Button();
     this.txtNewTargetName       = new System.Windows.Forms.TextBox();
     this.groupBox1              = new System.Windows.Forms.GroupBox();
     this.lbXmlBreaksXsdSchema   = new System.Windows.Forms.Label();
     this.btSaveTarget           = new System.Windows.Forms.Button();
     this.lblTargetsSaved        = new System.Windows.Forms.Label();
     this.lbUnsavedData          = new System.Windows.Forms.Label();
     this.btnTargetImport        = new System.Windows.Forms.Button();
     this.btDeleteSelectedTarget = new System.Windows.Forms.Button();
     this.groupBox2              = new System.Windows.Forms.GroupBox();
     this.btRenameTarget         = new System.Windows.Forms.Button();
     this.txtRenameTarget        = new System.Windows.Forms.TextBox();
     this.axWebBrowserContentsOfProjectFolder = new System.Windows.Forms.WebBrowser();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.txtTargetsSearchResults = new System.Windows.Forms.TextBox();
     this.txtTargetsSearchQuery   = new System.Windows.Forms.TextBox();
     this.label5                       = new System.Windows.Forms.Label();
     this.label4                       = new System.Windows.Forms.Label();
     this.cbIgnoreStatusFlag           = new System.Windows.Forms.CheckBox();
     this.label6                       = new System.Windows.Forms.Label();
     this.txtDefaultTargetType         = new System.Windows.Forms.TextBox();
     this.cbShowContentOfProjectFolder = new System.Windows.Forms.CheckBox();
     this.groupBox5                    = new System.Windows.Forms.GroupBox();
     this.toolTip1                     = new System.Windows.Forms.ToolTip(this.components);
     this.splitContainer1              = new System.Windows.Forms.SplitContainer();
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_Targets)).BeginInit();
     this.groupBox3.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // axAuthentic_Targets
     //
     this.axAuthentic_Targets.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.axAuthentic_Targets.Enabled           = true;
     this.axAuthentic_Targets.Location          = new System.Drawing.Point(-2, -2);
     this.axAuthentic_Targets.Name              = "axAuthentic_Targets";
     this.axAuthentic_Targets.OcxState          = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_Targets.OcxState")));
     this.axAuthentic_Targets.Size              = new System.Drawing.Size(661, 228);
     this.axAuthentic_Targets.TabIndex          = 12;
     this.axAuthentic_Targets.SelectionChanged += new System.EventHandler(this.axAuthentic_Targets_SelectionChanged);
     //
     // lbTargetsInCurrentProject
     //
     this.lbTargetsInCurrentProject.Location              = new System.Drawing.Point(15, 52);
     this.lbTargetsInCurrentProject.Name                  = "lbTargetsInCurrentProject";
     this.lbTargetsInCurrentProject.Size                  = new System.Drawing.Size(160, 147);
     this.lbTargetsInCurrentProject.Sorted                = true;
     this.lbTargetsInCurrentProject.TabIndex              = 11;
     this.lbTargetsInCurrentProject.SelectedIndexChanged += new System.EventHandler(this.lbTargetsInCurrentProject_SelectedIndexChanged);
     //
     // lbCurrentProject
     //
     this.lbCurrentProject.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbCurrentProject.Location = new System.Drawing.Point(96, 3);
     this.lbCurrentProject.Name     = "lbCurrentProject";
     this.lbCurrentProject.Size     = new System.Drawing.Size(280, 16);
     this.lbCurrentProject.TabIndex = 10;
     this.lbCurrentProject.Text     = "...";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(0, 4);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(96, 16);
     this.label1.TabIndex = 8;
     this.label1.Text     = "Current Project";
     //
     // label3
     //
     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(0, 32);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(160, 16);
     this.label3.TabIndex = 9;
     this.label3.Text     = "Targets in Current Project:";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.btAddNewTarget);
     this.groupBox3.Controls.Add(this.txtNewTargetName);
     this.groupBox3.Location = new System.Drawing.Point(16, 202);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(160, 40);
     this.groupBox3.TabIndex = 13;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Add Target";
     //
     // btAddNewTarget
     //
     this.btAddNewTarget.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btAddNewTarget.Location = new System.Drawing.Point(117, 15);
     this.btAddNewTarget.Name     = "btAddNewTarget";
     this.btAddNewTarget.Size     = new System.Drawing.Size(35, 20);
     this.btAddNewTarget.TabIndex = 1;
     this.btAddNewTarget.Text     = "Add";
     this.btAddNewTarget.Click   += new System.EventHandler(this.btAddNewTarget_Click);
     //
     // txtNewTargetName
     //
     this.txtNewTargetName.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.txtNewTargetName.Location = new System.Drawing.Point(8, 15);
     this.txtNewTargetName.Name     = "txtNewTargetName";
     this.txtNewTargetName.Size     = new System.Drawing.Size(104, 20);
     this.txtNewTargetName.TabIndex = 0;
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.lbXmlBreaksXsdSchema);
     this.groupBox1.Controls.Add(this.btSaveTarget);
     this.groupBox1.Controls.Add(this.lblTargetsSaved);
     this.groupBox1.Controls.Add(this.lbUnsavedData);
     this.groupBox1.Location = new System.Drawing.Point(563, 4);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(293, 59);
     this.groupBox1.TabIndex = 14;
     this.groupBox1.TabStop  = false;
     //
     // lbXmlBreaksXsdSchema
     //
     this.lbXmlBreaksXsdSchema.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbXmlBreaksXsdSchema.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbXmlBreaksXsdSchema.ForeColor = System.Drawing.Color.Red;
     this.lbXmlBreaksXsdSchema.Location  = new System.Drawing.Point(10, 14);
     this.lbXmlBreaksXsdSchema.Name      = "lbXmlBreaksXsdSchema";
     this.lbXmlBreaksXsdSchema.Size      = new System.Drawing.Size(105, 40);
     this.lbXmlBreaksXsdSchema.TabIndex  = 11;
     this.lbXmlBreaksXsdSchema.Text      = "Xml breaks XSD schema!!";
     this.lbXmlBreaksXsdSchema.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolTip1.SetToolTip(this.lbXmlBreaksXsdSchema, "Click to view XSD errors");
     this.lbXmlBreaksXsdSchema.Visible = false;
     this.lbXmlBreaksXsdSchema.Click  += new System.EventHandler(this.lbXmlBreaksXsdSchema_Click);
     //
     // btSaveTarget
     //
     this.btSaveTarget.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveTarget.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btSaveTarget.Location = new System.Drawing.Point(187, 22);
     this.btSaveTarget.Name     = "btSaveTarget";
     this.btSaveTarget.Size     = new System.Drawing.Size(98, 21);
     this.btSaveTarget.TabIndex = 3;
     this.btSaveTarget.Text     = "Save Target";
     this.btSaveTarget.Click   += new System.EventHandler(this.btSaveTarget_Click);
     //
     // lblTargetsSaved
     //
     this.lblTargetsSaved.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblTargetsSaved.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTargetsSaved.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.lblTargetsSaved.Location  = new System.Drawing.Point(125, 14);
     this.lblTargetsSaved.Name      = "lblTargetsSaved";
     this.lblTargetsSaved.Size      = new System.Drawing.Size(56, 37);
     this.lblTargetsSaved.TabIndex  = 9;
     this.lblTargetsSaved.Text      = "Targets Saved";
     this.lblTargetsSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblTargetsSaved.Visible   = false;
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location  = new System.Drawing.Point(119, 20);
     this.lbUnsavedData.Name      = "lbUnsavedData";
     this.lbUnsavedData.Size      = new System.Drawing.Size(62, 27);
     this.lbUnsavedData.TabIndex  = 10;
     this.lbUnsavedData.Text      = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible   = false;
     //
     // btnTargetImport
     //
     this.btnTargetImport.AccessibleDescription = "Imports in targets from nmap Xml output";
     this.btnTargetImport.Location = new System.Drawing.Point(183, 13);
     this.btnTargetImport.Name     = "btnTargetImport";
     this.btnTargetImport.Size     = new System.Drawing.Size(106, 23);
     this.btnTargetImport.TabIndex = 12;
     this.btnTargetImport.Text     = "Import Targets";
     this.btnTargetImport.UseVisualStyleBackColor = true;
     this.btnTargetImport.Click += new System.EventHandler(this.btnTargetImport_Click);
     //
     // btDeleteSelectedTarget
     //
     this.btDeleteSelectedTarget.Location = new System.Drawing.Point(16, 322);
     this.btDeleteSelectedTarget.Name     = "btDeleteSelectedTarget";
     this.btDeleteSelectedTarget.Size     = new System.Drawing.Size(160, 20);
     this.btDeleteSelectedTarget.TabIndex = 15;
     this.btDeleteSelectedTarget.Text     = "Delete Selected Target";
     this.btDeleteSelectedTarget.Click   += new System.EventHandler(this.btDeleteSelectedTarget_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.btRenameTarget);
     this.groupBox2.Controls.Add(this.txtRenameTarget);
     this.groupBox2.Location = new System.Drawing.Point(16, 242);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(160, 64);
     this.groupBox2.TabIndex = 13;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Rename Target";
     //
     // btRenameTarget
     //
     this.btRenameTarget.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btRenameTarget.Location = new System.Drawing.Point(96, 40);
     this.btRenameTarget.Name     = "btRenameTarget";
     this.btRenameTarget.Size     = new System.Drawing.Size(56, 20);
     this.btRenameTarget.TabIndex = 1;
     this.btRenameTarget.Text     = "Rename";
     this.btRenameTarget.Click   += new System.EventHandler(this.btRenameTarget_Click);
     //
     // txtRenameTarget
     //
     this.txtRenameTarget.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.txtRenameTarget.Location = new System.Drawing.Point(8, 16);
     this.txtRenameTarget.Name     = "txtRenameTarget";
     this.txtRenameTarget.Size     = new System.Drawing.Size(143, 20);
     this.txtRenameTarget.TabIndex = 0;
     //
     // axWebBrowserContentsOfProjectFolder
     //
     this.axWebBrowserContentsOfProjectFolder.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.axWebBrowserContentsOfProjectFolder.Location    = new System.Drawing.Point(1, 22);
     this.axWebBrowserContentsOfProjectFolder.MinimumSize = new System.Drawing.Size(20, 20);
     this.axWebBrowserContentsOfProjectFolder.Name        = "axWebBrowserContentsOfProjectFolder";
     this.axWebBrowserContentsOfProjectFolder.Size        = new System.Drawing.Size(657, 162);
     this.axWebBrowserContentsOfProjectFolder.TabIndex    = 16;
     //
     // groupBox4
     //
     this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox4.Controls.Add(this.txtTargetsSearchResults);
     this.groupBox4.Controls.Add(this.txtTargetsSearchQuery);
     this.groupBox4.Controls.Add(this.label5);
     this.groupBox4.Controls.Add(this.label4);
     this.groupBox4.Location = new System.Drawing.Point(16, 348);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(160, 145);
     this.groupBox4.TabIndex = 18;
     this.groupBox4.TabStop  = false;
     this.groupBox4.Text     = "Search Targets";
     //
     // txtTargetsSearchResults
     //
     this.txtTargetsSearchResults.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtTargetsSearchResults.Location   = new System.Drawing.Point(10, 76);
     this.txtTargetsSearchResults.Multiline  = true;
     this.txtTargetsSearchResults.Name       = "txtTargetsSearchResults";
     this.txtTargetsSearchResults.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.txtTargetsSearchResults.Size       = new System.Drawing.Size(144, 63);
     this.txtTargetsSearchResults.TabIndex   = 1;
     this.txtTargetsSearchResults.WordWrap   = false;
     //
     // txtTargetsSearchQuery
     //
     this.txtTargetsSearchQuery.Location     = new System.Drawing.Point(10, 37);
     this.txtTargetsSearchQuery.Name         = "txtTargetsSearchQuery";
     this.txtTargetsSearchQuery.Size         = new System.Drawing.Size(144, 20);
     this.txtTargetsSearchQuery.TabIndex     = 1;
     this.txtTargetsSearchQuery.TextChanged += new System.EventHandler(this.txtTargetsSearchQuery_TextChanged);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(8, 60);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(42, 13);
     this.label5.TabIndex = 0;
     this.label5.Text     = "Results";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(7, 20);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(131, 13);
     this.label4.TabIndex = 0;
     this.label4.Text     = "DNS name or IP to search";
     //
     // cbIgnoreStatusFlag
     //
     this.cbIgnoreStatusFlag.AutoSize = true;
     this.cbIgnoreStatusFlag.Location = new System.Drawing.Point(185, 39);
     this.cbIgnoreStatusFlag.Name     = "cbIgnoreStatusFlag";
     this.cbIgnoreStatusFlag.Size     = new System.Drawing.Size(104, 17);
     this.cbIgnoreStatusFlag.TabIndex = 13;
     this.cbIgnoreStatusFlag.Text     = "Ignore state=\'up\'";
     this.cbIgnoreStatusFlag.UseVisualStyleBackColor = true;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(6, 18);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(102, 13);
     this.label6.TabIndex = 14;
     this.label6.Text     = "Default Target Type";
     //
     // txtDefaultTargetType
     //
     this.txtDefaultTargetType.Location = new System.Drawing.Point(116, 16);
     this.txtDefaultTargetType.Name     = "txtDefaultTargetType";
     this.txtDefaultTargetType.Size     = new System.Drawing.Size(61, 20);
     this.txtDefaultTargetType.TabIndex = 15;
     //
     // cbShowContentOfProjectFolder
     //
     this.cbShowContentOfProjectFolder.AutoSize = true;
     this.cbShowContentOfProjectFolder.Location = new System.Drawing.Point(3, 4);
     this.cbShowContentOfProjectFolder.Name     = "cbShowContentOfProjectFolder";
     this.cbShowContentOfProjectFolder.Size     = new System.Drawing.Size(265, 17);
     this.cbShowContentOfProjectFolder.TabIndex = 19;
     this.cbShowContentOfProjectFolder.Text     = "Show Contents of Project folder (in Explorer format)";
     this.cbShowContentOfProjectFolder.UseVisualStyleBackColor = true;
     this.cbShowContentOfProjectFolder.CheckedChanged         += new System.EventHandler(this.cbShowContentOfProjectFolder_CheckedChanged);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.btnTargetImport);
     this.groupBox5.Controls.Add(this.txtDefaultTargetType);
     this.groupBox5.Controls.Add(this.cbIgnoreStatusFlag);
     this.groupBox5.Controls.Add(this.label6);
     this.groupBox5.Location = new System.Drawing.Point(192, 4);
     this.groupBox5.Name     = "groupBox5";
     this.groupBox5.Size     = new System.Drawing.Size(300, 59);
     this.groupBox5.TabIndex = 16;
     this.groupBox5.TabStop  = false;
     this.groupBox5.Text     = "Target\'s nMap Import Tool";
     //
     // 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.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.splitContainer1.Location    = new System.Drawing.Point(192, 74);
     this.splitContainer1.Name        = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.axAuthentic_Targets);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.axWebBrowserContentsOfProjectFolder);
     this.splitContainer1.Panel2.Controls.Add(this.cbShowContentOfProjectFolder);
     this.splitContainer1.Size             = new System.Drawing.Size(661, 418);
     this.splitContainer1.SplitterDistance = 228;
     this.splitContainer1.TabIndex         = 20;
     //
     // ascxTargets
     //
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.btDeleteSelectedTarget);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.lbTargetsInCurrentProject);
     this.Controls.Add(this.lbCurrentProject);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.splitContainer1);
     this.Name = "ascxTargets";
     this.Size = new System.Drawing.Size(864, 500);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_Targets)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ascxProjects));
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.lbXmlBreaksXsdSchema  = new System.Windows.Forms.Label();
     this.btSaveProjectMetadata = new System.Windows.Forms.Button();
     this.lblProjectsSaved      = new System.Windows.Forms.Label();
     this.lbUnsavedData         = new System.Windows.Forms.Label();
     this.axAuthentic_Project   = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_Project)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.lbXmlBreaksXsdSchema);
     this.groupBox1.Controls.Add(this.btSaveProjectMetadata);
     this.groupBox1.Controls.Add(this.lblProjectsSaved);
     this.groupBox1.Controls.Add(this.lbUnsavedData);
     this.groupBox1.Location = new System.Drawing.Point(250, 8);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(342, 64);
     this.groupBox1.TabIndex = 15;
     this.groupBox1.TabStop  = false;
     //
     // lbXmlBreaksXsdSchema
     //
     this.lbXmlBreaksXsdSchema.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbXmlBreaksXsdSchema.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbXmlBreaksXsdSchema.ForeColor = System.Drawing.Color.Red;
     this.lbXmlBreaksXsdSchema.Location  = new System.Drawing.Point(14, 14);
     this.lbXmlBreaksXsdSchema.Name      = "lbXmlBreaksXsdSchema";
     this.lbXmlBreaksXsdSchema.Size      = new System.Drawing.Size(105, 40);
     this.lbXmlBreaksXsdSchema.TabIndex  = 7;
     this.lbXmlBreaksXsdSchema.Text      = "Xml breaks XSD schema!!";
     this.lbXmlBreaksXsdSchema.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolTip1.SetToolTip(this.lbXmlBreaksXsdSchema, "Click to view XSD errors");
     this.lbXmlBreaksXsdSchema.Visible = false;
     this.lbXmlBreaksXsdSchema.Click  += new System.EventHandler(this.lbXmlBreaksXsdSchema_Click);
     //
     // btSaveProjectMetadata
     //
     this.btSaveProjectMetadata.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveProjectMetadata.Enabled  = false;
     this.btSaveProjectMetadata.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btSaveProjectMetadata.Location = new System.Drawing.Point(190, 16);
     this.btSaveProjectMetadata.Name     = "btSaveProjectMetadata";
     this.btSaveProjectMetadata.Size     = new System.Drawing.Size(136, 40);
     this.btSaveProjectMetadata.TabIndex = 3;
     this.btSaveProjectMetadata.Text     = "Save Project Metadata";
     this.btSaveProjectMetadata.Click   += new System.EventHandler(this.btSaveProjectMetadata_Click);
     //
     // lblProjectsSaved
     //
     this.lblProjectsSaved.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblProjectsSaved.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblProjectsSaved.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.lblProjectsSaved.Location  = new System.Drawing.Point(124, 15);
     this.lblProjectsSaved.Name      = "lblProjectsSaved";
     this.lblProjectsSaved.Size      = new System.Drawing.Size(56, 37);
     this.lblProjectsSaved.TabIndex  = 8;
     this.lblProjectsSaved.Text      = "Projects Saved";
     this.lblProjectsSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblProjectsSaved.Visible   = false;
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location  = new System.Drawing.Point(119, 12);
     this.lbUnsavedData.Name      = "lbUnsavedData";
     this.lbUnsavedData.Size      = new System.Drawing.Size(65, 40);
     this.lbUnsavedData.TabIndex  = 7;
     this.lbUnsavedData.Text      = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible   = false;
     //
     // axAuthentic_Project
     //
     this.axAuthentic_Project.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.axAuthentic_Project.Enabled           = true;
     this.axAuthentic_Project.Location          = new System.Drawing.Point(8, 80);
     this.axAuthentic_Project.Name              = "axAuthentic_Project";
     this.axAuthentic_Project.OcxState          = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_Project.OcxState")));
     this.axAuthentic_Project.Size              = new System.Drawing.Size(584, 296);
     this.axAuthentic_Project.TabIndex          = 16;
     this.axAuthentic_Project.SelectionChanged += new System.EventHandler(this.axAuthentic_Project_SelectionChanged);
     //
     // ascxProjects
     //
     this.Controls.Add(this.axAuthentic_Project);
     this.Controls.Add(this.groupBox1);
     this.Name = "ascxProjects";
     this.Size = new System.Drawing.Size(600, 384);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_Project)).EndInit();
     this.ResumeLayout(false);
 }
예제 #38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ascxViewFindingsBydate));
     this.axAuthentic_SelectedFinding = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.label1                      = new System.Windows.Forms.Label();
     this.cbCurrentProjects           = new System.Windows.Forms.ComboBox();
     this.label2                      = new System.Windows.Forms.Label();
     this.lvFindingsInProject         = new System.Windows.Forms.ListView();
     this.chDateModified              = new System.Windows.Forms.ColumnHeader();
     this.chFinding                   = new System.Windows.Forms.ColumnHeader();
     this.btReloadFindingFromTempFile = new System.Windows.Forms.Button();
     this.lbTempFileLocation          = new System.Windows.Forms.Label();
     this.btSaveFinding               = new System.Windows.Forms.Button();
     this.label3                      = new System.Windows.Forms.Label();
     this.lbUnsavedData               = new System.Windows.Forms.Label();
     this.lblFindingSaved             = new System.Windows.Forms.Label();
     this.label4                      = new System.Windows.Forms.Label();
     this.cbEditMode                  = new System.Windows.Forms.ComboBox();
     this.txtSelectedFinding          = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_SelectedFinding)).BeginInit();
     this.SuspendLayout();
     //
     // axAuthentic_SelectedFinding
     //
     this.axAuthentic_SelectedFinding.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.axAuthentic_SelectedFinding.Enabled           = true;
     this.axAuthentic_SelectedFinding.Location          = new System.Drawing.Point(336, 64);
     this.axAuthentic_SelectedFinding.Name              = "axAuthentic_SelectedFinding";
     this.axAuthentic_SelectedFinding.OcxState          = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_SelectedFinding.OcxState")));
     this.axAuthentic_SelectedFinding.Size              = new System.Drawing.Size(760, 288);
     this.axAuthentic_SelectedFinding.TabIndex          = 25;
     this.axAuthentic_SelectedFinding.SelectionChanged += new System.EventHandler(this.axAuthentic_SelectedFinding_SelectionChanged);
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location  = new System.Drawing.Point(336, 28);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(192, 24);
     this.label1.TabIndex  = 26;
     this.label1.Text      = "Finding:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // cbCurrentProjects
     //
     this.cbCurrentProjects.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbCurrentProjects.Location              = new System.Drawing.Point(0, 32);
     this.cbCurrentProjects.Name                  = "cbCurrentProjects";
     this.cbCurrentProjects.Size                  = new System.Drawing.Size(328, 21);
     this.cbCurrentProjects.TabIndex              = 27;
     this.cbCurrentProjects.SelectedIndexChanged += new System.EventHandler(this.cbCurrentProjects_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location  = new System.Drawing.Point(0, 8);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(96, 24);
     this.label2.TabIndex  = 26;
     this.label2.Text      = "Select Project";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lvFindingsInProject
     //
     this.lvFindingsInProject.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                             | System.Windows.Forms.AnchorStyles.Left)));
     this.lvFindingsInProject.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.chDateModified,
         this.chFinding
     });
     this.lvFindingsInProject.FullRowSelect         = true;
     this.lvFindingsInProject.Location              = new System.Drawing.Point(0, 64);
     this.lvFindingsInProject.MultiSelect           = false;
     this.lvFindingsInProject.Name                  = "lvFindingsInProject";
     this.lvFindingsInProject.Size                  = new System.Drawing.Size(328, 288);
     this.lvFindingsInProject.Sorting               = System.Windows.Forms.SortOrder.Descending;
     this.lvFindingsInProject.TabIndex              = 28;
     this.lvFindingsInProject.View                  = System.Windows.Forms.View.Details;
     this.lvFindingsInProject.SelectedIndexChanged += new System.EventHandler(this.lvFindingsInProject_SelectedIndexChanged);
     //
     // chDateModified
     //
     this.chDateModified.Text  = "Date Modified";
     this.chDateModified.Width = 100;
     //
     // chFinding
     //
     this.chFinding.Text  = "Finding";
     this.chFinding.Width = 224;
     //
     // btReloadFindingFromTempFile
     //
     this.btReloadFindingFromTempFile.Location = new System.Drawing.Point(552, 8);
     this.btReloadFindingFromTempFile.Name     = "btReloadFindingFromTempFile";
     this.btReloadFindingFromTempFile.Size     = new System.Drawing.Size(168, 24);
     this.btReloadFindingFromTempFile.TabIndex = 29;
     this.btReloadFindingFromTempFile.Text     = "Reload Finding from Temp File";
     this.btReloadFindingFromTempFile.Click   += new System.EventHandler(this.btReloadFindingFromTempFile_Click);
     //
     // lbTempFileLocation
     //
     this.lbTempFileLocation.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.lbTempFileLocation.Location = new System.Drawing.Point(400, 32);
     this.lbTempFileLocation.Name     = "lbTempFileLocation";
     this.lbTempFileLocation.Size     = new System.Drawing.Size(512, 32);
     this.lbTempFileLocation.TabIndex = 30;
     this.lbTempFileLocation.Text     = "...";
     this.lbTempFileLocation.Click   += new System.EventHandler(this.lbTempFileLocation_Click);
     //
     // btSaveFinding
     //
     this.btSaveFinding.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveFinding.Location = new System.Drawing.Point(992, 8);
     this.btSaveFinding.Name     = "btSaveFinding";
     this.btSaveFinding.Size     = new System.Drawing.Size(104, 32);
     this.btSaveFinding.TabIndex = 29;
     this.btSaveFinding.Text     = "Save Finding";
     this.btSaveFinding.Click   += new System.EventHandler(this.btSaveFinding_Click);
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(728, 8);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(176, 32);
     this.label3.TabIndex = 30;
     this.label3.Text     = "use this if you want to change the xml file externaly (for example to spell check" +
                            " it)";
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location  = new System.Drawing.Point(912, 16);
     this.lbUnsavedData.Name      = "lbUnsavedData";
     this.lbUnsavedData.Size      = new System.Drawing.Size(56, 24);
     this.lbUnsavedData.TabIndex  = 31;
     this.lbUnsavedData.Text      = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible   = false;
     //
     // lblFindingSaved
     //
     this.lblFindingSaved.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblFindingSaved.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblFindingSaved.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(192)), ((System.Byte)(0)));
     this.lblFindingSaved.Location  = new System.Drawing.Point(912, 16);
     this.lblFindingSaved.Name      = "lblFindingSaved";
     this.lblFindingSaved.Size      = new System.Drawing.Size(56, 24);
     this.lblFindingSaved.TabIndex  = 32;
     this.lblFindingSaved.Text      = "Findings Saved";
     this.lblFindingSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblFindingSaved.Visible   = false;
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(336, 13);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(64, 16);
     this.label4.TabIndex = 33;
     this.label4.Text     = "Edit Mode:";
     //
     // cbEditMode
     //
     this.cbEditMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbEditMode.Items.AddRange(new object[] {
         "Authentic",
         "Notepad"
     });
     this.cbEditMode.Location              = new System.Drawing.Point(408, 9);
     this.cbEditMode.Name                  = "cbEditMode";
     this.cbEditMode.Size                  = new System.Drawing.Size(81, 21);
     this.cbEditMode.TabIndex              = 34;
     this.cbEditMode.SelectedIndexChanged += new System.EventHandler(this.cbEditMode_SelectedIndexChanged);
     //
     // txtSelectedFinding
     //
     this.txtSelectedFinding.AcceptsReturn = true;
     this.txtSelectedFinding.AcceptsTab    = true;
     this.txtSelectedFinding.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.txtSelectedFinding.Location  = new System.Drawing.Point(336, 64);
     this.txtSelectedFinding.Multiline = true;
     this.txtSelectedFinding.Name      = "txtSelectedFinding";
     this.txtSelectedFinding.Size      = new System.Drawing.Size(760, 288);
     this.txtSelectedFinding.TabIndex  = 35;
     this.txtSelectedFinding.Text      = "";
     //
     // ascxViewFindingsBydate
     //
     this.Controls.Add(this.txtSelectedFinding);
     this.Controls.Add(this.cbEditMode);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.lblFindingSaved);
     this.Controls.Add(this.lbUnsavedData);
     this.Controls.Add(this.lbTempFileLocation);
     this.Controls.Add(this.btReloadFindingFromTempFile);
     this.Controls.Add(this.lvFindingsInProject);
     this.Controls.Add(this.cbCurrentProjects);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.axAuthentic_SelectedFinding);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.btSaveFinding);
     this.Controls.Add(this.label3);
     this.Name  = "ascxViewFindingsBydate";
     this.Size  = new System.Drawing.Size(1104, 360);
     this.Load += new System.EventHandler(this.ascxViewFindingsBydate_Load);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_SelectedFinding)).EndInit();
     this.ResumeLayout(false);
 }
예제 #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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ascxTargets));
     this.axAuthentic_Targets = new AxXMLSPYPLUGINLib.AxAuthentic();
     this.lbTargetsInCurrentProject = new System.Windows.Forms.ListBox();
     this.lbCurrentProject = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.btAddNewTarget = new System.Windows.Forms.Button();
     this.txtNewTargetName = new System.Windows.Forms.TextBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.lbXmlBreaksXsdSchema = new System.Windows.Forms.Label();
     this.btSaveTarget = new System.Windows.Forms.Button();
     this.lblTargetsSaved = new System.Windows.Forms.Label();
     this.lbUnsavedData = new System.Windows.Forms.Label();
     this.btnTargetImport = new System.Windows.Forms.Button();
     this.btDeleteSelectedTarget = new System.Windows.Forms.Button();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.btRenameTarget = new System.Windows.Forms.Button();
     this.txtRenameTarget = new System.Windows.Forms.TextBox();
     this.axWebBrowserContentsOfProjectFolder = new System.Windows.Forms.WebBrowser();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.txtTargetsSearchResults = new System.Windows.Forms.TextBox();
     this.txtTargetsSearchQuery = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.cbIgnoreStatusFlag = new System.Windows.Forms.CheckBox();
     this.label6 = new System.Windows.Forms.Label();
     this.txtDefaultTargetType = new System.Windows.Forms.TextBox();
     this.cbShowContentOfProjectFolder = new System.Windows.Forms.CheckBox();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_Targets)).BeginInit();
     this.groupBox3.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // axAuthentic_Targets
     //
     this.axAuthentic_Targets.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.axAuthentic_Targets.Enabled = true;
     this.axAuthentic_Targets.Location = new System.Drawing.Point(-2, -2);
     this.axAuthentic_Targets.Name = "axAuthentic_Targets";
     this.axAuthentic_Targets.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axAuthentic_Targets.OcxState")));
     this.axAuthentic_Targets.Size = new System.Drawing.Size(661, 228);
     this.axAuthentic_Targets.TabIndex = 12;
     this.axAuthentic_Targets.SelectionChanged += new System.EventHandler(this.axAuthentic_Targets_SelectionChanged);
     //
     // lbTargetsInCurrentProject
     //
     this.lbTargetsInCurrentProject.Location = new System.Drawing.Point(15, 52);
     this.lbTargetsInCurrentProject.Name = "lbTargetsInCurrentProject";
     this.lbTargetsInCurrentProject.Size = new System.Drawing.Size(160, 147);
     this.lbTargetsInCurrentProject.Sorted = true;
     this.lbTargetsInCurrentProject.TabIndex = 11;
     this.lbTargetsInCurrentProject.SelectedIndexChanged += new System.EventHandler(this.lbTargetsInCurrentProject_SelectedIndexChanged);
     //
     // lbCurrentProject
     //
     this.lbCurrentProject.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbCurrentProject.Location = new System.Drawing.Point(96, 3);
     this.lbCurrentProject.Name = "lbCurrentProject";
     this.lbCurrentProject.Size = new System.Drawing.Size(280, 16);
     this.lbCurrentProject.TabIndex = 10;
     this.lbCurrentProject.Text = "...";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(0, 4);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(96, 16);
     this.label1.TabIndex = 8;
     this.label1.Text = "Current Project";
     //
     // label3
     //
     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(0, 32);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(160, 16);
     this.label3.TabIndex = 9;
     this.label3.Text = "Targets in Current Project:";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.btAddNewTarget);
     this.groupBox3.Controls.Add(this.txtNewTargetName);
     this.groupBox3.Location = new System.Drawing.Point(16, 202);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(160, 40);
     this.groupBox3.TabIndex = 13;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Add Target";
     //
     // btAddNewTarget
     //
     this.btAddNewTarget.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btAddNewTarget.Location = new System.Drawing.Point(117, 15);
     this.btAddNewTarget.Name = "btAddNewTarget";
     this.btAddNewTarget.Size = new System.Drawing.Size(35, 20);
     this.btAddNewTarget.TabIndex = 1;
     this.btAddNewTarget.Text = "Add";
     this.btAddNewTarget.Click += new System.EventHandler(this.btAddNewTarget_Click);
     //
     // txtNewTargetName
     //
     this.txtNewTargetName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.txtNewTargetName.Location = new System.Drawing.Point(8, 15);
     this.txtNewTargetName.Name = "txtNewTargetName";
     this.txtNewTargetName.Size = new System.Drawing.Size(104, 20);
     this.txtNewTargetName.TabIndex = 0;
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.lbXmlBreaksXsdSchema);
     this.groupBox1.Controls.Add(this.btSaveTarget);
     this.groupBox1.Controls.Add(this.lblTargetsSaved);
     this.groupBox1.Controls.Add(this.lbUnsavedData);
     this.groupBox1.Location = new System.Drawing.Point(563, 4);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(293, 59);
     this.groupBox1.TabIndex = 14;
     this.groupBox1.TabStop = false;
     //
     // lbXmlBreaksXsdSchema
     //
     this.lbXmlBreaksXsdSchema.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbXmlBreaksXsdSchema.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbXmlBreaksXsdSchema.ForeColor = System.Drawing.Color.Red;
     this.lbXmlBreaksXsdSchema.Location = new System.Drawing.Point(10, 14);
     this.lbXmlBreaksXsdSchema.Name = "lbXmlBreaksXsdSchema";
     this.lbXmlBreaksXsdSchema.Size = new System.Drawing.Size(105, 40);
     this.lbXmlBreaksXsdSchema.TabIndex = 11;
     this.lbXmlBreaksXsdSchema.Text = "Xml breaks XSD schema!!";
     this.lbXmlBreaksXsdSchema.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolTip1.SetToolTip(this.lbXmlBreaksXsdSchema, "Click to view XSD errors");
     this.lbXmlBreaksXsdSchema.Visible = false;
     this.lbXmlBreaksXsdSchema.Click += new System.EventHandler(this.lbXmlBreaksXsdSchema_Click);
     //
     // btSaveTarget
     //
     this.btSaveTarget.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btSaveTarget.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btSaveTarget.Location = new System.Drawing.Point(187, 22);
     this.btSaveTarget.Name = "btSaveTarget";
     this.btSaveTarget.Size = new System.Drawing.Size(98, 21);
     this.btSaveTarget.TabIndex = 3;
     this.btSaveTarget.Text = "Save Target";
     this.btSaveTarget.Click += new System.EventHandler(this.btSaveTarget_Click);
     //
     // lblTargetsSaved
     //
     this.lblTargetsSaved.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblTargetsSaved.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTargetsSaved.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
     this.lblTargetsSaved.Location = new System.Drawing.Point(125, 14);
     this.lblTargetsSaved.Name = "lblTargetsSaved";
     this.lblTargetsSaved.Size = new System.Drawing.Size(56, 37);
     this.lblTargetsSaved.TabIndex = 9;
     this.lblTargetsSaved.Text = "Targets Saved";
     this.lblTargetsSaved.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblTargetsSaved.Visible = false;
     //
     // lbUnsavedData
     //
     this.lbUnsavedData.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lbUnsavedData.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbUnsavedData.ForeColor = System.Drawing.Color.Red;
     this.lbUnsavedData.Location = new System.Drawing.Point(119, 20);
     this.lbUnsavedData.Name = "lbUnsavedData";
     this.lbUnsavedData.Size = new System.Drawing.Size(62, 27);
     this.lbUnsavedData.TabIndex = 10;
     this.lbUnsavedData.Text = "Unsaved Data";
     this.lbUnsavedData.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lbUnsavedData.Visible = false;
     //
     // btnTargetImport
     //
     this.btnTargetImport.AccessibleDescription = "Imports in targets from nmap Xml output";
     this.btnTargetImport.Location = new System.Drawing.Point(183, 13);
     this.btnTargetImport.Name = "btnTargetImport";
     this.btnTargetImport.Size = new System.Drawing.Size(106, 23);
     this.btnTargetImport.TabIndex = 12;
     this.btnTargetImport.Text = "Import Targets";
     this.btnTargetImport.UseVisualStyleBackColor = true;
     this.btnTargetImport.Click += new System.EventHandler(this.btnTargetImport_Click);
     //
     // btDeleteSelectedTarget
     //
     this.btDeleteSelectedTarget.Location = new System.Drawing.Point(16, 322);
     this.btDeleteSelectedTarget.Name = "btDeleteSelectedTarget";
     this.btDeleteSelectedTarget.Size = new System.Drawing.Size(160, 20);
     this.btDeleteSelectedTarget.TabIndex = 15;
     this.btDeleteSelectedTarget.Text = "Delete Selected Target";
     this.btDeleteSelectedTarget.Click += new System.EventHandler(this.btDeleteSelectedTarget_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.btRenameTarget);
     this.groupBox2.Controls.Add(this.txtRenameTarget);
     this.groupBox2.Location = new System.Drawing.Point(16, 242);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(160, 64);
     this.groupBox2.TabIndex = 13;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Rename Target";
     //
     // btRenameTarget
     //
     this.btRenameTarget.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btRenameTarget.Location = new System.Drawing.Point(96, 40);
     this.btRenameTarget.Name = "btRenameTarget";
     this.btRenameTarget.Size = new System.Drawing.Size(56, 20);
     this.btRenameTarget.TabIndex = 1;
     this.btRenameTarget.Text = "Rename";
     this.btRenameTarget.Click += new System.EventHandler(this.btRenameTarget_Click);
     //
     // txtRenameTarget
     //
     this.txtRenameTarget.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.txtRenameTarget.Location = new System.Drawing.Point(8, 16);
     this.txtRenameTarget.Name = "txtRenameTarget";
     this.txtRenameTarget.Size = new System.Drawing.Size(143, 20);
     this.txtRenameTarget.TabIndex = 0;
     //
     // axWebBrowserContentsOfProjectFolder
     //
     this.axWebBrowserContentsOfProjectFolder.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.axWebBrowserContentsOfProjectFolder.Location = new System.Drawing.Point(1, 22);
     this.axWebBrowserContentsOfProjectFolder.MinimumSize = new System.Drawing.Size(20, 20);
     this.axWebBrowserContentsOfProjectFolder.Name = "axWebBrowserContentsOfProjectFolder";
     this.axWebBrowserContentsOfProjectFolder.Size = new System.Drawing.Size(657, 162);
     this.axWebBrowserContentsOfProjectFolder.TabIndex = 16;
     //
     // groupBox4
     //
     this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox4.Controls.Add(this.txtTargetsSearchResults);
     this.groupBox4.Controls.Add(this.txtTargetsSearchQuery);
     this.groupBox4.Controls.Add(this.label5);
     this.groupBox4.Controls.Add(this.label4);
     this.groupBox4.Location = new System.Drawing.Point(16, 348);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(160, 145);
     this.groupBox4.TabIndex = 18;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Search Targets";
     //
     // txtTargetsSearchResults
     //
     this.txtTargetsSearchResults.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtTargetsSearchResults.Location = new System.Drawing.Point(10, 76);
     this.txtTargetsSearchResults.Multiline = true;
     this.txtTargetsSearchResults.Name = "txtTargetsSearchResults";
     this.txtTargetsSearchResults.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.txtTargetsSearchResults.Size = new System.Drawing.Size(144, 63);
     this.txtTargetsSearchResults.TabIndex = 1;
     this.txtTargetsSearchResults.WordWrap = false;
     //
     // txtTargetsSearchQuery
     //
     this.txtTargetsSearchQuery.Location = new System.Drawing.Point(10, 37);
     this.txtTargetsSearchQuery.Name = "txtTargetsSearchQuery";
     this.txtTargetsSearchQuery.Size = new System.Drawing.Size(144, 20);
     this.txtTargetsSearchQuery.TabIndex = 1;
     this.txtTargetsSearchQuery.TextChanged += new System.EventHandler(this.txtTargetsSearchQuery_TextChanged);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(8, 60);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(42, 13);
     this.label5.TabIndex = 0;
     this.label5.Text = "Results";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(7, 20);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(131, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "DNS name or IP to search";
     //
     // cbIgnoreStatusFlag
     //
     this.cbIgnoreStatusFlag.AutoSize = true;
     this.cbIgnoreStatusFlag.Location = new System.Drawing.Point(185, 39);
     this.cbIgnoreStatusFlag.Name = "cbIgnoreStatusFlag";
     this.cbIgnoreStatusFlag.Size = new System.Drawing.Size(104, 17);
     this.cbIgnoreStatusFlag.TabIndex = 13;
     this.cbIgnoreStatusFlag.Text = "Ignore state=\'up\'";
     this.cbIgnoreStatusFlag.UseVisualStyleBackColor = true;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(6, 18);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(102, 13);
     this.label6.TabIndex = 14;
     this.label6.Text = "Default Target Type";
     //
     // txtDefaultTargetType
     //
     this.txtDefaultTargetType.Location = new System.Drawing.Point(116, 16);
     this.txtDefaultTargetType.Name = "txtDefaultTargetType";
     this.txtDefaultTargetType.Size = new System.Drawing.Size(61, 20);
     this.txtDefaultTargetType.TabIndex = 15;
     //
     // cbShowContentOfProjectFolder
     //
     this.cbShowContentOfProjectFolder.AutoSize = true;
     this.cbShowContentOfProjectFolder.Location = new System.Drawing.Point(3, 4);
     this.cbShowContentOfProjectFolder.Name = "cbShowContentOfProjectFolder";
     this.cbShowContentOfProjectFolder.Size = new System.Drawing.Size(265, 17);
     this.cbShowContentOfProjectFolder.TabIndex = 19;
     this.cbShowContentOfProjectFolder.Text = "Show Contents of Project folder (in Explorer format)";
     this.cbShowContentOfProjectFolder.UseVisualStyleBackColor = true;
     this.cbShowContentOfProjectFolder.CheckedChanged += new System.EventHandler(this.cbShowContentOfProjectFolder_CheckedChanged);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.btnTargetImport);
     this.groupBox5.Controls.Add(this.txtDefaultTargetType);
     this.groupBox5.Controls.Add(this.cbIgnoreStatusFlag);
     this.groupBox5.Controls.Add(this.label6);
     this.groupBox5.Location = new System.Drawing.Point(192, 4);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(300, 59);
     this.groupBox5.TabIndex = 16;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Target\'s nMap Import Tool";
     //
     // 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.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.splitContainer1.Location = new System.Drawing.Point(192, 74);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.axAuthentic_Targets);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.axWebBrowserContentsOfProjectFolder);
     this.splitContainer1.Panel2.Controls.Add(this.cbShowContentOfProjectFolder);
     this.splitContainer1.Size = new System.Drawing.Size(661, 418);
     this.splitContainer1.SplitterDistance = 228;
     this.splitContainer1.TabIndex = 20;
     //
     // ascxTargets
     //
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.btDeleteSelectedTarget);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.lbTargetsInCurrentProject);
     this.Controls.Add(this.lbCurrentProject);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.splitContainer1);
     this.Name = "ascxTargets";
     this.Size = new System.Drawing.Size(864, 500);
     ((System.ComponentModel.ISupportInitialize)(this.axAuthentic_Targets)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }