setconsoletitle (kernel32)
Last changed: -84.9.52.29

.
Summary
Sets the title bar for the current console window.

C# Signature:

[DllImport("kernel32.dll")]
static extern bool SetConsoleTitle(string lpConsoleTitle);

VB Signature:

Declare Function SetConsoleTitle Lib "kernel32.dll" _
   (lpConsoleTitle As String) As Boolean

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code - C# - sivakumar.keerthi

using System;

using System.Runtime.InteropServices;

namespace ConsoleApplication1

{

    /// <summary>
    /// Summary description for Class1.
    /// </summary>
    class Class1
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [DllImport("kernel32.dll")]
        static extern bool SetConsoleTitle(string lpConsoleTitle);
        [STAThread]
        static void Main(string[] args)
        {
            SetConsoleTitle( "This is a console application......." );
        }
    }

}

Alternative Managed API:

Do you know one? Please contribute it!

Documentation