Click here to Skip to main content
15,893,904 members
Articles / Programming Languages / C#

Screen Cast Server with Control

Rate me:
Please Sign up or sign in to vote.
4.66/5 (19 votes)
29 Sep 2009CPOL2 min read 50.3K   2.1K   44  
A screen cast server with mouse, keyboard, and clipboard control
namespace ScreenCastClient
{
    partial class Client
    {
        /// <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.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Client));
            this.pnlTopMenu = new System.Windows.Forms.Panel();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.tbRefreshRate = new System.Windows.Forms.TrackBar();
            this.lblRefreshRate = new System.Windows.Forms.Label();
            this.groupBox4 = new System.Windows.Forms.GroupBox();
            this.btnClipboardSet = new System.Windows.Forms.Button();
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.btnClipboardGet = new System.Windows.Forms.Button();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.chkMouse = new System.Windows.Forms.CheckBox();
            this.chkKeyboard = new System.Windows.Forms.CheckBox();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.txtIPAddress = new System.Windows.Forms.TextBox();
            this.btnConnect = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.cmbCompression = new System.Windows.Forms.ComboBox();
            this.btnInfo = new System.Windows.Forms.Button();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.showHideMenuToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.castTimer = new System.Windows.Forms.Timer(this.components);
            this.bgWorker1 = new System.ComponentModel.BackgroundWorker();
            this.pnlBottom = new System.Windows.Forms.Panel();
            this.btnShowHide = new System.Windows.Forms.Button();
            this.imageList2 = new System.Windows.Forms.ImageList(this.components);
            this.lblInput = new System.Windows.Forms.Label();
            this.lblMessage = new System.Windows.Forms.Label();
            this.pbarProgress = new System.Windows.Forms.ProgressBar();
            this.label3 = new System.Windows.Forms.Label();
            this.picCast = new System.Windows.Forms.PictureBox();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.pnlTopMenu.SuspendLayout();
            this.groupBox5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tbRefreshRate)).BeginInit();
            this.groupBox4.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.contextMenuStrip1.SuspendLayout();
            this.pnlBottom.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picCast)).BeginInit();
            this.SuspendLayout();
            // 
            // pnlTopMenu
            // 
            this.pnlTopMenu.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
            this.pnlTopMenu.Controls.Add(this.groupBox5);
            this.pnlTopMenu.Controls.Add(this.groupBox4);
            this.pnlTopMenu.Controls.Add(this.groupBox3);
            this.pnlTopMenu.Controls.Add(this.groupBox2);
            this.pnlTopMenu.Controls.Add(this.groupBox1);
            this.pnlTopMenu.Controls.Add(this.btnInfo);
            this.pnlTopMenu.Dock = System.Windows.Forms.DockStyle.Top;
            this.pnlTopMenu.Location = new System.Drawing.Point(0, 0);
            this.pnlTopMenu.Name = "pnlTopMenu";
            this.pnlTopMenu.Size = new System.Drawing.Size(792, 55);
            this.pnlTopMenu.TabIndex = 0;
            // 
            // groupBox5
            // 
            this.groupBox5.Controls.Add(this.tbRefreshRate);
            this.groupBox5.Controls.Add(this.lblRefreshRate);
            this.groupBox5.Location = new System.Drawing.Point(463, 1);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(143, 50);
            this.groupBox5.TabIndex = 19;
            this.groupBox5.TabStop = false;
            this.groupBox5.Text = "Refresh Rate";
            // 
            // tbRefreshRate
            // 
            this.tbRefreshRate.AutoSize = false;
            this.tbRefreshRate.Dock = System.Windows.Forms.DockStyle.Right;
            this.tbRefreshRate.Location = new System.Drawing.Point(4, 16);
            this.tbRefreshRate.Maximum = 10000;
            this.tbRefreshRate.Minimum = 1;
            this.tbRefreshRate.Name = "tbRefreshRate";
            this.tbRefreshRate.Size = new System.Drawing.Size(89, 31);
            this.tbRefreshRate.SmallChange = 10;
            this.tbRefreshRate.TabIndex = 5;
            this.tbRefreshRate.TickFrequency = 1000;
            this.tbRefreshRate.Value = 1;
            this.tbRefreshRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.interface_PreviewKeyDown);
            this.tbRefreshRate.Scroll += new System.EventHandler(this.tbRefreshRate_Scroll);
            // 
            // lblRefreshRate
            // 
            this.lblRefreshRate.Dock = System.Windows.Forms.DockStyle.Right;
            this.lblRefreshRate.Location = new System.Drawing.Point(93, 16);
            this.lblRefreshRate.Name = "lblRefreshRate";
            this.lblRefreshRate.Size = new System.Drawing.Size(47, 31);
            this.lblRefreshRate.TabIndex = 6;
            this.lblRefreshRate.Text = "1 ms";
            this.lblRefreshRate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.lblRefreshRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.interface_PreviewKeyDown);
            // 
            // groupBox4
            // 
            this.groupBox4.Controls.Add(this.btnClipboardSet);
            this.groupBox4.Controls.Add(this.btnClipboardGet);
            this.groupBox4.Location = new System.Drawing.Point(387, 1);
            this.groupBox4.Name = "groupBox4";
            this.groupBox4.Size = new System.Drawing.Size(73, 49);
            this.groupBox4.TabIndex = 18;
            this.groupBox4.TabStop = false;
            this.groupBox4.Text = "Clipboard";
            // 
            // btnClipboardSet
            // 
            this.btnClipboardSet.ImageIndex = 7;
            this.btnClipboardSet.ImageList = this.imageList1;
            this.btnClipboardSet.Location = new System.Drawing.Point(36, 12);
            this.btnClipboardSet.Name = "btnClipboardSet";
            this.btnClipboardSet.Size = new System.Drawing.Size(32, 32);
            this.btnClipboardSet.TabIndex = 15;
            this.toolTip1.SetToolTip(this.btnClipboardSet, "Set the server\'s clipboard for the given type");
            this.btnClipboardSet.UseVisualStyleBackColor = true;
            this.btnClipboardSet.Click += new System.EventHandler(this.btnClipboardSet_Click);
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "media_play_green.ico");
            this.imageList1.Images.SetKeyName(1, "media_stop_red.ico");
            this.imageList1.Images.SetKeyName(2, "mouse.ico");
            this.imageList1.Images.SetKeyName(3, "keyboard_key.ico");
            this.imageList1.Images.SetKeyName(4, "brush4.ico");
            this.imageList1.Images.SetKeyName(5, "about.ico");
            this.imageList1.Images.SetKeyName(6, "clipboard.ico");
            this.imageList1.Images.SetKeyName(7, "clipboard_next.ico");
            // 
            // btnClipboardGet
            // 
            this.btnClipboardGet.ImageIndex = 6;
            this.btnClipboardGet.ImageList = this.imageList1;
            this.btnClipboardGet.Location = new System.Drawing.Point(4, 12);
            this.btnClipboardGet.Name = "btnClipboardGet";
            this.btnClipboardGet.Size = new System.Drawing.Size(32, 32);
            this.btnClipboardGet.TabIndex = 13;
            this.toolTip1.SetToolTip(this.btnClipboardGet, "Get the server\'s clipboard for the given type");
            this.btnClipboardGet.UseVisualStyleBackColor = true;
            this.btnClipboardGet.Click += new System.EventHandler(this.btnClipboardGet_Click);
            // 
            // groupBox3
            // 
            this.groupBox3.Controls.Add(this.chkMouse);
            this.groupBox3.Controls.Add(this.chkKeyboard);
            this.groupBox3.Location = new System.Drawing.Point(311, 1);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(73, 49);
            this.groupBox3.TabIndex = 17;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "Control";
            // 
            // chkMouse
            // 
            this.chkMouse.Appearance = System.Windows.Forms.Appearance.Button;
            this.chkMouse.ImageIndex = 2;
            this.chkMouse.ImageList = this.imageList1;
            this.chkMouse.Location = new System.Drawing.Point(4, 13);
            this.chkMouse.Name = "chkMouse";
            this.chkMouse.Size = new System.Drawing.Size(32, 32);
            this.chkMouse.TabIndex = 9;
            this.toolTip1.SetToolTip(this.chkMouse, "Enable / Disable Mouse Control");
            this.chkMouse.UseVisualStyleBackColor = true;
            this.chkMouse.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.interface_PreviewKeyDown);
            this.chkMouse.CheckedChanged += new System.EventHandler(this.chkMouse_CheckedChanged);
            // 
            // chkKeyboard
            // 
            this.chkKeyboard.Appearance = System.Windows.Forms.Appearance.Button;
            this.chkKeyboard.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.chkKeyboard.ImageIndex = 3;
            this.chkKeyboard.ImageList = this.imageList1;
            this.chkKeyboard.Location = new System.Drawing.Point(36, 13);
            this.chkKeyboard.Name = "chkKeyboard";
            this.chkKeyboard.Size = new System.Drawing.Size(32, 32);
            this.chkKeyboard.TabIndex = 10;
            this.toolTip1.SetToolTip(this.chkKeyboard, "Enable / Disable Keyboard Control");
            this.chkKeyboard.UseVisualStyleBackColor = true;
            this.chkKeyboard.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.interface_PreviewKeyDown);
            this.chkKeyboard.CheckedChanged += new System.EventHandler(this.chkKeyboard_CheckedChanged);
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.txtIPAddress);
            this.groupBox2.Controls.Add(this.btnConnect);
            this.groupBox2.Location = new System.Drawing.Point(3, 1);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(200, 49);
            this.groupBox2.TabIndex = 16;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Server";
            // 
            // txtIPAddress
            // 
            this.txtIPAddress.Location = new System.Drawing.Point(6, 16);
            this.txtIPAddress.Name = "txtIPAddress";
            this.txtIPAddress.Size = new System.Drawing.Size(91, 20);
            this.txtIPAddress.TabIndex = 11;
            // 
            // btnConnect
            // 
            this.btnConnect.AutoSize = true;
            this.btnConnect.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.btnConnect.ImageIndex = 0;
            this.btnConnect.ImageList = this.imageList1;
            this.btnConnect.Location = new System.Drawing.Point(101, 12);
            this.btnConnect.Name = "btnConnect";
            this.btnConnect.Size = new System.Drawing.Size(93, 30);
            this.btnConnect.TabIndex = 0;
            this.btnConnect.Text = "Connect";
            this.btnConnect.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.btnConnect.UseVisualStyleBackColor = true;
            this.btnConnect.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.interface_PreviewKeyDown);
            this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.cmbCompression);
            this.groupBox1.Location = new System.Drawing.Point(206, 1);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(102, 49);
            this.groupBox1.TabIndex = 15;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Compression";
            // 
            // cmbCompression
            // 
            this.cmbCompression.Dock = System.Windows.Forms.DockStyle.Fill;
            this.cmbCompression.FormattingEnabled = true;
            this.cmbCompression.Items.AddRange(new object[] {
            "BMP",
            "MemoryBMP",
            "GIF",
            "PNG",
            "JPEG",
            "TIFF",
            "EMF",
            "EXIF",
            "WMF"});
            this.cmbCompression.Location = new System.Drawing.Point(3, 16);
            this.cmbCompression.Name = "cmbCompression";
            this.cmbCompression.Size = new System.Drawing.Size(96, 21);
            this.cmbCompression.TabIndex = 8;
            this.cmbCompression.SelectedIndexChanged += new System.EventHandler(this.cmbCompression_SelectedIndexChanged);
            this.cmbCompression.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.interface_PreviewKeyDown);
            // 
            // btnInfo
            // 
            this.btnInfo.ImageIndex = 5;
            this.btnInfo.ImageList = this.imageList1;
            this.btnInfo.Location = new System.Drawing.Point(740, 13);
            this.btnInfo.Name = "btnInfo";
            this.btnInfo.Size = new System.Drawing.Size(40, 29);
            this.btnInfo.TabIndex = 12;
            this.btnInfo.UseVisualStyleBackColor = true;
            this.btnInfo.Click += new System.EventHandler(this.btnInfo_Click);
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.showHideMenuToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(172, 26);
            // 
            // showHideMenuToolStripMenuItem
            // 
            this.showHideMenuToolStripMenuItem.Name = "showHideMenuToolStripMenuItem";
            this.showHideMenuToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
            this.showHideMenuToolStripMenuItem.Text = "Show / Hide Menu";
            this.showHideMenuToolStripMenuItem.Click += new System.EventHandler(this.showHideMenuToolStripMenuItem_Click);
            // 
            // castTimer
            // 
            this.castTimer.Interval = 1;
            this.castTimer.Tick += new System.EventHandler(this.castTimer_Tick);
            // 
            // bgWorker1
            // 
            this.bgWorker1.WorkerReportsProgress = true;
            this.bgWorker1.WorkerSupportsCancellation = true;
            this.bgWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgWorker1_DoWork);
            // 
            // pnlBottom
            // 
            this.pnlBottom.ContextMenuStrip = this.contextMenuStrip1;
            this.pnlBottom.Controls.Add(this.btnShowHide);
            this.pnlBottom.Controls.Add(this.lblInput);
            this.pnlBottom.Controls.Add(this.lblMessage);
            this.pnlBottom.Controls.Add(this.pbarProgress);
            this.pnlBottom.Controls.Add(this.label3);
            this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlBottom.Location = new System.Drawing.Point(0, 556);
            this.pnlBottom.Name = "pnlBottom";
            this.pnlBottom.Size = new System.Drawing.Size(792, 18);
            this.pnlBottom.TabIndex = 2;
            this.pnlBottom.Visible = false;
            // 
            // btnShowHide
            // 
            this.btnShowHide.Dock = System.Windows.Forms.DockStyle.Right;
            this.btnShowHide.ImageIndex = 0;
            this.btnShowHide.ImageList = this.imageList2;
            this.btnShowHide.Location = new System.Drawing.Point(771, 0);
            this.btnShowHide.Name = "btnShowHide";
            this.btnShowHide.Size = new System.Drawing.Size(21, 18);
            this.btnShowHide.TabIndex = 4;
            this.toolTip1.SetToolTip(this.btnShowHide, "Show / Hide Menu Bar");
            this.btnShowHide.UseVisualStyleBackColor = true;
            this.btnShowHide.Click += new System.EventHandler(this.btnShowHide_Click);
            // 
            // imageList2
            // 
            this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
            this.imageList2.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList2.Images.SetKeyName(0, "control_panel.ico");
            // 
            // lblInput
            // 
            this.lblInput.AutoSize = true;
            this.lblInput.Dock = System.Windows.Forms.DockStyle.Left;
            this.lblInput.Location = new System.Drawing.Point(283, 0);
            this.lblInput.Name = "lblInput";
            this.lblInput.Size = new System.Drawing.Size(13, 13);
            this.lblInput.TabIndex = 3;
            this.lblInput.Text = "..";
            // 
            // lblMessage
            // 
            this.lblMessage.AutoSize = true;
            this.lblMessage.Dock = System.Windows.Forms.DockStyle.Left;
            this.lblMessage.Location = new System.Drawing.Point(270, 0);
            this.lblMessage.Name = "lblMessage";
            this.lblMessage.Size = new System.Drawing.Size(13, 13);
            this.lblMessage.TabIndex = 2;
            this.lblMessage.Text = "..";
            // 
            // pbarProgress
            // 
            this.pbarProgress.Dock = System.Windows.Forms.DockStyle.Left;
            this.pbarProgress.Location = new System.Drawing.Point(131, 0);
            this.pbarProgress.Name = "pbarProgress";
            this.pbarProgress.Size = new System.Drawing.Size(139, 18);
            this.pbarProgress.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
            this.pbarProgress.TabIndex = 1;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Dock = System.Windows.Forms.DockStyle.Left;
            this.label3.Location = new System.Drawing.Point(0, 0);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(131, 13);
            this.label3.TabIndex = 0;
            this.label3.Text = "Retrieving Screen Stream:";
            // 
            // picCast
            // 
            this.picCast.BackColor = System.Drawing.SystemColors.ControlDark;
            this.picCast.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
            this.picCast.Dock = System.Windows.Forms.DockStyle.Fill;
            this.picCast.Location = new System.Drawing.Point(0, 55);
            this.picCast.Name = "picCast";
            this.picCast.Size = new System.Drawing.Size(792, 501);
            this.picCast.TabIndex = 1;
            this.picCast.TabStop = false;
            this.picCast.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picCast_MouseMove);
            this.picCast.Click += new System.EventHandler(this.picCast_Click);
            this.picCast.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picCast_MouseDown);
            this.picCast.MouseUp += new System.Windows.Forms.MouseEventHandler(this.picCast_MouseUp);
            // 
            // Client
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(792, 574);
            this.Controls.Add(this.picCast);
            this.Controls.Add(this.pnlBottom);
            this.Controls.Add(this.pnlTopMenu);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "Client";
            this.Text = "Screen Cast Client";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.picCast_KeyUp);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.picCast_KeyDown);
            this.pnlTopMenu.ResumeLayout(false);
            this.groupBox5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.tbRefreshRate)).EndInit();
            this.groupBox4.ResumeLayout(false);
            this.groupBox3.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.contextMenuStrip1.ResumeLayout(false);
            this.pnlBottom.ResumeLayout(false);
            this.pnlBottom.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picCast)).EndInit();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Panel pnlTopMenu;
        private System.Windows.Forms.Button btnConnect;
        private System.Windows.Forms.ImageList imageList1;
        private System.Windows.Forms.PictureBox picCast;
        private System.Windows.Forms.Timer castTimer;
        private System.Windows.Forms.TrackBar tbRefreshRate;
        private System.Windows.Forms.Label lblRefreshRate;
        private System.ComponentModel.BackgroundWorker bgWorker1;
        private System.Windows.Forms.Panel pnlBottom;
        private System.Windows.Forms.ProgressBar pbarProgress;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.ComboBox cmbCompression;
        private System.Windows.Forms.Label lblMessage;
        private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
        private System.Windows.Forms.ToolStripMenuItem showHideMenuToolStripMenuItem;
        private System.Windows.Forms.Label lblInput;
        private System.Windows.Forms.CheckBox chkMouse;
        private System.Windows.Forms.CheckBox chkKeyboard;
        private System.Windows.Forms.TextBox txtIPAddress;
        private System.Windows.Forms.Button btnInfo;
        private System.Windows.Forms.Button btnClipboardGet;
        private System.Windows.Forms.ToolTip toolTip1;
        private System.Windows.Forms.GroupBox groupBox3;
        private System.Windows.Forms.GroupBox groupBox2;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.GroupBox groupBox5;
        private System.Windows.Forms.GroupBox groupBox4;
        private System.Windows.Forms.Button btnClipboardSet;
        private System.Windows.Forms.Button btnShowHide;
        private System.Windows.Forms.ImageList imageList2;


    }
}

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
Architect Backbase
Netherlands Netherlands
Senior Solutions Architect.

I reject your code and substitute my own Smile | :) !

Comments and Discussions