namespace WindowsFormsApplication1 { partial class HistoryForm { /// /// 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.label1 = new System.Windows.Forms.Label(); this.configTextBox = new System.Windows.Forms.TextBox(); this.stopButton = new System.Windows.Forms.Button(); this.startButton = new System.Windows.Forms.Button(); this.label2 = new System.Windows.Forms.Label(); this.resultTextBox = new System.Windows.Forms.TextBox(); this.createButton = new System.Windows.Forms.Button(); this.startDateTimePicker = new System.Windows.Forms.DateTimePicker(); this.endDateTimePicker = new System.Windows.Forms.DateTimePicker(); this.label3 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.statusLabel = new System.Windows.Forms.Label(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(40, 13); this.label1.TabIndex = 0; this.label1.Text = "Config:"; // // configTextBox // this.configTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.configTextBox.Location = new System.Drawing.Point(15, 25); this.configTextBox.Name = "configTextBox"; this.configTextBox.Size = new System.Drawing.Size(265, 20); this.configTextBox.TabIndex = 1; // // stopButton // this.stopButton.Enabled = false; this.stopButton.Location = new System.Drawing.Point(177, 103); this.stopButton.Name = "stopButton"; this.stopButton.Size = new System.Drawing.Size(75, 23); this.stopButton.TabIndex = 10; this.stopButton.Text = "Stop"; this.stopButton.UseVisualStyleBackColor = true; this.stopButton.Click += new System.EventHandler(this.stopButton_Click); // // startButton // this.startButton.Enabled = false; this.startButton.Location = new System.Drawing.Point(96, 103); this.startButton.Name = "startButton"; this.startButton.Size = new System.Drawing.Size(75, 23); this.startButton.TabIndex = 9; this.startButton.Text = "Start"; this.startButton.UseVisualStyleBackColor = true; this.startButton.Click += new System.EventHandler(this.startButton_Click); // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(12, 129); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(45, 13); this.label2.TabIndex = 11; this.label2.Text = "Results:"; // // resultTextBox // this.resultTextBox.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.resultTextBox.Location = new System.Drawing.Point(15, 145); this.resultTextBox.Multiline = true; this.resultTextBox.Name = "resultTextBox"; this.resultTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.resultTextBox.Size = new System.Drawing.Size(265, 93); this.resultTextBox.TabIndex = 12; this.resultTextBox.WordWrap = false; // // createButton // this.createButton.Location = new System.Drawing.Point(15, 103); this.createButton.Name = "createButton"; this.createButton.Size = new System.Drawing.Size(75, 23); this.createButton.TabIndex = 8; this.createButton.Text = "Create"; this.createButton.UseVisualStyleBackColor = true; this.createButton.Click += new System.EventHandler(this.createButton_Click); // // startDateTimePicker // this.startDateTimePicker.Checked = false; this.startDateTimePicker.CustomFormat = "h:mm:ss tt M/dd/yyyy"; this.startDateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom; this.startDateTimePicker.Location = new System.Drawing.Point(50, 51); this.startDateTimePicker.Name = "startDateTimePicker"; this.startDateTimePicker.ShowCheckBox = true; this.startDateTimePicker.Size = new System.Drawing.Size(164, 20); this.startDateTimePicker.TabIndex = 13; // // endDateTimePicker // this.endDateTimePicker.Checked = false; this.endDateTimePicker.CustomFormat = "h:mm:ss tt M/dd/yyyy"; this.endDateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom; this.endDateTimePicker.Location = new System.Drawing.Point(50, 77); this.endDateTimePicker.Name = "endDateTimePicker"; this.endDateTimePicker.ShowCheckBox = true; this.endDateTimePicker.Size = new System.Drawing.Size(164, 20); this.endDateTimePicker.TabIndex = 14; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(12, 55); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(32, 13); this.label3.TabIndex = 15; this.label3.Text = "Start:"; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(12, 81); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(29, 13); this.label4.TabIndex = 16; this.label4.Text = "End:"; // // statusLabel // this.statusLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.statusLabel.AutoSize = true; this.statusLabel.Location = new System.Drawing.Point(12, 241); this.statusLabel.Name = "statusLabel"; this.statusLabel.Size = new System.Drawing.Size(69, 13); this.statusLabel.TabIndex = 17; this.statusLabel.Text = "No alerts yet."; // // HistoryForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(292, 266); this.Controls.Add(this.statusLabel); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.endDateTimePicker); this.Controls.Add(this.startDateTimePicker); this.Controls.Add(this.createButton); this.Controls.Add(this.resultTextBox); this.Controls.Add(this.label2); this.Controls.Add(this.stopButton); this.Controls.Add(this.startButton); this.Controls.Add(this.configTextBox); this.Controls.Add(this.label1); this.Name = "HistoryForm"; this.Text = "HistoryForm"; this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.HistoryForm_FormClosed); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox configTextBox; private System.Windows.Forms.Button stopButton; private System.Windows.Forms.Button startButton; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox resultTextBox; private System.Windows.Forms.Button createButton; private System.Windows.Forms.DateTimePicker startDateTimePicker; private System.Windows.Forms.DateTimePicker endDateTimePicker; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label4; private System.Windows.Forms.Label statusLabel; } }