代码拉取完成,页面将自动刷新
同步操作将从 葡萄城/报表模板库 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
using Grapecity.PowerTools.Api.Models;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Security.Principal;
using System.Threading;
using System.Windows.Forms;
namespace GrapecityReportsLibrary
{
static class Program
{
private static Mutex mutex;
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
// 系统以中文语言运行
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("zh-CN");
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("zh-CN");
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Main());
//// 检查是否已经打开报表模板库
//mutex = new Mutex(false, "葡萄城报表模板库");
//if (!mutex.WaitOne(0, false))
//{
// MessageBox.Show("您已经打开葡萄城报表模板库,赶紧去使用吧!","葡萄城报表模板库",MessageBoxButtons.OK,MessageBoxIcon.Information);
// return;
//}
//// 全局异常处理
//Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
//Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
//Application.ApplicationExit += new EventHandler(Application_ApplicationExit);
//AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
//// 系统以中文语言运行
//System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("zh-CN");
//System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("zh-CN");
//Application.EnableVisualStyles();
//Application.SetCompatibleTextRenderingDefault(false);
//// 检测当前用户是否已经获得正确的客户标识
////CommonFunctions.PrepareCustomerEnvironment();
//// 第一次安装报表模板库,安装完成打开活动页面,这个地址以后需要替换为报表模板库的介绍页面
//if (CommonFunctions.CheckIsFirstInstalled())
//{
// System.Diagnostics.Process.Start("http://www.grapecity.com.cn/enterprise-solutions/activereports_server/activity/?utm_source=Demo&utm_medium=ActiveReportsServer&utm_term=GrapecityReportsLibrary&utm_content=ARSLibraryInstalled");
//}
//Application.Run(new Main());
}
static void Application_ApplicationExit(object sender, EventArgs e)
{
G_Global.CallWebApi("ERROR", "Application_ApplicationExit", "", "");
MessageBox.Show("天啦,我也不知道什么操作引起这个问题,看样子你需要重启程序了!!!", "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
G_Global.CallWebApi("ERROR", "CurrentDomain_UnhandledException", "", "");
MessageBox.Show("天啦,我也不知道什么操作引起这个问题,看样子你需要重启程序了!!!", "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
{
G_Global.CallWebApi("ERROR", "Application_ThreadException", e.Exception.Message, "");
MessageBox.Show("天啦,我也不知道什么操作引起这个问题,看样子你需要重启程序了!!!","系统提示",MessageBoxButtons.OK,MessageBoxIcon.Warning);
}
}
public static class GlobalData
{
public static Guid UserID = Guid.Empty;
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。