This commit is contained in:
Jsj
2007-12-05 16:32:56 +00:00
parent 3b2db71791
commit b915e332ef
51 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace VEPROMS
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmVEPROMS());
}
}
}