Program.cs
//**********************************************************
//* Direct X Sound Recorder *
//* Author: D. Zouchinski *
//* http://zouchinski.co.uk *
//* Copyright @ 2009-2011 *
//**********************************************************
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace SoundRecorder
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new RecordDlg());
}
}
}