Program.cs 711 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using System.Windows.Forms;
  6. namespace Atten_Table_Ctrl
  7. {
  8. static class Program
  9. {
  10. /// <summary>
  11. /// 해당 응용 프로그램의 주 진입점입니다.
  12. /// </summary>
  13. [STAThread]
  14. static void Main()
  15. {
  16. try
  17. {
  18. Application.EnableVisualStyles();
  19. Application.SetCompatibleTextRenderingDefault(false);
  20. Application.Run(new Bluecell_AttenTable_Ctrl());
  21. }
  22. catch (Exception e)
  23. {
  24. MessageBox.Show(e.Message);
  25. }
  26. }
  27. }
  28. }