301 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			301 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace FindDifferences
 | |
| {
 | |
| 	partial class frmFindDifferences
 | |
| 	{
 | |
| 		/// <summary>
 | |
| 		/// Required designer variable.
 | |
| 		/// </summary>
 | |
| 		private System.ComponentModel.IContainer components = null;
 | |
| 
 | |
| 		/// <summary>
 | |
| 		/// Clean up any resources being used.
 | |
| 		/// </summary>
 | |
| 		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 | |
| 		protected override void Dispose(bool disposing)
 | |
| 		{
 | |
| 			if (disposing && (components != null))
 | |
| 			{
 | |
| 				components.Dispose();
 | |
| 			}
 | |
| 			base.Dispose(disposing);
 | |
| 		}
 | |
| 
 | |
| 		#region Windows Form Designer generated code
 | |
| 
 | |
| 		/// <summary>
 | |
| 		/// Required method for Designer support - do not modify
 | |
| 		/// the contents of this method with the code editor.
 | |
| 		/// </summary>
 | |
| 		private void InitializeComponent()
 | |
| 		{
 | |
| 			this.components = new System.ComponentModel.Container();
 | |
| 			this.fbd = new System.Windows.Forms.FolderBrowserDialog();
 | |
| 			this.tmr = new System.Windows.Forms.Timer(this.components);
 | |
| 			this.panel1 = new System.Windows.Forms.Panel();
 | |
| 			this.tbPdf = new System.Windows.Forms.TextBox();
 | |
| 			this.tbCompare = new System.Windows.Forms.TextBox();
 | |
| 			this.btnPdf = new System.Windows.Forms.Button();
 | |
| 			this.btnCompare = new System.Windows.Forms.Button();
 | |
| 			this.splitContainer1 = new System.Windows.Forms.SplitContainer();
 | |
| 			this.btnCopy = new System.Windows.Forms.Button();
 | |
| 			this.cbShowFirst = new System.Windows.Forms.CheckBox();
 | |
| 			this.btnClosePdf = new System.Windows.Forms.Button();
 | |
| 			this.btnRefresh = new System.Windows.Forms.Button();
 | |
| 			this.lblDifferences = new System.Windows.Forms.Label();
 | |
| 			this.label2 = new System.Windows.Forms.Label();
 | |
| 			this.label1 = new System.Windows.Forms.Label();
 | |
| 			this.cmbWith = new System.Windows.Forms.ComboBox();
 | |
| 			this.cmbCompare = new System.Windows.Forms.ComboBox();
 | |
| 			this.lbDifferences = new System.Windows.Forms.ListBox();
 | |
| 			this.wb = new System.Windows.Forms.WebBrowser();
 | |
| 			this.panel1.SuspendLayout();
 | |
| 			this.splitContainer1.Panel1.SuspendLayout();
 | |
| 			this.splitContainer1.Panel2.SuspendLayout();
 | |
| 			this.splitContainer1.SuspendLayout();
 | |
| 			this.SuspendLayout();
 | |
| 			// 
 | |
| 			// tmr
 | |
| 			// 
 | |
| 			this.tmr.Tick += new System.EventHandler(this.tmr_Tick);
 | |
| 			// 
 | |
| 			// panel1
 | |
| 			// 
 | |
| 			this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
 | |
| 			this.panel1.Controls.Add(this.tbPdf);
 | |
| 			this.panel1.Controls.Add(this.tbCompare);
 | |
| 			this.panel1.Controls.Add(this.btnPdf);
 | |
| 			this.panel1.Controls.Add(this.btnCompare);
 | |
| 			this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
 | |
| 			this.panel1.Location = new System.Drawing.Point(0, 0);
 | |
| 			this.panel1.Name = "panel1";
 | |
| 			this.panel1.Size = new System.Drawing.Size(824, 72);
 | |
| 			this.panel1.TabIndex = 1;
 | |
| 			// 
 | |
| 			// tbPdf
 | |
| 			// 
 | |
| 			this.tbPdf.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
 | |
| 									| System.Windows.Forms.AnchorStyles.Right)));
 | |
| 			this.tbPdf.Location = new System.Drawing.Point(123, 41);
 | |
| 			this.tbPdf.Name = "tbPdf";
 | |
| 			this.tbPdf.Size = new System.Drawing.Size(685, 20);
 | |
| 			this.tbPdf.TabIndex = 9;
 | |
| 			// 
 | |
| 			// tbCompare
 | |
| 			// 
 | |
| 			this.tbCompare.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
 | |
| 									| System.Windows.Forms.AnchorStyles.Right)));
 | |
| 			this.tbCompare.Location = new System.Drawing.Point(123, 12);
 | |
| 			this.tbCompare.Name = "tbCompare";
 | |
| 			this.tbCompare.Size = new System.Drawing.Size(685, 20);
 | |
| 			this.tbCompare.TabIndex = 8;
 | |
| 			// 
 | |
| 			// btnPdf
 | |
| 			// 
 | |
| 			this.btnPdf.Location = new System.Drawing.Point(11, 39);
 | |
| 			this.btnPdf.Name = "btnPdf";
 | |
| 			this.btnPdf.Size = new System.Drawing.Size(106, 23);
 | |
| 			this.btnPdf.TabIndex = 7;
 | |
| 			this.btnPdf.Text = "Pdf Folder";
 | |
| 			this.btnPdf.UseVisualStyleBackColor = true;
 | |
| 			this.btnPdf.Click += new System.EventHandler(this.btnPdf_Click);
 | |
| 			// 
 | |
| 			// btnCompare
 | |
| 			// 
 | |
| 			this.btnCompare.Location = new System.Drawing.Point(11, 10);
 | |
| 			this.btnCompare.Name = "btnCompare";
 | |
| 			this.btnCompare.Size = new System.Drawing.Size(106, 23);
 | |
| 			this.btnCompare.TabIndex = 6;
 | |
| 			this.btnCompare.Text = "Compare Folder";
 | |
| 			this.btnCompare.UseVisualStyleBackColor = true;
 | |
| 			this.btnCompare.Click += new System.EventHandler(this.btnCompare_Click);
 | |
| 			// 
 | |
| 			// splitContainer1
 | |
| 			// 
 | |
| 			this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
 | |
| 			this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
| 			this.splitContainer1.Location = new System.Drawing.Point(0, 72);
 | |
| 			this.splitContainer1.Name = "splitContainer1";
 | |
| 			// 
 | |
| 			// splitContainer1.Panel1
 | |
| 			// 
 | |
| 			this.splitContainer1.Panel1.Controls.Add(this.btnCopy);
 | |
| 			this.splitContainer1.Panel1.Controls.Add(this.cbShowFirst);
 | |
| 			this.splitContainer1.Panel1.Controls.Add(this.btnClosePdf);
 | |
| 			this.splitContainer1.Panel1.Controls.Add(this.btnRefresh);
 | |
| 			this.splitContainer1.Panel1.Controls.Add(this.lblDifferences);
 | |
| 			this.splitContainer1.Panel1.Controls.Add(this.label2);
 | |
| 			this.splitContainer1.Panel1.Controls.Add(this.label1);
 | |
| 			this.splitContainer1.Panel1.Controls.Add(this.cmbWith);
 | |
| 			this.splitContainer1.Panel1.Controls.Add(this.cmbCompare);
 | |
| 			this.splitContainer1.Panel1.Controls.Add(this.lbDifferences);
 | |
| 			// 
 | |
| 			// splitContainer1.Panel2
 | |
| 			// 
 | |
| 			this.splitContainer1.Panel2.Controls.Add(this.wb);
 | |
| 			this.splitContainer1.Size = new System.Drawing.Size(824, 502);
 | |
| 			this.splitContainer1.SplitterDistance = 324;
 | |
| 			this.splitContainer1.TabIndex = 4;
 | |
| 			// 
 | |
| 			// btnCopy
 | |
| 			// 
 | |
| 			this.btnCopy.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
 | |
| 									| System.Windows.Forms.AnchorStyles.Right)));
 | |
| 			this.btnCopy.Location = new System.Drawing.Point(204, 60);
 | |
| 			this.btnCopy.Name = "btnCopy";
 | |
| 			this.btnCopy.Size = new System.Drawing.Size(113, 21);
 | |
| 			this.btnCopy.TabIndex = 27;
 | |
| 			this.btnCopy.Text = "Copy List";
 | |
| 			this.btnCopy.UseVisualStyleBackColor = true;
 | |
| 			this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
 | |
| 			// 
 | |
| 			// cbShowFirst
 | |
| 			// 
 | |
| 			this.cbShowFirst.AutoSize = true;
 | |
| 			this.cbShowFirst.Checked = true;
 | |
| 			this.cbShowFirst.CheckState = System.Windows.Forms.CheckState.Checked;
 | |
| 			this.cbShowFirst.Location = new System.Drawing.Point(10, 63);
 | |
| 			this.cbShowFirst.Name = "cbShowFirst";
 | |
| 			this.cbShowFirst.Size = new System.Drawing.Size(173, 17);
 | |
| 			this.cbShowFirst.TabIndex = 26;
 | |
| 			this.cbShowFirst.Text = "Only show first for each section";
 | |
| 			this.cbShowFirst.UseVisualStyleBackColor = true;
 | |
| 			// 
 | |
| 			// btnClosePdf
 | |
| 			// 
 | |
| 			this.btnClosePdf.Location = new System.Drawing.Point(3, 32);
 | |
| 			this.btnClosePdf.Name = "btnClosePdf";
 | |
| 			this.btnClosePdf.Size = new System.Drawing.Size(88, 21);
 | |
| 			this.btnClosePdf.TabIndex = 25;
 | |
| 			this.btnClosePdf.Text = "Close Pdf";
 | |
| 			this.btnClosePdf.UseVisualStyleBackColor = true;
 | |
| 			this.btnClosePdf.Click += new System.EventHandler(this.btnClosePdf_Click);
 | |
| 			// 
 | |
| 			// btnRefresh
 | |
| 			// 
 | |
| 			this.btnRefresh.Location = new System.Drawing.Point(3, 5);
 | |
| 			this.btnRefresh.Name = "btnRefresh";
 | |
| 			this.btnRefresh.Size = new System.Drawing.Size(88, 21);
 | |
| 			this.btnRefresh.TabIndex = 24;
 | |
| 			this.btnRefresh.Text = "Refresh";
 | |
| 			this.btnRefresh.UseVisualStyleBackColor = true;
 | |
| 			this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
 | |
| 			// 
 | |
| 			// lblDifferences
 | |
| 			// 
 | |
| 			this.lblDifferences.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
 | |
| 									| System.Windows.Forms.AnchorStyles.Right)));
 | |
| 			this.lblDifferences.BackColor = System.Drawing.SystemColors.ActiveCaption;
 | |
| 			this.lblDifferences.Location = new System.Drawing.Point(0, 94);
 | |
| 			this.lblDifferences.Name = "lblDifferences";
 | |
| 			this.lblDifferences.Size = new System.Drawing.Size(322, 25);
 | |
| 			this.lblDifferences.TabIndex = 23;
 | |
| 			this.lblDifferences.Text = "Differences";
 | |
| 			this.lblDifferences.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
 | |
| 			// 
 | |
| 			// label2
 | |
| 			// 
 | |
| 			this.label2.Location = new System.Drawing.Point(105, 36);
 | |
| 			this.label2.Name = "label2";
 | |
| 			this.label2.Size = new System.Drawing.Size(49, 13);
 | |
| 			this.label2.TabIndex = 22;
 | |
| 			this.label2.Text = "With";
 | |
| 			this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
 | |
| 			// 
 | |
| 			// label1
 | |
| 			// 
 | |
| 			this.label1.Location = new System.Drawing.Point(105, 9);
 | |
| 			this.label1.Name = "label1";
 | |
| 			this.label1.Size = new System.Drawing.Size(49, 16);
 | |
| 			this.label1.TabIndex = 21;
 | |
| 			this.label1.Text = "Compare";
 | |
| 			// 
 | |
| 			// cmbWith
 | |
| 			// 
 | |
| 			this.cmbWith.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
 | |
| 									| System.Windows.Forms.AnchorStyles.Right)));
 | |
| 			this.cmbWith.Enabled = false;
 | |
| 			this.cmbWith.FormattingEnabled = true;
 | |
| 			this.cmbWith.Location = new System.Drawing.Point(160, 33);
 | |
| 			this.cmbWith.Name = "cmbWith";
 | |
| 			this.cmbWith.Size = new System.Drawing.Size(157, 21);
 | |
| 			this.cmbWith.TabIndex = 20;
 | |
| 			// 
 | |
| 			// cmbCompare
 | |
| 			// 
 | |
| 			this.cmbCompare.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
 | |
| 									| System.Windows.Forms.AnchorStyles.Right)));
 | |
| 			this.cmbCompare.Enabled = false;
 | |
| 			this.cmbCompare.FormattingEnabled = true;
 | |
| 			this.cmbCompare.Location = new System.Drawing.Point(160, 6);
 | |
| 			this.cmbCompare.Name = "cmbCompare";
 | |
| 			this.cmbCompare.Size = new System.Drawing.Size(157, 21);
 | |
| 			this.cmbCompare.TabIndex = 19;
 | |
| 			// 
 | |
| 			// lbDifferences
 | |
| 			// 
 | |
| 			this.lbDifferences.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.lbDifferences.Enabled = false;
 | |
| 			this.lbDifferences.FormattingEnabled = true;
 | |
| 			this.lbDifferences.Location = new System.Drawing.Point(0, 119);
 | |
| 			this.lbDifferences.Name = "lbDifferences";
 | |
| 			this.lbDifferences.Size = new System.Drawing.Size(322, 381);
 | |
| 			this.lbDifferences.TabIndex = 18;
 | |
| 			// 
 | |
| 			// wb
 | |
| 			// 
 | |
| 			this.wb.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
| 			this.wb.Location = new System.Drawing.Point(0, 0);
 | |
| 			this.wb.MinimumSize = new System.Drawing.Size(20, 20);
 | |
| 			this.wb.Name = "wb";
 | |
| 			this.wb.Size = new System.Drawing.Size(492, 498);
 | |
| 			this.wb.TabIndex = 4;
 | |
| 			// 
 | |
| 			// frmFindDifferences
 | |
| 			// 
 | |
| 			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
 | |
| 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
| 			this.ClientSize = new System.Drawing.Size(824, 574);
 | |
| 			this.Controls.Add(this.splitContainer1);
 | |
| 			this.Controls.Add(this.panel1);
 | |
| 			this.Name = "frmFindDifferences";
 | |
| 			this.Text = "Find Differences";
 | |
| 			this.Load += new System.EventHandler(this.frmFindDifferences_Load);
 | |
| 			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmFindDifferences_FormClosing);
 | |
| 			this.panel1.ResumeLayout(false);
 | |
| 			this.panel1.PerformLayout();
 | |
| 			this.splitContainer1.Panel1.ResumeLayout(false);
 | |
| 			this.splitContainer1.Panel1.PerformLayout();
 | |
| 			this.splitContainer1.Panel2.ResumeLayout(false);
 | |
| 			this.splitContainer1.ResumeLayout(false);
 | |
| 			this.ResumeLayout(false);
 | |
| 
 | |
| 		}
 | |
| 
 | |
| 		#endregion
 | |
| 
 | |
| 		private System.Windows.Forms.FolderBrowserDialog fbd;
 | |
| 		private System.Windows.Forms.Timer tmr;
 | |
| 		private System.Windows.Forms.Panel panel1;
 | |
| 		private System.Windows.Forms.TextBox tbPdf;
 | |
| 		private System.Windows.Forms.TextBox tbCompare;
 | |
| 		private System.Windows.Forms.Button btnPdf;
 | |
| 		private System.Windows.Forms.Button btnCompare;
 | |
| 		private System.Windows.Forms.SplitContainer splitContainer1;
 | |
| 		private System.Windows.Forms.Label lblDifferences;
 | |
| 		private System.Windows.Forms.Label label2;
 | |
| 		private System.Windows.Forms.Label label1;
 | |
| 		private System.Windows.Forms.ComboBox cmbWith;
 | |
| 		private System.Windows.Forms.ComboBox cmbCompare;
 | |
| 		private System.Windows.Forms.ListBox lbDifferences;
 | |
| 		private System.Windows.Forms.WebBrowser wb;
 | |
| 		private System.Windows.Forms.Button btnClosePdf;
 | |
| 		private System.Windows.Forms.Button btnRefresh;
 | |
| 		private System.Windows.Forms.CheckBox cbShowFirst;
 | |
| 		private System.Windows.Forms.Button btnCopy;
 | |
| 
 | |
| 	}
 | |
| }
 | |
| 
 |