Click here to Skip to main content
15,896,512 members
Articles / Programming Languages / C#

The Grid Processor: Word Processing Abilities for the .NET DataGridView Component

Rate me:
Please Sign up or sign in to vote.
4.87/5 (15 votes)
7 May 200711 min read 65.7K   1.6K   51  
A plugin which offers search and replace, casing and other capabilities for the Microsoft .NET DataGridView component
#region GNU notice
// GridProcessor - Search and replace abilities for the .NET DataGridView
// Copyright (C) 2007, by Evan Stein
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// 
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.

// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
//
#endregion GNU notice
namespace GridProcessor
{
    /// <summary>
    /// The central "grid processing" Windows form
    /// </summary>
    partial class FormGridProcessor
    {
        /// <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.groupBox2 = new System.Windows.Forms.GroupBox();
            this.button_test = new System.Windows.Forms.Button();
            this.textBox_resultString = new System.Windows.Forms.TextBox();
            this.textBox_testString = new System.Windows.Forms.TextBox();
            this.label_testResult = new System.Windows.Forms.Label();
            this.label_testString = new System.Windows.Forms.Label();
            this.button_checkAll = new System.Windows.Forms.Button();
            this.checkedListBox_columns = new System.Windows.Forms.CheckedListBox();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.button_close = new System.Windows.Forms.Button();
            this.dataTable1 = new System.Data.DataTable();
            this.dataColumn1 = new System.Data.DataColumn();
            this.dataColumn2 = new System.Data.DataColumn();
            this.dataColumn3 = new System.Data.DataColumn();
            this.dataSet_searchAndReplace = new System.Data.DataSet();
            this.radioButton_all = new System.Windows.Forms.RadioButton();
            this.radioButton_selected = new System.Windows.Forms.RadioButton();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.radioButton_current = new System.Windows.Forms.RadioButton();
            this.label_setName = new System.Windows.Forms.Label();
            this.checkBox_regex = new System.Windows.Forms.CheckBox();
            this.textBox_setName = new System.Windows.Forms.TextBox();
            this.textBox_replaceExpr = new System.Windows.Forms.TextBox();
            this.label_replaceExpression = new System.Windows.Forms.Label();
            this.textBox_searchExpr = new System.Windows.Forms.TextBox();
            this.label_findExpression = new System.Windows.Forms.Label();
            this.label_caseExpression = new System.Windows.Forms.Label();
            this.textBox_caseExpression = new System.Windows.Forms.TextBox();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage_find = new System.Windows.Forms.TabPage();
            this.button_findFirst = new System.Windows.Forms.Button();
            this.button_findCount = new System.Windows.Forms.Button();
            this.button_findNext = new System.Windows.Forms.Button();
            this.checkBox_findCaseSensitive = new System.Windows.Forms.CheckBox();
            this.label_findFindExpression = new System.Windows.Forms.Label();
            this.checkBox_findRegularExpression = new System.Windows.Forms.CheckBox();
            this.textBox_findFindExpression = new System.Windows.Forms.TextBox();
            this.tabPage_searchAndReplace = new System.Windows.Forms.TabPage();
            this.checkBox_caseSensitive = new System.Windows.Forms.CheckBox();
            this.button_searchReplaceApply = new System.Windows.Forms.Button();
            this.button_searchReplaceSave = new System.Windows.Forms.Button();
            this.button_searchReplaceLoad = new System.Windows.Forms.Button();
            this.tabPage_upperLowerCase = new System.Windows.Forms.TabPage();
            this.checkBox_caseSensitiveCaseSearch = new System.Windows.Forms.CheckBox();
            this.textBox_caseSetName = new System.Windows.Forms.TextBox();
            this.label_caseSetName = new System.Windows.Forms.Label();
            this.label_caseReplacement = new System.Windows.Forms.Label();
            this.radioButton_lower = new System.Windows.Forms.RadioButton();
            this.radioButton_upper = new System.Windows.Forms.RadioButton();
            this.button_caseApply = new System.Windows.Forms.Button();
            this.button_caseSave = new System.Windows.Forms.Button();
            this.button_caseLoad = new System.Windows.Forms.Button();
            this.tabPage_split = new System.Windows.Forms.TabPage();
            this.textBox_splitName = new System.Windows.Forms.TextBox();
            this.label_splitName = new System.Windows.Forms.Label();
            this.comboBox_splitSource = new System.Windows.Forms.ComboBox();
            this.label_splitSourceColumn = new System.Windows.Forms.Label();
            this.button_splitApply = new System.Windows.Forms.Button();
            this.button_splitSave = new System.Windows.Forms.Button();
            this.button_splitLoad = new System.Windows.Forms.Button();
            this.label_resultColumns = new System.Windows.Forms.Label();
            this.dataGridView_splitResult = new System.Windows.Forms.DataGridView();
            this.orderDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.columnNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.bindingSource_splitResult = new System.Windows.Forms.BindingSource(this.components);
            this.dataSet_splitResult = new System.Data.DataSet();
            this.dataTable2 = new System.Data.DataTable();
            this.dataColumn4 = new System.Data.DataColumn();
            this.dataColumn5 = new System.Data.DataColumn();
            this.label_splitExpression = new System.Windows.Forms.Label();
            this.textBox_splitExpression = new System.Windows.Forms.TextBox();
            this.checkBox_splitRegex = new System.Windows.Forms.CheckBox();
            this.tabPage_macros = new System.Windows.Forms.TabPage();
            this.button_macroDelete = new System.Windows.Forms.Button();
            this.button_macroRename = new System.Windows.Forms.Button();
            this.dataGridView_macro = new System.Windows.Forms.DataGridView();
            this.macroIDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.nameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.descriptionDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.contextMenuStrip_macro = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.renameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.bindingSource_macro = new System.Windows.Forms.BindingSource(this.components);
            this.dataSet_macro1 = new GridProcessor.DataSet_macro();
            this.button_macroApply = new System.Windows.Forms.Button();
            this.button_macroEdit = new System.Windows.Forms.Button();
            this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbConnection1 = new System.Data.OleDb.OleDbConnection();
            this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbUpdateCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbDeleteCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbDataAdapter_macro = new System.Data.OleDb.OleDbDataAdapter();
            this.label1 = new System.Windows.Forms.Label();
            this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.button_help = new System.Windows.Forms.Button();
            this.helpProvider1 = new System.Windows.Forms.HelpProvider();
            this.groupBox2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataSet_searchAndReplace)).BeginInit();
            this.groupBox5.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage_find.SuspendLayout();
            this.tabPage_searchAndReplace.SuspendLayout();
            this.tabPage_upperLowerCase.SuspendLayout();
            this.tabPage_split.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView_splitResult)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource_splitResult)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataSet_splitResult)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
            this.tabPage_macros.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView_macro)).BeginInit();
            this.contextMenuStrip_macro.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource_macro)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataSet_macro1)).BeginInit();
            this.SuspendLayout();
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.button_test);
            this.groupBox2.Controls.Add(this.textBox_resultString);
            this.groupBox2.Controls.Add(this.textBox_testString);
            this.groupBox2.Controls.Add(this.label_testResult);
            this.groupBox2.Controls.Add(this.label_testString);
            this.groupBox2.Location = new System.Drawing.Point(137, 229);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(399, 81);
            this.groupBox2.TabIndex = 19;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Testing";
            // 
            // button_test
            // 
            this.button_test.Enabled = false;
            this.button_test.Location = new System.Drawing.Point(10, 32);
            this.button_test.Name = "button_test";
            this.button_test.Size = new System.Drawing.Size(75, 23);
            this.button_test.TabIndex = 11;
            this.button_test.Text = "Test";
            this.button_test.UseVisualStyleBackColor = true;
            this.button_test.Click += new System.EventHandler(this.button_test_Click);
            // 
            // textBox_resultString
            // 
            this.textBox_resultString.Location = new System.Drawing.Point(160, 44);
            this.textBox_resultString.Name = "textBox_resultString";
            this.textBox_resultString.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.textBox_resultString.Size = new System.Drawing.Size(227, 20);
            this.textBox_resultString.TabIndex = 10;
            // 
            // textBox_testString
            // 
            this.textBox_testString.Location = new System.Drawing.Point(160, 20);
            this.textBox_testString.Name = "textBox_testString";
            this.textBox_testString.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.textBox_testString.Size = new System.Drawing.Size(227, 20);
            this.textBox_testString.TabIndex = 9;
            this.textBox_testString.TextChanged += new System.EventHandler(this.textBox_testString_TextChanged);
            // 
            // label_testResult
            // 
            this.label_testResult.Location = new System.Drawing.Point(91, 44);
            this.label_testResult.Name = "label_testResult";
            this.label_testResult.Size = new System.Drawing.Size(63, 23);
            this.label_testResult.TabIndex = 8;
            this.label_testResult.Text = "Test Result";
            this.label_testResult.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label_testString
            // 
            this.label_testString.Location = new System.Drawing.Point(85, 18);
            this.label_testString.Name = "label_testString";
            this.label_testString.Size = new System.Drawing.Size(64, 23);
            this.label_testString.TabIndex = 7;
            this.label_testString.Text = "Test string";
            this.label_testString.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // button_checkAll
            // 
            this.button_checkAll.Location = new System.Drawing.Point(13, 169);
            this.button_checkAll.Name = "button_checkAll";
            this.button_checkAll.Size = new System.Drawing.Size(75, 23);
            this.button_checkAll.TabIndex = 13;
            this.button_checkAll.Text = "All/None";
            this.button_checkAll.Click += new System.EventHandler(this.button_checkAll_Click);
            // 
            // checkedListBox_columns
            // 
            this.checkedListBox_columns.Items.AddRange(new object[] {
            "Artist",
            "Title",
            "Subtitle",
            "Composer",
            "Conductor",
            "Band/Orch"});
            this.checkedListBox_columns.Location = new System.Drawing.Point(12, 24);
            this.checkedListBox_columns.Name = "checkedListBox_columns";
            this.checkedListBox_columns.Size = new System.Drawing.Size(88, 139);
            this.checkedListBox_columns.TabIndex = 12;
            this.checkedListBox_columns.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.checkedListBox_columns_ItemCheck);
            // 
            // groupBox3
            // 
            this.groupBox3.Controls.Add(this.button_checkAll);
            this.groupBox3.Controls.Add(this.checkedListBox_columns);
            this.groupBox3.Location = new System.Drawing.Point(12, 12);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(112, 202);
            this.groupBox3.TabIndex = 21;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "Data fields";
            // 
            // button_close
            // 
            this.button_close.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.button_close.Location = new System.Drawing.Point(301, 332);
            this.button_close.Name = "button_close";
            this.button_close.Size = new System.Drawing.Size(75, 23);
            this.button_close.TabIndex = 20;
            this.button_close.Text = "Close";
            this.button_close.Click += new System.EventHandler(this.button_close_Click);
            // 
            // dataTable1
            // 
            this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
            this.dataColumn1,
            this.dataColumn2,
            this.dataColumn3});
            this.dataTable1.TableName = "GridColumn";
            // 
            // dataColumn1
            // 
            this.dataColumn1.ColumnName = "Name";
            // 
            // dataColumn2
            // 
            this.dataColumn2.ColumnName = "Caption";
            // 
            // dataColumn3
            // 
            this.dataColumn3.ColumnName = "Index";
            // 
            // dataSet_searchAndReplace
            // 
            this.dataSet_searchAndReplace.DataSetName = "NewDataSet";
            this.dataSet_searchAndReplace.Tables.AddRange(new System.Data.DataTable[] {
            this.dataTable1});
            // 
            // radioButton_all
            // 
            this.radioButton_all.Checked = true;
            this.radioButton_all.Location = new System.Drawing.Point(6, 13);
            this.radioButton_all.Name = "radioButton_all";
            this.radioButton_all.Size = new System.Drawing.Size(80, 24);
            this.radioButton_all.TabIndex = 2;
            this.radioButton_all.TabStop = true;
            this.radioButton_all.Text = "All";
            // 
            // radioButton_selected
            // 
            this.radioButton_selected.Location = new System.Drawing.Point(6, 53);
            this.radioButton_selected.Name = "radioButton_selected";
            this.radioButton_selected.Size = new System.Drawing.Size(80, 24);
            this.radioButton_selected.TabIndex = 1;
            this.radioButton_selected.Text = "Selected";
            // 
            // groupBox5
            // 
            this.groupBox5.Controls.Add(this.radioButton_all);
            this.groupBox5.Controls.Add(this.radioButton_selected);
            this.groupBox5.Controls.Add(this.radioButton_current);
            this.groupBox5.Location = new System.Drawing.Point(12, 228);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(112, 81);
            this.groupBox5.TabIndex = 23;
            this.groupBox5.TabStop = false;
            this.groupBox5.Text = "Rows";
            // 
            // radioButton_current
            // 
            this.radioButton_current.Location = new System.Drawing.Point(6, 33);
            this.radioButton_current.Name = "radioButton_current";
            this.radioButton_current.Size = new System.Drawing.Size(80, 24);
            this.radioButton_current.TabIndex = 0;
            this.radioButton_current.Text = "Current";
            // 
            // label_setName
            // 
            this.label_setName.Location = new System.Drawing.Point(6, 95);
            this.label_setName.Name = "label_setName";
            this.label_setName.Size = new System.Drawing.Size(110, 23);
            this.label_setName.TabIndex = 15;
            this.label_setName.Text = "Replacement Name";
            this.label_setName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // checkBox_regex
            // 
            this.checkBox_regex.Location = new System.Drawing.Point(104, 13);
            this.checkBox_regex.Name = "checkBox_regex";
            this.checkBox_regex.Size = new System.Drawing.Size(143, 24);
            this.checkBox_regex.TabIndex = 4;
            this.checkBox_regex.Text = "Regular Expressions";
            // 
            // textBox_setName
            // 
            this.textBox_setName.BackColor = System.Drawing.SystemColors.Window;
            this.textBox_setName.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.textBox_setName.Enabled = false;
            this.textBox_setName.Location = new System.Drawing.Point(120, 101);
            this.textBox_setName.Name = "textBox_setName";
            this.textBox_setName.ReadOnly = true;
            this.textBox_setName.Size = new System.Drawing.Size(238, 13);
            this.textBox_setName.TabIndex = 3;
            // 
            // textBox_replaceExpr
            // 
            this.textBox_replaceExpr.Location = new System.Drawing.Point(118, 73);
            this.textBox_replaceExpr.Name = "textBox_replaceExpr";
            this.textBox_replaceExpr.Size = new System.Drawing.Size(240, 20);
            this.textBox_replaceExpr.TabIndex = 11;
            // 
            // label_replaceExpression
            // 
            this.label_replaceExpression.Location = new System.Drawing.Point(6, 72);
            this.label_replaceExpression.Name = "label_replaceExpression";
            this.label_replaceExpression.Size = new System.Drawing.Size(110, 23);
            this.label_replaceExpression.TabIndex = 10;
            this.label_replaceExpression.Text = "Replace expression";
            this.label_replaceExpression.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // textBox_searchExpr
            // 
            this.textBox_searchExpr.Location = new System.Drawing.Point(118, 49);
            this.textBox_searchExpr.Name = "textBox_searchExpr";
            this.textBox_searchExpr.Size = new System.Drawing.Size(240, 20);
            this.textBox_searchExpr.TabIndex = 9;
            this.textBox_searchExpr.TextChanged += new System.EventHandler(this.textBox_searchExpr_TextChanged);
            // 
            // label_findExpression
            // 
            this.label_findExpression.Location = new System.Drawing.Point(6, 48);
            this.label_findExpression.Name = "label_findExpression";
            this.label_findExpression.Size = new System.Drawing.Size(108, 23);
            this.label_findExpression.TabIndex = 8;
            this.label_findExpression.Text = "Find expression";
            this.label_findExpression.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label_caseExpression
            // 
            this.label_caseExpression.AutoSize = true;
            this.label_caseExpression.Location = new System.Drawing.Point(30, 30);
            this.label_caseExpression.Name = "label_caseExpression";
            this.label_caseExpression.Size = new System.Drawing.Size(75, 13);
            this.label_caseExpression.TabIndex = 1;
            this.label_caseExpression.Text = "Search Regex";
            // 
            // textBox_caseExpression
            // 
            this.textBox_caseExpression.Location = new System.Drawing.Point(113, 27);
            this.textBox_caseExpression.Name = "textBox_caseExpression";
            this.textBox_caseExpression.Size = new System.Drawing.Size(146, 20);
            this.textBox_caseExpression.TabIndex = 0;
            this.textBox_caseExpression.TextChanged += new System.EventHandler(this.textBox_caseExpression_TextChanged);
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabPage_find);
            this.tabControl1.Controls.Add(this.tabPage_searchAndReplace);
            this.tabControl1.Controls.Add(this.tabPage_upperLowerCase);
            this.tabControl1.Controls.Add(this.tabPage_split);
            this.tabControl1.Controls.Add(this.tabPage_macros);
            this.tabControl1.Location = new System.Drawing.Point(137, 12);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(399, 202);
            this.tabControl1.TabIndex = 1;
            this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
            // 
            // tabPage_find
            // 
            this.tabPage_find.Controls.Add(this.button_findFirst);
            this.tabPage_find.Controls.Add(this.button_findCount);
            this.tabPage_find.Controls.Add(this.button_findNext);
            this.tabPage_find.Controls.Add(this.checkBox_findCaseSensitive);
            this.tabPage_find.Controls.Add(this.label_findFindExpression);
            this.tabPage_find.Controls.Add(this.checkBox_findRegularExpression);
            this.tabPage_find.Controls.Add(this.textBox_findFindExpression);
            this.tabPage_find.Location = new System.Drawing.Point(4, 22);
            this.tabPage_find.Name = "tabPage_find";
            this.tabPage_find.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage_find.Size = new System.Drawing.Size(391, 176);
            this.tabPage_find.TabIndex = 4;
            this.tabPage_find.Text = "Find";
            this.tabPage_find.UseVisualStyleBackColor = true;
            // 
            // button_findFirst
            // 
            this.button_findFirst.Enabled = false;
            this.button_findFirst.Location = new System.Drawing.Point(77, 144);
            this.button_findFirst.Name = "button_findFirst";
            this.button_findFirst.Size = new System.Drawing.Size(75, 23);
            this.button_findFirst.TabIndex = 17;
            this.button_findFirst.Text = "Find First";
            this.button_findFirst.UseVisualStyleBackColor = true;
            this.button_findFirst.Click += new System.EventHandler(this.button_findFirst_Click);
            // 
            // button_findCount
            // 
            this.button_findCount.Enabled = false;
            this.button_findCount.Location = new System.Drawing.Point(235, 144);
            this.button_findCount.Name = "button_findCount";
            this.button_findCount.Size = new System.Drawing.Size(75, 23);
            this.button_findCount.TabIndex = 16;
            this.button_findCount.Text = "Count";
            this.button_findCount.UseVisualStyleBackColor = true;
            this.button_findCount.Click += new System.EventHandler(this.button_findCount_Click);
            // 
            // button_findNext
            // 
            this.button_findNext.Enabled = false;
            this.button_findNext.Location = new System.Drawing.Point(156, 144);
            this.button_findNext.Name = "button_findNext";
            this.button_findNext.Size = new System.Drawing.Size(75, 23);
            this.button_findNext.TabIndex = 14;
            this.button_findNext.Text = "Find Next";
            this.button_findNext.UseVisualStyleBackColor = true;
            this.button_findNext.Click += new System.EventHandler(this.button_findNext_Click);
            // 
            // checkBox_findCaseSensitive
            // 
            this.checkBox_findCaseSensitive.AutoSize = true;
            this.checkBox_findCaseSensitive.Location = new System.Drawing.Point(262, 19);
            this.checkBox_findCaseSensitive.Name = "checkBox_findCaseSensitive";
            this.checkBox_findCaseSensitive.Size = new System.Drawing.Size(96, 17);
            this.checkBox_findCaseSensitive.TabIndex = 11;
            this.checkBox_findCaseSensitive.Text = "Case Sensitive";
            this.checkBox_findCaseSensitive.UseVisualStyleBackColor = true;
            // 
            // label_findFindExpression
            // 
            this.label_findFindExpression.Location = new System.Drawing.Point(17, 68);
            this.label_findFindExpression.Name = "label_findFindExpression";
            this.label_findFindExpression.Size = new System.Drawing.Size(80, 23);
            this.label_findFindExpression.TabIndex = 12;
            this.label_findFindExpression.Text = "Find expression";
            this.label_findFindExpression.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // checkBox_findRegularExpression
            // 
            this.checkBox_findRegularExpression.Location = new System.Drawing.Point(104, 14);
            this.checkBox_findRegularExpression.Name = "checkBox_findRegularExpression";
            this.checkBox_findRegularExpression.Size = new System.Drawing.Size(131, 24);
            this.checkBox_findRegularExpression.TabIndex = 10;
            this.checkBox_findRegularExpression.Text = "Regular Expression";
            // 
            // textBox_findFindExpression
            // 
            this.textBox_findFindExpression.Location = new System.Drawing.Point(117, 70);
            this.textBox_findFindExpression.Name = "textBox_findFindExpression";
            this.textBox_findFindExpression.Size = new System.Drawing.Size(240, 20);
            this.textBox_findFindExpression.TabIndex = 13;
            this.textBox_findFindExpression.TextChanged += new System.EventHandler(this.textBox_findFindExpression_TextChanged);
            // 
            // tabPage_searchAndReplace
            // 
            this.tabPage_searchAndReplace.Controls.Add(this.checkBox_caseSensitive);
            this.tabPage_searchAndReplace.Controls.Add(this.button_searchReplaceApply);
            this.tabPage_searchAndReplace.Controls.Add(this.button_searchReplaceSave);
            this.tabPage_searchAndReplace.Controls.Add(this.button_searchReplaceLoad);
            this.tabPage_searchAndReplace.Controls.Add(this.label_findExpression);
            this.tabPage_searchAndReplace.Controls.Add(this.label_replaceExpression);
            this.tabPage_searchAndReplace.Controls.Add(this.checkBox_regex);
            this.tabPage_searchAndReplace.Controls.Add(this.textBox_replaceExpr);
            this.tabPage_searchAndReplace.Controls.Add(this.textBox_setName);
            this.tabPage_searchAndReplace.Controls.Add(this.textBox_searchExpr);
            this.tabPage_searchAndReplace.Controls.Add(this.label_setName);
            this.tabPage_searchAndReplace.Location = new System.Drawing.Point(4, 22);
            this.tabPage_searchAndReplace.Name = "tabPage_searchAndReplace";
            this.tabPage_searchAndReplace.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage_searchAndReplace.Size = new System.Drawing.Size(391, 176);
            this.tabPage_searchAndReplace.TabIndex = 0;
            this.tabPage_searchAndReplace.Text = "Search and Replace";
            this.tabPage_searchAndReplace.UseVisualStyleBackColor = true;
            // 
            // checkBox_caseSensitive
            // 
            this.checkBox_caseSensitive.AutoSize = true;
            this.checkBox_caseSensitive.Location = new System.Drawing.Point(262, 19);
            this.checkBox_caseSensitive.Name = "checkBox_caseSensitive";
            this.checkBox_caseSensitive.Size = new System.Drawing.Size(96, 17);
            this.checkBox_caseSensitive.TabIndex = 5;
            this.checkBox_caseSensitive.Text = "Case Sensitive";
            this.checkBox_caseSensitive.UseVisualStyleBackColor = true;
            // 
            // button_searchReplaceApply
            // 
            this.button_searchReplaceApply.Enabled = false;
            this.button_searchReplaceApply.Location = new System.Drawing.Point(236, 144);
            this.button_searchReplaceApply.Name = "button_searchReplaceApply";
            this.button_searchReplaceApply.Size = new System.Drawing.Size(75, 23);
            this.button_searchReplaceApply.TabIndex = 8;
            this.button_searchReplaceApply.Text = "Apply";
            this.button_searchReplaceApply.UseVisualStyleBackColor = true;
            this.button_searchReplaceApply.Click += new System.EventHandler(this.button_searchReplaceApply_Click);
            // 
            // button_searchReplaceSave
            // 
            this.button_searchReplaceSave.Enabled = false;
            this.button_searchReplaceSave.Location = new System.Drawing.Point(156, 144);
            this.button_searchReplaceSave.Name = "button_searchReplaceSave";
            this.button_searchReplaceSave.Size = new System.Drawing.Size(75, 23);
            this.button_searchReplaceSave.TabIndex = 7;
            this.button_searchReplaceSave.Text = "Save";
            this.button_searchReplaceSave.UseVisualStyleBackColor = true;
            this.button_searchReplaceSave.Click += new System.EventHandler(this.button_searchReplaceSave_Click);
            // 
            // button_searchReplaceLoad
            // 
            this.button_searchReplaceLoad.Location = new System.Drawing.Point(76, 144);
            this.button_searchReplaceLoad.Name = "button_searchReplaceLoad";
            this.button_searchReplaceLoad.Size = new System.Drawing.Size(75, 23);
            this.button_searchReplaceLoad.TabIndex = 6;
            this.button_searchReplaceLoad.Text = "Load";
            this.button_searchReplaceLoad.UseVisualStyleBackColor = true;
            this.button_searchReplaceLoad.Click += new System.EventHandler(this.button_searchReplaceLoad_Click);
            // 
            // tabPage_upperLowerCase
            // 
            this.tabPage_upperLowerCase.Controls.Add(this.checkBox_caseSensitiveCaseSearch);
            this.tabPage_upperLowerCase.Controls.Add(this.textBox_caseSetName);
            this.tabPage_upperLowerCase.Controls.Add(this.label_caseSetName);
            this.tabPage_upperLowerCase.Controls.Add(this.label_caseReplacement);
            this.tabPage_upperLowerCase.Controls.Add(this.radioButton_lower);
            this.tabPage_upperLowerCase.Controls.Add(this.radioButton_upper);
            this.tabPage_upperLowerCase.Controls.Add(this.button_caseApply);
            this.tabPage_upperLowerCase.Controls.Add(this.button_caseSave);
            this.tabPage_upperLowerCase.Controls.Add(this.button_caseLoad);
            this.tabPage_upperLowerCase.Controls.Add(this.textBox_caseExpression);
            this.tabPage_upperLowerCase.Controls.Add(this.label_caseExpression);
            this.tabPage_upperLowerCase.Location = new System.Drawing.Point(4, 22);
            this.tabPage_upperLowerCase.Name = "tabPage_upperLowerCase";
            this.tabPage_upperLowerCase.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage_upperLowerCase.Size = new System.Drawing.Size(391, 176);
            this.tabPage_upperLowerCase.TabIndex = 1;
            this.tabPage_upperLowerCase.Text = "Upper/Lower Case";
            this.tabPage_upperLowerCase.UseVisualStyleBackColor = true;
            // 
            // checkBox_caseSensitiveCaseSearch
            // 
            this.checkBox_caseSensitiveCaseSearch.AutoSize = true;
            this.checkBox_caseSensitiveCaseSearch.Location = new System.Drawing.Point(273, 29);
            this.checkBox_caseSensitiveCaseSearch.Name = "checkBox_caseSensitiveCaseSearch";
            this.checkBox_caseSensitiveCaseSearch.Size = new System.Drawing.Size(96, 17);
            this.checkBox_caseSensitiveCaseSearch.TabIndex = 22;
            this.checkBox_caseSensitiveCaseSearch.Text = "Case Sensitive";
            this.checkBox_caseSensitiveCaseSearch.UseVisualStyleBackColor = true;
            // 
            // textBox_caseSetName
            // 
            this.textBox_caseSetName.BackColor = System.Drawing.SystemColors.Window;
            this.textBox_caseSetName.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.textBox_caseSetName.Enabled = false;
            this.textBox_caseSetName.Location = new System.Drawing.Point(113, 99);
            this.textBox_caseSetName.Name = "textBox_caseSetName";
            this.textBox_caseSetName.ReadOnly = true;
            this.textBox_caseSetName.Size = new System.Drawing.Size(240, 13);
            this.textBox_caseSetName.TabIndex = 18;
            // 
            // label_caseSetName
            // 
            this.label_caseSetName.Location = new System.Drawing.Point(0, 95);
            this.label_caseSetName.Name = "label_caseSetName";
            this.label_caseSetName.Size = new System.Drawing.Size(109, 23);
            this.label_caseSetName.TabIndex = 17;
            this.label_caseSetName.Text = "Replacement Name";
            this.label_caseSetName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label_caseReplacement
            // 
            this.label_caseReplacement.AutoSize = true;
            this.label_caseReplacement.Location = new System.Drawing.Point(9, 64);
            this.label_caseReplacement.Name = "label_caseReplacement";
            this.label_caseReplacement.Size = new System.Drawing.Size(97, 13);
            this.label_caseReplacement.TabIndex = 8;
            this.label_caseReplacement.Text = "Case Replacement";
            // 
            // radioButton_lower
            // 
            this.radioButton_lower.AutoSize = true;
            this.radioButton_lower.Location = new System.Drawing.Point(179, 62);
            this.radioButton_lower.Name = "radioButton_lower";
            this.radioButton_lower.Size = new System.Drawing.Size(54, 17);
            this.radioButton_lower.TabIndex = 7;
            this.radioButton_lower.Text = "Lower";
            this.radioButton_lower.UseVisualStyleBackColor = true;
            // 
            // radioButton_upper
            // 
            this.radioButton_upper.AutoSize = true;
            this.radioButton_upper.Checked = true;
            this.radioButton_upper.Location = new System.Drawing.Point(113, 62);
            this.radioButton_upper.Name = "radioButton_upper";
            this.radioButton_upper.Size = new System.Drawing.Size(54, 17);
            this.radioButton_upper.TabIndex = 6;
            this.radioButton_upper.TabStop = true;
            this.radioButton_upper.Text = "Upper";
            this.radioButton_upper.UseVisualStyleBackColor = true;
            // 
            // button_caseApply
            // 
            this.button_caseApply.Enabled = false;
            this.button_caseApply.Location = new System.Drawing.Point(236, 144);
            this.button_caseApply.Name = "button_caseApply";
            this.button_caseApply.Size = new System.Drawing.Size(75, 23);
            this.button_caseApply.TabIndex = 5;
            this.button_caseApply.Text = "Apply";
            this.button_caseApply.UseVisualStyleBackColor = true;
            this.button_caseApply.Click += new System.EventHandler(this.button_caseApply_Click);
            // 
            // button_caseSave
            // 
            this.button_caseSave.Enabled = false;
            this.button_caseSave.Location = new System.Drawing.Point(156, 144);
            this.button_caseSave.Name = "button_caseSave";
            this.button_caseSave.Size = new System.Drawing.Size(75, 23);
            this.button_caseSave.TabIndex = 4;
            this.button_caseSave.Text = "Save";
            this.button_caseSave.UseVisualStyleBackColor = true;
            this.button_caseSave.Click += new System.EventHandler(this.button_caseSave_Click);
            // 
            // button_caseLoad
            // 
            this.button_caseLoad.Location = new System.Drawing.Point(76, 144);
            this.button_caseLoad.Name = "button_caseLoad";
            this.button_caseLoad.Size = new System.Drawing.Size(75, 23);
            this.button_caseLoad.TabIndex = 2;
            this.button_caseLoad.Text = "Load";
            this.button_caseLoad.UseVisualStyleBackColor = true;
            this.button_caseLoad.Click += new System.EventHandler(this.button_caseLoad_Click);
            // 
            // tabPage_split
            // 
            this.tabPage_split.Controls.Add(this.textBox_splitName);
            this.tabPage_split.Controls.Add(this.label_splitName);
            this.tabPage_split.Controls.Add(this.comboBox_splitSource);
            this.tabPage_split.Controls.Add(this.label_splitSourceColumn);
            this.tabPage_split.Controls.Add(this.button_splitApply);
            this.tabPage_split.Controls.Add(this.button_splitSave);
            this.tabPage_split.Controls.Add(this.button_splitLoad);
            this.tabPage_split.Controls.Add(this.label_resultColumns);
            this.tabPage_split.Controls.Add(this.dataGridView_splitResult);
            this.tabPage_split.Controls.Add(this.label_splitExpression);
            this.tabPage_split.Controls.Add(this.textBox_splitExpression);
            this.tabPage_split.Controls.Add(this.checkBox_splitRegex);
            this.tabPage_split.Location = new System.Drawing.Point(4, 22);
            this.tabPage_split.Name = "tabPage_split";
            this.tabPage_split.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage_split.Size = new System.Drawing.Size(391, 176);
            this.tabPage_split.TabIndex = 3;
            this.tabPage_split.Text = "Split";
            this.tabPage_split.UseVisualStyleBackColor = true;
            // 
            // textBox_splitName
            // 
            this.textBox_splitName.BackColor = System.Drawing.SystemColors.Window;
            this.textBox_splitName.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.textBox_splitName.Location = new System.Drawing.Point(87, 122);
            this.textBox_splitName.Name = "textBox_splitName";
            this.textBox_splitName.ReadOnly = true;
            this.textBox_splitName.Size = new System.Drawing.Size(287, 13);
            this.textBox_splitName.TabIndex = 20;
            // 
            // label_splitName
            // 
            this.label_splitName.AutoSize = true;
            this.label_splitName.Location = new System.Drawing.Point(16, 122);
            this.label_splitName.Name = "label_splitName";
            this.label_splitName.Size = new System.Drawing.Size(58, 13);
            this.label_splitName.TabIndex = 19;
            this.label_splitName.Text = "Split Name";
            // 
            // comboBox_splitSource
            // 
            this.comboBox_splitSource.FormattingEnabled = true;
            this.comboBox_splitSource.Location = new System.Drawing.Point(87, 28);
            this.comboBox_splitSource.Name = "comboBox_splitSource";
            this.comboBox_splitSource.Size = new System.Drawing.Size(287, 21);
            this.comboBox_splitSource.TabIndex = 18;
            this.comboBox_splitSource.TextChanged += new System.EventHandler(this.comboBox_splitSource_TextChanged);
            // 
            // label_splitSourceColumn
            // 
            this.label_splitSourceColumn.AutoSize = true;
            this.label_splitSourceColumn.Location = new System.Drawing.Point(4, 32);
            this.label_splitSourceColumn.Name = "label_splitSourceColumn";
            this.label_splitSourceColumn.Size = new System.Drawing.Size(79, 13);
            this.label_splitSourceColumn.TabIndex = 17;
            this.label_splitSourceColumn.Text = "Source Column";
            this.label_splitSourceColumn.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // button_splitApply
            // 
            this.button_splitApply.Enabled = false;
            this.button_splitApply.Location = new System.Drawing.Point(236, 144);
            this.button_splitApply.Name = "button_splitApply";
            this.button_splitApply.Size = new System.Drawing.Size(75, 23);
            this.button_splitApply.TabIndex = 16;
            this.button_splitApply.Text = "Apply";
            this.button_splitApply.UseVisualStyleBackColor = true;
            this.button_splitApply.Click += new System.EventHandler(this.button_splitApply_Click);
            // 
            // button_splitSave
            // 
            this.button_splitSave.Enabled = false;
            this.button_splitSave.Location = new System.Drawing.Point(156, 144);
            this.button_splitSave.Name = "button_splitSave";
            this.button_splitSave.Size = new System.Drawing.Size(75, 23);
            this.button_splitSave.TabIndex = 15;
            this.button_splitSave.Text = "Save";
            this.button_splitSave.UseVisualStyleBackColor = true;
            this.button_splitSave.Click += new System.EventHandler(this.button_splitSave_Click);
            // 
            // button_splitLoad
            // 
            this.button_splitLoad.Location = new System.Drawing.Point(76, 144);
            this.button_splitLoad.Name = "button_splitLoad";
            this.button_splitLoad.Size = new System.Drawing.Size(75, 23);
            this.button_splitLoad.TabIndex = 14;
            this.button_splitLoad.Text = "Load";
            this.button_splitLoad.UseVisualStyleBackColor = true;
            this.button_splitLoad.Click += new System.EventHandler(this.button_splitLoad_Click);
            // 
            // label_resultColumns
            // 
            this.label_resultColumns.AutoSize = true;
            this.label_resultColumns.Location = new System.Drawing.Point(3, 63);
            this.label_resultColumns.Name = "label_resultColumns";
            this.label_resultColumns.Size = new System.Drawing.Size(80, 13);
            this.label_resultColumns.TabIndex = 13;
            this.label_resultColumns.Text = "Result Columns";
            this.label_resultColumns.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dataGridView_splitResult
            // 
            this.dataGridView_splitResult.AllowUserToAddRows = false;
            this.dataGridView_splitResult.AllowUserToDeleteRows = false;
            this.dataGridView_splitResult.AutoGenerateColumns = false;
            this.dataGridView_splitResult.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView_splitResult.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.orderDataGridViewTextBoxColumn,
            this.columnNameDataGridViewTextBoxColumn});
            this.dataGridView_splitResult.DataSource = this.bindingSource_splitResult;
            this.dataGridView_splitResult.Location = new System.Drawing.Point(87, 53);
            this.dataGridView_splitResult.Name = "dataGridView_splitResult";
            this.dataGridView_splitResult.RowHeadersVisible = false;
            this.dataGridView_splitResult.Size = new System.Drawing.Size(289, 65);
            this.dataGridView_splitResult.TabIndex = 12;
            this.dataGridView_splitResult.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_splitResult_CellEndEdit);
            // 
            // orderDataGridViewTextBoxColumn
            // 
            this.orderDataGridViewTextBoxColumn.DataPropertyName = "Order";
            this.orderDataGridViewTextBoxColumn.HeaderText = "Order";
            this.orderDataGridViewTextBoxColumn.Name = "orderDataGridViewTextBoxColumn";
            this.orderDataGridViewTextBoxColumn.Width = 50;
            // 
            // columnNameDataGridViewTextBoxColumn
            // 
            this.columnNameDataGridViewTextBoxColumn.DataPropertyName = "ColumnName";
            this.columnNameDataGridViewTextBoxColumn.HeaderText = "ColumnName";
            this.columnNameDataGridViewTextBoxColumn.Name = "columnNameDataGridViewTextBoxColumn";
            this.columnNameDataGridViewTextBoxColumn.Width = 220;
            // 
            // bindingSource_splitResult
            // 
            this.bindingSource_splitResult.DataMember = "SplitResult";
            this.bindingSource_splitResult.DataSource = this.dataSet_splitResult;
            // 
            // dataSet_splitResult
            // 
            this.dataSet_splitResult.DataSetName = "NewDataSet";
            this.dataSet_splitResult.Tables.AddRange(new System.Data.DataTable[] {
            this.dataTable2});
            // 
            // dataTable2
            // 
            this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
            this.dataColumn4,
            this.dataColumn5});
            this.dataTable2.TableName = "SplitResult";
            // 
            // dataColumn4
            // 
            this.dataColumn4.ColumnName = "Order";
            this.dataColumn4.DataType = typeof(int);
            // 
            // dataColumn5
            // 
            this.dataColumn5.Caption = "Column Name";
            this.dataColumn5.ColumnName = "ColumnName";
            // 
            // label_splitExpression
            // 
            this.label_splitExpression.Location = new System.Drawing.Point(6, 4);
            this.label_splitExpression.Name = "label_splitExpression";
            this.label_splitExpression.Size = new System.Drawing.Size(80, 23);
            this.label_splitExpression.TabIndex = 10;
            this.label_splitExpression.Text = "Split expression";
            this.label_splitExpression.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // textBox_splitExpression
            // 
            this.textBox_splitExpression.Location = new System.Drawing.Point(87, 6);
            this.textBox_splitExpression.Name = "textBox_splitExpression";
            this.textBox_splitExpression.Size = new System.Drawing.Size(167, 20);
            this.textBox_splitExpression.TabIndex = 11;
            this.textBox_splitExpression.TextChanged += new System.EventHandler(this.textBox_splitExpression_TextChanged);
            // 
            // checkBox_splitRegex
            // 
            this.checkBox_splitRegex.AutoSize = true;
            this.checkBox_splitRegex.Location = new System.Drawing.Point(259, 7);
            this.checkBox_splitRegex.Name = "checkBox_splitRegex";
            this.checkBox_splitRegex.Size = new System.Drawing.Size(117, 17);
            this.checkBox_splitRegex.TabIndex = 0;
            this.checkBox_splitRegex.Text = "Regular Expression";
            this.checkBox_splitRegex.UseVisualStyleBackColor = true;
            // 
            // tabPage_macros
            // 
            this.tabPage_macros.Controls.Add(this.button_macroDelete);
            this.tabPage_macros.Controls.Add(this.button_macroRename);
            this.tabPage_macros.Controls.Add(this.dataGridView_macro);
            this.tabPage_macros.Controls.Add(this.button_macroApply);
            this.tabPage_macros.Controls.Add(this.button_macroEdit);
            this.tabPage_macros.Location = new System.Drawing.Point(4, 22);
            this.tabPage_macros.Name = "tabPage_macros";
            this.tabPage_macros.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage_macros.Size = new System.Drawing.Size(391, 176);
            this.tabPage_macros.TabIndex = 2;
            this.tabPage_macros.Text = "Macros";
            this.tabPage_macros.UseVisualStyleBackColor = true;
            // 
            // button_macroDelete
            // 
            this.button_macroDelete.Location = new System.Drawing.Point(195, 145);
            this.button_macroDelete.Name = "button_macroDelete";
            this.button_macroDelete.Size = new System.Drawing.Size(75, 23);
            this.button_macroDelete.TabIndex = 26;
            this.button_macroDelete.Text = "Delete";
            this.button_macroDelete.UseVisualStyleBackColor = true;
            this.button_macroDelete.Click += new System.EventHandler(this.button_macroDelete_Click);
            // 
            // button_macroRename
            // 
            this.button_macroRename.Location = new System.Drawing.Point(114, 145);
            this.button_macroRename.Name = "button_macroRename";
            this.button_macroRename.Size = new System.Drawing.Size(75, 23);
            this.button_macroRename.TabIndex = 25;
            this.button_macroRename.Text = "Rename";
            this.button_macroRename.UseVisualStyleBackColor = true;
            this.button_macroRename.Click += new System.EventHandler(this.button_macroRename_Click);
            // 
            // dataGridView_macro
            // 
            this.dataGridView_macro.AllowUserToAddRows = false;
            this.dataGridView_macro.AllowUserToDeleteRows = false;
            this.dataGridView_macro.AllowUserToResizeRows = false;
            this.dataGridView_macro.AutoGenerateColumns = false;
            this.dataGridView_macro.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView_macro.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.macroIDDataGridViewTextBoxColumn,
            this.nameDataGridViewTextBoxColumn,
            this.descriptionDataGridViewTextBoxColumn});
            this.dataGridView_macro.ContextMenuStrip = this.contextMenuStrip_macro;
            this.dataGridView_macro.DataSource = this.bindingSource_macro;
            this.dataGridView_macro.Location = new System.Drawing.Point(6, 6);
            this.dataGridView_macro.MultiSelect = false;
            this.dataGridView_macro.Name = "dataGridView_macro";
            this.dataGridView_macro.ReadOnly = true;
            this.dataGridView_macro.RowHeadersVisible = false;
            this.dataGridView_macro.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dataGridView_macro.Size = new System.Drawing.Size(377, 133);
            this.dataGridView_macro.TabIndex = 24;
            this.dataGridView_macro.MouseDown += new System.Windows.Forms.MouseEventHandler(this.dataGridView_macro_MouseDown);
            this.dataGridView_macro.DoubleClick += new System.EventHandler(this.dataGridView_macro_DoubleClick);
            // 
            // macroIDDataGridViewTextBoxColumn
            // 
            this.macroIDDataGridViewTextBoxColumn.DataPropertyName = "MacroID";
            this.macroIDDataGridViewTextBoxColumn.HeaderText = "MacroID";
            this.macroIDDataGridViewTextBoxColumn.Name = "macroIDDataGridViewTextBoxColumn";
            this.macroIDDataGridViewTextBoxColumn.ReadOnly = true;
            this.macroIDDataGridViewTextBoxColumn.Visible = false;
            // 
            // nameDataGridViewTextBoxColumn
            // 
            this.nameDataGridViewTextBoxColumn.DataPropertyName = "Name";
            this.nameDataGridViewTextBoxColumn.HeaderText = "Name";
            this.nameDataGridViewTextBoxColumn.Name = "nameDataGridViewTextBoxColumn";
            this.nameDataGridViewTextBoxColumn.ReadOnly = true;
            this.nameDataGridViewTextBoxColumn.Width = 150;
            // 
            // descriptionDataGridViewTextBoxColumn
            // 
            this.descriptionDataGridViewTextBoxColumn.DataPropertyName = "Description";
            this.descriptionDataGridViewTextBoxColumn.HeaderText = "Description";
            this.descriptionDataGridViewTextBoxColumn.Name = "descriptionDataGridViewTextBoxColumn";
            this.descriptionDataGridViewTextBoxColumn.ReadOnly = true;
            this.descriptionDataGridViewTextBoxColumn.Width = 220;
            // 
            // contextMenuStrip_macro
            // 
            this.contextMenuStrip_macro.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.renameToolStripMenuItem,
            this.deleteToolStripMenuItem,
            this.editToolStripMenuItem});
            this.contextMenuStrip_macro.Name = "contextMenuStrip_macro";
            this.contextMenuStrip_macro.Size = new System.Drawing.Size(114, 70);
            this.contextMenuStrip_macro.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_macro_Opening);
            // 
            // renameToolStripMenuItem
            // 
            this.renameToolStripMenuItem.Name = "renameToolStripMenuItem";
            this.renameToolStripMenuItem.Size = new System.Drawing.Size(113, 22);
            this.renameToolStripMenuItem.Text = "Rename";
            this.renameToolStripMenuItem.Click += new System.EventHandler(this.renameToolStripMenuItem_Click);
            // 
            // deleteToolStripMenuItem
            // 
            this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
            this.deleteToolStripMenuItem.Size = new System.Drawing.Size(113, 22);
            this.deleteToolStripMenuItem.Text = "Delete";
            this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
            // 
            // editToolStripMenuItem
            // 
            this.editToolStripMenuItem.Name = "editToolStripMenuItem";
            this.editToolStripMenuItem.Size = new System.Drawing.Size(113, 22);
            this.editToolStripMenuItem.Text = "Edit";
            this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
            // 
            // bindingSource_macro
            // 
            this.bindingSource_macro.DataMember = "Macro";
            this.bindingSource_macro.DataSource = this.dataSet_macro1;
            // 
            // dataSet_macro1
            // 
            this.dataSet_macro1.DataSetName = "DataSet_macro";
            this.dataSet_macro1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // button_macroApply
            // 
            this.button_macroApply.Location = new System.Drawing.Point(276, 145);
            this.button_macroApply.Name = "button_macroApply";
            this.button_macroApply.Size = new System.Drawing.Size(75, 23);
            this.button_macroApply.TabIndex = 23;
            this.button_macroApply.Text = "Apply";
            this.button_macroApply.UseVisualStyleBackColor = true;
            this.button_macroApply.Click += new System.EventHandler(this.button_macroApply_Click);
            // 
            // button_macroEdit
            // 
            this.button_macroEdit.Location = new System.Drawing.Point(33, 145);
            this.button_macroEdit.Name = "button_macroEdit";
            this.button_macroEdit.Size = new System.Drawing.Size(75, 23);
            this.button_macroEdit.TabIndex = 22;
            this.button_macroEdit.Text = "Configure";
            this.button_macroEdit.UseVisualStyleBackColor = true;
            this.button_macroEdit.Click += new System.EventHandler(this.button_macroEdit_Click);
            // 
            // oleDbSelectCommand1
            // 
            this.oleDbSelectCommand1.CommandText = "SELECT     Macro.*\r\nFROM         Macro";
            this.oleDbSelectCommand1.Connection = this.oleDbConnection1;
            // 
            // oleDbConnection1
            // 
            this.oleDbConnection1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\\VisualStudio8\\MP3Tagger\\GridProce" +
                "ssor.mdb";
            // 
            // oleDbInsertCommand1
            // 
            this.oleDbInsertCommand1.CommandText = "INSERT INTO `Macro` (`Name`, `Description`) VALUES (?, ?)";
            this.oleDbInsertCommand1.Connection = this.oleDbConnection1;
            this.oleDbInsertCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
            new System.Data.OleDb.OleDbParameter("Name", System.Data.OleDb.OleDbType.VarWChar, 0, "Name"),
            new System.Data.OleDb.OleDbParameter("Description", System.Data.OleDb.OleDbType.VarWChar, 0, "Description")});
            // 
            // oleDbUpdateCommand1
            // 
            this.oleDbUpdateCommand1.CommandText = "UPDATE `Macro` SET `Name` = ?, `Description` = ? WHERE ((`MacroID` = ?) AND ((? =" +
                " 1 AND `Name` IS NULL) OR (`Name` = ?)) AND ((? = 1 AND `Description` IS NULL) O" +
                "R (`Description` = ?)))";
            this.oleDbUpdateCommand1.Connection = this.oleDbConnection1;
            this.oleDbUpdateCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
            new System.Data.OleDb.OleDbParameter("Name", System.Data.OleDb.OleDbType.VarWChar, 0, "Name"),
            new System.Data.OleDb.OleDbParameter("Description", System.Data.OleDb.OleDbType.VarWChar, 0, "Description"),
            new System.Data.OleDb.OleDbParameter("Original_MacroID", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "MacroID", System.Data.DataRowVersion.Original, null),
            new System.Data.OleDb.OleDbParameter("IsNull_Name", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "Name", System.Data.DataRowVersion.Original, true, null),
            new System.Data.OleDb.OleDbParameter("Original_Name", System.Data.OleDb.OleDbType.VarWChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Name", System.Data.DataRowVersion.Original, null),
            new System.Data.OleDb.OleDbParameter("IsNull_Description", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "Description", System.Data.DataRowVersion.Original, true, null),
            new System.Data.OleDb.OleDbParameter("Original_Description", System.Data.OleDb.OleDbType.VarWChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Description", System.Data.DataRowVersion.Original, null)});
            // 
            // oleDbDeleteCommand1
            // 
            this.oleDbDeleteCommand1.CommandText = "DELETE FROM `Macro` WHERE ((`MacroID` = ?) AND ((? = 1 AND `Name` IS NULL) OR (`N" +
                "ame` = ?)) AND ((? = 1 AND `Description` IS NULL) OR (`Description` = ?)))";
            this.oleDbDeleteCommand1.Connection = this.oleDbConnection1;
            this.oleDbDeleteCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
            new System.Data.OleDb.OleDbParameter("Original_MacroID", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "MacroID", System.Data.DataRowVersion.Original, null),
            new System.Data.OleDb.OleDbParameter("IsNull_Name", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "Name", System.Data.DataRowVersion.Original, true, null),
            new System.Data.OleDb.OleDbParameter("Original_Name", System.Data.OleDb.OleDbType.VarWChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Name", System.Data.DataRowVersion.Original, null),
            new System.Data.OleDb.OleDbParameter("IsNull_Description", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, ((byte)(0)), ((byte)(0)), "Description", System.Data.DataRowVersion.Original, true, null),
            new System.Data.OleDb.OleDbParameter("Original_Description", System.Data.OleDb.OleDbType.VarWChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Description", System.Data.DataRowVersion.Original, null)});
            // 
            // oleDbDataAdapter_macro
            // 
            this.oleDbDataAdapter_macro.DeleteCommand = this.oleDbDeleteCommand1;
            this.oleDbDataAdapter_macro.InsertCommand = this.oleDbInsertCommand1;
            this.oleDbDataAdapter_macro.SelectCommand = this.oleDbSelectCommand1;
            this.oleDbDataAdapter_macro.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
            new System.Data.Common.DataTableMapping("Table", "Macro", new System.Data.Common.DataColumnMapping[] {
                        new System.Data.Common.DataColumnMapping("MacroID", "MacroID"),
                        new System.Data.Common.DataColumnMapping("Name", "Name"),
                        new System.Data.Common.DataColumnMapping("Description", "Description")})});
            this.oleDbDataAdapter_macro.UpdateCommand = this.oleDbUpdateCommand1;
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(36, 33);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(80, 23);
            this.label1.TabIndex = 10;
            this.label1.Text = "Split expression";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // dataGridViewTextBoxColumn1
            // 
            this.dataGridViewTextBoxColumn1.DataPropertyName = "Order";
            this.dataGridViewTextBoxColumn1.HeaderText = "Order";
            this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
            this.dataGridViewTextBoxColumn1.Width = 50;
            // 
            // dataGridViewTextBoxColumn2
            // 
            this.dataGridViewTextBoxColumn2.DataPropertyName = "ColumnName";
            this.dataGridViewTextBoxColumn2.HeaderText = "ColumnName";
            this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
            this.dataGridViewTextBoxColumn2.Width = 220;
            // 
            // dataGridViewTextBoxColumn3
            // 
            this.dataGridViewTextBoxColumn3.DataPropertyName = "MacroID";
            this.dataGridViewTextBoxColumn3.HeaderText = "MacroID";
            this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
            this.dataGridViewTextBoxColumn3.ReadOnly = true;
            this.dataGridViewTextBoxColumn3.Visible = false;
            // 
            // dataGridViewTextBoxColumn4
            // 
            this.dataGridViewTextBoxColumn4.DataPropertyName = "Name";
            this.dataGridViewTextBoxColumn4.HeaderText = "Name";
            this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
            this.dataGridViewTextBoxColumn4.ReadOnly = true;
            this.dataGridViewTextBoxColumn4.Width = 150;
            // 
            // dataGridViewTextBoxColumn5
            // 
            this.dataGridViewTextBoxColumn5.DataPropertyName = "Description";
            this.dataGridViewTextBoxColumn5.HeaderText = "Description";
            this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
            this.dataGridViewTextBoxColumn5.ReadOnly = true;
            this.dataGridViewTextBoxColumn5.Width = 220;
            // 
            // button_help
            // 
            this.button_help.Location = new System.Drawing.Point(211, 332);
            this.button_help.Name = "button_help";
            this.button_help.Size = new System.Drawing.Size(75, 23);
            this.button_help.TabIndex = 24;
            this.button_help.Text = "Help";
            this.button_help.UseVisualStyleBackColor = true;
            this.button_help.Click += new System.EventHandler(this.button_help_Click);
            // 
            // helpProvider1
            // 
            this.helpProvider1.HelpNamespace = "D:\\VisualStudio8\\GridProcessor\\GridProcessor.chm";
            // 
            // FormGridProcessor
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(551, 373);
            this.Controls.Add(this.button_help);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.groupBox3);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.button_close);
            this.Controls.Add(this.groupBox5);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.Name = "FormGridProcessor";
            this.ShowInTaskbar = false;
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Search and Replace";
            this.TopMost = true;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormGridProcessor_FormClosing);
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.groupBox3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataSet_searchAndReplace)).EndInit();
            this.groupBox5.ResumeLayout(false);
            this.tabControl1.ResumeLayout(false);
            this.tabPage_find.ResumeLayout(false);
            this.tabPage_find.PerformLayout();
            this.tabPage_searchAndReplace.ResumeLayout(false);
            this.tabPage_searchAndReplace.PerformLayout();
            this.tabPage_upperLowerCase.ResumeLayout(false);
            this.tabPage_upperLowerCase.PerformLayout();
            this.tabPage_split.ResumeLayout(false);
            this.tabPage_split.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView_splitResult)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource_splitResult)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataSet_splitResult)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
            this.tabPage_macros.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView_macro)).EndInit();
            this.contextMenuStrip_macro.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource_macro)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataSet_macro1)).EndInit();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.GroupBox groupBox2;
        private System.Windows.Forms.TextBox textBox_resultString;
        private System.Windows.Forms.TextBox textBox_testString;
        private System.Windows.Forms.Label label_testResult;
        private System.Windows.Forms.Label label_testString;
        private System.Windows.Forms.Button button_checkAll;
        private System.Windows.Forms.CheckedListBox checkedListBox_columns;
        private System.Windows.Forms.GroupBox groupBox3;
        private System.Windows.Forms.Button button_close;
        private System.Data.DataTable dataTable1;
        private System.Data.DataColumn dataColumn1;
        private System.Data.DataColumn dataColumn2;
        private System.Data.DataColumn dataColumn3;
        private System.Data.DataSet dataSet_searchAndReplace;
        private System.Windows.Forms.RadioButton radioButton_all;
        private System.Windows.Forms.RadioButton radioButton_selected;
        private System.Windows.Forms.GroupBox groupBox5;
        private System.Windows.Forms.RadioButton radioButton_current;
        private System.Windows.Forms.Label label_setName;
        private System.Windows.Forms.CheckBox checkBox_regex;
        private System.Windows.Forms.TextBox textBox_setName;
        private System.Windows.Forms.TextBox textBox_replaceExpr;
        private System.Windows.Forms.Label label_replaceExpression;
        private System.Windows.Forms.TextBox textBox_searchExpr;
        private System.Windows.Forms.Label label_findExpression;
        private System.Windows.Forms.TextBox textBox_caseExpression;
        private System.Windows.Forms.Label label_caseExpression;
        private System.Windows.Forms.TabControl tabControl1;
        private System.Windows.Forms.TabPage tabPage_searchAndReplace;
        private System.Windows.Forms.TabPage tabPage_upperLowerCase;
        private System.Windows.Forms.TabPage tabPage_macros;
        private System.Windows.Forms.Button button_searchReplaceApply;
        private System.Windows.Forms.Button button_searchReplaceSave;
        private System.Windows.Forms.Button button_searchReplaceLoad;
        private System.Windows.Forms.CheckBox checkBox_caseSensitive;
        private System.Windows.Forms.Button button_caseApply;
        private System.Windows.Forms.Button button_caseSave;
        private System.Windows.Forms.Button button_caseLoad;
        private System.Windows.Forms.TextBox textBox_caseSetName;
        private System.Windows.Forms.Label label_caseSetName;
        private System.Windows.Forms.Label label_caseReplacement;
        private System.Windows.Forms.RadioButton radioButton_lower;
        private System.Windows.Forms.RadioButton radioButton_upper;
        private System.Windows.Forms.Button button_macroApply;
        private System.Windows.Forms.Button button_macroEdit;
        private System.Data.OleDb.OleDbCommand oleDbSelectCommand1;
        private System.Data.OleDb.OleDbConnection oleDbConnection1;
        private System.Data.OleDb.OleDbCommand oleDbInsertCommand1;
        private System.Data.OleDb.OleDbCommand oleDbUpdateCommand1;
        private System.Data.OleDb.OleDbCommand oleDbDeleteCommand1;
        private System.Data.OleDb.OleDbDataAdapter oleDbDataAdapter_macro;
        private DataSet_macro dataSet_macro1;
        private System.Windows.Forms.BindingSource bindingSource_macro;
        private System.Windows.Forms.DataGridView dataGridView_macro;
        private System.Windows.Forms.DataGridViewTextBoxColumn macroIDDataGridViewTextBoxColumn;
        private System.Windows.Forms.DataGridViewTextBoxColumn nameDataGridViewTextBoxColumn;
        private System.Windows.Forms.DataGridViewTextBoxColumn descriptionDataGridViewTextBoxColumn;
        private System.Windows.Forms.CheckBox checkBox_caseSensitiveCaseSearch;
        private System.Windows.Forms.ContextMenuStrip contextMenuStrip_macro;
        private System.Windows.Forms.ToolStripMenuItem renameToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
        private System.Windows.Forms.Button button_macroRename;
        private System.Windows.Forms.Button button_test;
        private System.Windows.Forms.Button button_macroDelete;
        private System.Windows.Forms.TabPage tabPage_split;
        private System.Windows.Forms.Label label_splitExpression;
        private System.Windows.Forms.TextBox textBox_splitExpression;
        private System.Windows.Forms.CheckBox checkBox_splitRegex;
        private System.Windows.Forms.Label label1;
  //      public System.Windows.Forms.TextBox textBox1;
   //     private System.Windows.Forms.CheckBox checkBox1;
        private System.Windows.Forms.Label label_resultColumns;
        private System.Windows.Forms.DataGridView dataGridView_splitResult;
        private System.Windows.Forms.Button button_splitApply;
        private System.Windows.Forms.Button button_splitSave;
        private System.Windows.Forms.Button button_splitLoad;
        private System.Windows.Forms.BindingSource bindingSource_splitResult;
        private System.Data.DataSet dataSet_splitResult;
        private System.Data.DataTable dataTable2;
        private System.Data.DataColumn dataColumn4;
        private System.Data.DataColumn dataColumn5;
        private System.Windows.Forms.DataGridViewTextBoxColumn orderDataGridViewTextBoxColumn;
        private System.Windows.Forms.DataGridViewTextBoxColumn columnNameDataGridViewTextBoxColumn;
        private System.Windows.Forms.Label label_splitSourceColumn;
        private System.Windows.Forms.ComboBox comboBox_splitSource;
        private System.Windows.Forms.TabPage tabPage_find;
        private System.Windows.Forms.CheckBox checkBox_findCaseSensitive;
        private System.Windows.Forms.Label label_findFindExpression;
        private System.Windows.Forms.CheckBox checkBox_findRegularExpression;
        private System.Windows.Forms.TextBox textBox_findFindExpression;
        private System.Windows.Forms.Button button_findCount;
        private System.Windows.Forms.Button button_findNext;
        private System.Windows.Forms.Button button_findFirst;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
        private System.Windows.Forms.TextBox textBox_splitName;
        private System.Windows.Forms.Label label_splitName;
        private System.Windows.Forms.Button button_help;
        private System.Windows.Forms.HelpProvider helpProvider1;
    }
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United Kingdom United Kingdom
I'm a London-based software developer. Originally from New York, I came here in 1997 to run European application development for Standard & Poors. I now work independently ... and I'm still here!

Having seen how US software behaves outside the US, I'm keenly interested in problems of global and multilingual software design. I also used to write intelligence-gathering software, and still can't resist a well-turned algorithm! Before my IT career I was in music, and I'm now combining both interests in a highly-exciting 'Project-X'. I could tell you what it is, but ....

When not thinking about all of the above, I'm fascinated by all aspects of different cultures. (You can't take New York out of the New Yorker.) Interests include jazz, classical and world music, languages, history and ethnic food. I'm also an amateur travel writer and photographer, and run a site at www.travelogues.net, which you're welcome to stop by and visit!

Comments and Discussions