=====* unimarc *=====
- 주문처 관리 - 마크관리 / 장비관리 Grid 정비중. ㄴ> 현재 값이 입력되면 자동으로 날짜출력하는 기능 추가중 - 마크탭 전체 재정비중 - 기타 소스코드 함수 정리
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user