Option to run Racadm locally; handle: logs, exceptions. Separate folders for scripts, logs

This commit is contained in:
2026-01-16 16:22:20 +00:00
parent f313f4eca9
commit cf0f36903b
5 changed files with 635 additions and 635 deletions

View File

@@ -1,73 +1,73 @@
namespace SSH_Test
{
partial class FormProfile
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.comboBoxProfile = new System.Windows.Forms.ComboBox();
this.bOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// comboBoxProfile
//
this.comboBoxProfile.FormattingEnabled = true;
this.comboBoxProfile.Location = new System.Drawing.Point(12, 12);
this.comboBoxProfile.Name = "comboBoxProfile";
this.comboBoxProfile.Size = new System.Drawing.Size(396, 21);
this.comboBoxProfile.TabIndex = 0;
this.comboBoxProfile.TextChanged += new System.EventHandler(this.comboBoxProfile_TextChanged);
//
// bOK
//
this.bOK.Location = new System.Drawing.Point(13, 56);
this.bOK.Name = "bOK";
this.bOK.Size = new System.Drawing.Size(120, 23);
this.bOK.TabIndex = 1;
this.bOK.Text = "OK";
this.bOK.UseCompatibleTextRendering = true;
this.bOK.UseVisualStyleBackColor = true;
this.bOK.Click += new System.EventHandler(this.bOK_Click);
//
// FormProfile
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(420, 98);
this.Controls.Add(this.bOK);
this.Controls.Add(this.comboBoxProfile);
this.Name = "FormProfile";
this.Text = "Profile";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ComboBox comboBoxProfile;
private System.Windows.Forms.Button bOK;
}
namespace SSH_Test
{
partial class FormProfile
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.comboBoxProfile = new System.Windows.Forms.ComboBox();
this.bOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// comboBoxProfile
//
this.comboBoxProfile.FormattingEnabled = true;
this.comboBoxProfile.Location = new System.Drawing.Point(12, 12);
this.comboBoxProfile.Name = "comboBoxProfile";
this.comboBoxProfile.Size = new System.Drawing.Size(396, 21);
this.comboBoxProfile.TabIndex = 0;
this.comboBoxProfile.TextChanged += new System.EventHandler(this.comboBoxProfile_TextChanged);
//
// bOK
//
this.bOK.Location = new System.Drawing.Point(13, 56);
this.bOK.Name = "bOK";
this.bOK.Size = new System.Drawing.Size(120, 23);
this.bOK.TabIndex = 1;
this.bOK.Text = "OK";
this.bOK.UseCompatibleTextRendering = true;
this.bOK.UseVisualStyleBackColor = true;
this.bOK.Click += new System.EventHandler(this.bOK_Click);
//
// FormProfile
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(420, 98);
this.Controls.Add(this.bOK);
this.Controls.Add(this.comboBoxProfile);
this.Name = "FormProfile";
this.Text = "Profile";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ComboBox comboBoxProfile;
private System.Windows.Forms.Button bOK;
}
}

View File

@@ -1,49 +1,49 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
namespace SSH_Test
{
public partial class FormProfile : Form
{
public string sProfile { get; set; }
public FormProfile(string sProfile)
{
InitializeComponent();
this.sProfile = sProfile;
if (sProfile != null) sProfile = "Cisco_Switch";
int index = comboBoxProfile.FindStringExact(sProfile);
// If the item is found, set it as the selected item
if (index != -1)
{
comboBoxProfile.SelectedIndex = index;
}
else
{
comboBoxProfile.SelectedIndex = 0;
}
}
private void bOK_Click(object sender, EventArgs e)
{
this.Close();
}
private void comboBoxProfile_TextChanged(object sender, EventArgs e)
{
Console.WriteLine("Profile changes to: {0}", comboBoxProfile.SelectedItem.ToString());
sProfile = comboBoxProfile.SelectedItem.ToString();
}
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
namespace SSH_Test
{
public partial class FormProfile : Form
{
public string sProfile { get; set; }
public FormProfile(string sProfile)
{
InitializeComponent();
this.sProfile = sProfile;
if (sProfile != null) sProfile = "Cisco_Switch";
int index = comboBoxProfile.FindStringExact(sProfile);
// If the item is found, set it as the selected item
if (index != -1)
{
comboBoxProfile.SelectedIndex = index;
}
else
{
comboBoxProfile.SelectedIndex = 0;
}
}
private void bOK_Click(object sender, EventArgs e)
{
this.Close();
}
private void comboBoxProfile_TextChanged(object sender, EventArgs e)
{
Console.WriteLine("Profile changes to: {0}", comboBoxProfile.SelectedItem.ToString());
sProfile = comboBoxProfile.SelectedItem.ToString();
}
}
}

View File

@@ -1,120 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@@ -1,234 +1,234 @@
namespace SSH_Test
{
partial class TastList
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.bRunAll = new System.Windows.Forms.Button();
this.dataGridViewTask = new System.Windows.Forms.DataGridView();
this.buttonSave = new System.Windows.Forms.Button();
this.buttonLoad = new System.Windows.Forms.Button();
this.buttonConf = new System.Windows.Forms.Button();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.profileCommandsBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.profileBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.profileBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.programBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.programBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.TaskNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.TaskDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.TaskDevice = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.TaskIp = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Port = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Run = new System.Windows.Forms.DataGridViewButtonColumn();
this.Configuration = new System.Windows.Forms.DataGridViewButtonColumn();
this.Profile = new System.Windows.Forms.DataGridViewComboBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewTask)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.profileCommandsBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.profileBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.profileBindingSource1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.programBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.programBindingSource1)).BeginInit();
this.SuspendLayout();
//
// bRunAll
//
this.bRunAll.Location = new System.Drawing.Point(737, 9);
this.bRunAll.Name = "bRunAll";
this.bRunAll.Size = new System.Drawing.Size(137, 50);
this.bRunAll.TabIndex = 1;
this.bRunAll.Text = "Run All";
this.bRunAll.UseVisualStyleBackColor = true;
this.bRunAll.Click += new System.EventHandler(this.bRunAll_Click);
//
// dataGridViewTask
//
this.dataGridViewTask.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridViewTask.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.TaskNum,
this.TaskDescription,
this.TaskDevice,
this.TaskIp,
this.Port,
this.Run,
this.Configuration,
this.Profile});
this.dataGridViewTask.Location = new System.Drawing.Point(12, 65);
this.dataGridViewTask.Name = "dataGridViewTask";
this.dataGridViewTask.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
this.dataGridViewTask.Size = new System.Drawing.Size(1023, 373);
this.dataGridViewTask.TabIndex = 2;
this.dataGridViewTask.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewTask_CellContentClick);
this.dataGridViewTask.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewTask_CellEndEdit);
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(114, 9);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(96, 50);
this.buttonSave.TabIndex = 3;
this.buttonSave.Text = "Save Task List";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
//
// buttonLoad
//
this.buttonLoad.Location = new System.Drawing.Point(12, 9);
this.buttonLoad.Name = "buttonLoad";
this.buttonLoad.Size = new System.Drawing.Size(96, 50);
this.buttonLoad.TabIndex = 4;
this.buttonLoad.Text = "Load Tasklist";
this.buttonLoad.UseMnemonic = false;
this.buttonLoad.UseVisualStyleBackColor = true;
this.buttonLoad.Click += new System.EventHandler(this.buttonLoad_Click);
//
// buttonConf
//
this.buttonConf.Location = new System.Drawing.Point(216, 9);
this.buttonConf.Name = "buttonConf";
this.buttonConf.Size = new System.Drawing.Size(96, 50);
this.buttonConf.TabIndex = 5;
this.buttonConf.Text = "General Configuration";
this.buttonConf.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.buttonConf.UseVisualStyleBackColor = true;
this.buttonConf.Click += new System.EventHandler(this.buttonConf_Click);
//
// pictureBox1
//
this.pictureBox1.Location = new System.Drawing.Point(349, 4);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(206, 55);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 6;
this.pictureBox1.TabStop = false;
//
// profileCommandsBindingSource
//
this.profileCommandsBindingSource.DataMember = "ProfileCommands";
this.profileCommandsBindingSource.DataSource = this.profileBindingSource;
//
// TaskNum
//
this.TaskNum.HeaderText = "Task #";
this.TaskNum.Name = "TaskNum";
//
// TaskDescription
//
this.TaskDescription.HeaderText = "Description";
this.TaskDescription.MinimumWidth = 50;
this.TaskDescription.Name = "TaskDescription";
this.TaskDescription.Width = 200;
//
// TaskDevice
//
this.TaskDevice.HeaderText = "Device";
this.TaskDevice.Name = "TaskDevice";
//
// TaskIp
//
this.TaskIp.HeaderText = "IP";
this.TaskIp.Name = "TaskIp";
this.TaskIp.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.TaskIp.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.TaskIp.ToolTipText = "IP address";
//
// Port
//
this.Port.HeaderText = "Port";
this.Port.Name = "Port";
this.Port.ToolTipText = "Port SSH=22";
this.Port.Width = 50;
//
// Run
//
this.Run.HeaderText = "Run";
this.Run.Name = "Run";
this.Run.Resizable = System.Windows.Forms.DataGridViewTriState.False;
this.Run.Text = "Run";
this.Run.Width = 50;
//
// Configuration
//
this.Configuration.HeaderText = "Configuration";
this.Configuration.Name = "Configuration";
this.Configuration.Resizable = System.Windows.Forms.DataGridViewTriState.False;
this.Configuration.Width = 80;
//
// Profile
//
this.Profile.DisplayStyle = System.Windows.Forms.DataGridViewComboBoxDisplayStyle.ComboBox;
this.Profile.HeaderText = "Profile";
this.Profile.Name = "Profile";
this.Profile.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.Profile.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
this.Profile.Width = 300;
//
// TastList
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1039, 450);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.buttonConf);
this.Controls.Add(this.buttonLoad);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.dataGridViewTask);
this.Controls.Add(this.bRunAll);
this.Name = "TastList";
this.Text = "Task List";
this.Load += new System.EventHandler(this.fSSHTest_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridViewTask)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button bRunAll;
private System.Windows.Forms.DataGridView dataGridViewTask;
private System.Windows.Forms.Button buttonSave;
private System.Windows.Forms.Button buttonLoad;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.BindingSource profileBindingSource;
private System.Windows.Forms.BindingSource profileBindingSource1;
private System.Windows.Forms.BindingSource profileCommandsBindingSource;
private System.Windows.Forms.BindingSource programBindingSource;
private System.Windows.Forms.BindingSource programBindingSource1;
public System.Windows.Forms.Button buttonConf;
private System.Windows.Forms.DataGridViewTextBoxColumn TaskNum;
private System.Windows.Forms.DataGridViewTextBoxColumn TaskDescription;
private System.Windows.Forms.DataGridViewTextBoxColumn TaskDevice;
private System.Windows.Forms.DataGridViewTextBoxColumn TaskIp;
private System.Windows.Forms.DataGridViewTextBoxColumn Port;
private System.Windows.Forms.DataGridViewButtonColumn Run;
private System.Windows.Forms.DataGridViewButtonColumn Configuration;
private System.Windows.Forms.DataGridViewComboBoxColumn Profile;
}
}
namespace SSH_Test
{
partial class TastList
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.bRunAll = new System.Windows.Forms.Button();
this.dataGridViewTask = new System.Windows.Forms.DataGridView();
this.buttonSave = new System.Windows.Forms.Button();
this.buttonLoad = new System.Windows.Forms.Button();
this.buttonConf = new System.Windows.Forms.Button();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.profileCommandsBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.profileBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.profileBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.programBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.programBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.TaskNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.TaskDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.TaskDevice = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.TaskIp = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Port = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Run = new System.Windows.Forms.DataGridViewButtonColumn();
this.Configuration = new System.Windows.Forms.DataGridViewButtonColumn();
this.Profile = new System.Windows.Forms.DataGridViewComboBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dataGridViewTask)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.profileCommandsBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.profileBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.profileBindingSource1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.programBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.programBindingSource1)).BeginInit();
this.SuspendLayout();
//
// bRunAll
//
this.bRunAll.Location = new System.Drawing.Point(737, 9);
this.bRunAll.Name = "bRunAll";
this.bRunAll.Size = new System.Drawing.Size(137, 50);
this.bRunAll.TabIndex = 1;
this.bRunAll.Text = "Run All";
this.bRunAll.UseVisualStyleBackColor = true;
this.bRunAll.Click += new System.EventHandler(this.bRunAll_Click);
//
// dataGridViewTask
//
this.dataGridViewTask.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridViewTask.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.TaskNum,
this.TaskDescription,
this.TaskDevice,
this.TaskIp,
this.Port,
this.Run,
this.Configuration,
this.Profile});
this.dataGridViewTask.Location = new System.Drawing.Point(12, 65);
this.dataGridViewTask.Name = "dataGridViewTask";
this.dataGridViewTask.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
this.dataGridViewTask.Size = new System.Drawing.Size(1023, 373);
this.dataGridViewTask.TabIndex = 2;
this.dataGridViewTask.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewTask_CellContentClick);
this.dataGridViewTask.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewTask_CellEndEdit);
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(114, 9);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(96, 50);
this.buttonSave.TabIndex = 3;
this.buttonSave.Text = "Save Task List";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
//
// buttonLoad
//
this.buttonLoad.Location = new System.Drawing.Point(12, 9);
this.buttonLoad.Name = "buttonLoad";
this.buttonLoad.Size = new System.Drawing.Size(96, 50);
this.buttonLoad.TabIndex = 4;
this.buttonLoad.Text = "Load Tasklist";
this.buttonLoad.UseMnemonic = false;
this.buttonLoad.UseVisualStyleBackColor = true;
this.buttonLoad.Click += new System.EventHandler(this.buttonLoad_Click);
//
// buttonConf
//
this.buttonConf.Location = new System.Drawing.Point(216, 9);
this.buttonConf.Name = "buttonConf";
this.buttonConf.Size = new System.Drawing.Size(96, 50);
this.buttonConf.TabIndex = 5;
this.buttonConf.Text = "General Configuration";
this.buttonConf.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.buttonConf.UseVisualStyleBackColor = true;
this.buttonConf.Click += new System.EventHandler(this.buttonConf_Click);
//
// pictureBox1
//
this.pictureBox1.Location = new System.Drawing.Point(349, 4);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(206, 55);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 6;
this.pictureBox1.TabStop = false;
//
// profileCommandsBindingSource
//
this.profileCommandsBindingSource.DataMember = "ProfileCommands";
this.profileCommandsBindingSource.DataSource = this.profileBindingSource;
//
// TaskNum
//
this.TaskNum.HeaderText = "Task #";
this.TaskNum.Name = "TaskNum";
//
// TaskDescription
//
this.TaskDescription.HeaderText = "Description";
this.TaskDescription.MinimumWidth = 50;
this.TaskDescription.Name = "TaskDescription";
this.TaskDescription.Width = 200;
//
// TaskDevice
//
this.TaskDevice.HeaderText = "Device";
this.TaskDevice.Name = "TaskDevice";
//
// TaskIp
//
this.TaskIp.HeaderText = "IP";
this.TaskIp.Name = "TaskIp";
this.TaskIp.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.TaskIp.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.TaskIp.ToolTipText = "IP address";
//
// Port
//
this.Port.HeaderText = "Port";
this.Port.Name = "Port";
this.Port.ToolTipText = "Port SSH=22";
this.Port.Width = 50;
//
// Run
//
this.Run.HeaderText = "Run";
this.Run.Name = "Run";
this.Run.Resizable = System.Windows.Forms.DataGridViewTriState.False;
this.Run.Text = "Run";
this.Run.Width = 50;
//
// Configuration
//
this.Configuration.HeaderText = "Configuration";
this.Configuration.Name = "Configuration";
this.Configuration.Resizable = System.Windows.Forms.DataGridViewTriState.False;
this.Configuration.Width = 80;
//
// Profile
//
this.Profile.DisplayStyle = System.Windows.Forms.DataGridViewComboBoxDisplayStyle.ComboBox;
this.Profile.HeaderText = "Profile";
this.Profile.Name = "Profile";
this.Profile.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.Profile.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
this.Profile.Width = 300;
//
// TastList
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1039, 450);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.buttonConf);
this.Controls.Add(this.buttonLoad);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.dataGridViewTask);
this.Controls.Add(this.bRunAll);
this.Name = "TastList";
this.Text = "Task List";
this.Load += new System.EventHandler(this.fSSHTest_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridViewTask)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button bRunAll;
private System.Windows.Forms.DataGridView dataGridViewTask;
private System.Windows.Forms.Button buttonSave;
private System.Windows.Forms.Button buttonLoad;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.BindingSource profileBindingSource;
private System.Windows.Forms.BindingSource profileBindingSource1;
private System.Windows.Forms.BindingSource profileCommandsBindingSource;
private System.Windows.Forms.BindingSource programBindingSource;
private System.Windows.Forms.BindingSource programBindingSource1;
public System.Windows.Forms.Button buttonConf;
private System.Windows.Forms.DataGridViewTextBoxColumn TaskNum;
private System.Windows.Forms.DataGridViewTextBoxColumn TaskDescription;
private System.Windows.Forms.DataGridViewTextBoxColumn TaskDevice;
private System.Windows.Forms.DataGridViewTextBoxColumn TaskIp;
private System.Windows.Forms.DataGridViewTextBoxColumn Port;
private System.Windows.Forms.DataGridViewButtonColumn Run;
private System.Windows.Forms.DataGridViewButtonColumn Configuration;
private System.Windows.Forms.DataGridViewComboBoxColumn Profile;
}
}

View File

@@ -1,162 +1,162 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="TaskNum.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="TaskDescription.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="TaskDevice.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="TaskIp.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="Port.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="Run.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="Configuration.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="Profile.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="profileCommandsBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>182, 17</value>
</metadata>
<metadata name="profileBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="profileBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="profileBindingSource1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>409, 17</value>
</metadata>
<metadata name="programBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>580, 17</value>
</metadata>
<metadata name="programBindingSource1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>757, 17</value>
</metadata>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="TaskNum.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="TaskDescription.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="TaskDevice.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="TaskIp.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="Port.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="Run.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="Configuration.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="Profile.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="profileCommandsBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>182, 17</value>
</metadata>
<metadata name="profileBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="profileBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="profileBindingSource1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>409, 17</value>
</metadata>
<metadata name="programBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>580, 17</value>
</metadata>
<metadata name="programBindingSource1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>757, 17</value>
</metadata>
</root>