This commit is contained in:
chi
2021-07-16 13:53:52 +09:00
parent 7b7c5d1f4f
commit 9e64a0d603
37 changed files with 2215 additions and 140 deletions

View File

@@ -28,6 +28,18 @@ namespace FEQ0000
FCOMMON.Util.SetFormStatus(ref form, this.Name, true);
this.Show();
Application.DoEvents();
//권하니없으면 button3을 막는다
int curLevel = Math.Max(FCOMMON.info.Login.level, FCOMMON.DBM.getAuth(FCOMMON.DBM.eAuthType.equipment));
if (curLevel >= 5)
{
button3.Enabled = true;
}
else
{
button3.Enabled = false;
}
}
void __Closed(object sender, FormClosedEventArgs e)