This commit is contained in:
chikyun.kim
2018-10-23 08:50:11 +09:00
parent 74d52a3e70
commit 28cde78186
30 changed files with 8100 additions and 1377 deletions

View File

@@ -173,6 +173,12 @@ namespace Project
{
menu_projecT_list();
}
void menu_work_report()
{
var f = new FPJ0000.fJobReport();
f.MdiParent = this;
f.Show();
}
void menu_projecT_list()
{
var f = new FPJ0000.fProjectList();
@@ -418,5 +424,15 @@ namespace Project
f.MdiParent = this;
f.Show();
}
private void toolStripButton3_Click(object sender, EventArgs e)
{
menu_projecT_list();
}
private void workReportToolStripMenuItem_Click(object sender, EventArgs e)
{
menu_work_report();
}
}
}