This commit is contained in:
chi
2022-04-20 15:09:23 +09:00
parent dd3fcf149f
commit b6607dde2d
23 changed files with 3858 additions and 3532 deletions

View File

@@ -1096,5 +1096,26 @@ namespace Project
var f = new FBS0000.Holiday.fErrorChk();
f.Show();
}
}
private void ToolStripMenuItem_Click(object sender, EventArgs e)
{
var MaxVerstion = FCOMMON.DBM.GetMaxVersion();
if (MaxVerstion.isEmpty() == false)
{
var curversion = Application.ProductVersion;
var verchk = curversion.CompareTo(MaxVerstion);
if (verchk < 0)
{
//내버젼이 낮다
Util.MsgE("현재 구 버젼을 사용하고 있습니다.\n업데이트를 진행 하고 사용하시기 바랍니다");
}
else
{
Util.MsgI("최신 버젼을 사용하고 있습니다\n\n" +
"서버 : " + MaxVerstion + "\n" +
"현재 : " + curversion);
}
}
}
}
}