Thursday, January 28, 2010

Program.cs

using System;
using System.Collections.Generic;
using System.Windows.Forms;

//51aspx
namespace PowerTalkClient
{
static class Program
{
///
/// 应用程序的主入口点。
///

[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);

Application.Run(new LoginFrm());
// Application.Run(new PowerTalk());
}
}
}

No comments:

Post a Comment