34 lines
716 B
C#
34 lines
716 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
using ITC81DB_0H.Forms;
|
|
using ITC81DB_0H.DialogForms;
|
|
|
|
namespace ITC81DB_0H
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[MTAThread]
|
|
static void Main()
|
|
{
|
|
try
|
|
{
|
|
Application.Run(new FormMain());
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
FormMain.Exception(ex);
|
|
|
|
DialogFormMessage myMsg = new DialogFormMessage(1);
|
|
myMsg.ShowDialog();
|
|
}
|
|
}
|
|
}
|
|
} |