Пример #1
0
 //공정이 속할 공장목록과 공정이 없는 반제품 카테고리 목록을 가져와서 콤보바인딩한다.
 private void InitCombo()
 {
     try
     {
         StandardService    service     = new StandardService();
         List <ComboItemVO> factoryList = service.GetComboFactory();
         UtilClass.ComboBinding(cboFactoryName, factoryList, "선택");
         List <ComboItemVO> categoryList = service.GetComboCategory();
         UtilClass.ComboBinding(cboCategory, categoryList, "선택");
     }
     catch (Exception err)
     {
         Log.WriteError(err.Message, err);
     }
 }