Show Contents / Index / Search

Program.cs (IBM)

//This sample code is intended to illustrate a concept, and it shows only the code that is relevant to that concept.

//It may not meet the security requirements for a specific environment, and it should not be used exactly as shown.

//We recommend that you add security and error-handling code to make your projects more secure and robust.

//Attachmate provides this sample code "AS IS" with no warranties.

 

using System;

using System.Collections.Generic;

using System.Windows.Forms;

 

namespace HostAndWeb

{

  static class Program

  {

    //The main entry point for the application.

    

    [STAThread]

    static void Main()

    {

      Application.EnableVisualStyles();

      Application.SetCompatibleTextRenderingDefault(false);

      Application.Run(new Main());

    }

  }

}