Click here to Skip to main content
15,886,919 members
Articles / Programming Languages / C#

NetMeeting for Windows 7

Rate me:
Please Sign up or sign in to vote.
3.75/5 (9 votes)
1 Nov 2013CPOL2 min read 129.2K   10.4K   41  
Share Desktops between Windows 7 Systems
namespace MADMeeting.MainUI
{
    partial class MMChat
    {
        /// <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.rtb_chatmessages = new System.Windows.Forms.RichTextBox();
            this.rtb_sendmsg = new System.Windows.Forms.RichTextBox();
            this.btn_Send = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // rtb_chatmessages
            // 
            this.rtb_chatmessages.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.rtb_chatmessages.Location = new System.Drawing.Point(12, 12);
            this.rtb_chatmessages.Name = "rtb_chatmessages";
            this.rtb_chatmessages.ReadOnly = true;
            this.rtb_chatmessages.Size = new System.Drawing.Size(395, 190);
            this.rtb_chatmessages.TabIndex = 0;
            this.rtb_chatmessages.Text = "";
            // 
            // rtb_sendmsg
            // 
            this.rtb_sendmsg.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.rtb_sendmsg.Location = new System.Drawing.Point(12, 217);
            this.rtb_sendmsg.Multiline = false;
            this.rtb_sendmsg.Name = "rtb_sendmsg";
            this.rtb_sendmsg.Size = new System.Drawing.Size(307, 39);
            this.rtb_sendmsg.TabIndex = 1;
            this.rtb_sendmsg.Text = "";
            // 
            // btn_Send
            // 
            this.btn_Send.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btn_Send.Location = new System.Drawing.Point(325, 217);
            this.btn_Send.Name = "btn_Send";
            this.btn_Send.Size = new System.Drawing.Size(82, 39);
            this.btn_Send.TabIndex = 0;
            this.btn_Send.Text = "Send";
            this.btn_Send.UseVisualStyleBackColor = true;
            this.btn_Send.Click += new System.EventHandler(this.btn_Send_Click);
            // 
            // MMChat
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(419, 268);
            this.Controls.Add(this.btn_Send);
            this.Controls.Add(this.rtb_sendmsg);
            this.Controls.Add(this.rtb_chatmessages);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "MMChat";
            this.ShowIcon = false;
            this.Text = "MM Chat";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MMChat_FormClosing);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.RichTextBox rtb_chatmessages;
        private System.Windows.Forms.RichTextBox rtb_sendmsg;
        private System.Windows.Forms.Button btn_Send;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead KLA-Tencor
India India
Working in KLA-Tencor, Chennai as Technical Lead. Born in Bapatla, Guntur (dt), Andhra Pradesh. B.Tech from Bapatla Engineering College, M.Tech from IIT Kanpur.

Interesting areas include Image Processing, C# .NET.

Comments and Discussions