INT_PT002/INT_PT002/Program.cs

32 lines
677 B
C#
Raw Normal View History

2023-02-09 08:20:49 +00:00
using System;
using System.Linq;
using System.Collections.Generic;
using System.Windows.Forms;
using INT_PT002.Forms;
using INT_PT002.DialogForms;
2023-02-09 08:20:49 +00:00
namespace INT_PT002
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[MTAThread]
static void Main()
{
2023-04-06 02:24:42 +00:00
try
{
Application.Run(new FormMain());
2023-04-06 02:24:42 +00:00
}
catch (Exception ex)
{
FormMain.Exception(ex);
2023-04-06 02:24:42 +00:00
DialogFormMessage myMsg = new DialogFormMessage(1);
myMsg.ShowDialog();
}
2023-02-09 08:20:49 +00:00
}
}
}