This commit is contained in:
Jsj
2007-11-20 20:01:55 +00:00
parent 0826e27cac
commit 706ae56787
52 changed files with 21106 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());
}
}
}