using System; using System.Linq; using System.Collections.Generic; using System.Windows.Forms; using INT_PT002.Forms; using INT_PT002.DialogForms; namespace INT_PT002 { static class Program { /// /// The main entry point for the application. /// [MTAThread] static void Main() { try { Application.Run(new FormMain()); } catch (Exception ex) { MessageBox.Show(ex.ToString()); FormMain.Exception(ex); } } } }