How to hide console after creating form in console application

.net, c#, console, nemerle

Solution

I think you'll need to delve into the FindWindow and ShowWindow API calls. For example:

    [DllImport("user32.dll")]
    public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);


    [DllImport("user32.dll")]
    public static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);

    static void Main(string[] args)
    {
        Console.Title = "ConsoleApplication1";

        IntPtr h=FindWindow(null, "ConsoleApplication1");

        ShowWindow(h, 0); // 0 = hide

        Form f = new Form();

        f.ShowDialog();

        ShowWindow(h, 1); // 1 = show

    }

Problem

I want to hide my console after creating a from in my console application. And then show it again after closing form :) or somewhere when I want ... ``` Console.Hide??? Application.Run(nForm()); Console.Show??? ```

Original source