using System;
using System.Windows.Forms;

public class frmMain : Form
{
    #region Windows Code
    private void InitializeComponent()
    {
            this.SuspendLayout();
            //
            // frmMain
            //
            this.ClientSize = new System.Drawing.Size(648, 475);
            this.Name = "frmMain";
            this.Load += new System.EventHandler(this.frmMain_Load);
            this.ResumeLayout(false);

    }
    #endregion
    public frmMain()
    {
        InitializeComponent();
    }
    [STAThread]
    public static void Main()
    {
        frmMain main = new frmMain();
        Application.Run(main);
    }

    private void frmMain_Load(object sender, EventArgs e)
    {

    }

}