namespace SBD_Parser
{
partial class Form1
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.opemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exportAsCSVToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exportAsKMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.setDefaultPathToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.setDefaultSavePathToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.setHeadersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.bitSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.txtBinary = new System.Windows.Forms.TextBox();
this.lstResults = new System.Windows.Forms.ListBox();
this.dgvDataDisplay = new System.Windows.Forms.DataGridView();
this.SlNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Parameter = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Value = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.HexCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.BitCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.lblFiles = new System.Windows.Forms.Label();
this.lblResults = new System.Windows.Forms.Label();
this.lblBitValues = new System.Windows.Forms.Label();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
this.btnClear = new System.Windows.Forms.Button();
this.btnSaveFile = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btnOpenSaveDirectory = new System.Windows.Forms.Button();
this.lblFileName = new System.Windows.Forms.Label();
this.txtFileName = new System.Windows.Forms.TextBox();
this.lblSelectHeader = new System.Windows.Forms.Label();
this.cmbHeaders = new System.Windows.Forms.ComboBox();
this.txtMessage = new System.Windows.Forms.TextBox();
this.lblMessage = new System.Windows.Forms.Label();
this.lblHeader = new System.Windows.Forms.Label();
this.txtHeader = new System.Windows.Forms.TextBox();
this.sfdCSV = new System.Windows.Forms.SaveFileDialog();
this.sfdKML = new System.Windows.Forms.SaveFileDialog();
this.btnLocOpenOnGoogleMaps = new System.Windows.Forms.Button();
this.menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvDataDisplay)).BeginInit();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem,
this.exportToolStripMenuItem,
this.optionsToolStripMenuItem,
this.aboutToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(784, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.opemToolStripMenuItem,
this.saveToolStripMenuItem,
this.exitToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "File";
//
// opemToolStripMenuItem
//
this.opemToolStripMenuItem.Name = "opemToolStripMenuItem";
this.opemToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
this.opemToolStripMenuItem.Text = "Open";
this.opemToolStripMenuItem.Click += new System.EventHandler(this.opemToolStripMenuItem_Click);
//
// saveToolStripMenuItem
//
this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
this.saveToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
this.saveToolStripMenuItem.Text = "Save";
this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
this.exitToolStripMenuItem.Text = "Exit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// exportToolStripMenuItem
//
this.exportToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.exportAsCSVToolStripMenuItem,
this.exportAsKMLToolStripMenuItem});
this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
this.exportToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
this.exportToolStripMenuItem.Text = "Export";
//
// exportAsCSVToolStripMenuItem
//
this.exportAsCSVToolStripMenuItem.Name = "exportAsCSVToolStripMenuItem";
this.exportAsCSVToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
this.exportAsCSVToolStripMenuItem.Text = "Export as CSV";
this.exportAsCSVToolStripMenuItem.Click += new System.EventHandler(this.exportAsCSVToolStripMenuItem_Click);
//
// exportAsKMLToolStripMenuItem
//
this.exportAsKMLToolStripMenuItem.Name = "exportAsKMLToolStripMenuItem";
this.exportAsKMLToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
this.exportAsKMLToolStripMenuItem.Text = "Export as KML";
this.exportAsKMLToolStripMenuItem.Click += new System.EventHandler(this.exportAsKMLToolStripMenuItem_Click);
//
// optionsToolStripMenuItem
//
this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.setDefaultPathToolStripMenuItem,
this.setDefaultSavePathToolStripMenuItem,
this.setHeadersToolStripMenuItem,
this.bitSettingsToolStripMenuItem});
this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
this.optionsToolStripMenuItem.Text = "Settings";
//
// setDefaultPathToolStripMenuItem
//
this.setDefaultPathToolStripMenuItem.Name = "setDefaultPathToolStripMenuItem";
this.setDefaultPathToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
this.setDefaultPathToolStripMenuItem.Text = "Set Default Open Path";
this.setDefaultPathToolStripMenuItem.Click += new System.EventHandler(this.setDefaultPathToolStripMenuItem_Click);
//
// setDefaultSavePathToolStripMenuItem
//
this.setDefaultSavePathToolStripMenuItem.Name = "setDefaultSavePathToolStripMenuItem";
this.setDefaultSavePathToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
this.setDefaultSavePathToolStripMenuItem.Text = "Set Default Save Path";
this.setDefaultSavePathToolStripMenuItem.Click += new System.EventHandler(this.setDefaultSavePathToolStripMenuItem_Click);
//
// setHeadersToolStripMenuItem
//
this.setHeadersToolStripMenuItem.Name = "setHeadersToolStripMenuItem";
this.setHeadersToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
this.setHeadersToolStripMenuItem.Text = "Set Headers";
this.setHeadersToolStripMenuItem.Click += new System.EventHandler(this.setHeadersToolStripMenuItem_Click);
//
// bitSettingsToolStripMenuItem
//
this.bitSettingsToolStripMenuItem.Name = "bitSettingsToolStripMenuItem";
this.bitSettingsToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
this.bitSettingsToolStripMenuItem.Text = "Bit Settings";
this.bitSettingsToolStripMenuItem.Click += new System.EventHandler(this.bitSettingsToolStripMenuItem_Click);
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
this.aboutToolStripMenuItem.Text = "About";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// txtBinary
//
this.txtBinary.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.txtBinary.Location = new System.Drawing.Point(12, 426);
this.txtBinary.Multiline = true;
this.txtBinary.Name = "txtBinary";
this.txtBinary.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtBinary.Size = new System.Drawing.Size(241, 124);
this.txtBinary.TabIndex = 5;
//
// lstResults
//
this.lstResults.AllowDrop = true;
this.lstResults.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.lstResults.FormattingEnabled = true;
this.lstResults.Location = new System.Drawing.Point(15, 50);
this.lstResults.Name = "lstResults";
this.lstResults.Size = new System.Drawing.Size(238, 329);
this.lstResults.TabIndex = 11;
this.lstResults.SelectedIndexChanged += new System.EventHandler(this.lstResults_SelectedIndexChanged);
this.lstResults.DragDrop += new System.Windows.Forms.DragEventHandler(this.lstResults_DragDrop);
this.lstResults.DragEnter += new System.Windows.Forms.DragEventHandler(this.lstResults_DragEnter);
this.lstResults.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.lstResults_KeyPress);
//
// dgvDataDisplay
//
this.dgvDataDisplay.AllowUserToAddRows = false;
this.dgvDataDisplay.AllowUserToDeleteRows = false;
this.dgvDataDisplay.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.dgvDataDisplay.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dgvDataDisplay.BackgroundColor = System.Drawing.SystemColors.ControlDark;
this.dgvDataDisplay.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvDataDisplay.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.SlNo,
this.Parameter,
this.Value,
this.HexCode,
this.BitCode});
this.dgvDataDisplay.Location = new System.Drawing.Point(278, 50);
this.dgvDataDisplay.Name = "dgvDataDisplay";
this.dgvDataDisplay.Size = new System.Drawing.Size(481, 329);
this.dgvDataDisplay.TabIndex = 15;
//
// SlNo
//
this.SlNo.HeaderText = "Sl No";
this.SlNo.Name = "SlNo";
//
// Parameter
//
this.Parameter.HeaderText = "Paramater";
this.Parameter.Name = "Parameter";
//
// Value
//
this.Value.HeaderText = "Value";
this.Value.Name = "Value";
//
// HexCode
//
this.HexCode.HeaderText = "Hex Code";
this.HexCode.Name = "HexCode";
//
// BitCode
//
this.BitCode.HeaderText = "Bit Code";
this.BitCode.Name = "BitCode";
this.BitCode.Visible = false;
//
// lblFiles
//
this.lblFiles.AutoSize = true;
this.lblFiles.Location = new System.Drawing.Point(12, 34);
this.lblFiles.Name = "lblFiles";
this.lblFiles.Size = new System.Drawing.Size(28, 13);
this.lblFiles.TabIndex = 18;
this.lblFiles.Text = "Files";
//
// lblResults
//
this.lblResults.AutoSize = true;
this.lblResults.Location = new System.Drawing.Point(275, 34);
this.lblResults.Name = "lblResults";
this.lblResults.Size = new System.Drawing.Size(42, 13);
this.lblResults.TabIndex = 19;
this.lblResults.Text = "Results";
//
// lblBitValues
//
this.lblBitValues.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.lblBitValues.AutoSize = true;
this.lblBitValues.Location = new System.Drawing.Point(12, 405);
this.lblBitValues.Name = "lblBitValues";
this.lblBitValues.Size = new System.Drawing.Size(54, 13);
this.lblBitValues.TabIndex = 20;
this.lblBitValues.Text = "Bit Values";
//
// btnClear
//
this.btnClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnClear.Location = new System.Drawing.Point(178, 385);
this.btnClear.Name = "btnClear";
this.btnClear.Size = new System.Drawing.Size(75, 23);
this.btnClear.TabIndex = 24;
this.btnClear.Text = "Clear";
this.btnClear.UseVisualStyleBackColor = true;
this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
//
// btnSaveFile
//
this.btnSaveFile.Location = new System.Drawing.Point(172, 113);
this.btnSaveFile.Name = "btnSaveFile";
this.btnSaveFile.Size = new System.Drawing.Size(65, 23);
this.btnSaveFile.TabIndex = 25;
this.btnSaveFile.Text = "Save";
this.btnSaveFile.UseVisualStyleBackColor = true;
this.btnSaveFile.Click += new System.EventHandler(this.btnSaveFile_Click);
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.groupBox1.Controls.Add(this.btnOpenSaveDirectory);
this.groupBox1.Controls.Add(this.lblFileName);
this.groupBox1.Controls.Add(this.txtFileName);
this.groupBox1.Controls.Add(this.lblSelectHeader);
this.groupBox1.Controls.Add(this.cmbHeaders);
this.groupBox1.Controls.Add(this.txtMessage);
this.groupBox1.Controls.Add(this.lblMessage);
this.groupBox1.Controls.Add(this.lblHeader);
this.groupBox1.Controls.Add(this.txtHeader);
this.groupBox1.Controls.Add(this.btnSaveFile);
this.groupBox1.Location = new System.Drawing.Point(278, 405);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(380, 145);
this.groupBox1.TabIndex = 26;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Save Message";
//
// btnOpenSaveDirectory
//
this.btnOpenSaveDirectory.Location = new System.Drawing.Point(243, 113);
this.btnOpenSaveDirectory.Name = "btnOpenSaveDirectory";
this.btnOpenSaveDirectory.Size = new System.Drawing.Size(124, 23);
this.btnOpenSaveDirectory.TabIndex = 34;
this.btnOpenSaveDirectory.Text = "Open Save Directory";
this.btnOpenSaveDirectory.UseVisualStyleBackColor = true;
this.btnOpenSaveDirectory.Click += new System.EventHandler(this.btnOpenSaveDirectory_Click);
//
// lblFileName
//
this.lblFileName.AutoSize = true;
this.lblFileName.Location = new System.Drawing.Point(6, 118);
this.lblFileName.Name = "lblFileName";
this.lblFileName.Size = new System.Drawing.Size(54, 13);
this.lblFileName.TabIndex = 33;
this.lblFileName.Text = "File Name";
//
// txtFileName
//
this.txtFileName.Location = new System.Drawing.Point(66, 115);
this.txtFileName.Name = "txtFileName";
this.txtFileName.Size = new System.Drawing.Size(100, 20);
this.txtFileName.TabIndex = 32;
//
// lblSelectHeader
//
this.lblSelectHeader.AutoSize = true;
this.lblSelectHeader.Location = new System.Drawing.Point(192, 24);
this.lblSelectHeader.Name = "lblSelectHeader";
this.lblSelectHeader.Size = new System.Drawing.Size(75, 13);
this.lblSelectHeader.TabIndex = 31;
this.lblSelectHeader.Text = "Select Header";
//
// cmbHeaders
//
this.cmbHeaders.FormattingEnabled = true;
this.cmbHeaders.Location = new System.Drawing.Point(195, 43);
this.cmbHeaders.Name = "cmbHeaders";
this.cmbHeaders.Size = new System.Drawing.Size(171, 21);
this.cmbHeaders.TabIndex = 30;
this.cmbHeaders.SelectedIndexChanged += new System.EventHandler(this.cmbHeaders_SelectedIndexChanged);
//
// txtMessage
//
this.txtMessage.Location = new System.Drawing.Point(9, 86);
this.txtMessage.Name = "txtMessage";
this.txtMessage.Size = new System.Drawing.Size(357, 20);
this.txtMessage.TabIndex = 29;
//
// lblMessage
//
this.lblMessage.AutoSize = true;
this.lblMessage.Location = new System.Drawing.Point(6, 70);
this.lblMessage.Name = "lblMessage";
this.lblMessage.Size = new System.Drawing.Size(50, 13);
this.lblMessage.TabIndex = 28;
this.lblMessage.Text = "Message";
//
// lblHeader
//
this.lblHeader.AutoSize = true;
this.lblHeader.Location = new System.Drawing.Point(6, 24);
this.lblHeader.Name = "lblHeader";
this.lblHeader.Size = new System.Drawing.Size(42, 13);
this.lblHeader.TabIndex = 27;
this.lblHeader.Text = "Header";
//
// txtHeader
//
this.txtHeader.Location = new System.Drawing.Point(9, 43);
this.txtHeader.Name = "txtHeader";
this.txtHeader.Size = new System.Drawing.Size(157, 20);
this.txtHeader.TabIndex = 26;
this.txtHeader.TextChanged += new System.EventHandler(this.txtHeader_TextChanged);
//
// btnLocOpenOnGoogleMaps
//
this.btnLocOpenOnGoogleMaps.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnLocOpenOnGoogleMaps.Location = new System.Drawing.Point(684, 405);
this.btnLocOpenOnGoogleMaps.Name = "btnLocOpenOnGoogleMaps";
this.btnLocOpenOnGoogleMaps.Size = new System.Drawing.Size(75, 72);
this.btnLocOpenOnGoogleMaps.TabIndex = 27;
this.btnLocOpenOnGoogleMaps.Text = "Open Location on Google Maps";
this.btnLocOpenOnGoogleMaps.UseVisualStyleBackColor = true;
this.btnLocOpenOnGoogleMaps.Click += new System.EventHandler(this.btnLocOpenOnGoogleMaps_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(784, 562);
this.Controls.Add(this.btnLocOpenOnGoogleMaps);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.btnClear);
this.Controls.Add(this.lblBitValues);
this.Controls.Add(this.lblResults);
this.Controls.Add(this.lblFiles);
this.Controls.Add(this.dgvDataDisplay);
this.Controls.Add(this.lstResults);
this.Controls.Add(this.txtBinary);
this.Controls.Add(this.menuStrip1);
this.Location = new System.Drawing.Point(100, 100);
this.MainMenuStrip = this.menuStrip1;
this.Name = "Form1";
this.Text = "Parser";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.Form1_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvDataDisplay)).EndInit();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem opemToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.TextBox txtBinary;
private System.Windows.Forms.ListBox lstResults;
private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem setDefaultPathToolStripMenuItem;
private System.Windows.Forms.DataGridView dgvDataDisplay;
private System.Windows.Forms.Label lblFiles;
private System.Windows.Forms.Label lblResults;
private System.Windows.Forms.Label lblBitValues;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
private System.Windows.Forms.Button btnClear;
private System.Windows.Forms.Button btnSaveFile;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TextBox txtMessage;
private System.Windows.Forms.Label lblMessage;
private System.Windows.Forms.Label lblHeader;
private System.Windows.Forms.TextBox txtHeader;
private System.Windows.Forms.ToolStripMenuItem setHeadersToolStripMenuItem;
private System.Windows.Forms.Label lblSelectHeader;
private System.Windows.Forms.ComboBox cmbHeaders;
private System.Windows.Forms.TextBox txtFileName;
private System.Windows.Forms.Label lblFileName;
private System.Windows.Forms.ToolStripMenuItem setDefaultSavePathToolStripMenuItem;
private System.Windows.Forms.Button btnOpenSaveDirectory;
private System.Windows.Forms.ToolStripMenuItem bitSettingsToolStripMenuItem;
private System.Windows.Forms.DataGridViewTextBoxColumn SlNo;
private System.Windows.Forms.DataGridViewTextBoxColumn Parameter;
private System.Windows.Forms.DataGridViewTextBoxColumn Value;
private System.Windows.Forms.DataGridViewTextBoxColumn HexCode;
private System.Windows.Forms.DataGridViewTextBoxColumn BitCode;
private System.Windows.Forms.ToolStripMenuItem exportToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exportAsCSVToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exportAsKMLToolStripMenuItem;
private System.Windows.Forms.SaveFileDialog sfdCSV;
private System.Windows.Forms.SaveFileDialog sfdKML;
private System.Windows.Forms.Button btnLocOpenOnGoogleMaps;
}
}