本文解答了关于《金蝶标准版操作手册》相关内容,同时关于1、金蝶标准版操作手册,2、金蝶标准版操作流程,3、金蝶标准版操作视频,4、金蝶标准版使用说明,5、金蝶标准版视频教程,的相关问答本篇文章福途教育网小编也整理了进来,希望对您有帮助。
金蝶标准版操作手册
///
/// 控件
/// 参数
private void tsgkytj_Click(object sender, EventArgs e)
{
//if (!IsHavePower("CoreReportCentre_Biz_OperateUser"))
//{
// if (XcDataSourceMng.ShowYesNo("没有权限,是否查看帮助") == DialogResult.Yes)
// {
// string helpname = "金蝶标准版操作手册.pdf";
// string helpPath = Path.Combine(Application.StartupPath,"Help");
// helpname = Path.Combine(helpPath, helpname);
// if (!File.Exists(helpname))
// {
// XcDataSourceMng.ShowMsgWithErrorLevel("找不到指定的文件:" + helpname, MessageBoxIcon.Error);
// return;
// }
// System.Diagnostics.Process.Start(helpname);
// }
// return;
//}
if (XcDataSourceMng.ShowYesNo("是否查看金蝶标准版操作手册") == DialogResult.Yes)
{
string helpname = "金蝶标准版操作手册.pdf";
string helpPath = Path.Combine(Application.StartupPath, "Help");
helpname = Path.Combine(helpPath, helpname);
if (!File.Exists(helpname))
{
XcDataSourceMng.ShowMsgWithErrorLevel("找不到指定的文件:" + helpname, MessageBoxIcon.Error);
return;
}
System.Diagnostics.Process.Start(helpname);
}
}
///
/// 关于
///
/// 控件
/// 参数
private void tsgAbout_Click(object sender, EventArgs e)
{
XcDataSourceMng.ShowOKOnly(
string.Format(XcResource.XCLabel_VersionGuiName, XcVersion.AppNameVersion));
}
///
/// 将软件设置为连接超时时间
///
/// 控件
/// 参数
private void tsiSetConnectTime_Click(object sender, EventArgs e)
{
FormSetCnnctTime frmSetCnnctTime = new FormSetCnnctTime();
frmSetCnnctTime.TimeOut = XcConfig.TimeOut;
if (frmSetCnnctTime.ShowDialog() == DialogResult.OK)
{
XcConfig.TimeOut = frmSetCnnctTime.TimeOut;
}
}
private void tsiCheckRemoteIp_Click(object sender, EventArgs e)
{
var form = new FormCheckRemoteIp();
form.ShowDialog(Owner);
}
private void tsbutSubsetConfig_Click(object sender, EventArgs e)
{
var form = new FormSubsetConfigXcBackupset();
form.m_frmOwner = this;
form.ShowDialog(Owner);
}
///
/// 关闭节点
///
///
///
private void tsbutClose_Click(object sender, EventArgs e)
{
if (MessageBox.Show(@"您确定要关闭吗?
关闭后将会影响客户查询!", "系统提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
ProductDataCenterHelper.LogicDbHelper.CloseNode();
}
}
}
}
总结:以上是编辑:【宁典】整理及AI智能原创关于《金蝶标准版操作手册
》优质内容解答希望能帮助到您。