[csmaild-cvs] csmaild/src/TestClient .cvsignore,1.2,1.3 Main.cs,1.2,1.3 Main.resx,1.2,1.3
Brought to you by:
tamc
From: <ta...@us...> - 2003-07-26 06:24:38
|
Update of /cvsroot/csmaild/csmaild/src/TestClient In directory sc8-pr-cvs1:/tmp/cvs-serv22878/src/TestClient Modified Files: .cvsignore Main.cs Main.resx Log Message: Made the crappy test client a little less crappy. Index: .cvsignore =================================================================== RCS file: /cvsroot/csmaild/csmaild/src/TestClient/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .cvsignore 25 Jul 2003 14:50:31 -0000 1.2 --- .cvsignore 25 Jul 2003 19:30:28 -0000 1.3 *************** *** 1,3 **** *.csproj.user - bin obj --- 1,2 ---- Index: Main.cs =================================================================== RCS file: /cvsroot/csmaild/csmaild/src/TestClient/Main.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Main.cs 25 Jul 2003 14:50:31 -0000 1.2 --- Main.cs 25 Jul 2003 19:30:28 -0000 1.3 *************** *** 1,6 **** --- 1,8 ---- using System; using System.Drawing; + using System.Data; using System.Collections; using System.ComponentModel; + using System.IO; using System.Windows.Forms; *************** *** 12,21 **** public class MainF : System.Windows.Forms.Form { ! private System.Windows.Forms.ListBox listBox1; ! int counter = 0; ! private System.Windows.Forms.Button button1; ! private System.Windows.Forms.Button button2; ! private System.Windows.Forms.ListBox listBox2; ! private System.Windows.Forms.Button button3; /// <summary> /// Required designer variable. --- 14,31 ---- public class MainF : System.Windows.Forms.Form { ! ClientHelper mHelper; ! int mCounter = 0; ! ! private System.Windows.Forms.Button cmdLocalhost; ! private System.Windows.Forms.Button cmdChegg; ! private System.Windows.Forms.ListBox lstCommunicationLog; ! private System.Windows.Forms.ListBox lstCommandsToProcess; ! private System.Windows.Forms.TextBox txtAddCommands; ! private System.Windows.Forms.Button cmdAdd; ! private System.Windows.Forms.Button cmdMoveUp; ! private System.Windows.Forms.Button cmdMoveDown; ! private System.Windows.Forms.Button cmdDelete; ! private System.Windows.Forms.NumericUpDown numPause; ! private System.Windows.Forms.Label label1; /// <summary> /// Required designer variable. *************** *** 59,130 **** private void InitializeComponent() { ! this.listBox1 = new System.Windows.Forms.ListBox(); ! this.button1 = new System.Windows.Forms.Button(); ! this.button2 = new System.Windows.Forms.Button(); ! this.listBox2 = new System.Windows.Forms.ListBox(); ! this.button3 = new System.Windows.Forms.Button(); this.SuspendLayout(); // ! // listBox1 // ! this.listBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) ! | System.Windows.Forms.AnchorStyles.Left) ! | System.Windows.Forms.AnchorStyles.Right))); ! this.listBox1.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); ! this.listBox1.ItemHeight = 16; ! this.listBox1.Location = new System.Drawing.Point(8, 40); ! this.listBox1.Name = "listBox1"; ! this.listBox1.Size = new System.Drawing.Size(352, 340); ! this.listBox1.TabIndex = 0; ! this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged); // ! // button1 // ! this.button1.Location = new System.Drawing.Point(16, 8); ! this.button1.Name = "button1"; ! this.button1.TabIndex = 1; ! this.button1.Text = "Test Localhost"; ! this.button1.Click += new System.EventHandler(this.button1_Click); // ! // button2 // ! this.button2.Location = new System.Drawing.Point(632, 8); ! this.button2.Name = "button2"; ! this.button2.TabIndex = 2; ! this.button2.Text = "Test Chegg"; ! this.button2.Click += new System.EventHandler(this.button2_Click); // ! // listBox2 // ! this.listBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) ! | System.Windows.Forms.AnchorStyles.Left) ! | System.Windows.Forms.AnchorStyles.Right))); ! this.listBox2.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); ! this.listBox2.ItemHeight = 16; ! this.listBox2.Location = new System.Drawing.Point(368, 40); ! this.listBox2.Name = "listBox2"; ! this.listBox2.Size = new System.Drawing.Size(336, 340); ! this.listBox2.TabIndex = 3; ! this.listBox2.SelectedIndexChanged += new System.EventHandler(this.listBox2_SelectedIndexChanged); // ! // button3 // ! this.button3.Location = new System.Drawing.Point(328, 8); ! this.button3.Name = "button3"; ! this.button3.TabIndex = 4; ! this.button3.Text = "Test Both"; ! this.button3.Click += new System.EventHandler(this.button3_Click); // // MainF // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); ! this.ClientSize = new System.Drawing.Size(712, 389); ! this.Controls.Add(this.button3); ! this.Controls.Add(this.listBox2); ! this.Controls.Add(this.button2); ! this.Controls.Add(this.button1); ! this.Controls.Add(this.listBox1); this.Name = "MainF"; this.Text = "Main"; this.ResumeLayout(false); --- 69,223 ---- private void InitializeComponent() { ! this.cmdLocalhost = new System.Windows.Forms.Button(); ! this.cmdChegg = new System.Windows.Forms.Button(); ! this.lstCommunicationLog = new System.Windows.Forms.ListBox(); ! this.lstCommandsToProcess = new System.Windows.Forms.ListBox(); ! this.txtAddCommands = new System.Windows.Forms.TextBox(); ! this.cmdAdd = new System.Windows.Forms.Button(); ! this.cmdMoveUp = new System.Windows.Forms.Button(); ! this.cmdMoveDown = new System.Windows.Forms.Button(); ! this.cmdDelete = new System.Windows.Forms.Button(); ! this.numPause = new System.Windows.Forms.NumericUpDown(); ! this.label1 = new System.Windows.Forms.Label(); ! ((System.ComponentModel.ISupportInitialize)(this.numPause)).BeginInit(); this.SuspendLayout(); // ! // cmdLocalhost // ! this.cmdLocalhost.FlatStyle = System.Windows.Forms.FlatStyle.Flat; ! this.cmdLocalhost.Location = new System.Drawing.Point(8, 8); ! this.cmdLocalhost.Name = "cmdLocalhost"; ! this.cmdLocalhost.Size = new System.Drawing.Size(64, 20); ! this.cmdLocalhost.TabIndex = 1; ! this.cmdLocalhost.Text = "Localhost"; ! this.cmdLocalhost.Click += new System.EventHandler(this.cmdLocalhost_Click); // ! // cmdChegg // ! this.cmdChegg.FlatStyle = System.Windows.Forms.FlatStyle.Flat; ! this.cmdChegg.Location = new System.Drawing.Point(80, 8); ! this.cmdChegg.Name = "cmdChegg"; ! this.cmdChegg.Size = new System.Drawing.Size(64, 20); ! this.cmdChegg.TabIndex = 2; ! this.cmdChegg.Text = "Chegg"; ! this.cmdChegg.Click += new System.EventHandler(this.cmdChegg_Click); // ! // lstCommunicationLog // ! this.lstCommunicationLog.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; ! this.lstCommunicationLog.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); ! this.lstCommunicationLog.IntegralHeight = false; ! this.lstCommunicationLog.ItemHeight = 16; ! this.lstCommunicationLog.Location = new System.Drawing.Point(8, 40); ! this.lstCommunicationLog.Name = "lstCommunicationLog"; ! this.lstCommunicationLog.Size = new System.Drawing.Size(696, 432); ! this.lstCommunicationLog.TabIndex = 3; // ! // lstCommandsToProcess // ! this.lstCommandsToProcess.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; ! this.lstCommandsToProcess.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); ! this.lstCommandsToProcess.Location = new System.Drawing.Point(712, 40); ! this.lstCommandsToProcess.Name = "lstCommandsToProcess"; ! this.lstCommandsToProcess.Size = new System.Drawing.Size(208, 405); ! this.lstCommandsToProcess.TabIndex = 4; ! this.lstCommandsToProcess.SelectedIndexChanged += new System.EventHandler(this.lstCommandsToProcess_SelectedIndexChanged); // ! // txtAddCommands // ! this.txtAddCommands.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; ! this.txtAddCommands.Location = new System.Drawing.Point(712, 456); ! this.txtAddCommands.Name = "txtAddCommands"; ! this.txtAddCommands.Size = new System.Drawing.Size(152, 20); ! this.txtAddCommands.TabIndex = 5; ! this.txtAddCommands.Text = ""; ! this.txtAddCommands.Enter += new System.EventHandler(this.txtAddCommands_Enter); ! // ! // cmdAdd ! // ! this.cmdAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat; ! this.cmdAdd.Location = new System.Drawing.Point(872, 456); ! this.cmdAdd.Name = "cmdAdd"; ! this.cmdAdd.Size = new System.Drawing.Size(48, 20); ! this.cmdAdd.TabIndex = 6; ! this.cmdAdd.Text = "Add"; ! this.cmdAdd.Click += new System.EventHandler(this.cmdAdd_Click); ! // ! // cmdMoveUp ! // ! this.cmdMoveUp.FlatStyle = System.Windows.Forms.FlatStyle.Flat; ! this.cmdMoveUp.Location = new System.Drawing.Point(712, 8); ! this.cmdMoveUp.Name = "cmdMoveUp"; ! this.cmdMoveUp.Size = new System.Drawing.Size(48, 20); ! this.cmdMoveUp.TabIndex = 7; ! this.cmdMoveUp.Text = "Up"; ! this.cmdMoveUp.Click += new System.EventHandler(this.cmdMoveUp_Click); ! // ! // cmdMoveDown ! // ! this.cmdMoveDown.FlatStyle = System.Windows.Forms.FlatStyle.Flat; ! this.cmdMoveDown.Location = new System.Drawing.Point(792, 8); ! this.cmdMoveDown.Name = "cmdMoveDown"; ! this.cmdMoveDown.Size = new System.Drawing.Size(48, 20); ! this.cmdMoveDown.TabIndex = 8; ! this.cmdMoveDown.Text = "Down"; ! this.cmdMoveDown.Click += new System.EventHandler(this.cmdMoveDown_Click); ! // ! // cmdDelete ! // ! this.cmdDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat; ! this.cmdDelete.Location = new System.Drawing.Point(872, 8); ! this.cmdDelete.Name = "cmdDelete"; ! this.cmdDelete.Size = new System.Drawing.Size(48, 20); ! this.cmdDelete.TabIndex = 9; ! this.cmdDelete.Text = "Delete"; ! this.cmdDelete.Click += new System.EventHandler(this.cmdDelete_Click); ! // ! // numPause ! // ! this.numPause.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; ! this.numPause.Location = new System.Drawing.Point(184, 8); ! this.numPause.Maximum = new System.Decimal(new int[] { ! 50, ! 0, ! 0, ! 0}); ! this.numPause.Name = "numPause"; ! this.numPause.Size = new System.Drawing.Size(40, 20); ! this.numPause.TabIndex = 10; ! this.numPause.Value = new System.Decimal(new int[] { ! 5, ! 0, ! 0, ! 0}); ! // ! // label1 ! // ! this.label1.AutoSize = true; ! this.label1.Location = new System.Drawing.Point(224, 8); ! this.label1.Name = "label1"; ! this.label1.Size = new System.Drawing.Size(243, 16); ! this.label1.TabIndex = 11; ! this.label1.Text = "Pause between commands (tenths of a second)"; // // MainF // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); ! this.ClientSize = new System.Drawing.Size(928, 485); ! this.Controls.Add(this.label1); ! this.Controls.Add(this.numPause); ! this.Controls.Add(this.cmdDelete); ! this.Controls.Add(this.cmdMoveDown); ! this.Controls.Add(this.cmdMoveUp); ! this.Controls.Add(this.cmdAdd); ! this.Controls.Add(this.txtAddCommands); ! this.Controls.Add(this.lstCommandsToProcess); ! this.Controls.Add(this.lstCommunicationLog); ! this.Controls.Add(this.cmdChegg); ! this.Controls.Add(this.cmdLocalhost); this.Name = "MainF"; this.Text = "Main"; + this.Load += new System.EventHandler(this.MainF_Load); + ((System.ComponentModel.ISupportInitialize)(this.numPause)).EndInit(); this.ResumeLayout(false); *************** *** 132,147 **** #endregion ! private void SendLine(string msg, ClientHelper h, ListBox box) { ! h.Send(msg + "\r\n"); ! box.Items.Add(counter++.ToString().PadLeft(4, ' ') + " -> " + msg); Application.DoEvents(); } ! private string ReadLine(ClientHelper h, ListBox box) { ! string line = h.ReceiveLine(); ! box.Items.Add(counter++.ToString().PadLeft(4, ' ') + " <- " + line); Application.DoEvents(); --- 225,242 ---- #endregion ! private void SendLine(string msg) { ! mHelper.Send(msg + "\r\n"); ! lstCommunicationLog.Items.Add(mCounter++.ToString().PadLeft(4, ' ') + " -> " + msg); ! lstCommunicationLog.SelectedIndex = lstCommunicationLog.Items.Count-1; Application.DoEvents(); } ! private string ReadLine() { ! string line = mHelper.ReceiveLine(); ! lstCommunicationLog.Items.Add(mCounter++.ToString().PadLeft(4, ' ') + " <- " + line); ! lstCommunicationLog.SelectedIndex = lstCommunicationLog.Items.Count-1; Application.DoEvents(); *************** *** 150,229 **** } ! private void button1_Click(object sender, System.EventArgs e) { ! listBox1.Items.Clear(); ! ClientHelper localhost = new ClientHelper("localhost", 143); ! Go(localhost, listBox1); } ! private void button2_Click(object sender, System.EventArgs e) { ! listBox1.Items.Clear(); ! ClientHelper chegg = new ClientHelper("chegg.com", 143); ! Go(chegg, listBox2); } ! private void button3_Click(object sender, System.EventArgs e) { ! listBox1.Items.Clear(); ! listBox2.Items.Clear(); ! ClientHelper localhost = new ClientHelper("localhost", 143); ! Go(localhost, listBox1); ! ClientHelper chegg = new ClientHelper("chegg.com", 143); ! Go(chegg, listBox2); } ! private void Go(ClientHelper h, ListBox box) { ! ReadLine(h, box); // read welcome msg ! string a1 = string.Empty; ! SendLine("a1 CAPABILITY", h, box); ! while(!a1.StartsWith("a1")) ! a1 = ReadLine(h, box); ! string a2 = string.Empty; ! SendLine("a2 LOGIN {12}", h, box); ! a2 = ReadLine(h, box); ! SendLine("csmaild_test {12}", h, box); ! a2 = ReadLine(h, box); ! SendLine("csmaild_test", h, box); ! while(!a2.StartsWith("a2")) ! a2 = ReadLine(h, box); ! /* string a2 = string.Empty; ! SendLine("a2 LOGIN \"csmaild_test\" \"csmaild_test\""); ! while(!a2.StartsWith("a2")) ! a2 = ReadLine();*/ ! string a3 = string.Empty; ! SendLine("a3 LIST \"\" \"*\"", h, box); ! while(!a3.StartsWith("a3")) ! a3 = ReadLine(h, box); ! string a4 = string.Empty; ! SendLine("a4 LSUB \"\" \"*\"", h, box); ! while(!a4.StartsWith("a4")) ! a4 = ReadLine(h, box); ! string a5 = string.Empty; ! SendLine("a5 SELECT \"INBOX\"", h, box); ! while(!a5.StartsWith("a5")) ! a5 = ReadLine(h, box); ! string zz = string.Empty; ! SendLine("zz LOGOUT", h, box); ! while(!zz.StartsWith("zz")) ! zz = ReadLine(h, box); } ! private void listBox1_SelectedIndexChanged(object sender, System.EventArgs e) { ! listBox2.SelectedIndex = listBox1.SelectedIndex; } ! private void listBox2_SelectedIndexChanged(object sender, System.EventArgs e) { ! listBox1.SelectedIndex = listBox2.SelectedIndex; } } --- 245,396 ---- } ! private void SendReceiveCommand(string command) { ! string line = string.Empty; ! string tag = mCounter.ToString(); ! SendLine(tag + " " + command); ! while(!line.StartsWith(tag)) ! line = ReadLine(); } ! private void Go() { ! lstCommunicationLog.Items.Clear(); ! ! cmdAdd.Enabled = false; ! cmdDelete.Enabled = false; ! cmdMoveUp.Enabled = false; ! cmdMoveDown.Enabled = false; ! lstCommandsToProcess.Enabled = false; ! cmdLocalhost.Enabled = false; ! cmdChegg.Enabled = false; ! ! ReadLine(); // read welcome msg ! ! for(int idx = 0; idx < lstCommandsToProcess.Items.Count; ++idx) ! { ! lstCommandsToProcess.SelectedIndex = idx; ! SendReceiveCommand(lstCommandsToProcess.SelectedItem as string); ! System.Threading.Thread.Sleep((int)numPause.Value * 100); ! } ! ! cmdAdd.Enabled = true; ! cmdDelete.Enabled = true; ! cmdMoveUp.Enabled = true; ! cmdMoveDown.Enabled = true; ! lstCommandsToProcess.Enabled = true; ! cmdLocalhost.Enabled = true; ! cmdChegg.Enabled = true; } ! private void MainF_Load(object sender, System.EventArgs e) { ! lstCommandsToProcess_SelectedIndexChanged(sender, e); ! ! if(File.Exists("..\\Commands.xml")) ! { ! DataSet ds = new DataSet(); ! ds.ReadXml("..\\Commands.xml"); ! ! try ! { ! foreach(DataRow r in ds.Tables[0].Rows) ! lstCommandsToProcess.Items.Add(r["Command"] as string); ! } ! catch{} ! ! ds.Dispose(); ! } } ! private void cmdLocalhost_Click(object sender, System.EventArgs e) { ! mHelper = new ClientHelper("localhost", 143); ! Go(); ! } ! private void cmdChegg_Click(object sender, System.EventArgs e) ! { ! mHelper = new ClientHelper("chegg.com", 143); ! Go(); ! } ! private void lstCommandsToProcess_SelectedIndexChanged(object sender, System.EventArgs e) ! { ! if(lstCommandsToProcess.SelectedIndex == -1) ! { ! cmdMoveDown.Enabled = false; ! cmdMoveUp.Enabled = false; ! cmdDelete.Enabled = false; ! } ! else ! { ! cmdMoveUp.Enabled = (lstCommandsToProcess.SelectedIndex != 0); ! cmdMoveDown.Enabled = (lstCommandsToProcess.SelectedIndex != lstCommandsToProcess.Items.Count-1); ! cmdDelete.Enabled = true; ! } ! } ! private void cmdAdd_Click(object sender, System.EventArgs e) ! { ! lstCommandsToProcess.Items.Add(txtAddCommands.Text); ! txtAddCommands.SelectionStart = 0; ! txtAddCommands.SelectionLength = txtAddCommands.Text.Length; ! SaveCommands(); ! } ! private void cmdMoveUp_Click(object sender, System.EventArgs e) ! { ! object toMove = lstCommandsToProcess.SelectedItem; ! int idx = lstCommandsToProcess.SelectedIndex; ! lstCommandsToProcess.Items.RemoveAt(idx); ! --idx; ! lstCommandsToProcess.Items.Insert(idx, toMove); ! lstCommandsToProcess.SelectedIndex = idx; ! SaveCommands(); ! } ! private void cmdMoveDown_Click(object sender, System.EventArgs e) ! { ! object toMove = lstCommandsToProcess.SelectedItem; ! int idx = lstCommandsToProcess.SelectedIndex; ! lstCommandsToProcess.Items.RemoveAt(idx); ! ++idx; ! lstCommandsToProcess.Items.Insert(idx, toMove); ! lstCommandsToProcess.SelectedIndex = idx; ! ! SaveCommands(); } ! private void cmdDelete_Click(object sender, System.EventArgs e) { ! int idx = lstCommandsToProcess.SelectedIndex; ! lstCommandsToProcess.Items.RemoveAt(idx); ! if(idx < lstCommandsToProcess.Items.Count) ! lstCommandsToProcess.SelectedIndex = idx; ! else if(idx > 0) ! lstCommandsToProcess.SelectedIndex = idx--; ! ! SaveCommands(); } ! private void txtAddCommands_Enter(object sender, System.EventArgs e) { ! this.AcceptButton = cmdAdd; ! } ! ! private void SaveCommands() ! { ! DataSet ds = new DataSet(); ! ds.Tables.Add("Commands").Columns.Add("Command"); ! ! foreach(object o in lstCommandsToProcess.Items) ! ds.Tables[0].Rows.Add(new object[]{o as String}); ! ! ds.WriteXml("..\\Commands.xml"); ! ! ds.Dispose(); } } Index: Main.resx =================================================================== RCS file: /cvsroot/csmaild/csmaild/src/TestClient/Main.resx,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Main.resx 25 Jul 2003 14:50:31 -0000 1.2 --- Main.resx 25 Jul 2003 19:30:28 -0000 1.3 *************** *** 98,144 **** <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> ! <data name="listBox1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="listBox1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </data> ! <data name="listBox1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="button1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </data> ! <data name="button1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="button1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="button2.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </data> ! <data name="button2.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="button2.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="listBox2.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="listBox2.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </data> ! <data name="listBox2.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="button3.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </data> ! <data name="button3.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="button3.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> --- 98,198 ---- <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> ! <data name="cmdLocalhost.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>False</value> ! </data> ! <data name="cmdLocalhost.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="cmdLocalhost.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>Private</value> ! </data> ! <data name="cmdChegg.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </data> ! <data name="cmdChegg.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="cmdChegg.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>Private</value> ! </data> ! <data name="lstCommunicationLog.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>Private</value> ! </data> ! <data name="lstCommunicationLog.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </data> ! <data name="lstCommunicationLog.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="lstCommandsToProcess.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="lstCommandsToProcess.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </data> ! <data name="lstCommandsToProcess.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="txtAddCommands.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="txtAddCommands.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>False</value> ! </data> ! <data name="txtAddCommands.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="cmdAdd.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </data> ! <data name="cmdAdd.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="cmdAdd.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>Private</value> ! </data> ! <data name="cmdMoveUp.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> </data> ! <data name="cmdMoveUp.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> ! <data name="cmdMoveUp.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>Private</value> ! </data> ! <data name="cmdMoveDown.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>Private</value> ! </data> ! <data name="cmdMoveDown.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>False</value> ! </data> ! <data name="cmdMoveDown.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>Private</value> ! </data> ! <data name="cmdDelete.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>False</value> ! </data> ! <data name="cmdDelete.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>Private</value> ! </data> ! <data name="cmdDelete.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>Private</value> ! </data> ! <data name="numPause.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>False</value> ! </data> ! <data name="numPause.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>Private</value> ! </data> ! <data name="numPause.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>Private</value> ! </data> ! <data name="label1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>False</value> ! </data> ! <data name="label1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> ! <value>Private</value> ! </data> ! <data name="label1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>Private</value> </data> *************** *** 146,149 **** --- 200,206 ---- <value>False</value> </data> + <data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> + <value>(Default)</value> + </data> <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>False</value> *************** *** 155,167 **** <value>8, 8</value> </data> - <data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>(Default)</value> - </data> <data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>True</value> </data> - <data name="$this.Name"> - <value>MainF</value> - </data> <data name="$this.TrayHeight" type="System.Int32, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>80</value> --- 212,218 ---- *************** *** 169,172 **** --- 220,226 ---- <data name="$this.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>True</value> + </data> + <data name="$this.Name"> + <value>MainF</value> </data> <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> |