feature: added version no on main GUI

This commit is contained in:
Wainaina George (Swagfin) 2023-03-10 12:47:02 +03:00
parent c4694d696d
commit 0192e1487b
3 changed files with 232 additions and 280 deletions

View File

@ -28,213 +28,224 @@
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
components = new System.ComponentModel.Container(); this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PortProxyGUI)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PortProxyGUI));
listViewProxies = new System.Windows.Forms.ListView(); this.listViewProxies = new System.Windows.Forms.ListView();
columnHeader1 = new System.Windows.Forms.ColumnHeader(); this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
columnHeader2 = new System.Windows.Forms.ColumnHeader(); this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
columnHeader3 = new System.Windows.Forms.ColumnHeader(); this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
columnHeader4 = new System.Windows.Forms.ColumnHeader(); this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
columnHeader5 = new System.Windows.Forms.ColumnHeader(); this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
columnHeader6 = new System.Windows.Forms.ColumnHeader(); this.columnHeader6 = new System.Windows.Forms.ColumnHeader();
columnHeader7 = new System.Windows.Forms.ColumnHeader(); this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
contextMenuStrip_RightClick = new System.Windows.Forms.ContextMenuStrip(components); this.contextMenuStrip_RightClick = new System.Windows.Forms.ContextMenuStrip(this.components);
toolStripMenuItem_Enable = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem_Enable = new System.Windows.Forms.ToolStripMenuItem();
toolStripMenuItem_Disable = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem_Disable = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
toolStripMenuItem_Refresh = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem_Refresh = new System.Windows.Forms.ToolStripMenuItem();
toolStripMenuItem_FlushDnsCache = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem_FlushDnsCache = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
toolStripMenuItem_New = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem_New = new System.Windows.Forms.ToolStripMenuItem();
toolStripMenuItem_Modify = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem_Modify = new System.Windows.Forms.ToolStripMenuItem();
toolStripMenuItem_Delete = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem_Delete = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
toolStripMenuItem_More = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem_More = new System.Windows.Forms.ToolStripMenuItem();
toolStripMenuItem_Import = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem_Import = new System.Windows.Forms.ToolStripMenuItem();
toolStripMenuItem_Export = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem_Export = new System.Windows.Forms.ToolStripMenuItem();
toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
toolStripMenuItem_About = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem_ResetWindowSize = new System.Windows.Forms.ToolStripMenuItem();
imageListProxies = new System.Windows.Forms.ImageList(components); this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
saveFileDialog_Export = new System.Windows.Forms.SaveFileDialog(); this.toolStripMenuItem_About = new System.Windows.Forms.ToolStripMenuItem();
openFileDialog_Import = new System.Windows.Forms.OpenFileDialog(); this.imageListProxies = new System.Windows.Forms.ImageList(this.components);
toolStripMenuItem_ResetWindowSize = new System.Windows.Forms.ToolStripMenuItem(); this.saveFileDialog_Export = new System.Windows.Forms.SaveFileDialog();
toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); this.openFileDialog_Import = new System.Windows.Forms.OpenFileDialog();
contextMenuStrip_RightClick.SuspendLayout(); this.contextMenuStrip_RightClick.SuspendLayout();
SuspendLayout(); this.SuspendLayout();
// //
// listViewProxies // listViewProxies
// //
listViewProxies.BorderStyle = System.Windows.Forms.BorderStyle.None; this.listViewProxies.BorderStyle = System.Windows.Forms.BorderStyle.None;
listViewProxies.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { columnHeader1, columnHeader2, columnHeader3, columnHeader4, columnHeader5, columnHeader6, columnHeader7 }); this.listViewProxies.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
listViewProxies.ContextMenuStrip = contextMenuStrip_RightClick; this.columnHeader1,
resources.ApplyResources(listViewProxies, "listViewProxies"); this.columnHeader2,
listViewProxies.FullRowSelect = true; this.columnHeader3,
listViewProxies.HideSelection = false; this.columnHeader4,
listViewProxies.Name = "listViewProxies"; this.columnHeader5,
listViewProxies.SmallImageList = imageListProxies; this.columnHeader6,
listViewProxies.UseCompatibleStateImageBehavior = false; this.columnHeader7});
listViewProxies.View = System.Windows.Forms.View.Details; this.listViewProxies.ContextMenuStrip = this.contextMenuStrip_RightClick;
listViewProxies.ColumnClick += listView1_ColumnClick; resources.ApplyResources(this.listViewProxies, "listViewProxies");
listViewProxies.ColumnWidthChanged += listViewProxies_ColumnWidthChanged; this.listViewProxies.FullRowSelect = true;
listViewProxies.DoubleClick += listView1_DoubleClick; this.listViewProxies.Name = "listViewProxies";
listViewProxies.KeyUp += listViewProxies_KeyUp; this.listViewProxies.SmallImageList = this.imageListProxies;
listViewProxies.MouseUp += listView1_MouseUp; this.listViewProxies.UseCompatibleStateImageBehavior = false;
this.listViewProxies.View = System.Windows.Forms.View.Details;
// //
// columnHeader1 // columnHeader1
// //
resources.ApplyResources(columnHeader1, "columnHeader1"); resources.ApplyResources(this.columnHeader1, "columnHeader1");
// //
// columnHeader2 // columnHeader2
// //
resources.ApplyResources(columnHeader2, "columnHeader2"); resources.ApplyResources(this.columnHeader2, "columnHeader2");
// //
// columnHeader3 // columnHeader3
// //
resources.ApplyResources(columnHeader3, "columnHeader3"); resources.ApplyResources(this.columnHeader3, "columnHeader3");
// //
// columnHeader4 // columnHeader4
// //
columnHeader4.Tag = ""; this.columnHeader4.Tag = "";
resources.ApplyResources(columnHeader4, "columnHeader4"); resources.ApplyResources(this.columnHeader4, "columnHeader4");
// //
// columnHeader5 // columnHeader5
// //
resources.ApplyResources(columnHeader5, "columnHeader5"); resources.ApplyResources(this.columnHeader5, "columnHeader5");
// //
// columnHeader6 // columnHeader6
// //
columnHeader6.Tag = ""; this.columnHeader6.Tag = "";
resources.ApplyResources(columnHeader6, "columnHeader6"); resources.ApplyResources(this.columnHeader6, "columnHeader6");
// //
// columnHeader7 // columnHeader7
// //
resources.ApplyResources(columnHeader7, "columnHeader7"); resources.ApplyResources(this.columnHeader7, "columnHeader7");
// //
// contextMenuStrip_RightClick // contextMenuStrip_RightClick
// //
contextMenuStrip_RightClick.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { toolStripMenuItem_Enable, toolStripMenuItem_Disable, toolStripSeparator3, toolStripMenuItem_Refresh, toolStripMenuItem_FlushDnsCache, toolStripSeparator2, toolStripMenuItem_New, toolStripMenuItem_Modify, toolStripMenuItem_Delete, toolStripSeparator1, toolStripMenuItem_More, toolStripSeparator4, toolStripMenuItem_About }); this.contextMenuStrip_RightClick.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
contextMenuStrip_RightClick.Name = "contextMenuStrip1"; this.toolStripMenuItem_Enable,
resources.ApplyResources(contextMenuStrip_RightClick, "contextMenuStrip_RightClick"); this.toolStripMenuItem_Disable,
contextMenuStrip_RightClick.MouseClick += contextMenuStrip_RightClick_MouseClick; this.toolStripSeparator3,
this.toolStripMenuItem_Refresh,
this.toolStripMenuItem_FlushDnsCache,
this.toolStripSeparator2,
this.toolStripMenuItem_New,
this.toolStripMenuItem_Modify,
this.toolStripMenuItem_Delete,
this.toolStripSeparator1,
this.toolStripMenuItem_More,
this.toolStripSeparator4,
this.toolStripMenuItem_About});
this.contextMenuStrip_RightClick.Name = "contextMenuStrip1";
resources.ApplyResources(this.contextMenuStrip_RightClick, "contextMenuStrip_RightClick");
// //
// toolStripMenuItem_Enable // toolStripMenuItem_Enable
// //
toolStripMenuItem_Enable.Name = "toolStripMenuItem_Enable"; this.toolStripMenuItem_Enable.Name = "toolStripMenuItem_Enable";
resources.ApplyResources(toolStripMenuItem_Enable, "toolStripMenuItem_Enable"); resources.ApplyResources(this.toolStripMenuItem_Enable, "toolStripMenuItem_Enable");
// //
// toolStripMenuItem_Disable // toolStripMenuItem_Disable
// //
toolStripMenuItem_Disable.Name = "toolStripMenuItem_Disable"; this.toolStripMenuItem_Disable.Name = "toolStripMenuItem_Disable";
resources.ApplyResources(toolStripMenuItem_Disable, "toolStripMenuItem_Disable"); resources.ApplyResources(this.toolStripMenuItem_Disable, "toolStripMenuItem_Disable");
// //
// toolStripSeparator3 // toolStripSeparator3
// //
toolStripSeparator3.Name = "toolStripSeparator3"; this.toolStripSeparator3.Name = "toolStripSeparator3";
resources.ApplyResources(toolStripSeparator3, "toolStripSeparator3"); resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
// //
// toolStripMenuItem_Refresh // toolStripMenuItem_Refresh
// //
toolStripMenuItem_Refresh.Name = "toolStripMenuItem_Refresh"; this.toolStripMenuItem_Refresh.Name = "toolStripMenuItem_Refresh";
resources.ApplyResources(toolStripMenuItem_Refresh, "toolStripMenuItem_Refresh"); resources.ApplyResources(this.toolStripMenuItem_Refresh, "toolStripMenuItem_Refresh");
// //
// toolStripMenuItem_FlushDnsCache // toolStripMenuItem_FlushDnsCache
// //
toolStripMenuItem_FlushDnsCache.Name = "toolStripMenuItem_FlushDnsCache"; this.toolStripMenuItem_FlushDnsCache.Name = "toolStripMenuItem_FlushDnsCache";
resources.ApplyResources(toolStripMenuItem_FlushDnsCache, "toolStripMenuItem_FlushDnsCache"); resources.ApplyResources(this.toolStripMenuItem_FlushDnsCache, "toolStripMenuItem_FlushDnsCache");
// //
// toolStripSeparator2 // toolStripSeparator2
// //
toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Name = "toolStripSeparator2";
resources.ApplyResources(toolStripSeparator2, "toolStripSeparator2"); resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
// //
// toolStripMenuItem_New // toolStripMenuItem_New
// //
toolStripMenuItem_New.Name = "toolStripMenuItem_New"; this.toolStripMenuItem_New.Name = "toolStripMenuItem_New";
resources.ApplyResources(toolStripMenuItem_New, "toolStripMenuItem_New"); resources.ApplyResources(this.toolStripMenuItem_New, "toolStripMenuItem_New");
// //
// toolStripMenuItem_Modify // toolStripMenuItem_Modify
// //
toolStripMenuItem_Modify.Name = "toolStripMenuItem_Modify"; this.toolStripMenuItem_Modify.Name = "toolStripMenuItem_Modify";
resources.ApplyResources(toolStripMenuItem_Modify, "toolStripMenuItem_Modify"); resources.ApplyResources(this.toolStripMenuItem_Modify, "toolStripMenuItem_Modify");
// //
// toolStripMenuItem_Delete // toolStripMenuItem_Delete
// //
toolStripMenuItem_Delete.Name = "toolStripMenuItem_Delete"; this.toolStripMenuItem_Delete.Name = "toolStripMenuItem_Delete";
resources.ApplyResources(toolStripMenuItem_Delete, "toolStripMenuItem_Delete"); resources.ApplyResources(this.toolStripMenuItem_Delete, "toolStripMenuItem_Delete");
// //
// toolStripSeparator1 // toolStripSeparator1
// //
toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Name = "toolStripSeparator1";
resources.ApplyResources(toolStripSeparator1, "toolStripSeparator1"); resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
// //
// toolStripMenuItem_More // toolStripMenuItem_More
// //
toolStripMenuItem_More.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { toolStripMenuItem_Import, toolStripMenuItem_Export, toolStripSeparator5, toolStripMenuItem_ResetWindowSize }); this.toolStripMenuItem_More.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
toolStripMenuItem_More.Name = "toolStripMenuItem_More"; this.toolStripMenuItem_Import,
resources.ApplyResources(toolStripMenuItem_More, "toolStripMenuItem_More"); this.toolStripMenuItem_Export,
this.toolStripSeparator5,
this.toolStripMenuItem_ResetWindowSize});
this.toolStripMenuItem_More.Name = "toolStripMenuItem_More";
resources.ApplyResources(this.toolStripMenuItem_More, "toolStripMenuItem_More");
// //
// toolStripMenuItem_Import // toolStripMenuItem_Import
// //
toolStripMenuItem_Import.Name = "toolStripMenuItem_Import"; this.toolStripMenuItem_Import.Name = "toolStripMenuItem_Import";
resources.ApplyResources(toolStripMenuItem_Import, "toolStripMenuItem_Import"); resources.ApplyResources(this.toolStripMenuItem_Import, "toolStripMenuItem_Import");
toolStripMenuItem_Import.Click += toolStripMenuItem_Import_Click;
// //
// toolStripMenuItem_Export // toolStripMenuItem_Export
// //
toolStripMenuItem_Export.Name = "toolStripMenuItem_Export"; this.toolStripMenuItem_Export.Name = "toolStripMenuItem_Export";
resources.ApplyResources(toolStripMenuItem_Export, "toolStripMenuItem_Export"); resources.ApplyResources(this.toolStripMenuItem_Export, "toolStripMenuItem_Export");
toolStripMenuItem_Export.Click += toolStripMenuItem_Export_Click;
//
// toolStripSeparator4
//
toolStripSeparator4.Name = "toolStripSeparator4";
resources.ApplyResources(toolStripSeparator4, "toolStripSeparator4");
//
// toolStripMenuItem_About
//
toolStripMenuItem_About.Name = "toolStripMenuItem_About";
resources.ApplyResources(toolStripMenuItem_About, "toolStripMenuItem_About");
//
// imageListProxies
//
imageListProxies.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
imageListProxies.ImageStream = (System.Windows.Forms.ImageListStreamer)resources.GetObject("imageListProxies.ImageStream");
imageListProxies.TransparentColor = System.Drawing.Color.Transparent;
imageListProxies.Images.SetKeyName(0, "disable.png");
imageListProxies.Images.SetKeyName(1, "enable.png");
//
// saveFileDialog_Export
//
resources.ApplyResources(saveFileDialog_Export, "saveFileDialog_Export");
//
// openFileDialog_Import
//
openFileDialog_Import.FileName = "openFileDialog1";
resources.ApplyResources(openFileDialog_Import, "openFileDialog_Import");
//
// toolStripMenuItem_ResetWindowSize
//
toolStripMenuItem_ResetWindowSize.Name = "toolStripMenuItem_ResetWindowSize";
resources.ApplyResources(toolStripMenuItem_ResetWindowSize, "toolStripMenuItem_ResetWindowSize");
toolStripMenuItem_ResetWindowSize.Click += toolStripMenuItem_ResetWindowSize_Click;
// //
// toolStripSeparator5 // toolStripSeparator5
// //
toolStripSeparator5.Name = "toolStripSeparator5"; this.toolStripSeparator5.Name = "toolStripSeparator5";
resources.ApplyResources(toolStripSeparator5, "toolStripSeparator5"); resources.ApplyResources(this.toolStripSeparator5, "toolStripSeparator5");
//
// toolStripMenuItem_ResetWindowSize
//
this.toolStripMenuItem_ResetWindowSize.Name = "toolStripMenuItem_ResetWindowSize";
resources.ApplyResources(this.toolStripMenuItem_ResetWindowSize, "toolStripMenuItem_ResetWindowSize");
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
resources.ApplyResources(this.toolStripSeparator4, "toolStripSeparator4");
//
// toolStripMenuItem_About
//
this.toolStripMenuItem_About.Name = "toolStripMenuItem_About";
resources.ApplyResources(this.toolStripMenuItem_About, "toolStripMenuItem_About");
//
// imageListProxies
//
this.imageListProxies.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
this.imageListProxies.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListProxies.ImageStream")));
this.imageListProxies.TransparentColor = System.Drawing.Color.Transparent;
this.imageListProxies.Images.SetKeyName(0, "disable.png");
this.imageListProxies.Images.SetKeyName(1, "enable.png");
//
// saveFileDialog_Export
//
resources.ApplyResources(this.saveFileDialog_Export, "saveFileDialog_Export");
//
// openFileDialog_Import
//
this.openFileDialog_Import.FileName = "openFileDialog1";
resources.ApplyResources(this.openFileDialog_Import, "openFileDialog_Import");
// //
// PortProxyGUI // PortProxyGUI
// //
resources.ApplyResources(this, "$this"); resources.ApplyResources(this, "$this");
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
Controls.Add(listViewProxies); this.Controls.Add(this.listViewProxies);
Name = "PortProxyGUI"; this.Name = "PortProxyGUI";
FormClosing += PortProxyGUI_FormClosing; this.contextMenuStrip_RightClick.ResumeLayout(false);
Load += PortProxyGUI_Load; this.ResumeLayout(false);
Shown += PortProxyGUI_Shown;
Resize += PortProxyGUI_Resize;
contextMenuStrip_RightClick.ResumeLayout(false);
ResumeLayout(false);
} }
#endregion #endregion

View File

@ -4,7 +4,6 @@ using PortProxyGUI.UI;
using PortProxyGUI.Utils; using PortProxyGUI.Utils;
using System; using System;
using System.Data; using System.Data;
using System.Drawing;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Windows.Forms; using System.Windows.Forms;
@ -30,6 +29,7 @@ namespace PortProxyGUI
private void PortProxyGUI_Load(object sender, EventArgs e) private void PortProxyGUI_Load(object sender, EventArgs e)
{ {
this.Text = string.Format("Port Proxy GUI v{0}", Application.ProductVersion);
AppConfig = Program.Database.GetAppConfig(); AppConfig = Program.Database.GetAppConfig();
var size = AppConfig.MainWindowSize; var size = AppConfig.MainWindowSize;

View File

@ -1,64 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <root>
<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: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">
@ -160,33 +100,33 @@
<data name="columnHeader7.Width" type="System.Int32, mscorlib"> <data name="columnHeader7.Width" type="System.Int32, mscorlib">
<value>100</value> <value>100</value>
</data> </data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> <metadata name="contextMenuStrip_RightClick.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<data name="contextMenuStrip_RightClick.TrayLocation" type="System.Drawing.Point, System.Drawing">
<value>17, 17</value> <value>17, 17</value>
</data> </metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="toolStripMenuItem_Enable.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripMenuItem_Enable.Size" type="System.Drawing.Size, System.Drawing">
<value>174, 22</value> <value>164, 22</value>
</data> </data>
<data name="toolStripMenuItem_Enable.Text" xml:space="preserve"> <data name="toolStripMenuItem_Enable.Text" xml:space="preserve">
<value>Enable (&amp;E)</value> <value>Enable (&amp;E)</value>
</data> </data>
<data name="toolStripMenuItem_Disable.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripMenuItem_Disable.Size" type="System.Drawing.Size, System.Drawing">
<value>174, 22</value> <value>164, 22</value>
</data> </data>
<data name="toolStripMenuItem_Disable.Text" xml:space="preserve"> <data name="toolStripMenuItem_Disable.Text" xml:space="preserve">
<value>Disable (&amp;I)</value> <value>Disable (&amp;I)</value>
</data> </data>
<data name="toolStripSeparator3.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripSeparator3.Size" type="System.Drawing.Size, System.Drawing">
<value>171, 6</value> <value>161, 6</value>
</data> </data>
<data name="toolStripMenuItem_Refresh.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripMenuItem_Refresh.Size" type="System.Drawing.Size, System.Drawing">
<value>174, 22</value> <value>164, 22</value>
</data> </data>
<data name="toolStripMenuItem_Refresh.Text" xml:space="preserve"> <data name="toolStripMenuItem_Refresh.Text" xml:space="preserve">
<value>Refresh (&amp;F)</value> <value>Refresh (&amp;F)</value>
</data> </data>
<data name="toolStripMenuItem_FlushDnsCache.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripMenuItem_FlushDnsCache.Size" type="System.Drawing.Size, System.Drawing">
<value>174, 22</value> <value>164, 22</value>
</data> </data>
<data name="toolStripMenuItem_FlushDnsCache.Text" xml:space="preserve"> <data name="toolStripMenuItem_FlushDnsCache.Text" xml:space="preserve">
<value>Flush DNS Cache</value> <value>Flush DNS Cache</value>
@ -195,67 +135,67 @@
<value>Perform ipconfig /flushDNS</value> <value>Perform ipconfig /flushDNS</value>
</data> </data>
<data name="toolStripSeparator2.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripSeparator2.Size" type="System.Drawing.Size, System.Drawing">
<value>171, 6</value> <value>161, 6</value>
</data> </data>
<data name="toolStripMenuItem_New.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripMenuItem_New.Size" type="System.Drawing.Size, System.Drawing">
<value>174, 22</value> <value>164, 22</value>
</data> </data>
<data name="toolStripMenuItem_New.Text" xml:space="preserve"> <data name="toolStripMenuItem_New.Text" xml:space="preserve">
<value>New (&amp;N) ...</value> <value>New (&amp;N) ...</value>
</data> </data>
<data name="toolStripMenuItem_Modify.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripMenuItem_Modify.Size" type="System.Drawing.Size, System.Drawing">
<value>174, 22</value> <value>164, 22</value>
</data> </data>
<data name="toolStripMenuItem_Modify.Text" xml:space="preserve"> <data name="toolStripMenuItem_Modify.Text" xml:space="preserve">
<value>Modify (&amp;M) ...</value> <value>Modify (&amp;M) ...</value>
</data> </data>
<data name="toolStripMenuItem_Delete.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripMenuItem_Delete.Size" type="System.Drawing.Size, System.Drawing">
<value>174, 22</value> <value>164, 22</value>
</data> </data>
<data name="toolStripMenuItem_Delete.Text" xml:space="preserve"> <data name="toolStripMenuItem_Delete.Text" xml:space="preserve">
<value>Delete (&amp;D)</value> <value>Delete (&amp;D)</value>
</data> </data>
<data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
<value>171, 6</value> <value>161, 6</value>
</data> </data>
<data name="toolStripMenuItem_Import.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripMenuItem_Import.Size" type="System.Drawing.Size, System.Drawing">
<value>186, 22</value> <value>149, 22</value>
</data> </data>
<data name="toolStripMenuItem_Import.Text" xml:space="preserve"> <data name="toolStripMenuItem_Import.Text" xml:space="preserve">
<value>Import</value> <value>Import</value>
</data> </data>
<data name="toolStripMenuItem_Export.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripMenuItem_Export.Size" type="System.Drawing.Size, System.Drawing">
<value>186, 22</value> <value>149, 22</value>
</data> </data>
<data name="toolStripMenuItem_Export.Text" xml:space="preserve"> <data name="toolStripMenuItem_Export.Text" xml:space="preserve">
<value>Export</value> <value>Export</value>
</data> </data>
<data name="toolStripSeparator5.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripSeparator5.Size" type="System.Drawing.Size, System.Drawing">
<value>183, 6</value> <value>146, 6</value>
</data> </data>
<data name="toolStripMenuItem_ResetWindowSize.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripMenuItem_ResetWindowSize.Size" type="System.Drawing.Size, System.Drawing">
<value>186, 22</value> <value>149, 22</value>
</data> </data>
<data name="toolStripMenuItem_ResetWindowSize.Text" xml:space="preserve"> <data name="toolStripMenuItem_ResetWindowSize.Text" xml:space="preserve">
<value>Reset Window</value> <value>Reset Window</value>
</data> </data>
<data name="toolStripMenuItem_More.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripMenuItem_More.Size" type="System.Drawing.Size, System.Drawing">
<value>174, 22</value> <value>164, 22</value>
</data> </data>
<data name="toolStripMenuItem_More.Text" xml:space="preserve"> <data name="toolStripMenuItem_More.Text" xml:space="preserve">
<value>More</value> <value>More</value>
</data> </data>
<data name="toolStripSeparator4.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripSeparator4.Size" type="System.Drawing.Size, System.Drawing">
<value>171, 6</value> <value>161, 6</value>
</data> </data>
<data name="toolStripMenuItem_About.Size" type="System.Drawing.Size, System.Drawing"> <data name="toolStripMenuItem_About.Size" type="System.Drawing.Size, System.Drawing">
<value>174, 22</value> <value>164, 22</value>
</data> </data>
<data name="toolStripMenuItem_About.Text" xml:space="preserve"> <data name="toolStripMenuItem_About.Text" xml:space="preserve">
<value>About</value> <value>About</value>
</data> </data>
<data name="contextMenuStrip_RightClick.Size" type="System.Drawing.Size, System.Drawing"> <data name="contextMenuStrip_RightClick.Size" type="System.Drawing.Size, System.Drawing">
<value>175, 226</value> <value>165, 226</value>
</data> </data>
<data name="&gt;&gt;contextMenuStrip_RightClick.Name" xml:space="preserve"> <data name="&gt;&gt;contextMenuStrip_RightClick.Name" xml:space="preserve">
<value>contextMenuStrip_RightClick</value> <value>contextMenuStrip_RightClick</value>
@ -263,7 +203,7 @@
<data name="&gt;&gt;contextMenuStrip_RightClick.Type" xml:space="preserve"> <data name="&gt;&gt;contextMenuStrip_RightClick.Type" xml:space="preserve">
<value>System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="listViewProxies.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms"> <data name="listViewProxies.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
<value>Fill</value> <value>Fill</value>
</data> </data>
@ -273,58 +213,59 @@
<data name="listViewProxies.Location" type="System.Drawing.Point, System.Drawing"> <data name="listViewProxies.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 0</value> <value>0, 0</value>
</data> </data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="listViewProxies.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> <data name="listViewProxies.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>4, 3, 4, 3</value> <value>4, 3, 4, 3</value>
</data> </data>
<data name="listViewProxies.Size" type="System.Drawing.Size, System.Drawing"> <data name="listViewProxies.Size" type="System.Drawing.Size, System.Drawing">
<value>704, 461</value> <value>712, 461</value>
</data> </data>
<data name="imageListProxies.TrayLocation" type="System.Drawing.Point, System.Drawing"> <metadata name="imageListProxies.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>239, 17</value> <value>239, 17</value>
</data> </metadata>
<data name="imageListProxies.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64"> <data name="imageListProxies.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64">
<value> <value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w AAEAAAD/////AQAAAAAAAAAMAgAAAEZTeXN0ZW0uV2luZG93cy5Gb3JtcywgQ3VsdHVyZT1uZXV0cmFs
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 LCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQEAAAAmU3lzdGVtLldpbmRvd3MuRm9ybXMu
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADc SW1hZ2VMaXN0U3RyZWFtZXIBAAAABERhdGEHAgIAAAAJAwAAAA8DAAAA3AgAAAJNU0Z0AUkBTAIBAQIB
CAAAAk1TRnQBSQFMAgEBAgEAAYwBAQGQAQEBEAEAARABAAT/AQkBEAj/AUIBTQE2AQQGAAE2AQQCAAEo AAGYAQEBmAEBARABAAEQAQAE/wEJAQAI/wFCAU0BNgEEBgABNgEEAgABKAMAAUADAAEQAwABAQEAAQgG
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AAEEGAABgAIAAYADAAKAAQABgAMAAYABAAGAAQACgAIAA8ABAAHAAdwBwAEAAfABygGmAQABMwUAATMB
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AAEzAQABMwEAAjMCAAMWAQADHAEAAyIBAAMpAQADVQEAA00BAANCAQADOQEAAYABfAH/AQACUAH/AQAB
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA kwEAAdYBAAH/AewBzAEAAcYB1gHvAQAB1gLnAQABkAGpAa0CAAH/ATMDAAFmAwABmQMAAcwCAAEzAwAC
AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm MwIAATMBZgIAATMBmQIAATMBzAIAATMB/wIAAWYDAAFmATMCAAJmAgABZgGZAgABZgHMAgABZgH/AgAB
AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM mQMAAZkBMwIAAZkBZgIAApkCAAGZAcwCAAGZAf8CAAHMAwABzAEzAgABzAFmAgABzAGZAgACzAIAAcwB
AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA /wIAAf8BZgIAAf8BmQIAAf8BzAEAATMB/wIAAf8BAAEzAQABMwEAAWYBAAEzAQABmQEAATMBAAHMAQAB
ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz MwEAAf8BAAH/ATMCAAMzAQACMwFmAQACMwGZAQACMwHMAQACMwH/AQABMwFmAgABMwFmATMBAAEzAmYB
AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ AAEzAWYBmQEAATMBZgHMAQABMwFmAf8BAAEzAZkCAAEzAZkBMwEAATMBmQFmAQABMwKZAQABMwGZAcwB
AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM AAEzAZkB/wEAATMBzAIAATMBzAEzAQABMwHMAWYBAAEzAcwBmQEAATMCzAEAATMBzAH/AQABMwH/ATMB
AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA AAEzAf8BZgEAATMB/wGZAQABMwH/AcwBAAEzAv8BAAFmAwABZgEAATMBAAFmAQABZgEAAWYBAAGZAQAB
AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA ZgEAAcwBAAFmAQAB/wEAAWYBMwIAAWYCMwEAAWYBMwFmAQABZgEzAZkBAAFmATMBzAEAAWYBMwH/AQAC
AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ ZgIAAmYBMwEAA2YBAAJmAZkBAAJmAcwBAAFmAZkCAAFmAZkBMwEAAWYBmQFmAQABZgKZAQABZgGZAcwB
AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/ AAFmAZkB/wEAAWYBzAIAAWYBzAEzAQABZgHMAZkBAAFmAswBAAFmAcwB/wEAAWYB/wIAAWYB/wEzAQAB
AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA ZgH/AZkBAAFmAf8BzAEAAcwBAAH/AQAB/wEAAcwBAAKZAgABmQEzAZkBAAGZAQABmQEAAZkBAAHMAQAB
AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm mQMAAZkCMwEAAZkBAAFmAQABmQEzAcwBAAGZAQAB/wEAAZkBZgIAAZkBZgEzAQABmQEzAWYBAAGZAWYB
ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ mQEAAZkBZgHMAQABmQEzAf8BAAKZATMBAAKZAWYBAAOZAQACmQHMAQACmQH/AQABmQHMAgABmQHMATMB
Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz AAFmAcwBZgEAAZkBzAGZAQABmQLMAQABmQHMAf8BAAGZAf8CAAGZAf8BMwEAAZkBzAFmAQABmQH/AZkB
AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA AAGZAf8BzAEAAZkC/wEAAcwDAAGZAQABMwEAAcwBAAFmAQABzAEAAZkBAAHMAQABzAEAAZkBMwIAAcwC
AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM MwEAAcwBMwFmAQABzAEzAZkBAAHMATMBzAEAAcwBMwH/AQABzAFmAgABzAFmATMBAAGZAmYBAAHMAWYB
AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM mQEAAcwBZgHMAQABmQFmAf8BAAHMAZkCAAHMAZkBMwEAAcwBmQFmAQABzAKZAQABzAGZAcwBAAHMAZkB
ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM /wEAAswCAALMATMBAALMAWYBAALMAZkBAAPMAQACzAH/AQABzAH/AgABzAH/ATMBAAGZAf8BZgEAAcwB
Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA /wGZAQABzAH/AcwBAAHMAv8BAAHMAQABMwEAAf8BAAFmAQAB/wEAAZkBAAHMATMCAAH/AjMBAAH/ATMB
AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM ZgEAAf8BMwGZAQAB/wEzAcwBAAH/ATMB/wEAAf8BZgIAAf8BZgEzAQABzAJmAQAB/wFmAZkBAAH/AWYB
AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ zAEAAcwBZgH/AQAB/wGZAgAB/wGZATMBAAH/AZkBZgEAAf8CmQEAAf8BmQHMAQAB/wGZAf8BAAH/AcwC
AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz AAH/AcwBMwEAAf8BzAFmAQAB/wHMAZkBAAH/AswBAAH/AcwB/wEAAv8BMwEAAcwB/wFmAQAC/wGZAQAC
AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm /wHMAQACZgH/AQABZgH/AWYBAAFmAv8BAAH/AmYBAAH/AWYB/wEAAv8BZgEAASEBAAGlAQADXwEAA3cB
AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw AAOGAQADlgEAA8sBAAOyAQAD1wEAA90BAAPjAQAD6gEAA/EBAAP4AQAB8AH7Af8BAAGkAqABAAOAAwAB
AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/wQACvQ0AAH/AZQKFwGU /wIAAf8DAAL/AQAB/wMAAf8BAAH/AQAC/wIAA/8EAAr0NAAB/wGUChcBlAH/AgAB/wG6CpUBugH/IgAB
Af8CAAH/AboKlQG6Af8iAAGUDBcBlAIAAboMlQG6IgAOFwIADpUiAAQXARYB9AL/AfQBFgQXAgAOlSIA lAwXAZQCAAG6DJUBuiIADhcCAA6VIgAEFwEWAfQC/wH0ARYEFwIADpUiAAMXARYB/wG9ARYBlAH0Af8B
AxcBFgH/Ab0BFgGUAfQB/wEWAxcCAAWVArsHlSIAAxcB9AG9AhcBlAH/AvQDFwIABJUBugL/AcEGlSIA FgMXAgAFlQK7B5UiAAMXAfQBvQIXAZQB/wL0AxcCAASVAboC/wHBBpUiAAMXAf8BFgEXAZQB/wKUAf8D
AxcB/wEWARcBlAH/ApQB/wMXAgADlQG6Af8BwQG6Af8BwQWVIgADFwH/ApQB/wGUARcBFgH/AxcCAAOV FwIAA5UBugH/AcEBugH/AcEFlSIAAxcB/wKUAf8BlAEXARYB/wMXAgADlQH/AcEClQG6Af8BwQSVIgAD
Af8BwQKVAboB/wHBBJUiAAMXAvQB/wGUAhcBvQH0AxcCAAiVAboB/wHBA5UiAAMXARYB/wH0AZQBFgG9 FwL0Af8BlAIXAb0B9AMXAgAIlQG6Af8BwQOVIgADFwEWAf8B9AGUARYBvQH/ARYDFwIACZUBugH/A5Ui
Af8BFgMXAgAJlQG6Af8DlSIABBcBFgH0Av8B9AEWBBcB/wEADpUB/yEADhcB/wEADpUB/yEAAZQMFwGU AAQXARYB9AL/AfQBFgQXAf8BAA6VAf8hAA4XAf8BAA6VAf8hAAGUDBcBlAIAAboMlQG6IgAB/wGUChcB
AgABugyVAboiAAH/AZQKFwGUAf8CAAH/AboKlQG6Af80AAH/CPQkAAFCAU0BPgcAAT4DAAEoAwABQAMA lAH/AgAB/wG6CpUBugH/NAAB/wj0JAABQgFNAT4HAAE+AwABKAMAAUADAAEQAwABAQEAAQEFAAGAFwAD
ARADAAEBAQABAQUAAYAXAAP/AQAB4AEHAv8EAAGAAQEBgAEBBAABgAEBAYABAQQAAYABAQGAAQEEAAGA /wEAAeABBwL/BAABgAEBAYABAQQAAYABAQGAAQEEAAGAAQEBgAEBBAABgAEBAYABAQQAAYABAQGAAQEE
AQEBgAEBBAABgAEBAYABAQQAAYABAQGAAQEEAAGAAQEBgAEBBAABgAEBAYABAQQAAYABAQGAAQEEAAGA AAGAAQEBgAEBBAABgAEBAYABAQQAAYABAQGAAQEEAAGAAQEBgAEBBAABgAEBAYABAQQAAYABAAGABQAB
AQEBgAEBBAABgAEAAYAFAAGAAQABgAUAAYABAQGAAQEEAAGAAQEBgAEBBAAC/wHgAQ8aAAs= gAEAAYAFAAGAAQEBgAEBBAABgAEBAYABAQQAAv8B4AEPBAAL
</value> </value>
</data> </data>
<data name="listViewProxies.TabIndex" type="System.Int32, mscorlib"> <data name="listViewProxies.TabIndex" type="System.Int32, mscorlib">
@ -342,26 +283,26 @@
<data name="&gt;&gt;listViewProxies.ZOrder" xml:space="preserve"> <data name="&gt;&gt;listViewProxies.ZOrder" xml:space="preserve">
<value>1</value> <value>1</value>
</data> </data>
<data name="saveFileDialog_Export.TrayLocation" type="System.Drawing.Point, System.Drawing"> <metadata name="saveFileDialog_Export.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>389, 17</value> <value>389, 17</value>
</data> </metadata>
<data name="saveFileDialog_Export.Filter" xml:space="preserve"> <data name="saveFileDialog_Export.Filter" xml:space="preserve">
<value>Database File|*.db</value> <value>Database File|*.db</value>
</data> </data>
<data name="openFileDialog_Import.TrayLocation" type="System.Drawing.Point, System.Drawing"> <metadata name="openFileDialog_Import.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>569, 17</value> <value>569, 17</value>
</data> </metadata>
<data name="openFileDialog_Import.Filter" xml:space="preserve"> <data name="openFileDialog_Import.Filter" xml:space="preserve">
<value>Database File|*.db</value> <value>Database File|*.db</value>
</data> </data>
<data name="$this.Localizable" type="System.Boolean, mscorlib"> <metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value> <value>True</value>
</data> </metadata>
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing"> <data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
<value>6, 13</value> <value>6, 13</value>
</data> </data>
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing"> <data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
<value>704, 461</value> <value>712, 461</value>
</data> </data>
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
@ -2650,6 +2591,18 @@
<data name="&gt;&gt;toolStripMenuItem_Export.Type" xml:space="preserve"> <data name="&gt;&gt;toolStripMenuItem_Export.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
<data name="&gt;&gt;toolStripSeparator5.Name" xml:space="preserve">
<value>toolStripSeparator5</value>
</data>
<data name="&gt;&gt;toolStripSeparator5.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;toolStripMenuItem_ResetWindowSize.Name" xml:space="preserve">
<value>toolStripMenuItem_ResetWindowSize</value>
</data>
<data name="&gt;&gt;toolStripMenuItem_ResetWindowSize.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;toolStripSeparator4.Name" xml:space="preserve"> <data name="&gt;&gt;toolStripSeparator4.Name" xml:space="preserve">
<value>toolStripSeparator4</value> <value>toolStripSeparator4</value>
</data> </data>
@ -2680,18 +2633,6 @@
<data name="&gt;&gt;openFileDialog_Import.Type" xml:space="preserve"> <data name="&gt;&gt;openFileDialog_Import.Type" xml:space="preserve">
<value>System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data> </data>
<data name="&gt;&gt;toolStripMenuItem_ResetWindowSize.Name" xml:space="preserve">
<value>toolStripMenuItem_ResetWindowSize</value>
</data>
<data name="&gt;&gt;toolStripMenuItem_ResetWindowSize.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;toolStripSeparator5.Name" xml:space="preserve">
<value>toolStripSeparator5</value>
</data>
<data name="&gt;&gt;toolStripSeparator5.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;$this.Name" xml:space="preserve"> <data name="&gt;&gt;$this.Name" xml:space="preserve">
<value>PortProxyGUI</value> <value>PortProxyGUI</value>
</data> </data>