using System; using System.Web; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; using System.Deployment.Application; using SuperMap.RealEstate.Windows.Utility; using SuperMap.RealEstate.Identity; using System.Collections.Specialized; using SuperMap.RealEstate.Windows; namespace SuperMap.RealEstate.HighWay.PrintBarcode { static class Program { /// /// 应用程序的主入口点。 /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); try { Application.Run(new frmPrintMain()); } catch (Exception ex) { MessageBox.Show(ex.Message); } } } }