This commit is contained in:
2014-09-10 20:18:07 +00:00
parent fbb2df544c
commit c9d7129582
319 changed files with 1094 additions and 0 deletions

20
PROMS/Formats/Program.cs Normal file
View File

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