using System; using System.Collections.Generic; using System.Windows.Forms; namespace AnywhereTS { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); frmClientProperties objCustomDialogBox = new frmClientProperties(); objCustomDialogBox.dialogMode = frmClientProperties.ATSClientMode.CONTROL_PANEL; // Select the mode to run the form in. Application.Run(objCustomDialogBox); } } }