partial class FileTestForm1 { /// /// 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.outputTextBox = new System.Windows.Forms.TextBox(); this.button1 = new System.Windows.Forms.Button(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog(); this.button2 = new System.Windows.Forms.Button(); this.SuspendLayout(); // // outputTextBox // this.outputTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.outputTextBox.Location = new System.Drawing.Point(57, 111); this.outputTextBox.Multiline = true; this.outputTextBox.Name = "outputTextBox"; this.outputTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.outputTextBox.Size = new System.Drawing.Size(357, 238); this.outputTextBox.TabIndex = 0; this.outputTextBox.Text = "File/Directory Info."; // // button1 // this.button1.Location = new System.Drawing.Point(270, 14); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(144, 46); this.button1.TabIndex = 3; this.button1.Text = "Open file dialog box"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click); // // openFileDialog1 // this.openFileDialog1.FileName = "openFileDialog1"; this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk); // // folderBrowserDialog1 // this.folderBrowserDialog1.SelectedPath = "C:\\Documents and Settings\\spannm\\Desktop"; // // button2 // this.button2.Location = new System.Drawing.Point(57, 12); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(163, 47); this.button2.TabIndex = 4; this.button2.Text = "Open folder browser"; this.button2.UseVisualStyleBackColor = true; this.button2.Click += new System.EventHandler(this.button2_Click); // // FileTestForm1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(435, 404); this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Controls.Add(this.outputTextBox); this.Name = "FileTestForm1"; this.Text = "File Test"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox outputTextBox; private System.Windows.Forms.Button button1; private System.Windows.Forms.OpenFileDialog openFileDialog1; private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1; private System.Windows.Forms.Button button2; }