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

View File

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

View File

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

View File

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

View File

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