/// <summary>
 /// 確認前檢核
 /// </summary>
 /// <param name="ParameterList"></param>
 /// <param name="strErrMsg"></param>
 /// <returns></returns>
 public bool Pick_Control_Check(ArrayList ParameterList, out string strErrMsg)
 {
     #region
     try
     {
         VDS_ALO19_DBO DBO = new VDS_ALO19_DBO(ref USEDB);
         bool bResult = DBO.doPick_Control_Check(ParameterList, out strErrMsg);
         strErrMsg = ReplaceOracleExceptionString(strErrMsg);
         return bResult;
     }
     catch (Exception ex)
     {
         throw GetNewException(ex);
     }
     #endregion
 }