Click here to Skip to main content
15,880,796 members
Articles / Security / Encryption

Encrypting Editor Notepad Replacement

Rate me:
Please Sign up or sign in to vote.
4.85/5 (50 votes)
28 Jul 2014CPOL80 min read 175.7K   6.1K   112  
A C# .NET 3.5 (Win7) Windows Forms Application with source code
namespace CryptPad
{
	partial class Replace
	{
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
		protected override void Dispose (bool disposing)
		{
			if (disposing && (components != null))
			{
				components.Dispose ();
			}
			base.Dispose (disposing);
		}

		#region Windows Form Designer generated code

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent ()
		{
			this.components = new System.ComponentModel.Container();
			this.textFind = new System.Windows.Forms.TextBox();
			this.contextMenuStripFind = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.toolStripMenuUndo = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.toolStripMenuCut = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripMenuCopy = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripMenuPaste = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripMenuDelete = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
			this.toolStripMenuSelectAll = new System.Windows.Forms.ToolStripMenuItem();
			this.buttonFindNext = new System.Windows.Forms.Button();
			this.buttonReplaceCancel = new System.Windows.Forms.Button();
			this.checkBoxMatchCase = new System.Windows.Forms.CheckBox();
			this.label2 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.textReplace = new System.Windows.Forms.TextBox();
			this.contextMenuStripReplace = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.toolStripReplaceMenuUndo = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
			this.toolStripReplaceMenuCut = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripReplaceMenuCopy = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripReplaceMenuPaste = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripReplaceMenuDelete = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
			this.toolStripReplaceMenuSelectAll = new System.Windows.Forms.ToolStripMenuItem();
			this.buttonReplaceAll = new System.Windows.Forms.Button();
			this.buttonReplace = new System.Windows.Forms.Button();
			this.checkBoxRegEx = new System.Windows.Forms.CheckBox();
			this.comboBoxPatterns = new System.Windows.Forms.ComboBox();
			this.contextMenuStripFind.SuspendLayout();
			this.contextMenuStripReplace.SuspendLayout();
			this.SuspendLayout();
			// 
			// textFind
			// 
			this.textFind.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.textFind.ContextMenuStrip = this.contextMenuStripFind;
			this.textFind.HideSelection = false;
			this.textFind.Location = new System.Drawing.Point(97, 7);
			this.textFind.Name = "textFind";
			this.textFind.Size = new System.Drawing.Size(263, 20);
			this.textFind.TabIndex = 0;
			this.textFind.TextChanged += new System.EventHandler(this.textFind_TextChanged);
			this.textFind.Enter += new System.EventHandler(this.textFind_Enter);
			// 
			// contextMenuStripFind
			// 
			this.contextMenuStripFind.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuUndo,
            this.toolStripSeparator1,
            this.toolStripMenuCut,
            this.toolStripMenuCopy,
            this.toolStripMenuPaste,
            this.toolStripMenuDelete,
            this.toolStripSeparator2,
            this.toolStripMenuSelectAll});
			this.contextMenuStripFind.Name = "contextMenuStripFind";
			this.contextMenuStripFind.ShowImageMargin = false;
			this.contextMenuStripFind.Size = new System.Drawing.Size(136, 184);
			this.contextMenuStripFind.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStripFind_Opening);
			// 
			// toolStripMenuUndo
			// 
			this.toolStripMenuUndo.Name = "toolStripMenuUndo";
			this.toolStripMenuUndo.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
			this.toolStripMenuUndo.ShowShortcutKeys = false;
			this.toolStripMenuUndo.Size = new System.Drawing.Size(135, 28);
			this.toolStripMenuUndo.Text = "Undo";
			this.toolStripMenuUndo.Click += new System.EventHandler(this.toolStripMenuUndo_Click);
			// 
			// toolStripSeparator1
			// 
			this.toolStripSeparator1.Name = "toolStripSeparator1";
			this.toolStripSeparator1.Size = new System.Drawing.Size(132, 6);
			// 
			// toolStripMenuCut
			// 
			this.toolStripMenuCut.Name = "toolStripMenuCut";
			this.toolStripMenuCut.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
			this.toolStripMenuCut.ShowShortcutKeys = false;
			this.toolStripMenuCut.Size = new System.Drawing.Size(135, 28);
			this.toolStripMenuCut.Text = "Cut";
			this.toolStripMenuCut.Click += new System.EventHandler(this.toolStripMenuCut_Click);
			// 
			// toolStripMenuCopy
			// 
			this.toolStripMenuCopy.Name = "toolStripMenuCopy";
			this.toolStripMenuCopy.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
			this.toolStripMenuCopy.ShowShortcutKeys = false;
			this.toolStripMenuCopy.Size = new System.Drawing.Size(135, 28);
			this.toolStripMenuCopy.Text = "&Copy";
			this.toolStripMenuCopy.Click += new System.EventHandler(this.toolStripMenuCopy_Click);
			// 
			// toolStripMenuPaste
			// 
			this.toolStripMenuPaste.Name = "toolStripMenuPaste";
			this.toolStripMenuPaste.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
			this.toolStripMenuPaste.ShowShortcutKeys = false;
			this.toolStripMenuPaste.Size = new System.Drawing.Size(135, 28);
			this.toolStripMenuPaste.Text = "Paste";
			this.toolStripMenuPaste.Click += new System.EventHandler(this.toolStripMenuPaste_Click);
			// 
			// toolStripMenuDelete
			// 
			this.toolStripMenuDelete.Name = "toolStripMenuDelete";
			this.toolStripMenuDelete.Size = new System.Drawing.Size(135, 28);
			this.toolStripMenuDelete.Text = "Delete";
			this.toolStripMenuDelete.Click += new System.EventHandler(this.toolStripMenuDelete_Click);
			// 
			// toolStripSeparator2
			// 
			this.toolStripSeparator2.Name = "toolStripSeparator2";
			this.toolStripSeparator2.Size = new System.Drawing.Size(132, 6);
			// 
			// toolStripMenuSelectAll
			// 
			this.toolStripMenuSelectAll.Name = "toolStripMenuSelectAll";
			this.toolStripMenuSelectAll.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
			this.toolStripMenuSelectAll.ShowShortcutKeys = false;
			this.toolStripMenuSelectAll.Size = new System.Drawing.Size(135, 28);
			this.toolStripMenuSelectAll.Text = "Select All";
			this.toolStripMenuSelectAll.Click += new System.EventHandler(this.toolStripMenuSelectAll_Click);
			// 
			// buttonFindNext
			// 
			this.buttonFindNext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.buttonFindNext.AutoSize = true;
			this.buttonFindNext.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			this.buttonFindNext.Enabled = false;
			this.buttonFindNext.Location = new System.Drawing.Point(97, 59);
			this.buttonFindNext.Name = "buttonFindNext";
			this.buttonFindNext.Size = new System.Drawing.Size(62, 23);
			this.buttonFindNext.TabIndex = 3;
			this.buttonFindNext.Text = "&Find Next";
			this.buttonFindNext.UseVisualStyleBackColor = true;
			this.buttonFindNext.Click += new System.EventHandler(this.buttonFindNext_Click);
			// 
			// buttonReplaceCancel
			// 
			this.buttonReplaceCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.buttonReplaceCancel.AutoSize = true;
			this.buttonReplaceCancel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			this.buttonReplaceCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.buttonReplaceCancel.Location = new System.Drawing.Point(305, 59);
			this.buttonReplaceCancel.Name = "buttonReplaceCancel";
			this.buttonReplaceCancel.Size = new System.Drawing.Size(50, 23);
			this.buttonReplaceCancel.TabIndex = 6;
			this.buttonReplaceCancel.Text = "Cancel";
			this.buttonReplaceCancel.UseVisualStyleBackColor = true;
			this.buttonReplaceCancel.Click += new System.EventHandler(this.buttonCancel_Click);
			// 
			// checkBoxMatchCase
			// 
			this.checkBoxMatchCase.AutoSize = true;
			this.checkBoxMatchCase.Location = new System.Drawing.Point(12, 63);
			this.checkBoxMatchCase.Name = "checkBoxMatchCase";
			this.checkBoxMatchCase.Size = new System.Drawing.Size(82, 17);
			this.checkBoxMatchCase.TabIndex = 2;
			this.checkBoxMatchCase.Text = "Match &case";
			this.checkBoxMatchCase.UseVisualStyleBackColor = true;
			// 
			// label2
			// 
			this.label2.AutoSize = true;
			this.label2.Location = new System.Drawing.Point(9, 10);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(56, 13);
			this.label2.TabIndex = 7;
			this.label2.Text = "Fi&nd what:";
			// 
			// label3
			// 
			this.label3.AutoSize = true;
			this.label3.Location = new System.Drawing.Point(9, 36);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(72, 13);
			this.label3.TabIndex = 8;
			this.label3.Text = "Re&place with:";
			// 
			// textReplace
			// 
			this.textReplace.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.textReplace.ContextMenuStrip = this.contextMenuStripReplace;
			this.textReplace.HideSelection = false;
			this.textReplace.Location = new System.Drawing.Point(97, 33);
			this.textReplace.Name = "textReplace";
			this.textReplace.Size = new System.Drawing.Size(263, 20);
			this.textReplace.TabIndex = 1;
			this.textReplace.Enter += new System.EventHandler(this.textReplace_Enter);
			// 
			// contextMenuStripReplace
			// 
			this.contextMenuStripReplace.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripReplaceMenuUndo,
            this.toolStripSeparator3,
            this.toolStripReplaceMenuCut,
            this.toolStripReplaceMenuCopy,
            this.toolStripReplaceMenuPaste,
            this.toolStripReplaceMenuDelete,
            this.toolStripSeparator4,
            this.toolStripReplaceMenuSelectAll});
			this.contextMenuStripReplace.Name = "contextMenuStrip1";
			this.contextMenuStripReplace.ShowImageMargin = false;
			this.contextMenuStripReplace.Size = new System.Drawing.Size(136, 184);
			this.contextMenuStripReplace.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStripReplace_Opening);
			// 
			// toolStripReplaceMenuUndo
			// 
			this.toolStripReplaceMenuUndo.Name = "toolStripReplaceMenuUndo";
			this.toolStripReplaceMenuUndo.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
			this.toolStripReplaceMenuUndo.ShowShortcutKeys = false;
			this.toolStripReplaceMenuUndo.Size = new System.Drawing.Size(135, 28);
			this.toolStripReplaceMenuUndo.Text = "Undo";
			this.toolStripReplaceMenuUndo.Click += new System.EventHandler(this.toolStripReplaceMenuUndo_Click);
			// 
			// toolStripSeparator3
			// 
			this.toolStripSeparator3.Name = "toolStripSeparator3";
			this.toolStripSeparator3.Size = new System.Drawing.Size(132, 6);
			// 
			// toolStripReplaceMenuCut
			// 
			this.toolStripReplaceMenuCut.Name = "toolStripReplaceMenuCut";
			this.toolStripReplaceMenuCut.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
			this.toolStripReplaceMenuCut.ShowShortcutKeys = false;
			this.toolStripReplaceMenuCut.Size = new System.Drawing.Size(135, 28);
			this.toolStripReplaceMenuCut.Text = "Cut";
			this.toolStripReplaceMenuCut.Click += new System.EventHandler(this.toolStripReplaceMenuCut_Click);
			// 
			// toolStripReplaceMenuCopy
			// 
			this.toolStripReplaceMenuCopy.Name = "toolStripReplaceMenuCopy";
			this.toolStripReplaceMenuCopy.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
			this.toolStripReplaceMenuCopy.ShowShortcutKeys = false;
			this.toolStripReplaceMenuCopy.Size = new System.Drawing.Size(135, 28);
			this.toolStripReplaceMenuCopy.Text = "Copy";
			this.toolStripReplaceMenuCopy.Click += new System.EventHandler(this.toolStripReplaceMenuCopy_Click);
			// 
			// toolStripReplaceMenuPaste
			// 
			this.toolStripReplaceMenuPaste.Name = "toolStripReplaceMenuPaste";
			this.toolStripReplaceMenuPaste.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
			this.toolStripReplaceMenuPaste.ShowShortcutKeys = false;
			this.toolStripReplaceMenuPaste.Size = new System.Drawing.Size(135, 28);
			this.toolStripReplaceMenuPaste.Text = "Paste";
			this.toolStripReplaceMenuPaste.Click += new System.EventHandler(this.toolStripReplaceMenuPaste_Click);
			// 
			// toolStripReplaceMenuDelete
			// 
			this.toolStripReplaceMenuDelete.Name = "toolStripReplaceMenuDelete";
			this.toolStripReplaceMenuDelete.Size = new System.Drawing.Size(135, 28);
			this.toolStripReplaceMenuDelete.Text = "Delete";
			this.toolStripReplaceMenuDelete.Click += new System.EventHandler(this.toolStripReplaceMenuDelete_Click);
			// 
			// toolStripSeparator4
			// 
			this.toolStripSeparator4.Name = "toolStripSeparator4";
			this.toolStripSeparator4.Size = new System.Drawing.Size(132, 6);
			// 
			// toolStripReplaceMenuSelectAll
			// 
			this.toolStripReplaceMenuSelectAll.Name = "toolStripReplaceMenuSelectAll";
			this.toolStripReplaceMenuSelectAll.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
			this.toolStripReplaceMenuSelectAll.ShowShortcutKeys = false;
			this.toolStripReplaceMenuSelectAll.Size = new System.Drawing.Size(135, 28);
			this.toolStripReplaceMenuSelectAll.Text = "Select All";
			this.toolStripReplaceMenuSelectAll.Click += new System.EventHandler(this.toolStripReplaceMenuSelectAll_Click);
			// 
			// buttonReplaceAll
			// 
			this.buttonReplaceAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.buttonReplaceAll.AutoSize = true;
			this.buttonReplaceAll.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			this.buttonReplaceAll.Enabled = false;
			this.buttonReplaceAll.Location = new System.Drawing.Point(228, 59);
			this.buttonReplaceAll.Name = "buttonReplaceAll";
			this.buttonReplaceAll.Size = new System.Drawing.Size(71, 23);
			this.buttonReplaceAll.TabIndex = 5;
			this.buttonReplaceAll.Text = "Replace &All";
			this.buttonReplaceAll.UseVisualStyleBackColor = true;
			this.buttonReplaceAll.Click += new System.EventHandler(this.buttonReplaceAll_Click);
			// 
			// buttonReplace
			// 
			this.buttonReplace.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.buttonReplace.AutoSize = true;
			this.buttonReplace.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			this.buttonReplace.Enabled = false;
			this.buttonReplace.Location = new System.Drawing.Point(165, 59);
			this.buttonReplace.Name = "buttonReplace";
			this.buttonReplace.Size = new System.Drawing.Size(57, 23);
			this.buttonReplace.TabIndex = 4;
			this.buttonReplace.Text = "&Replace";
			this.buttonReplace.UseVisualStyleBackColor = true;
			this.buttonReplace.Click += new System.EventHandler(this.buttonReplace_Click);
			// 
			// checkBoxRegEx
			// 
			this.checkBoxRegEx.AutoSize = true;
			this.checkBoxRegEx.Location = new System.Drawing.Point(12, 90);
			this.checkBoxRegEx.Name = "checkBoxRegEx";
			this.checkBoxRegEx.Size = new System.Drawing.Size(58, 17);
			this.checkBoxRegEx.TabIndex = 9;
			this.checkBoxRegEx.Text = "&RegEx";
			this.checkBoxRegEx.UseVisualStyleBackColor = true;
			this.checkBoxRegEx.CheckedChanged += new System.EventHandler(this.checkBoxRegEx_CheckedChanged);
			// 
			// comboBoxPatterns
			// 
			this.comboBoxPatterns.Location = new System.Drawing.Point(97, 88);
			this.comboBoxPatterns.MaxDropDownItems = 15;
			this.comboBoxPatterns.Name = "comboBoxPatterns";
			this.comboBoxPatterns.Size = new System.Drawing.Size(170, 21);
			this.comboBoxPatterns.TabIndex = 10;
			// 
			// Replace
			// 
			this.AcceptButton = this.buttonFindNext;
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.AutoSize = true;
			this.CancelButton = this.buttonReplaceCancel;
			this.ClientSize = new System.Drawing.Size(372, 114);
			this.Controls.Add(this.comboBoxPatterns);
			this.Controls.Add(this.checkBoxRegEx);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.textReplace);
			this.Controls.Add(this.label3);
			this.Controls.Add(this.checkBoxMatchCase);
			this.Controls.Add(this.buttonReplace);
			this.Controls.Add(this.buttonReplaceAll);
			this.Controls.Add(this.textFind);
			this.Controls.Add(this.buttonReplaceCancel);
			this.Controls.Add(this.buttonFindNext);
			this.MaximizeBox = false;
			this.MaximumSize = new System.Drawing.Size(2000, 148);
			this.MinimizeBox = false;
			this.MinimumSize = new System.Drawing.Size(380, 148);
			this.Name = "Replace";
			this.ShowIcon = false;
			this.ShowInTaskbar = false;
			this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "Replace";
			this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Replace_FormClosed);
			this.Load += new System.EventHandler(this.Replace_Load);
			this.contextMenuStripFind.ResumeLayout(false);
			this.contextMenuStripReplace.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#endregion

		private System.Windows.Forms.TextBox textFind;
		private System.Windows.Forms.Button buttonFindNext;
		private System.Windows.Forms.Button buttonReplaceCancel;
		private System.Windows.Forms.CheckBox checkBoxMatchCase;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.TextBox textReplace;
		private System.Windows.Forms.Button buttonReplaceAll;
		private System.Windows.Forms.Button buttonReplace;
		private System.Windows.Forms.ContextMenuStrip contextMenuStripFind;
		private System.Windows.Forms.ToolStripMenuItem toolStripMenuUndo;
		private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
		private System.Windows.Forms.ToolStripMenuItem toolStripMenuCut;
		private System.Windows.Forms.ToolStripMenuItem toolStripMenuCopy;
		private System.Windows.Forms.ToolStripMenuItem toolStripMenuPaste;
		private System.Windows.Forms.ToolStripMenuItem toolStripMenuDelete;
		private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
		private System.Windows.Forms.ToolStripMenuItem toolStripMenuSelectAll;
		private System.Windows.Forms.ContextMenuStrip contextMenuStripReplace;
		private System.Windows.Forms.ToolStripMenuItem toolStripReplaceMenuUndo;
		private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
		private System.Windows.Forms.ToolStripMenuItem toolStripReplaceMenuCut;
		private System.Windows.Forms.ToolStripMenuItem toolStripReplaceMenuCopy;
		private System.Windows.Forms.ToolStripMenuItem toolStripReplaceMenuPaste;
		private System.Windows.Forms.ToolStripMenuItem toolStripReplaceMenuDelete;
		private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
		private System.Windows.Forms.ToolStripMenuItem toolStripReplaceMenuSelectAll;
		private System.Windows.Forms.CheckBox checkBoxRegEx;
		private System.Windows.Forms.ComboBox comboBoxPatterns;
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Systems Engineer IAUA End Time Ministry
United States United States
I am a retired Software Systems Design Engineer experienced with IEEE standards and the entire IEEE software development life cycle. Concept Exploration, Requirements, Design, Implementation, Test, Installation and Checkout, Operation and Maintenance. I enjoy working with people and solving customer problems.

I am currently a writer for my personal ministry: IAUA End Time Ministry

Comments and Discussions