namespace deprotect { partial class MainForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.openAssembly = new System.Windows.Forms.LinkLabel(); this.label1 = new System.Windows.Forms.Label(); this.linkLabel1 = new System.Windows.Forms.LinkLabel(); this.launch = new System.Windows.Forms.LinkLabel(); this.results = new System.Windows.Forms.LinkLabel(); this.exeFile = new System.Windows.Forms.TextBox(); this.args = new System.Windows.Forms.TextBox(); this.workdirLink = new System.Windows.Forms.LinkLabel(); this.workdir = new System.Windows.Forms.TextBox(); this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.onlineHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.decyptionArticleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.dotexplorerInstallLink = new System.Windows.Forms.LinkLabel(); this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // // openAssembly // this.openAssembly.AutoSize = true; this.openAssembly.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.openAssembly.Location = new System.Drawing.Point(18, 73); this.openAssembly.Name = "openAssembly"; this.openAssembly.Size = new System.Drawing.Size(122, 13); this.openAssembly.TabIndex = 0; this.openAssembly.TabStop = true; this.openAssembly.Text = "Open an executable file "; this.openAssembly.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.openAssembly_LinkClicked); // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.ForeColor = System.Drawing.SystemColors.ActiveCaption; this.label1.Location = new System.Drawing.Point(12, 38); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(63, 22); this.label1.TabIndex = 1; this.label1.Text = "Steps"; // // linkLabel1 // this.linkLabel1.AutoSize = true; this.linkLabel1.Location = new System.Drawing.Point(18, 123); this.linkLabel1.Name = "linkLabel1"; this.linkLabel1.Size = new System.Drawing.Size(162, 13); this.linkLabel1.TabIndex = 2; this.linkLabel1.TabStop = true; this.linkLabel1.Text = "Specify command line arguments"; // // launch // this.launch.AutoSize = true; this.launch.Enabled = false; this.launch.Location = new System.Drawing.Point(18, 227); this.launch.Name = "launch"; this.launch.Size = new System.Drawing.Size(230, 13); this.launch.TabIndex = 3; this.launch.TabStop = true; this.launch.Text = "Launch, execute, decrypt and finish application"; this.launch.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.launch_LinkClicked); // // results // this.results.AutoSize = true; this.results.Enabled = false; this.results.Location = new System.Drawing.Point(18, 271); this.results.Name = "results"; this.results.Size = new System.Drawing.Size(63, 13); this.results.TabIndex = 4; this.results.TabStop = true; this.results.Text = "View results"; this.results.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.results_LinkClicked); // // exeFile // this.exeFile.Location = new System.Drawing.Point(33, 92); this.exeFile.Name = "exeFile"; this.exeFile.Size = new System.Drawing.Size(408, 20); this.exeFile.TabIndex = 5; this.exeFile.TextChanged += new System.EventHandler(this.exeFile_TextChanged); // // args // this.args.Location = new System.Drawing.Point(33, 139); this.args.Name = "args"; this.args.Size = new System.Drawing.Size(408, 20); this.args.TabIndex = 6; // // workdirLink // this.workdirLink.AutoSize = true; this.workdirLink.Location = new System.Drawing.Point(18, 170); this.workdirLink.Name = "workdirLink"; this.workdirLink.Size = new System.Drawing.Size(134, 13); this.workdirLink.TabIndex = 7; this.workdirLink.TabStop = true; this.workdirLink.Text = "Specify a working directory"; this.workdirLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.workdir_LinkClicked); // // workdir // this.workdir.Location = new System.Drawing.Point(33, 186); this.workdir.Name = "workdir"; this.workdir.Size = new System.Drawing.Size(408, 20); this.workdir.TabIndex = 8; // // menuStrip1 // this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.helpToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(487, 24); this.menuStrip1.TabIndex = 9; this.menuStrip1.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.exitToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(40, 20); this.fileToolStripMenuItem.Text = "File"; // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(96, 22); this.exitToolStripMenuItem.Text = "Exit"; this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // helpToolStripMenuItem // this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.onlineHelpToolStripMenuItem, this.decyptionArticleToolStripMenuItem, this.aboutToolStripMenuItem}); this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; this.helpToolStripMenuItem.Size = new System.Drawing.Size(45, 20); this.helpToolStripMenuItem.Text = "Help"; // // onlineHelpToolStripMenuItem // this.onlineHelpToolStripMenuItem.Name = "onlineHelpToolStripMenuItem"; this.onlineHelpToolStripMenuItem.Size = new System.Drawing.Size(207, 22); this.onlineHelpToolStripMenuItem.Text = "Online Help"; this.onlineHelpToolStripMenuItem.Click += new System.EventHandler(this.onlineHelpToolStripMenuItem_Click); // // decyptionArticleToolStripMenuItem // this.decyptionArticleToolStripMenuItem.Name = "decyptionArticleToolStripMenuItem"; this.decyptionArticleToolStripMenuItem.Size = new System.Drawing.Size(211, 22); this.decyptionArticleToolStripMenuItem.Text = "DeProtector home page"; this.decyptionArticleToolStripMenuItem.Click += new System.EventHandler(this.decyptionArticleToolStripMenuItem_Click); // // aboutToolStripMenuItem // this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; this.aboutToolStripMenuItem.Size = new System.Drawing.Size(207, 22); this.aboutToolStripMenuItem.Text = "About..."; this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click); // // dotexplorerInstallLink // this.dotexplorerInstallLink.AutoSize = true; this.dotexplorerInstallLink.Enabled = false; this.dotexplorerInstallLink.Location = new System.Drawing.Point(102, 271); this.dotexplorerInstallLink.Name = "dotexplorerInstallLink"; this.dotexplorerInstallLink.Size = new System.Drawing.Size(166, 13); this.dotexplorerInstallLink.TabIndex = 10; this.dotexplorerInstallLink.TabStop = true; this.dotexplorerInstallLink.Text = "Install Remotesoft .NET Expplorer"; this.dotexplorerInstallLink.Visible = false; this.dotexplorerInstallLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.dotexplorerInstallLink_LinkClicked); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(487, 327); this.Controls.Add(this.dotexplorerInstallLink); this.Controls.Add(this.workdir); this.Controls.Add(this.workdirLink); this.Controls.Add(this.args); this.Controls.Add(this.exeFile); this.Controls.Add(this.results); this.Controls.Add(this.launch); this.Controls.Add(this.linkLabel1); this.Controls.Add(this.label1); this.Controls.Add(this.openAssembly); this.Controls.Add(this.menuStrip1); this.ForeColor = System.Drawing.Color.GreenYellow; this.MainMenuStrip = this.menuStrip1; this.Name = "MainForm"; this.Text = "Sample DeProtector by Huihong Luo"; this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.LinkLabel openAssembly; private System.Windows.Forms.Label label1; private System.Windows.Forms.LinkLabel linkLabel1; private System.Windows.Forms.LinkLabel launch; private System.Windows.Forms.LinkLabel results; private System.Windows.Forms.TextBox exeFile; private System.Windows.Forms.TextBox args; private System.Windows.Forms.LinkLabel workdirLink; private System.Windows.Forms.TextBox workdir; private System.Windows.Forms.OpenFileDialog openFileDialog; private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog; private System.Windows.Forms.MenuStrip menuStrip1; private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem onlineHelpToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem decyptionArticleToolStripMenuItem; private System.Windows.Forms.LinkLabel dotexplorerInstallLink; } }