/*
i-net software provides programming examples for illustration only, without warranty
either expressed or implied, including, but not limited to, the implied warranties
of merchantability and/or fitness for a particular purpose. This programming example
assumes that you are familiar with the programming language being demonstrated and
the tools used to create and debug procedures. i-net software support professionals
can help explain the functionality of a particular procedure, but they will not modify
these examples to provide added functionality or construct procedures to meet your
specific needs.
© i-net software 1998-2013
*/
namespace Inet.Viewer
{
partial class MyMessageBox
{
///
/// 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.txtErrorDetails = new System.Windows.Forms.TextBox();
this.txtMessage = new System.Windows.Forms.TextBox();
this.btnOK = new System.Windows.Forms.Button();
this.lblMessageDetails = new System.Windows.Forms.Label();
this.btnDetails = new System.Windows.Forms.Button();
this.imgError = new System.Windows.Forms.PictureBox();
this.panel1 = new System.Windows.Forms.Panel();
this.panelDetail = new System.Windows.Forms.Panel();
this.wbDetails = new System.Windows.Forms.WebBrowser();
this.panel2 = new System.Windows.Forms.Panel();
((System.ComponentModel.ISupportInitialize)(this.imgError)).BeginInit();
this.panel1.SuspendLayout();
this.panelDetail.SuspendLayout();
this.panel2.SuspendLayout();
this.SuspendLayout();
//
// txtErrorDetails
//
this.txtErrorDetails.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.txtErrorDetails.Cursor = System.Windows.Forms.Cursors.Default;
this.txtErrorDetails.Location = new System.Drawing.Point(0, 0);
this.txtErrorDetails.Multiline = true;
this.txtErrorDetails.Name = "txtErrorDetails";
this.txtErrorDetails.ReadOnly = true;
this.txtErrorDetails.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.txtErrorDetails.Size = new System.Drawing.Size(523, 251);
this.txtErrorDetails.TabIndex = 0;
//
// txtMessage
//
this.txtMessage.BackColor = System.Drawing.Color.WhiteSmoke;
this.txtMessage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtMessage.Location = new System.Drawing.Point(67, 10);
this.txtMessage.Margin = new System.Windows.Forms.Padding(10);
this.txtMessage.MinimumSize = new System.Drawing.Size(2, 50);
this.txtMessage.Multiline = true;
this.txtMessage.Name = "txtMessage";
this.txtMessage.ReadOnly = true;
this.txtMessage.Size = new System.Drawing.Size(478, 83);
this.txtMessage.TabIndex = 1;
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.Location = new System.Drawing.Point(470, 11);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 2;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.BtnOKClick);
//
// lblMessageDetails
//
this.lblMessageDetails.AutoSize = true;
this.lblMessageDetails.Location = new System.Drawing.Point(22, 102);
this.lblMessageDetails.Name = "lblMessageDetails";
this.lblMessageDetails.Size = new System.Drawing.Size(85, 13);
this.lblMessageDetails.TabIndex = 4;
this.lblMessageDetails.Text = "Message Details";
//
// btnDetails
//
this.btnDetails.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnDetails.Location = new System.Drawing.Point(349, 11);
this.btnDetails.Name = "btnDetails";
this.btnDetails.Size = new System.Drawing.Size(115, 23);
this.btnDetails.TabIndex = 5;
this.btnDetails.Text = "Details";
this.btnDetails.UseVisualStyleBackColor = true;
this.btnDetails.Click += new System.EventHandler(this.BtnDetailsClick);
//
// imgError
//
this.imgError.BackColor = System.Drawing.Color.Transparent;
this.imgError.Location = new System.Drawing.Point(20, 33);
this.imgError.Name = "imgError";
this.imgError.Size = new System.Drawing.Size(32, 32);
this.imgError.TabIndex = 6;
this.imgError.TabStop = false;
//
// panel1
//
this.panel1.Controls.Add(this.panelDetail);
this.panel1.Controls.Add(this.imgError);
this.panel1.Controls.Add(this.lblMessageDetails);
this.panel1.Controls.Add(this.txtMessage);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(555, 424);
this.panel1.TabIndex = 7;
//
// panelDetail
//
this.panelDetail.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.panelDetail.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panelDetail.Controls.Add(this.txtErrorDetails);
this.panelDetail.Controls.Add(this.wbDetails);
this.panelDetail.Location = new System.Drawing.Point(20, 119);
this.panelDetail.Name = "panelDetail";
this.panelDetail.Size = new System.Drawing.Size(525, 253);
this.panelDetail.TabIndex = 8;
//
// wbDetails
//
this.wbDetails.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.wbDetails.Location = new System.Drawing.Point(0, 0);
this.wbDetails.MinimumSize = new System.Drawing.Size(20, 20);
this.wbDetails.Name = "wbDetails";
this.wbDetails.Size = new System.Drawing.Size(523, 251);
this.wbDetails.TabIndex = 7;
//
// panel2
//
this.panel2.Controls.Add(this.btnDetails);
this.panel2.Controls.Add(this.btnOK);
this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel2.Location = new System.Drawing.Point(0, 378);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(555, 46);
this.panel2.TabIndex = 8;
//
// MyMessageBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(555, 424);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.MinimumSize = new System.Drawing.Size(250, 178);
this.Name = "MyMessageBox";
this.Text = "Message";
((System.ComponentModel.ISupportInitialize)(this.imgError)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panelDetail.ResumeLayout(false);
this.panelDetail.PerformLayout();
this.panel2.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox txtErrorDetails;
private System.Windows.Forms.TextBox txtMessage;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Label lblMessageDetails;
private System.Windows.Forms.Button btnDetails;
private System.Windows.Forms.PictureBox imgError;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.WebBrowser wbDetails;
private System.Windows.Forms.Panel panelDetail;
}
}