....
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user