Compare with Previous |
Blame |
View Log
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace BuildSkin
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles(); //Must be here to exist before Builder object is created
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new fBuildSkin());
}
}
}
Compare with Previous |
Blame
All times are GMT -5. The time now is 01:49 PM.