Files
elma/ELMA/LogAnalyzer.Designer.cs
2022-07-14 12:41:21 +02:00

500 lines
27 KiB
C#

namespace ELMA
{
partial class LogAnalyzer
{
/// <summary>
/// Variabile di progettazione necessaria.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Pulire le risorse in uso.
/// </summary>
/// <param name="disposing">ha valore true se le risorse gestite devono essere eliminate, false in caso contrario.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Codice generato da Progettazione Windows Form
/// <summary>
/// Metodo necessario per il supporto della finestra di progettazione. Non modificare
/// il contenuto del metodo con l'editor di codice.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LogAnalyzer));
this.ErrorsDGV = new System.Windows.Forms.DataGridView();
this.sequenceDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.timeUtcDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.hostDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.applicationDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.errorIdDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.typeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.sourceDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.userDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.statusCodeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.messageDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.bsErrors = new System.Windows.Forms.BindingSource(this.components);
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.tsslNumRec = new System.Windows.Forms.ToolStripStatusLabel();
this.gboxFiltri = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.txtMaxRow = new System.Windows.Forms.TextBox();
this.btnDeleteSel = new System.Windows.Forms.Button();
this.chkUsers = new System.Windows.Forms.CheckBox();
this.chkStatus = new System.Windows.Forms.CheckBox();
this.chkHost = new System.Windows.Forms.CheckBox();
this.chkType = new System.Windows.Forms.CheckBox();
this.chkApp = new System.Windows.Forms.CheckBox();
this.listUsers = new System.Windows.Forms.ListBox();
this.listType = new System.Windows.Forms.ListBox();
this.listStatus = new System.Windows.Forms.ListBox();
this.listHost = new System.Windows.Forms.ListBox();
this.listApp = new System.Windows.Forms.ListBox();
this.timerMain = new System.Windows.Forms.Timer(this.components);
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.currentConfigToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
((System.ComponentModel.ISupportInitialize)(this.ErrorsDGV)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bsErrors)).BeginInit();
this.statusStrip1.SuspendLayout();
this.gboxFiltri.SuspendLayout();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// ErrorsDGV
//
this.ErrorsDGV.AllowUserToAddRows = false;
this.ErrorsDGV.AllowUserToDeleteRows = false;
this.ErrorsDGV.AllowUserToOrderColumns = true;
this.ErrorsDGV.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.ErrorsDGV.AutoGenerateColumns = false;
this.ErrorsDGV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.ErrorsDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.sequenceDataGridViewTextBoxColumn,
this.timeUtcDataGridViewTextBoxColumn,
this.hostDataGridViewTextBoxColumn,
this.applicationDataGridViewTextBoxColumn,
this.errorIdDataGridViewTextBoxColumn,
this.typeDataGridViewTextBoxColumn,
this.sourceDataGridViewTextBoxColumn,
this.userDataGridViewTextBoxColumn,
this.statusCodeDataGridViewTextBoxColumn,
this.messageDataGridViewTextBoxColumn});
this.ErrorsDGV.DataSource = this.bsErrors;
this.ErrorsDGV.Location = new System.Drawing.Point(12, 135);
this.ErrorsDGV.Name = "ErrorsDGV";
this.ErrorsDGV.ReadOnly = true;
this.ErrorsDGV.RowHeadersWidth = 51;
this.ErrorsDGV.Size = new System.Drawing.Size(1048, 470);
this.ErrorsDGV.TabIndex = 0;
this.ErrorsDGV.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.ErrorsDGV_CellDoubleClick);
this.ErrorsDGV.DoubleClick += new System.EventHandler(this.ErrorsDGV_DoubleClick);
//
// sequenceDataGridViewTextBoxColumn
//
this.sequenceDataGridViewTextBoxColumn.DataPropertyName = "Sequence";
this.sequenceDataGridViewTextBoxColumn.HeaderText = "Sequence";
this.sequenceDataGridViewTextBoxColumn.MinimumWidth = 6;
this.sequenceDataGridViewTextBoxColumn.Name = "sequenceDataGridViewTextBoxColumn";
this.sequenceDataGridViewTextBoxColumn.ReadOnly = true;
this.sequenceDataGridViewTextBoxColumn.Width = 125;
//
// timeUtcDataGridViewTextBoxColumn
//
this.timeUtcDataGridViewTextBoxColumn.DataPropertyName = "TimeUtc";
this.timeUtcDataGridViewTextBoxColumn.HeaderText = "TimeUtc";
this.timeUtcDataGridViewTextBoxColumn.MinimumWidth = 6;
this.timeUtcDataGridViewTextBoxColumn.Name = "timeUtcDataGridViewTextBoxColumn";
this.timeUtcDataGridViewTextBoxColumn.ReadOnly = true;
this.timeUtcDataGridViewTextBoxColumn.Width = 125;
//
// hostDataGridViewTextBoxColumn
//
this.hostDataGridViewTextBoxColumn.DataPropertyName = "Host";
this.hostDataGridViewTextBoxColumn.HeaderText = "Host";
this.hostDataGridViewTextBoxColumn.MinimumWidth = 6;
this.hostDataGridViewTextBoxColumn.Name = "hostDataGridViewTextBoxColumn";
this.hostDataGridViewTextBoxColumn.ReadOnly = true;
this.hostDataGridViewTextBoxColumn.Width = 125;
//
// applicationDataGridViewTextBoxColumn
//
this.applicationDataGridViewTextBoxColumn.DataPropertyName = "Application";
this.applicationDataGridViewTextBoxColumn.HeaderText = "Application";
this.applicationDataGridViewTextBoxColumn.MinimumWidth = 6;
this.applicationDataGridViewTextBoxColumn.Name = "applicationDataGridViewTextBoxColumn";
this.applicationDataGridViewTextBoxColumn.ReadOnly = true;
this.applicationDataGridViewTextBoxColumn.Width = 125;
//
// errorIdDataGridViewTextBoxColumn
//
this.errorIdDataGridViewTextBoxColumn.DataPropertyName = "ErrorId";
this.errorIdDataGridViewTextBoxColumn.HeaderText = "ErrorId";
this.errorIdDataGridViewTextBoxColumn.MinimumWidth = 6;
this.errorIdDataGridViewTextBoxColumn.Name = "errorIdDataGridViewTextBoxColumn";
this.errorIdDataGridViewTextBoxColumn.ReadOnly = true;
this.errorIdDataGridViewTextBoxColumn.Width = 125;
//
// typeDataGridViewTextBoxColumn
//
this.typeDataGridViewTextBoxColumn.DataPropertyName = "Type";
this.typeDataGridViewTextBoxColumn.HeaderText = "Type";
this.typeDataGridViewTextBoxColumn.MinimumWidth = 6;
this.typeDataGridViewTextBoxColumn.Name = "typeDataGridViewTextBoxColumn";
this.typeDataGridViewTextBoxColumn.ReadOnly = true;
this.typeDataGridViewTextBoxColumn.Width = 125;
//
// sourceDataGridViewTextBoxColumn
//
this.sourceDataGridViewTextBoxColumn.DataPropertyName = "Source";
this.sourceDataGridViewTextBoxColumn.HeaderText = "Source";
this.sourceDataGridViewTextBoxColumn.MinimumWidth = 6;
this.sourceDataGridViewTextBoxColumn.Name = "sourceDataGridViewTextBoxColumn";
this.sourceDataGridViewTextBoxColumn.ReadOnly = true;
this.sourceDataGridViewTextBoxColumn.Width = 125;
//
// userDataGridViewTextBoxColumn
//
this.userDataGridViewTextBoxColumn.DataPropertyName = "User";
this.userDataGridViewTextBoxColumn.HeaderText = "User";
this.userDataGridViewTextBoxColumn.MinimumWidth = 6;
this.userDataGridViewTextBoxColumn.Name = "userDataGridViewTextBoxColumn";
this.userDataGridViewTextBoxColumn.ReadOnly = true;
this.userDataGridViewTextBoxColumn.Width = 125;
//
// statusCodeDataGridViewTextBoxColumn
//
this.statusCodeDataGridViewTextBoxColumn.DataPropertyName = "StatusCode";
this.statusCodeDataGridViewTextBoxColumn.HeaderText = "StatusCode";
this.statusCodeDataGridViewTextBoxColumn.MinimumWidth = 6;
this.statusCodeDataGridViewTextBoxColumn.Name = "statusCodeDataGridViewTextBoxColumn";
this.statusCodeDataGridViewTextBoxColumn.ReadOnly = true;
this.statusCodeDataGridViewTextBoxColumn.Width = 125;
//
// messageDataGridViewTextBoxColumn
//
this.messageDataGridViewTextBoxColumn.DataPropertyName = "Message";
this.messageDataGridViewTextBoxColumn.HeaderText = "Message";
this.messageDataGridViewTextBoxColumn.MinimumWidth = 6;
this.messageDataGridViewTextBoxColumn.Name = "messageDataGridViewTextBoxColumn";
this.messageDataGridViewTextBoxColumn.ReadOnly = true;
this.messageDataGridViewTextBoxColumn.Width = 125;
//
// bsErrors
//
this.bsErrors.DataSource = typeof(AppData.ELMAH_Error);
//
// statusStrip1
//
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsslNumRec});
this.statusStrip1.Location = new System.Drawing.Point(0, 608);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(1072, 22);
this.statusStrip1.TabIndex = 1;
this.statusStrip1.Text = "statusStrip1";
//
// tsslNumRec
//
this.tsslNumRec.Name = "tsslNumRec";
this.tsslNumRec.Size = new System.Drawing.Size(13, 17);
this.tsslNumRec.Text = "0";
//
// gboxFiltri
//
this.gboxFiltri.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.gboxFiltri.Controls.Add(this.label1);
this.gboxFiltri.Controls.Add(this.txtMaxRow);
this.gboxFiltri.Controls.Add(this.btnDeleteSel);
this.gboxFiltri.Controls.Add(this.chkUsers);
this.gboxFiltri.Controls.Add(this.chkStatus);
this.gboxFiltri.Controls.Add(this.chkHost);
this.gboxFiltri.Controls.Add(this.chkType);
this.gboxFiltri.Controls.Add(this.chkApp);
this.gboxFiltri.Controls.Add(this.listUsers);
this.gboxFiltri.Controls.Add(this.listType);
this.gboxFiltri.Controls.Add(this.listStatus);
this.gboxFiltri.Controls.Add(this.listHost);
this.gboxFiltri.Controls.Add(this.listApp);
this.gboxFiltri.Location = new System.Drawing.Point(12, 26);
this.gboxFiltri.Margin = new System.Windows.Forms.Padding(2);
this.gboxFiltri.Name = "gboxFiltri";
this.gboxFiltri.Padding = new System.Windows.Forms.Padding(2);
this.gboxFiltri.Size = new System.Drawing.Size(1048, 104);
this.gboxFiltri.TabIndex = 2;
this.gboxFiltri.TabStop = false;
this.gboxFiltri.Text = "Filtri";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(813, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 13);
this.label1.TabIndex = 19;
this.label1.Text = "Max Record";
//
// txtMaxRow
//
this.txtMaxRow.Location = new System.Drawing.Point(816, 31);
this.txtMaxRow.Name = "txtMaxRow";
this.txtMaxRow.Size = new System.Drawing.Size(80, 20);
this.txtMaxRow.TabIndex = 18;
this.txtMaxRow.Text = "1000";
this.txtMaxRow.TextChanged += new System.EventHandler(this.txtMaxRow_TextChanged);
//
// btnDeleteSel
//
this.btnDeleteSel.Location = new System.Drawing.Point(690, 31);
this.btnDeleteSel.Margin = new System.Windows.Forms.Padding(2);
this.btnDeleteSel.Name = "btnDeleteSel";
this.btnDeleteSel.Size = new System.Drawing.Size(111, 64);
this.btnDeleteSel.TabIndex = 17;
this.btnDeleteSel.Text = "DELETE SELECTED";
this.btnDeleteSel.UseVisualStyleBackColor = true;
this.btnDeleteSel.Click += new System.EventHandler(this.btnDeleteSel_Click);
//
// chkUsers
//
this.chkUsers.AutoSize = true;
this.chkUsers.Location = new System.Drawing.Point(584, 14);
this.chkUsers.Name = "chkUsers";
this.chkUsers.Size = new System.Drawing.Size(53, 17);
this.chkUsers.TabIndex = 16;
this.chkUsers.Text = "Users";
this.chkUsers.UseVisualStyleBackColor = true;
this.chkUsers.CheckedChanged += new System.EventHandler(this.chkUsers_CheckedChanged);
//
// chkStatus
//
this.chkStatus.AutoSize = true;
this.chkStatus.Location = new System.Drawing.Point(215, 14);
this.chkStatus.Name = "chkStatus";
this.chkStatus.Size = new System.Drawing.Size(56, 17);
this.chkStatus.TabIndex = 15;
this.chkStatus.Text = "Status";
this.chkStatus.UseVisualStyleBackColor = true;
this.chkStatus.CheckedChanged += new System.EventHandler(this.chkStatus_CheckedChanged);
//
// chkHost
//
this.chkHost.AutoSize = true;
this.chkHost.Location = new System.Drawing.Point(142, 14);
this.chkHost.Name = "chkHost";
this.chkHost.Size = new System.Drawing.Size(48, 17);
this.chkHost.TabIndex = 14;
this.chkHost.Text = "Host";
this.chkHost.UseVisualStyleBackColor = true;
this.chkHost.CheckedChanged += new System.EventHandler(this.chkHost_CheckedChanged);
//
// chkType
//
this.chkType.AutoSize = true;
this.chkType.Location = new System.Drawing.Point(285, 14);
this.chkType.Name = "chkType";
this.chkType.Size = new System.Drawing.Size(50, 17);
this.chkType.TabIndex = 13;
this.chkType.Text = "Type";
this.chkType.UseVisualStyleBackColor = true;
this.chkType.CheckedChanged += new System.EventHandler(this.chkType_CheckedChanged);
//
// chkApp
//
this.chkApp.AutoSize = true;
this.chkApp.Location = new System.Drawing.Point(5, 14);
this.chkApp.Name = "chkApp";
this.chkApp.Size = new System.Drawing.Size(45, 17);
this.chkApp.TabIndex = 12;
this.chkApp.Text = "App";
this.chkApp.UseVisualStyleBackColor = true;
this.chkApp.CheckedChanged += new System.EventHandler(this.chkApp_CheckedChanged);
//
// listUsers
//
this.listUsers.Font = new System.Drawing.Font("Arial Narrow", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.listUsers.FormattingEnabled = true;
this.listUsers.ItemHeight = 15;
this.listUsers.Location = new System.Drawing.Point(584, 31);
this.listUsers.Margin = new System.Windows.Forms.Padding(2);
this.listUsers.Name = "listUsers";
this.listUsers.Size = new System.Drawing.Size(102, 64);
this.listUsers.TabIndex = 4;
this.listUsers.SelectedIndexChanged += new System.EventHandler(this.listUsers_SelectedIndexChanged);
//
// listType
//
this.listType.Font = new System.Drawing.Font("Arial Narrow", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.listType.FormattingEnabled = true;
this.listType.ItemHeight = 15;
this.listType.Location = new System.Drawing.Point(285, 31);
this.listType.Margin = new System.Windows.Forms.Padding(2);
this.listType.Name = "listType";
this.listType.Size = new System.Drawing.Size(296, 64);
this.listType.TabIndex = 3;
this.listType.SelectedIndexChanged += new System.EventHandler(this.listType_SelectedIndexChanged);
//
// listStatus
//
this.listStatus.Font = new System.Drawing.Font("Arial Narrow", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.listStatus.FormattingEnabled = true;
this.listStatus.ItemHeight = 15;
this.listStatus.Location = new System.Drawing.Point(215, 31);
this.listStatus.Margin = new System.Windows.Forms.Padding(2);
this.listStatus.Name = "listStatus";
this.listStatus.Size = new System.Drawing.Size(66, 64);
this.listStatus.TabIndex = 2;
this.listStatus.SelectedIndexChanged += new System.EventHandler(this.listStatus_SelectedIndexChanged);
//
// listHost
//
this.listHost.Font = new System.Drawing.Font("Arial Narrow", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.listHost.FormattingEnabled = true;
this.listHost.ItemHeight = 15;
this.listHost.Location = new System.Drawing.Point(142, 31);
this.listHost.Margin = new System.Windows.Forms.Padding(2);
this.listHost.Name = "listHost";
this.listHost.Size = new System.Drawing.Size(70, 64);
this.listHost.TabIndex = 1;
this.listHost.SelectedIndexChanged += new System.EventHandler(this.listHost_SelectedIndexChanged);
//
// listApp
//
this.listApp.Font = new System.Drawing.Font("Arial Narrow", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.listApp.FormattingEnabled = true;
this.listApp.ItemHeight = 15;
this.listApp.Location = new System.Drawing.Point(5, 31);
this.listApp.Margin = new System.Windows.Forms.Padding(2);
this.listApp.Name = "listApp";
this.listApp.Size = new System.Drawing.Size(133, 64);
this.listApp.TabIndex = 0;
this.listApp.SelectedIndexChanged += new System.EventHandler(this.listApp_SelectedIndexChanged);
//
// timerMain
//
this.timerMain.Interval = 10000;
this.timerMain.Tick += new System.EventHandler(this.timerMain_Tick);
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(1072, 24);
this.menuStrip1.TabIndex = 3;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.currentConfigToolStripMenuItem,
this.loadToolStripMenuItem,
this.saveToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(55, 20);
this.fileToolStripMenuItem.Text = "C&onfig";
//
// currentConfigToolStripMenuItem
//
this.currentConfigToolStripMenuItem.Name = "currentConfigToolStripMenuItem";
this.currentConfigToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
this.currentConfigToolStripMenuItem.Text = "&Current Config";
this.currentConfigToolStripMenuItem.Click += new System.EventHandler(this.currentConfigToolStripMenuItem_Click);
//
// loadToolStripMenuItem
//
this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
this.loadToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
this.loadToolStripMenuItem.Text = "&Load";
this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
//
// saveToolStripMenuItem
//
this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
this.saveToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
this.saveToolStripMenuItem.Text = "&Save";
this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
//
// LogAnalyzer
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1072, 630);
this.Controls.Add(this.gboxFiltri);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.menuStrip1);
this.Controls.Add(this.ErrorsDGV);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.Name = "LogAnalyzer";
this.Text = "Steamware Elma Log Monitor and Analysis";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
((System.ComponentModel.ISupportInitialize)(this.ErrorsDGV)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bsErrors)).EndInit();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.gboxFiltri.ResumeLayout(false);
this.gboxFiltri.PerformLayout();
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.DataGridView ErrorsDGV;
private System.Windows.Forms.BindingSource bsErrors;
private System.Windows.Forms.DataGridViewTextBoxColumn allXmlDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn tagsDataGridViewTextBoxColumn;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.GroupBox gboxFiltri;
private System.Windows.Forms.ListBox listApp;
private System.Windows.Forms.ListBox listStatus;
private System.Windows.Forms.ListBox listHost;
private System.Windows.Forms.ListBox listUsers;
private System.Windows.Forms.ListBox listType;
private System.Windows.Forms.CheckBox chkType;
private System.Windows.Forms.CheckBox chkApp;
private System.Windows.Forms.CheckBox chkStatus;
private System.Windows.Forms.CheckBox chkHost;
private System.Windows.Forms.CheckBox chkUsers;
private System.Windows.Forms.ToolStripStatusLabel tsslNumRec;
private System.Windows.Forms.Timer timerMain;
private System.Windows.Forms.Button btnDeleteSel;
private System.Windows.Forms.DataGridViewTextBoxColumn sequenceDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn timeUtcDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn hostDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn applicationDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn errorIdDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn typeDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn sourceDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn userDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn statusCodeDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn messageDataGridViewTextBoxColumn;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem loadToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem currentConfigToolStripMenuItem;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtMaxRow;
}
}