Click here to Skip to main content
15,881,172 members
Articles / Programming Languages / C#

Data Debugger Visualizer

Rate me:
Please Sign up or sign in to vote.
5.00/5 (33 votes)
30 May 20052 min read 142.2K   3.2K   108  
VS 2005 debug visualizers for DataSet, DataTable, DataView, DataRow and DataColumn objects.
namespace DotNetDan.Visualizers
{
	partial class DataTableVisualizerTab
	{
		/// <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 Component 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();
			System.Windows.Forms.ColumnHeader columnHeader2;
			System.Windows.Forms.GroupBox grpRowFilter;
			System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
			System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
			this.lstRowFilterColumns = new System.Windows.Forms.ListView();
			this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
			this.txtRowFilterExpression = new System.Windows.Forms.TextBox();
			this.btnCancelRowFilter = new System.Windows.Forms.Button();
			this.btnApplyRowFilter = new System.Windows.Forms.Button();
			this.pnlStateFilterButtons = new System.Windows.Forms.FlowLayoutPanel();
			this.rdoActiveRows = new System.Windows.Forms.RadioButton();
			this.rdoDeletedRows = new System.Windows.Forms.RadioButton();
			this.btnShowHideRowFilter = new System.Windows.Forms.Button();
			this.cntnrGridProperties = new System.Windows.Forms.SplitContainer();
			this.grdActiveDataTable = new System.Windows.Forms.DataGridView();
			this.grdDeletedDataTable = new System.Windows.Forms.DataGridView();
			this.pnlProperties = new System.Windows.Forms.TableLayoutPanel();
			this.txtRowError = new System.Windows.Forms.TextBox();
			this.txtRowState = new System.Windows.Forms.TextBox();
			this.txtCellError = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.txtCellOriginalValue = new System.Windows.Forms.TextBox();
			this.bindingSource = new System.Windows.Forms.BindingSource(this.components);
			this.cntnrFilterGridProperties = new System.Windows.Forms.SplitContainer();
			this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
			columnHeader2 = new System.Windows.Forms.ColumnHeader();
			grpRowFilter = new System.Windows.Forms.GroupBox();
			grpRowFilter.SuspendLayout();
			this.tableLayoutPanel1.SuspendLayout();
			this.pnlStateFilterButtons.SuspendLayout();
			this.cntnrGridProperties.Panel1.SuspendLayout();
			this.cntnrGridProperties.Panel2.SuspendLayout();
			this.cntnrGridProperties.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.grdActiveDataTable)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.grdDeletedDataTable)).BeginInit();
			this.pnlProperties.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
			this.cntnrFilterGridProperties.Panel1.SuspendLayout();
			this.cntnrFilterGridProperties.Panel2.SuspendLayout();
			this.cntnrFilterGridProperties.SuspendLayout();
			this.SuspendLayout();
			// 
			// columnHeader2
			// 
			columnHeader2.Text = "Column Name";
			columnHeader2.Width = 110;
			// 
			// grpRowFilter
			// 
			grpRowFilter.Controls.Add(this.lstRowFilterColumns);
			grpRowFilter.Controls.Add(this.tableLayoutPanel1);
			grpRowFilter.Dock = System.Windows.Forms.DockStyle.Fill;
			grpRowFilter.Location = new System.Drawing.Point(0, 0);
			grpRowFilter.Name = "grpRowFilter";
			grpRowFilter.Size = new System.Drawing.Size(611, 105);
			grpRowFilter.TabIndex = 5;
			grpRowFilter.TabStop = false;
			grpRowFilter.Text = "Row Filter";
			// 
			// lstRowFilterColumns
			// 
			this.lstRowFilterColumns.Activation = System.Windows.Forms.ItemActivation.OneClick;
			this.lstRowFilterColumns.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            columnHeader2});
			this.lstRowFilterColumns.Dock = System.Windows.Forms.DockStyle.Fill;
			this.lstRowFilterColumns.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
			this.lstRowFilterColumns.HotTracking = true;
			this.lstRowFilterColumns.HoverSelection = true;
			this.lstRowFilterColumns.Location = new System.Drawing.Point(3, 46);
			this.lstRowFilterColumns.MultiSelect = false;
			this.lstRowFilterColumns.Name = "lstRowFilterColumns";
			this.lstRowFilterColumns.ShowGroups = false;
			this.lstRowFilterColumns.ShowItemToolTips = true;
			this.lstRowFilterColumns.Size = new System.Drawing.Size(605, 56);
			this.lstRowFilterColumns.TabIndex = 7;
			this.lstRowFilterColumns.View = System.Windows.Forms.View.List;
			this.lstRowFilterColumns.Click += new System.EventHandler(this.lstRowFilterColumns_Click);
			// 
			// tableLayoutPanel1
			// 
			this.tableLayoutPanel1.ColumnCount = 3;
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 80F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 80F));
			this.tableLayoutPanel1.Controls.Add(this.txtRowFilterExpression, 0, 0);
			this.tableLayoutPanel1.Controls.Add(this.btnCancelRowFilter, 2, 0);
			this.tableLayoutPanel1.Controls.Add(this.btnApplyRowFilter, 1, 0);
			this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
			this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 16);
			this.tableLayoutPanel1.Name = "tableLayoutPanel1";
			this.tableLayoutPanel1.RowCount = 1;
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.tableLayoutPanel1.Size = new System.Drawing.Size(605, 30);
			this.tableLayoutPanel1.TabIndex = 6;
			// 
			// txtRowFilterExpression
			// 
			this.txtRowFilterExpression.AutoSize = false;
			this.txtRowFilterExpression.Dock = System.Windows.Forms.DockStyle.Fill;
			this.txtRowFilterExpression.Location = new System.Drawing.Point(3, 3);
			this.txtRowFilterExpression.Multiline = true;
			this.txtRowFilterExpression.Name = "txtRowFilterExpression";
			this.txtRowFilterExpression.Size = new System.Drawing.Size(439, 24);
			this.txtRowFilterExpression.TabIndex = 6;
			this.txtRowFilterExpression.TextChanged += new System.EventHandler(this.txtRowFilterExpression_TextChanged);
			// 
			// btnCancelRowFilter
			// 
			this.btnCancelRowFilter.Anchor = System.Windows.Forms.AnchorStyles.None;
			this.btnCancelRowFilter.Location = new System.Drawing.Point(528, 3);
			this.btnCancelRowFilter.Name = "btnCancelRowFilter";
			this.btnCancelRowFilter.Size = new System.Drawing.Size(74, 23);
			this.btnCancelRowFilter.TabIndex = 5;
			this.btnCancelRowFilter.Text = "Cancel";
			this.btnCancelRowFilter.Click += new System.EventHandler(this.btnCancelRowFilter_Click);
			// 
			// btnApplyRowFilter
			// 
			this.btnApplyRowFilter.Anchor = System.Windows.Forms.AnchorStyles.None;
			this.btnApplyRowFilter.Location = new System.Drawing.Point(448, 3);
			this.btnApplyRowFilter.Name = "btnApplyRowFilter";
			this.btnApplyRowFilter.Size = new System.Drawing.Size(74, 23);
			this.btnApplyRowFilter.TabIndex = 4;
			this.btnApplyRowFilter.Text = "Apply";
			this.btnApplyRowFilter.Click += new System.EventHandler(this.btnApplyRowFilter_Click);
			// 
			// pnlStateFilterButtons
			// 
			this.pnlStateFilterButtons.AutoSize = true;
			this.pnlStateFilterButtons.Controls.Add(this.rdoActiveRows);
			this.pnlStateFilterButtons.Controls.Add(this.rdoDeletedRows);
			this.pnlStateFilterButtons.Controls.Add(this.btnShowHideRowFilter);
			this.pnlStateFilterButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.pnlStateFilterButtons.Location = new System.Drawing.Point(0, 0);
			this.pnlStateFilterButtons.Name = "pnlStateFilterButtons";
			this.pnlStateFilterButtons.Size = new System.Drawing.Size(611, 29);
			this.pnlStateFilterButtons.TabIndex = 0;
			// 
			// rdoActiveRows
			// 
			this.rdoActiveRows.AutoSize = true;
			this.rdoActiveRows.Checked = true;
			this.rdoActiveRows.Location = new System.Drawing.Point(3, 3);
			this.rdoActiveRows.Name = "rdoActiveRows";
			this.rdoActiveRows.Size = new System.Drawing.Size(84, 17);
			this.rdoActiveRows.TabIndex = 0;
			this.rdoActiveRows.Text = "Active Rows ";
			this.rdoActiveRows.CheckedChanged += new System.EventHandler(this.rdoActiveRows_CheckedChanged);
			// 
			// rdoDeletedRows
			// 
			this.rdoDeletedRows.AutoSize = true;
			this.rdoDeletedRows.Enabled = false;
			this.rdoDeletedRows.Location = new System.Drawing.Point(93, 3);
			this.rdoDeletedRows.Name = "rdoDeletedRows";
			this.rdoDeletedRows.Size = new System.Drawing.Size(91, 17);
			this.rdoDeletedRows.TabIndex = 1;
			this.rdoDeletedRows.TabStop = false;
			this.rdoDeletedRows.Text = "Deleted Rows ";
			this.rdoDeletedRows.CheckedChanged += new System.EventHandler(this.rdoDeletedRows_CheckedChanged);
			// 
			// btnShowHideRowFilter
			// 
			this.btnShowHideRowFilter.Location = new System.Drawing.Point(190, 3);
			this.btnShowHideRowFilter.Name = "btnShowHideRowFilter";
			this.btnShowHideRowFilter.Size = new System.Drawing.Size(75, 23);
			this.btnShowHideRowFilter.TabIndex = 2;
			this.btnShowHideRowFilter.Text = "Row Filter >>";
			this.btnShowHideRowFilter.Click += new System.EventHandler(this.btnShowHideRowFilter_Click);
			// 
			// cntnrGridProperties
			// 
			this.cntnrGridProperties.Dock = System.Windows.Forms.DockStyle.Fill;
			this.cntnrGridProperties.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
			this.cntnrGridProperties.IsSplitterFixed = true;
			this.cntnrGridProperties.Location = new System.Drawing.Point(0, 0);
			this.cntnrGridProperties.Margin = new System.Windows.Forms.Padding(0);
			this.cntnrGridProperties.Name = "cntnrGridProperties";
			this.cntnrGridProperties.Orientation = System.Windows.Forms.Orientation.Horizontal;
			// 
			// cntnrGridProperties.Panel1
			// 
			this.cntnrGridProperties.Panel1.Controls.Add(this.grdActiveDataTable);
			this.cntnrGridProperties.Panel1.Controls.Add(this.grdDeletedDataTable);
			// 
			// cntnrGridProperties.Panel2
			// 
			this.cntnrGridProperties.Panel2.Controls.Add(this.pnlProperties);
			this.cntnrGridProperties.Panel2MinSize = 50;
			this.cntnrGridProperties.Size = new System.Drawing.Size(611, 210);
			this.cntnrGridProperties.SplitterDistance = 124;
			this.cntnrGridProperties.TabIndex = 1;
			// 
			// grdActiveDataTable
			// 
			this.grdActiveDataTable.AllowUserToAddRows = false;
			this.grdActiveDataTable.AllowUserToDeleteRows = false;
			this.grdActiveDataTable.AllowUserToResizeRows = false;
			this.grdActiveDataTable.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.grdActiveDataTable.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
			dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
			dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
			dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
			dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
			dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
			dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
			this.grdActiveDataTable.DefaultCellStyle = dataGridViewCellStyle1;
			this.grdActiveDataTable.Dock = System.Windows.Forms.DockStyle.Fill;
			this.grdActiveDataTable.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
			this.grdActiveDataTable.Location = new System.Drawing.Point(0, 0);
			this.grdActiveDataTable.MultiSelect = false;
			this.grdActiveDataTable.Name = "grdActiveDataTable";
			this.grdActiveDataTable.ReadOnly = true;
			this.grdActiveDataTable.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
			this.grdActiveDataTable.RowHeadersWidth = 30;
			this.grdActiveDataTable.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
			this.grdActiveDataTable.ShowEditingIcon = false;
			this.grdActiveDataTable.Size = new System.Drawing.Size(611, 124);
			this.grdActiveDataTable.TabIndex = 0;
			this.grdActiveDataTable.RowEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_RowEnter);
			this.grdActiveDataTable.RowPrePaint += new System.Windows.Forms.DataGridViewRowPrePaintEventHandler(this.grdActiveDataTable_RowPrePaint);
			this.grdActiveDataTable.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.grdActiveDataTable_CellFormatting);
			this.grdActiveDataTable.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.grdActiveDataTable_DataError);
			this.grdActiveDataTable.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellEnter);
			// 
			// grdDeletedDataTable
			// 
			this.grdDeletedDataTable.AllowUserToAddRows = false;
			this.grdDeletedDataTable.AllowUserToDeleteRows = false;
			this.grdDeletedDataTable.AllowUserToResizeRows = false;
			this.grdDeletedDataTable.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.grdDeletedDataTable.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
			dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
			dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
			dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
			dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
			dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
			dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
			this.grdDeletedDataTable.DefaultCellStyle = dataGridViewCellStyle2;
			this.grdDeletedDataTable.Dock = System.Windows.Forms.DockStyle.Fill;
			this.grdDeletedDataTable.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
			this.grdDeletedDataTable.Location = new System.Drawing.Point(0, 0);
			this.grdDeletedDataTable.MultiSelect = false;
			this.grdDeletedDataTable.Name = "grdDeletedDataTable";
			this.grdDeletedDataTable.ReadOnly = true;
			this.grdDeletedDataTable.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
			this.grdDeletedDataTable.RowHeadersWidth = 30;
			this.grdDeletedDataTable.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
			this.grdDeletedDataTable.ShowEditingIcon = false;
			this.grdDeletedDataTable.Size = new System.Drawing.Size(611, 124);
			this.grdDeletedDataTable.TabIndex = 1;
			this.grdDeletedDataTable.Visible = false;
			// 
			// pnlProperties
			// 
			this.pnlProperties.BackColor = System.Drawing.Color.White;
			this.pnlProperties.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
			this.pnlProperties.ColumnCount = 2;
			this.pnlProperties.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			this.pnlProperties.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			this.pnlProperties.Controls.Add(this.txtRowError, 1, 3);
			this.pnlProperties.Controls.Add(this.txtRowState, 1, 2);
			this.pnlProperties.Controls.Add(this.txtCellError, 1, 1);
			this.pnlProperties.Controls.Add(this.label1, 0, 0);
			this.pnlProperties.Controls.Add(this.label2, 0, 1);
			this.pnlProperties.Controls.Add(this.label3, 0, 2);
			this.pnlProperties.Controls.Add(this.label4, 0, 3);
			this.pnlProperties.Controls.Add(this.txtCellOriginalValue, 1, 0);
			this.pnlProperties.Dock = System.Windows.Forms.DockStyle.Fill;
			this.pnlProperties.Location = new System.Drawing.Point(0, 0);
			this.pnlProperties.Name = "pnlProperties";
			this.pnlProperties.RowCount = 4;
			this.pnlProperties.RowStyles.Add(new System.Windows.Forms.RowStyle());
			this.pnlProperties.RowStyles.Add(new System.Windows.Forms.RowStyle());
			this.pnlProperties.RowStyles.Add(new System.Windows.Forms.RowStyle());
			this.pnlProperties.RowStyles.Add(new System.Windows.Forms.RowStyle());
			this.pnlProperties.Size = new System.Drawing.Size(611, 82);
			this.pnlProperties.TabIndex = 0;
			// 
			// txtRowError
			// 
			this.txtRowError.BackColor = System.Drawing.Color.White;
			this.txtRowError.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.txtRowError.Dock = System.Windows.Forms.DockStyle.Fill;
			this.txtRowError.Location = new System.Drawing.Point(96, 64);
			this.txtRowError.Name = "txtRowError";
			this.txtRowError.ReadOnly = true;
			this.txtRowError.Size = new System.Drawing.Size(511, 13);
			this.txtRowError.TabIndex = 7;
			// 
			// txtRowState
			// 
			this.txtRowState.BackColor = System.Drawing.Color.White;
			this.txtRowState.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.txtRowState.Dock = System.Windows.Forms.DockStyle.Fill;
			this.txtRowState.Location = new System.Drawing.Point(96, 44);
			this.txtRowState.Name = "txtRowState";
			this.txtRowState.ReadOnly = true;
			this.txtRowState.Size = new System.Drawing.Size(511, 13);
			this.txtRowState.TabIndex = 6;
			// 
			// txtCellError
			// 
			this.txtCellError.BackColor = System.Drawing.Color.White;
			this.txtCellError.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.txtCellError.Dock = System.Windows.Forms.DockStyle.Fill;
			this.txtCellError.Location = new System.Drawing.Point(96, 24);
			this.txtCellError.Name = "txtCellError";
			this.txtCellError.ReadOnly = true;
			this.txtCellError.Size = new System.Drawing.Size(511, 13);
			this.txtCellError.TabIndex = 5;
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Dock = System.Windows.Forms.DockStyle.Left;
			this.label1.Location = new System.Drawing.Point(4, 1);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(85, 19);
			this.label1.TabIndex = 0;
			this.label1.Text = "Cell original value";
			// 
			// label2
			// 
			this.label2.AutoSize = true;
			this.label2.Dock = System.Windows.Forms.DockStyle.Left;
			this.label2.Location = new System.Drawing.Point(4, 21);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(44, 19);
			this.label2.TabIndex = 1;
			this.label2.Text = "Cell error";
			// 
			// label3
			// 
			this.label3.AutoSize = true;
			this.label3.Dock = System.Windows.Forms.DockStyle.Left;
			this.label3.Location = new System.Drawing.Point(4, 41);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(51, 19);
			this.label3.TabIndex = 2;
			this.label3.Text = "Row state";
			// 
			// label4
			// 
			this.label4.AutoSize = true;
			this.label4.Dock = System.Windows.Forms.DockStyle.Left;
			this.label4.Location = new System.Drawing.Point(4, 61);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(49, 20);
			this.label4.TabIndex = 3;
			this.label4.Text = "Row error";
			// 
			// txtCellOriginalValue
			// 
			this.txtCellOriginalValue.BackColor = System.Drawing.Color.White;
			this.txtCellOriginalValue.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.txtCellOriginalValue.Dock = System.Windows.Forms.DockStyle.Fill;
			this.txtCellOriginalValue.Location = new System.Drawing.Point(96, 4);
			this.txtCellOriginalValue.Name = "txtCellOriginalValue";
			this.txtCellOriginalValue.ReadOnly = true;
			this.txtCellOriginalValue.Size = new System.Drawing.Size(511, 13);
			this.txtCellOriginalValue.TabIndex = 4;
			// 
			// cntnrFilterGridProperties
			// 
			this.cntnrFilterGridProperties.Dock = System.Windows.Forms.DockStyle.Fill;
			this.cntnrFilterGridProperties.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
			this.cntnrFilterGridProperties.Location = new System.Drawing.Point(0, 29);
			this.cntnrFilterGridProperties.Name = "cntnrFilterGridProperties";
			this.cntnrFilterGridProperties.Orientation = System.Windows.Forms.Orientation.Horizontal;
			// 
			// cntnrFilterGridProperties.Panel1
			// 
			this.cntnrFilterGridProperties.Panel1.Controls.Add(grpRowFilter);
			// 
			// cntnrFilterGridProperties.Panel2
			// 
			this.cntnrFilterGridProperties.Panel2.Controls.Add(this.cntnrGridProperties);
			this.cntnrFilterGridProperties.Panel2MinSize = 50;
			this.cntnrFilterGridProperties.Size = new System.Drawing.Size(611, 319);
			this.cntnrFilterGridProperties.SplitterDistance = 105;
			this.cntnrFilterGridProperties.TabIndex = 2;
			// 
			// columnHeader1
			// 
			this.columnHeader1.DisplayIndex = 0;
			this.columnHeader1.Text = "Column Name";
			this.columnHeader1.Width = 120;
			// 
			// DataTableVisualizerTab
			// 
			this.Controls.Add(this.cntnrFilterGridProperties);
			this.Controls.Add(this.pnlStateFilterButtons);
			this.Name = "DataTableVisualizerTab";
			this.Size = new System.Drawing.Size(611, 348);
			grpRowFilter.ResumeLayout(false);
			this.tableLayoutPanel1.ResumeLayout(false);
			this.pnlStateFilterButtons.ResumeLayout(false);
			this.pnlStateFilterButtons.PerformLayout();
			this.cntnrGridProperties.Panel1.ResumeLayout(false);
			this.cntnrGridProperties.Panel2.ResumeLayout(false);
			this.cntnrGridProperties.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.grdActiveDataTable)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.grdDeletedDataTable)).EndInit();
			this.pnlProperties.ResumeLayout(false);
			this.pnlProperties.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
			this.cntnrFilterGridProperties.Panel1.ResumeLayout(false);
			this.cntnrFilterGridProperties.Panel2.ResumeLayout(false);
			this.cntnrFilterGridProperties.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#endregion

		private System.Windows.Forms.FlowLayoutPanel pnlStateFilterButtons;
		private System.Windows.Forms.RadioButton rdoActiveRows;
		private System.Windows.Forms.RadioButton rdoDeletedRows;
		private System.Windows.Forms.SplitContainer cntnrGridProperties;
		private System.Windows.Forms.DataGridView grdActiveDataTable;
		private System.Windows.Forms.TableLayoutPanel pnlProperties;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.TextBox txtCellOriginalValue;
		private System.Windows.Forms.TextBox txtRowState;
		private System.Windows.Forms.TextBox txtCellError;
		private System.Windows.Forms.TextBox txtRowError;
		private System.Windows.Forms.DataGridView grdDeletedDataTable;
		private System.Windows.Forms.BindingSource bindingSource;
		private System.Windows.Forms.Button btnShowHideRowFilter;
		private System.Windows.Forms.SplitContainer cntnrFilterGridProperties;
		private System.Windows.Forms.Button btnApplyRowFilter;
		private System.Windows.Forms.Button btnCancelRowFilter;
		private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
		private System.Windows.Forms.ListView lstRowFilterColumns;
		private System.Windows.Forms.TextBox txtRowFilterExpression;
		private System.Windows.Forms.ColumnHeader columnHeader1;
	}
}

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
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions