메모장 추가

This commit is contained in:
chi
2020-05-26 13:21:41 +09:00
parent 117d7a3ba2
commit 2bb7472cb0
17 changed files with 3896 additions and 370 deletions

View File

@@ -87,6 +87,8 @@ namespace Project
Update_Site();
bw.RunWorkerAsync(); //background worker
//사용기록추적
Pub.CheckNRegister2(Application.ProductName, "chi", Application.ProductVersion);
}
@@ -150,6 +152,9 @@ namespace Project
var menu_kuntaeVisible = FCOMMON.Util.getBit(FCOMMON.info.Login.gpermission, (int)FCOMMON.eGroupPermission.menu_workday);
var menu_logdata = FCOMMON.Util.getBit(FCOMMON.info.Login.gpermission, (int)FCOMMON.eGroupPermission.menu_logdata);
Menu_Note();
//시작폼 확인
if (Pub.setting.startForm == eFormList.NR구매관리 && menu_purchaseVisible == true)
{
@@ -171,7 +176,10 @@ namespace Project
{
Menu_InventoryList();
}
}
@@ -741,6 +749,12 @@ namespace Project
if (!ShowForm(formkey))
AddForm(formkey, new FCM0000.fInventoryJagoList());
}
void Menu_Note()
{
string formkey = "NOTELIST";
if (!ShowForm(formkey))
AddForm(formkey, new FPJ0000.Note.fNote());
}
private void ToolStripMenuItem_Click(object sender, EventArgs e)
{
Menu_InventoryList();
@@ -910,5 +924,15 @@ namespace Project
f.TopMost = true;
f.Show();
}
private void ToolStripMenuItem_Click(object sender, EventArgs e)
{
Menu_Note();
}
private void toolStripButton1_Click_1(object sender, EventArgs e)
{
Menu_Note();
}
}
}