100 lines
4.0 KiB
C#
Executable File
100 lines
4.0 KiB
C#
Executable File
namespace RandonNumberFileWriterOne_CalebFontenot
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.iterateTextBox = new System.Windows.Forms.TextBox();
|
|
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
|
|
this.executeButton = new System.Windows.Forms.Button();
|
|
this.exitButton = new System.Windows.Forms.Button();
|
|
this.groupBox1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.iterateTextBox);
|
|
this.groupBox1.Location = new System.Drawing.Point(12, 12);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(212, 62);
|
|
this.groupBox1.TabIndex = 0;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "Enter the number of times to iterate";
|
|
//
|
|
// iterateTextBox
|
|
//
|
|
this.iterateTextBox.Location = new System.Drawing.Point(6, 22);
|
|
this.iterateTextBox.Name = "iterateTextBox";
|
|
this.iterateTextBox.Size = new System.Drawing.Size(200, 23);
|
|
this.iterateTextBox.TabIndex = 0;
|
|
//
|
|
// executeButton
|
|
//
|
|
this.executeButton.Location = new System.Drawing.Point(12, 80);
|
|
this.executeButton.Name = "executeButton";
|
|
this.executeButton.Size = new System.Drawing.Size(100, 23);
|
|
this.executeButton.TabIndex = 1;
|
|
this.executeButton.Text = "Write to File";
|
|
this.executeButton.UseVisualStyleBackColor = true;
|
|
this.executeButton.Click += new System.EventHandler(this.executeButton_Click);
|
|
//
|
|
// exitButton
|
|
//
|
|
this.exitButton.Location = new System.Drawing.Point(124, 80);
|
|
this.exitButton.Name = "exitButton";
|
|
this.exitButton.Size = new System.Drawing.Size(100, 23);
|
|
this.exitButton.TabIndex = 2;
|
|
this.exitButton.Text = "Exit";
|
|
this.exitButton.UseVisualStyleBackColor = true;
|
|
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(236, 115);
|
|
this.Controls.Add(this.exitButton);
|
|
this.Controls.Add(this.executeButton);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Name = "Form1";
|
|
this.Text = "Random Number Generator - Caleb Fontenot";
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private GroupBox groupBox1;
|
|
private TextBox iterateTextBox;
|
|
private SaveFileDialog saveFileDialog1;
|
|
private Button executeButton;
|
|
private Button exitButton;
|
|
}
|
|
} |