123456789101112131415161718192021222324252627282930 |
- namespace OINA.Extender.Testharness
- {
- using System;
- using System.Windows.Forms;
- /// <summary>
- /// Progarm Class
- /// </summary>
- public static class Program
- {
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- [STAThread]
- public static void Main()
- {
- try
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new MainForm());
- }
- catch (LicenseCheckException e)
- {
- MessageBox.Show(@"This application will shutdown, as a valid license is not available." + Environment.NewLine + e.Message, @"Error Message");
- Application.Exit();
- }
- }
- }
- }
|