using System; using System.Windows.Forms; namespace OutlookCaseHelper { internal static class Program { [STAThread] static void Main() { try { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } catch { } } } }