Пример #1
0
 //LDH, 2018.10.01, Result Window Clear
 public void ClearResultData(bool _DUMMYFlag = true, string _LOTNum = "", string _InDataPath = "", string _OutDataPath = "")
 {
     if (ProjectType == eProjectType.NONE)
     {
         MainResultNoneWnd.ClearResult();
     }
     else if (ProjectType == eProjectType.BLOWER)
     {
         MainResultIDWnd.ClearResult(_DUMMYFlag, _LOTNum, _InDataPath, _OutDataPath);
     }
     else if (ProjectType == eProjectType.DISPENSER)
     {
         MainResultLeadWnd.ClearResult();
     }
 }
Пример #2
0
 //LDH, 2018.10.01, Result Window Clear
 public void ClearResultData(string _LOTNum = "", string _InDataPath = "", string _OutDataPath = "")
 {
     if (ProjectType == eProjectType.NONE)
     {
         MainResultNoneWnd.ClearResult();
     }
     else if (ProjectType == eProjectType.BLOWER)
     {
         MainResultIDWnd.ClearResult(_LOTNum, _InDataPath, _OutDataPath);
     }
     else if (ProjectType == eProjectType.DISPENSER)
     {
         MainResultLeadWnd.ClearResult();
     }
     else if (ProjectType == eProjectType.SORTER)
     {
         MainResultSorterWnd.ClearResult();
     }
     else if (ProjectType == eProjectType.TRIM)
     {
         MainResultTrimFormWnd.ClearResult();
     }
 }