=====* unimarc *=====

- 주문처 관리 -
마크관리 / 장비관리 Grid 정비중.
ㄴ> 현재 값이 입력되면 자동으로 날짜출력하는 기능 추가중

- 마크탭 전체 재정비중 -

기타 소스코드 함수 정리
This commit is contained in:
SeungHo Yang
2021-09-29 18:41:16 +09:00
parent b04674c01e
commit a01a14d34e
34 changed files with 1746 additions and 306 deletions

View File

@@ -528,7 +528,7 @@ namespace WindowsFormsApp1
Job_Order Job_Order;
Mac_List Mac_List;
Mac_Stat Mac_Stat;
Make_Excel Excel_make;
Marc_Plan Marc_Plan;
Search_Infor Mac_search_Infor;
Check_ISBN Mac_check_ISBN;
Mac_Input Mac_Input;
@@ -635,19 +635,19 @@ namespace WindowsFormsApp1
Mac_search_Infor.Show();
}
}
private void ToolStripMenuItem_Click(object sender, EventArgs e)
private void ToolStripMenuItem_Click(object sender, EventArgs e)
{
if (Excel_make != null)
if (Marc_Plan != null)
{
Excel_make.Focus();
Marc_Plan.Focus();
}
else
{
Excel_make = new Make_Excel(this);
Excel_make.MdiParent = this;
Excel_make.WindowState = FormWindowState.Maximized;
Excel_make.FormClosed += (o, ea) => Excel_make = null;
Excel_make.Show();
Marc_Plan = new Marc_Plan(this);
Marc_Plan.MdiParent = this;
Marc_Plan.WindowState = FormWindowState.Maximized;
Marc_Plan.FormClosed += (o, ea) => Marc_Plan = null;
Marc_Plan.Show();
}
}
private void iSBN조회ToolStripMenuItem_Click(object sender, EventArgs e)