Click here to Skip to main content
15,895,740 members
Articles / Programming Languages / XML

Create Data Classes

Rate me:
Please Sign up or sign in to vote.
4.88/5 (31 votes)
4 Mar 2011CPOL10 min read 135.8K   2.5K   167  
An application that creates a C# class to read/write data to/from an Access, SQLite, or XML database.
namespace CreateXMLDB
{
	partial class FormCreateXMLDB
	{
		/// <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()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormCreateXMLDB));
			this.statusStrip1 = new System.Windows.Forms.StatusStrip();
			this.tslblMessage = new System.Windows.Forms.ToolStripStatusLabel();
			this.label1 = new System.Windows.Forms.Label();
			this.txtXMLNamespace = new System.Windows.Forms.TextBox();
			this.lvDatabase = new System.Windows.Forms.ListView();
			this.colFieldName = new System.Windows.Forms.ColumnHeader();
			this.colFieldType = new System.Windows.Forms.ColumnHeader();
			this.colAutoIncrement = new System.Windows.Forms.ColumnHeader();
			this.btnAddField = new System.Windows.Forms.Button();
			this.btnRemoveField = new System.Windows.Forms.Button();
			this.btnCreateSchema = new System.Windows.Forms.Button();
			this.label2 = new System.Windows.Forms.Label();
			this.txtFieldName = new System.Windows.Forms.TextBox();
			this.label3 = new System.Windows.Forms.Label();
			this.cboFieldType = new System.Windows.Forms.ComboBox();
			this.chkAutoIncrement = new System.Windows.Forms.CheckBox();
			this.btnReadSchema = new System.Windows.Forms.Button();
			this.btnCreateClass = new System.Windows.Forms.Button();
			this.cboKeyField = new System.Windows.Forms.ComboBox();
			this.label7 = new System.Windows.Forms.Label();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.rbPublic = new System.Windows.Forms.RadioButton();
			this.rbInternal = new System.Windows.Forms.RadioButton();
			this.rbPrivate = new System.Windows.Forms.RadioButton();
			this.txtClassName = new System.Windows.Forms.TextBox();
			this.label5 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.txtClassNamespace = new System.Windows.Forms.TextBox();
			this.txtXMLDataSetName = new System.Windows.Forms.TextBox();
			this.label6 = new System.Windows.Forms.Label();
			this.gbxDataBase = new System.Windows.Forms.GroupBox();
			this.panel4 = new System.Windows.Forms.Panel();
			this.panel3 = new System.Windows.Forms.Panel();
			this.label8 = new System.Windows.Forms.Label();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.cboStringOverride = new System.Windows.Forms.ComboBox();
			this.label10 = new System.Windows.Forms.Label();
			this.btnBrowseWD = new System.Windows.Forms.Button();
			this.label9 = new System.Windows.Forms.Label();
			this.txtWorkingDirectory = new System.Windows.Forms.TextBox();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.groupBox4 = new System.Windows.Forms.GroupBox();
			this.statusStrip1.SuspendLayout();
			this.groupBox1.SuspendLayout();
			this.gbxDataBase.SuspendLayout();
			this.panel4.SuspendLayout();
			this.panel3.SuspendLayout();
			this.groupBox2.SuspendLayout();
			this.groupBox3.SuspendLayout();
			this.groupBox4.SuspendLayout();
			this.SuspendLayout();
			// 
			// statusStrip1
			// 
			this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tslblMessage});
			this.statusStrip1.Location = new System.Drawing.Point(0, 453);
			this.statusStrip1.Name = "statusStrip1";
			this.statusStrip1.Size = new System.Drawing.Size(781, 22);
			this.statusStrip1.TabIndex = 0;
			this.statusStrip1.Text = "statusStrip1";
			// 
			// tslblMessage
			// 
			this.tslblMessage.Name = "tslblMessage";
			this.tslblMessage.Size = new System.Drawing.Size(766, 17);
			this.tslblMessage.Spring = true;
			this.tslblMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Location = new System.Drawing.Point(12, 24);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(89, 13);
			this.label1.TabIndex = 1;
			this.label1.Text = "XML Namespace";
			this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// txtXMLNamespace
			// 
			this.txtXMLNamespace.Location = new System.Drawing.Point(128, 20);
			this.txtXMLNamespace.Name = "txtXMLNamespace";
			this.txtXMLNamespace.Size = new System.Drawing.Size(200, 20);
			this.txtXMLNamespace.TabIndex = 2;
			// 
			// lvDatabase
			// 
			this.lvDatabase.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.colFieldName,
            this.colFieldType,
            this.colAutoIncrement});
			this.lvDatabase.Dock = System.Windows.Forms.DockStyle.Fill;
			this.lvDatabase.Location = new System.Drawing.Point(0, 0);
			this.lvDatabase.Name = "lvDatabase";
			this.lvDatabase.Size = new System.Drawing.Size(423, 307);
			this.lvDatabase.TabIndex = 3;
			this.lvDatabase.UseCompatibleStateImageBehavior = false;
			this.lvDatabase.View = System.Windows.Forms.View.Details;
			this.lvDatabase.SelectedIndexChanged += new System.EventHandler(this.lvDatabase_SelectedIndexChanged);
			// 
			// colFieldName
			// 
			this.colFieldName.Text = "Field Name";
			this.colFieldName.Width = 120;
			// 
			// colFieldType
			// 
			this.colFieldType.Text = "Field Type";
			this.colFieldType.Width = 120;
			// 
			// colAutoIncrement
			// 
			this.colAutoIncrement.Text = "Auto Increment";
			this.colAutoIncrement.Width = 100;
			// 
			// btnAddField
			// 
			this.btnAddField.Location = new System.Drawing.Point(8, 87);
			this.btnAddField.Name = "btnAddField";
			this.btnAddField.Size = new System.Drawing.Size(90, 23);
			this.btnAddField.TabIndex = 4;
			this.btnAddField.Text = "Add Field";
			this.btnAddField.UseVisualStyleBackColor = true;
			this.btnAddField.Click += new System.EventHandler(this.btnAddField_Click);
			// 
			// btnRemoveField
			// 
			this.btnRemoveField.Location = new System.Drawing.Point(104, 87);
			this.btnRemoveField.Name = "btnRemoveField";
			this.btnRemoveField.Size = new System.Drawing.Size(90, 23);
			this.btnRemoveField.TabIndex = 5;
			this.btnRemoveField.Text = "Remove Field";
			this.btnRemoveField.UseVisualStyleBackColor = true;
			this.btnRemoveField.Click += new System.EventHandler(this.btnRemoveField_Click);
			// 
			// btnCreateSchema
			// 
			this.btnCreateSchema.Location = new System.Drawing.Point(238, 79);
			this.btnCreateSchema.Name = "btnCreateSchema";
			this.btnCreateSchema.Size = new System.Drawing.Size(90, 23);
			this.btnCreateSchema.TabIndex = 6;
			this.btnCreateSchema.Text = "Create Schema";
			this.btnCreateSchema.UseVisualStyleBackColor = true;
			this.btnCreateSchema.Click += new System.EventHandler(this.btnCreateSchema_Click);
			// 
			// label2
			// 
			this.label2.AutoSize = true;
			this.label2.Location = new System.Drawing.Point(4, 8);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(66, 13);
			this.label2.TabIndex = 7;
			this.label2.Text = "Current Field";
			// 
			// txtFieldName
			// 
			this.txtFieldName.Location = new System.Drawing.Point(8, 47);
			this.txtFieldName.Name = "txtFieldName";
			this.txtFieldName.Size = new System.Drawing.Size(151, 20);
			this.txtFieldName.TabIndex = 8;
			// 
			// label3
			// 
			this.label3.AutoSize = true;
			this.label3.Location = new System.Drawing.Point(8, 29);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(60, 13);
			this.label3.TabIndex = 9;
			this.label3.Text = "Field Name";
			// 
			// cboFieldType
			// 
			this.cboFieldType.FormattingEnabled = true;
			this.cboFieldType.Location = new System.Drawing.Point(165, 47);
			this.cboFieldType.Name = "cboFieldType";
			this.cboFieldType.Size = new System.Drawing.Size(121, 21);
			this.cboFieldType.TabIndex = 10;
			this.cboFieldType.SelectedIndexChanged += new System.EventHandler(this.cboFieldType_SelectedIndexChanged);
			// 
			// chkAutoIncrement
			// 
			this.chkAutoIncrement.AutoSize = true;
			this.chkAutoIncrement.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.chkAutoIncrement.Enabled = false;
			this.chkAutoIncrement.Location = new System.Drawing.Point(288, 49);
			this.chkAutoIncrement.Name = "chkAutoIncrement";
			this.chkAutoIncrement.Size = new System.Drawing.Size(98, 17);
			this.chkAutoIncrement.TabIndex = 11;
			this.chkAutoIncrement.Text = "Auto Increment";
			this.chkAutoIncrement.UseVisualStyleBackColor = true;
			// 
			// btnReadSchema
			// 
			this.btnReadSchema.Location = new System.Drawing.Point(8, 79);
			this.btnReadSchema.Name = "btnReadSchema";
			this.btnReadSchema.Size = new System.Drawing.Size(90, 23);
			this.btnReadSchema.TabIndex = 13;
			this.btnReadSchema.Text = "Read Schema";
			this.btnReadSchema.UseVisualStyleBackColor = true;
			this.btnReadSchema.Click += new System.EventHandler(this.btnReadSchema_Click);
			// 
			// btnCreateClass
			// 
			this.btnCreateClass.Location = new System.Drawing.Point(253, 201);
			this.btnCreateClass.Name = "btnCreateClass";
			this.btnCreateClass.Size = new System.Drawing.Size(75, 23);
			this.btnCreateClass.TabIndex = 16;
			this.btnCreateClass.Text = "Create Class";
			this.btnCreateClass.UseVisualStyleBackColor = true;
			this.btnCreateClass.Click += new System.EventHandler(this.btnCreateClass_Click);
			// 
			// cboKeyField
			// 
			this.cboKeyField.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cboKeyField.FormattingEnabled = true;
			this.cboKeyField.Location = new System.Drawing.Point(130, 20);
			this.cboKeyField.Name = "cboKeyField";
			this.cboKeyField.Size = new System.Drawing.Size(96, 21);
			this.cboKeyField.TabIndex = 18;
			// 
			// label7
			// 
			this.label7.AutoSize = true;
			this.label7.Location = new System.Drawing.Point(14, 24);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(87, 13);
			this.label7.TabIndex = 17;
			this.label7.Text = "Key / Index Field";
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.rbPublic);
			this.groupBox1.Controls.Add(this.rbInternal);
			this.groupBox1.Controls.Add(this.rbPrivate);
			this.groupBox1.Location = new System.Drawing.Point(8, 131);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(243, 52);
			this.groupBox1.TabIndex = 15;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "C# Class Visibility";
			// 
			// rbPublic
			// 
			this.rbPublic.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.rbPublic.Checked = true;
			this.rbPublic.Location = new System.Drawing.Point(162, 24);
			this.rbPublic.Name = "rbPublic";
			this.rbPublic.Size = new System.Drawing.Size(60, 17);
			this.rbPublic.TabIndex = 2;
			this.rbPublic.TabStop = true;
			this.rbPublic.Text = "Public";
			this.rbPublic.UseVisualStyleBackColor = true;
			// 
			// rbInternal
			// 
			this.rbInternal.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.rbInternal.Location = new System.Drawing.Point(87, 24);
			this.rbInternal.Name = "rbInternal";
			this.rbInternal.Size = new System.Drawing.Size(60, 17);
			this.rbInternal.TabIndex = 1;
			this.rbInternal.Text = "Internal";
			this.rbInternal.UseVisualStyleBackColor = true;
			// 
			// rbPrivate
			// 
			this.rbPrivate.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.rbPrivate.Location = new System.Drawing.Point(12, 24);
			this.rbPrivate.Name = "rbPrivate";
			this.rbPrivate.Size = new System.Drawing.Size(60, 17);
			this.rbPrivate.TabIndex = 0;
			this.rbPrivate.Text = "Private";
			this.rbPrivate.UseVisualStyleBackColor = true;
			// 
			// txtClassName
			// 
			this.txtClassName.Location = new System.Drawing.Point(130, 97);
			this.txtClassName.Name = "txtClassName";
			this.txtClassName.Size = new System.Drawing.Size(200, 20);
			this.txtClassName.TabIndex = 12;
			// 
			// label5
			// 
			this.label5.AutoSize = true;
			this.label5.Location = new System.Drawing.Point(14, 101);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(108, 13);
			this.label5.TabIndex = 11;
			this.label5.Text = "C# Class Class Name";
			this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// label4
			// 
			this.label4.AutoSize = true;
			this.label4.Location = new System.Drawing.Point(14, 75);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(109, 13);
			this.label4.TabIndex = 10;
			this.label4.Text = "C# Class Namespace";
			this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// txtClassNamespace
			// 
			this.txtClassNamespace.Location = new System.Drawing.Point(130, 71);
			this.txtClassNamespace.Name = "txtClassNamespace";
			this.txtClassNamespace.Size = new System.Drawing.Size(200, 20);
			this.txtClassNamespace.TabIndex = 0;
			// 
			// txtXMLDataSetName
			// 
			this.txtXMLDataSetName.Location = new System.Drawing.Point(128, 44);
			this.txtXMLDataSetName.Name = "txtXMLDataSetName";
			this.txtXMLDataSetName.Size = new System.Drawing.Size(200, 20);
			this.txtXMLDataSetName.TabIndex = 15;
			// 
			// label6
			// 
			this.label6.AutoSize = true;
			this.label6.Location = new System.Drawing.Point(12, 48);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(105, 13);
			this.label6.TabIndex = 14;
			this.label6.Text = "XML Data Set Name";
			this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			// 
			// gbxDataBase
			// 
			this.gbxDataBase.Controls.Add(this.panel4);
			this.gbxDataBase.Controls.Add(this.panel3);
			this.gbxDataBase.Dock = System.Windows.Forms.DockStyle.Fill;
			this.gbxDataBase.Location = new System.Drawing.Point(352, 0);
			this.gbxDataBase.Name = "gbxDataBase";
			this.gbxDataBase.Size = new System.Drawing.Size(429, 453);
			this.gbxDataBase.TabIndex = 14;
			this.gbxDataBase.TabStop = false;
			this.gbxDataBase.Text = "XML Database";
			// 
			// panel4
			// 
			this.panel4.Controls.Add(this.lvDatabase);
			this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
			this.panel4.Location = new System.Drawing.Point(3, 16);
			this.panel4.Name = "panel4";
			this.panel4.Size = new System.Drawing.Size(423, 307);
			this.panel4.TabIndex = 2;
			// 
			// panel3
			// 
			this.panel3.Controls.Add(this.label8);
			this.panel3.Controls.Add(this.btnAddField);
			this.panel3.Controls.Add(this.btnRemoveField);
			this.panel3.Controls.Add(this.chkAutoIncrement);
			this.panel3.Controls.Add(this.label2);
			this.panel3.Controls.Add(this.cboFieldType);
			this.panel3.Controls.Add(this.txtFieldName);
			this.panel3.Controls.Add(this.label3);
			this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.panel3.Location = new System.Drawing.Point(3, 323);
			this.panel3.Name = "panel3";
			this.panel3.Size = new System.Drawing.Size(423, 127);
			this.panel3.TabIndex = 1;
			// 
			// label8
			// 
			this.label8.AutoSize = true;
			this.label8.Location = new System.Drawing.Point(165, 29);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(56, 13);
			this.label8.TabIndex = 12;
			this.label8.Text = "Field Type";
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.Add(this.groupBox4);
			this.groupBox2.Controls.Add(this.groupBox3);
			this.groupBox2.Controls.Add(this.btnBrowseWD);
			this.groupBox2.Controls.Add(this.label9);
			this.groupBox2.Controls.Add(this.txtWorkingDirectory);
			this.groupBox2.Dock = System.Windows.Forms.DockStyle.Left;
			this.groupBox2.Location = new System.Drawing.Point(0, 0);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(352, 453);
			this.groupBox2.TabIndex = 15;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "General Information";
			// 
			// cboStringOverride
			// 
			this.cboStringOverride.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cboStringOverride.FormattingEnabled = true;
			this.cboStringOverride.Location = new System.Drawing.Point(130, 44);
			this.cboStringOverride.Name = "cboStringOverride";
			this.cboStringOverride.Size = new System.Drawing.Size(96, 21);
			this.cboStringOverride.TabIndex = 21;
			// 
			// label10
			// 
			this.label10.AutoSize = true;
			this.label10.Location = new System.Drawing.Point(14, 48);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(77, 13);
			this.label10.TabIndex = 20;
			this.label10.Text = "String Override";
			// 
			// btnBrowseWD
			// 
			this.btnBrowseWD.Image = ((System.Drawing.Image)(resources.GetObject("btnBrowseWD.Image")));
			this.btnBrowseWD.Location = new System.Drawing.Point(20, 43);
			this.btnBrowseWD.Name = "btnBrowseWD";
			this.btnBrowseWD.Size = new System.Drawing.Size(23, 23);
			this.btnBrowseWD.TabIndex = 19;
			this.btnBrowseWD.UseVisualStyleBackColor = true;
			this.btnBrowseWD.Click += new System.EventHandler(this.btnBrowseWD_Click);
			// 
			// label9
			// 
			this.label9.AutoSize = true;
			this.label9.Location = new System.Drawing.Point(20, 24);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(77, 13);
			this.label9.TabIndex = 18;
			this.label9.Text = "Save Directory";
			// 
			// txtWorkingDirectory
			// 
			this.txtWorkingDirectory.Location = new System.Drawing.Point(58, 44);
			this.txtWorkingDirectory.Name = "txtWorkingDirectory";
			this.txtWorkingDirectory.Size = new System.Drawing.Size(282, 20);
			this.txtWorkingDirectory.TabIndex = 0;
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.Add(this.btnReadSchema);
			this.groupBox3.Controls.Add(this.txtXMLDataSetName);
			this.groupBox3.Controls.Add(this.label6);
			this.groupBox3.Controls.Add(this.btnCreateSchema);
			this.groupBox3.Controls.Add(this.label1);
			this.groupBox3.Controls.Add(this.txtXMLNamespace);
			this.groupBox3.Location = new System.Drawing.Point(12, 84);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Size = new System.Drawing.Size(334, 119);
			this.groupBox3.TabIndex = 22;
			this.groupBox3.TabStop = false;
			this.groupBox3.Text = "XML File";
			// 
			// groupBox4
			// 
			this.groupBox4.Controls.Add(this.groupBox1);
			this.groupBox4.Controls.Add(this.btnCreateClass);
			this.groupBox4.Controls.Add(this.txtClassNamespace);
			this.groupBox4.Controls.Add(this.cboStringOverride);
			this.groupBox4.Controls.Add(this.label10);
			this.groupBox4.Controls.Add(this.label4);
			this.groupBox4.Controls.Add(this.cboKeyField);
			this.groupBox4.Controls.Add(this.label5);
			this.groupBox4.Controls.Add(this.label7);
			this.groupBox4.Controls.Add(this.txtClassName);
			this.groupBox4.Location = new System.Drawing.Point(12, 209);
			this.groupBox4.Name = "groupBox4";
			this.groupBox4.Size = new System.Drawing.Size(334, 237);
			this.groupBox4.TabIndex = 23;
			this.groupBox4.TabStop = false;
			this.groupBox4.Text = "C# Class";
			// 
			// FormCreateXMLDB
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(781, 475);
			this.Controls.Add(this.gbxDataBase);
			this.Controls.Add(this.groupBox2);
			this.Controls.Add(this.statusStrip1);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Name = "FormCreateXMLDB";
			this.Text = "XML Database";
			this.Load += new System.EventHandler(this.FormCreateXMLDB_Load);
			this.statusStrip1.ResumeLayout(false);
			this.statusStrip1.PerformLayout();
			this.groupBox1.ResumeLayout(false);
			this.gbxDataBase.ResumeLayout(false);
			this.panel4.ResumeLayout(false);
			this.panel3.ResumeLayout(false);
			this.panel3.PerformLayout();
			this.groupBox2.ResumeLayout(false);
			this.groupBox2.PerformLayout();
			this.groupBox3.ResumeLayout(false);
			this.groupBox3.PerformLayout();
			this.groupBox4.ResumeLayout(false);
			this.groupBox4.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#endregion

		private System.Windows.Forms.StatusStrip statusStrip1;
		private System.Windows.Forms.ToolStripStatusLabel tslblMessage;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.TextBox txtXMLNamespace;
		private System.Windows.Forms.ListView lvDatabase;
		private System.Windows.Forms.ColumnHeader colFieldName;
		private System.Windows.Forms.ColumnHeader colFieldType;
		private System.Windows.Forms.ColumnHeader colAutoIncrement;
		private System.Windows.Forms.Button btnAddField;
		private System.Windows.Forms.Button btnRemoveField;
		private System.Windows.Forms.Button btnCreateSchema;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.TextBox txtFieldName;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.ComboBox cboFieldType;
		private System.Windows.Forms.CheckBox chkAutoIncrement;
		private System.Windows.Forms.TextBox txtClassName;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.TextBox txtClassNamespace;
		private System.Windows.Forms.RadioButton rbPublic;
		private System.Windows.Forms.RadioButton rbInternal;
		private System.Windows.Forms.RadioButton rbPrivate;
		private System.Windows.Forms.TextBox txtXMLDataSetName;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Button btnCreateClass;
		private System.Windows.Forms.GroupBox gbxDataBase;
		private System.Windows.Forms.Panel panel4;
		private System.Windows.Forms.Panel panel3;
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.ComboBox cboKeyField;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.Label label8;
		private System.Windows.Forms.Button btnReadSchema;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.Button btnBrowseWD;
		private System.Windows.Forms.Label label9;
		private System.Windows.Forms.TextBox txtWorkingDirectory;
		private System.Windows.Forms.ComboBox cboStringOverride;
		private System.Windows.Forms.Label label10;
		private System.Windows.Forms.GroupBox groupBox4;
		private System.Windows.Forms.GroupBox groupBox3;
	}
}

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
Retired
United Kingdom United Kingdom
I have been a keen hobbyist programmer since getting my first computer - a Vic 20 (you had to be able to write programs then since few programs were available and all were expensive).
Retired and now living in Pewsey, Wiltshire, where I spend (far too much of) my time writing computer programs to keep my mind active.

Comments and Discussions