public DataTable QueryLocateSection(string strNo)
 {
     PrintStockTakeDBO dbo = new PrintStockTakeDBO(ref USEDB);
     DataTable dtResult;
     try
     {
         dtResult = dbo.QueryLocateSection(strNo);
         return dtResult;
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public DataTable PrintRpt01(ArrayList ParameterList, out string strMsg, out string strResult)
 {
     PrintStockTakeDBO dbo = new PrintStockTakeDBO(ref USEDB);
     DataTable dtResult;
     strMsg = string.Empty;
     try
     {
         dtResult = dbo.PrintRpt01(ParameterList,out strMsg,out strResult);
         return dtResult;
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }