namespace SendEmail
{
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.labelFrom = new System.Windows.Forms.Label();
this.labelTo = new System.Windows.Forms.Label();
this.labelSubject = new System.Windows.Forms.Label();
this.labelBody = new System.Windows.Forms.Label();
this.textBoxFrom = new System.Windows.Forms.TextBox();
this.textBoxTo = new System.Windows.Forms.TextBox();
this.textBoxSubject = new System.Windows.Forms.TextBox();
this.textBoxBody = new System.Windows.Forms.TextBox();
this.buttonSend = new System.Windows.Forms.Button();
this.labelServer = new System.Windows.Forms.Label();
this.textBoxServer = new System.Windows.Forms.TextBox();
this.labelPort = new System.Windows.Forms.Label();
this.textBoxPort = new System.Windows.Forms.TextBox();
this.labelTimeElapsed = new System.Windows.Forms.Label();
this.textBoxTimeElapsed = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// labelFrom
//
this.labelFrom.AutoSize = true;
this.labelFrom.Location = new System.Drawing.Point(9, 63);
this.labelFrom.Name = "labelFrom";
this.labelFrom.Size = new System.Drawing.Size(30, 13);
this.labelFrom.TabIndex = 0;
this.labelFrom.Text = "From";
//
// labelTo
//
this.labelTo.AutoSize = true;
this.labelTo.Location = new System.Drawing.Point(9, 89);
this.labelTo.Name = "labelTo";
this.labelTo.Size = new System.Drawing.Size(20, 13);
this.labelTo.TabIndex = 1;
this.labelTo.Text = "To";
//
// labelSubject
//
this.labelSubject.AutoSize = true;
this.labelSubject.Location = new System.Drawing.Point(9, 115);
this.labelSubject.Name = "labelSubject";
this.labelSubject.Size = new System.Drawing.Size(43, 13);
this.labelSubject.TabIndex = 2;
this.labelSubject.Text = "Subject";
//
// labelBody
//
this.labelBody.AutoSize = true;
this.labelBody.Location = new System.Drawing.Point(9, 143);
this.labelBody.Name = "labelBody";
this.labelBody.Size = new System.Drawing.Size(31, 13);
this.labelBody.TabIndex = 3;
this.labelBody.Text = "Body";
//
// textBoxFrom
//
this.textBoxFrom.Location = new System.Drawing.Point(59, 63);
this.textBoxFrom.Name = "textBoxFrom";
this.textBoxFrom.Size = new System.Drawing.Size(375, 20);
this.textBoxFrom.TabIndex = 4;
this.textBoxFrom.Text = "emailAlerts@Transcore.com";
//
// textBoxTo
//
this.textBoxTo.Location = new System.Drawing.Point(59, 89);
this.textBoxTo.Name = "textBoxTo";
this.textBoxTo.Size = new System.Drawing.Size(375, 20);
this.textBoxTo.TabIndex = 5;
this.textBoxTo.Text = "kevin.jones@Transcore.com";
//
// textBoxSubject
//
this.textBoxSubject.Location = new System.Drawing.Point(59, 115);
this.textBoxSubject.Name = "textBoxSubject";
this.textBoxSubject.Size = new System.Drawing.Size(375, 20);
this.textBoxSubject.TabIndex = 6;
this.textBoxSubject.Text = "Test Email";
//
// textBoxBody
//
this.textBoxBody.Location = new System.Drawing.Point(12, 160);
this.textBoxBody.Multiline = true;
this.textBoxBody.Name = "textBoxBody";
this.textBoxBody.Size = new System.Drawing.Size(422, 157);
this.textBoxBody.TabIndex = 7;
this.textBoxBody.Text = "This is a test.";
//
// buttonSend
//
this.buttonSend.Location = new System.Drawing.Point(12, 324);
this.buttonSend.Name = "buttonSend";
this.buttonSend.Size = new System.Drawing.Size(422, 54);
this.buttonSend.TabIndex = 8;
this.buttonSend.Text = "Send";
this.buttonSend.UseVisualStyleBackColor = true;
this.buttonSend.Click += new System.EventHandler(this.buttonSend_Click);
//
// labelServer
//
this.labelServer.AutoSize = true;
this.labelServer.Location = new System.Drawing.Point(12, 13);
this.labelServer.Name = "labelServer";
this.labelServer.Size = new System.Drawing.Size(71, 13);
this.labelServer.TabIndex = 9;
this.labelServer.Text = "SMTP Server";
//
// textBoxServer
//
this.textBoxServer.Location = new System.Drawing.Point(89, 10);
this.textBoxServer.Name = "textBoxServer";
this.textBoxServer.Size = new System.Drawing.Size(159, 20);
this.textBoxServer.TabIndex = 10;
this.textBoxServer.Text = "HBGVMEXCH16.tcore.com";
//
// labelPort
//
this.labelPort.AutoSize = true;
this.labelPort.Location = new System.Drawing.Point(254, 13);
this.labelPort.Name = "labelPort";
this.labelPort.Size = new System.Drawing.Size(26, 13);
this.labelPort.TabIndex = 11;
this.labelPort.Text = "Port";
//
// textBoxPort
//
this.textBoxPort.Location = new System.Drawing.Point(286, 10);
this.textBoxPort.Name = "textBoxPort";
this.textBoxPort.Size = new System.Drawing.Size(38, 20);
this.textBoxPort.TabIndex = 12;
this.textBoxPort.Text = "25";
//
// labelTimeElapsed
//
this.labelTimeElapsed.AutoSize = true;
this.labelTimeElapsed.Location = new System.Drawing.Point(15, 392);
this.labelTimeElapsed.Name = "labelTimeElapsed";
this.labelTimeElapsed.Size = new System.Drawing.Size(71, 13);
this.labelTimeElapsed.TabIndex = 13;
this.labelTimeElapsed.Text = "Time Elapsed";
//
// textBoxTimeElapsed
//
this.textBoxTimeElapsed.Location = new System.Drawing.Point(92, 389);
this.textBoxTimeElapsed.Name = "textBoxTimeElapsed";
this.textBoxTimeElapsed.ReadOnly = true;
this.textBoxTimeElapsed.Size = new System.Drawing.Size(342, 20);
this.textBoxTimeElapsed.TabIndex = 14;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(450, 417);
this.Controls.Add(this.textBoxTimeElapsed);
this.Controls.Add(this.labelTimeElapsed);
this.Controls.Add(this.textBoxPort);
this.Controls.Add(this.labelPort);
this.Controls.Add(this.textBoxServer);
this.Controls.Add(this.labelServer);
this.Controls.Add(this.buttonSend);
this.Controls.Add(this.textBoxBody);
this.Controls.Add(this.textBoxSubject);
this.Controls.Add(this.textBoxTo);
this.Controls.Add(this.textBoxFrom);
this.Controls.Add(this.labelBody);
this.Controls.Add(this.labelSubject);
this.Controls.Add(this.labelTo);
this.Controls.Add(this.labelFrom);
this.Name = "Form1";
this.Text = "Test Email";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label labelFrom;
private System.Windows.Forms.Label labelTo;
private System.Windows.Forms.Label labelSubject;
private System.Windows.Forms.Label labelBody;
private System.Windows.Forms.TextBox textBoxFrom;
private System.Windows.Forms.TextBox textBoxTo;
private System.Windows.Forms.TextBox textBoxSubject;
private System.Windows.Forms.TextBox textBoxBody;
private System.Windows.Forms.Button buttonSend;
private System.Windows.Forms.Label labelServer;
private System.Windows.Forms.TextBox textBoxServer;
private System.Windows.Forms.Label labelPort;
private System.Windows.Forms.TextBox textBoxPort;
private System.Windows.Forms.Label labelTimeElapsed;
private System.Windows.Forms.TextBox textBoxTimeElapsed;
}
}