namespace WindowsFormsApp8 { partial class Form1 { /// /// 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.OutputText = new System.Windows.Forms.RichTextBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.Query1_UpDown = new System.Windows.Forms.NumericUpDown(); this.Query1_Button = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.Query1_LessThan = new System.Windows.Forms.RadioButton(); this.Query1_GreaterThan = new System.Windows.Forms.RadioButton(); this.Query1_Sorted = new System.Windows.Forms.CheckBox(); this.label3 = new System.Windows.Forms.Label(); this.Query2_Button = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.Query1_UpDown)).BeginInit(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // OutputText // this.OutputText.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.OutputText.Location = new System.Drawing.Point(390, 33); this.OutputText.Name = "OutputText"; this.OutputText.Size = new System.Drawing.Size(398, 405); this.OutputText.TabIndex = 0; this.OutputText.Text = ""; // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.ForeColor = System.Drawing.Color.White; this.label1.Location = new System.Drawing.Point(386, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(64, 20); this.label1.TabIndex = 1; this.label1.Text = "Output"; // // label2 // this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.ForeColor = System.Drawing.Color.White; this.label2.Location = new System.Drawing.Point(12, 9); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(177, 20); this.label2.TabIndex = 2; this.label2.Text = "Where Index[0] N"; // // Query1_UpDown // this.Query1_UpDown.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Query1_UpDown.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.Query1_UpDown.Location = new System.Drawing.Point(16, 33); this.Query1_UpDown.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.Query1_UpDown.Name = "Query1_UpDown"; this.Query1_UpDown.Size = new System.Drawing.Size(173, 26); this.Query1_UpDown.TabIndex = 3; // // Query1_Button // this.Query1_Button.Location = new System.Drawing.Point(309, 33); this.Query1_Button.Name = "Query1_Button"; this.Query1_Button.Size = new System.Drawing.Size(75, 23); this.Query1_Button.TabIndex = 4; this.Query1_Button.Text = "Query1"; this.Query1_Button.UseVisualStyleBackColor = true; this.Query1_Button.Click += new System.EventHandler(this.Query1_Button_Click); // // groupBox1 // this.groupBox1.Controls.Add(this.Query1_GreaterThan); this.groupBox1.Controls.Add(this.Query1_LessThan); this.groupBox1.ForeColor = System.Drawing.Color.White; this.groupBox1.Location = new System.Drawing.Point(16, 66); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(173, 47); this.groupBox1.TabIndex = 5; this.groupBox1.TabStop = false; this.groupBox1.Text = "Less/Greater Than"; // // Query1_LessThan // this.Query1_LessThan.AutoSize = true; this.Query1_LessThan.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Query1_LessThan.Location = new System.Drawing.Point(7, 20); this.Query1_LessThan.Name = "Query1_LessThan"; this.Query1_LessThan.Size = new System.Drawing.Size(34, 20); this.Query1_LessThan.TabIndex = 0; this.Query1_LessThan.TabStop = true; this.Query1_LessThan.Text = "<"; this.Query1_LessThan.UseVisualStyleBackColor = true; // // Query1_GreaterThan // this.Query1_GreaterThan.AutoSize = true; this.Query1_GreaterThan.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Query1_GreaterThan.Location = new System.Drawing.Point(133, 19); this.Query1_GreaterThan.Name = "Query1_GreaterThan"; this.Query1_GreaterThan.Size = new System.Drawing.Size(34, 20); this.Query1_GreaterThan.TabIndex = 1; this.Query1_GreaterThan.TabStop = true; this.Query1_GreaterThan.Text = ">"; this.Query1_GreaterThan.UseVisualStyleBackColor = true; // // Query1_Sorted // this.Query1_Sorted.AutoSize = true; this.Query1_Sorted.ForeColor = System.Drawing.Color.White; this.Query1_Sorted.Location = new System.Drawing.Point(16, 120); this.Query1_Sorted.Name = "Query1_Sorted"; this.Query1_Sorted.Size = new System.Drawing.Size(63, 17); this.Query1_Sorted.TabIndex = 6; this.Query1_Sorted.Text = "Sorted?"; this.Query1_Sorted.UseVisualStyleBackColor = true; // // label3 // this.label3.AutoSize = true; this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.ForeColor = System.Drawing.Color.White; this.label3.Location = new System.Drawing.Point(12, 155); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(244, 20); this.label3.TabIndex = 7; this.label3.Text = "Group By the First Digit of [3]"; // // Query2_Button // this.Query2_Button.Location = new System.Drawing.Point(309, 182); this.Query2_Button.Name = "Query2_Button"; this.Query2_Button.Size = new System.Drawing.Size(75, 23); this.Query2_Button.TabIndex = 8; this.Query2_Button.Text = "Query1"; this.Query2_Button.UseVisualStyleBackColor = true; this.Query2_Button.Click += new System.EventHandler(this.Query2_Button_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.Black; this.ClientSize = new System.Drawing.Size(800, 450); this.Controls.Add(this.Query2_Button); this.Controls.Add(this.label3); this.Controls.Add(this.Query1_Sorted); this.Controls.Add(this.groupBox1); this.Controls.Add(this.Query1_Button); this.Controls.Add(this.Query1_UpDown); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.OutputText); this.Name = "Form1"; this.Text = "Form1"; ((System.ComponentModel.ISupportInitialize)(this.Query1_UpDown)).EndInit(); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.RichTextBox OutputText; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.NumericUpDown Query1_UpDown; private System.Windows.Forms.Button Query1_Button; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.RadioButton Query1_GreaterThan; private System.Windows.Forms.RadioButton Query1_LessThan; private System.Windows.Forms.CheckBox Query1_Sorted; private System.Windows.Forms.Label label3; private System.Windows.Forms.Button Query2_Button; } }