コード例 #1
0
 private void GetPaymentCashListD(long PaymentCashNo)
 {
     try
     {
         objPaymentCashListD = null;   // 初期化
         svcPaymentCashClient svc = new svcPaymentCashClient();
         svc.GetPaymentCashDCompleted += new EventHandler<GetPaymentCashDCompletedEventArgs>(this.GetPaymentCashListDCompleted);
         svc.GetPaymentCashDAsync(Common.gstrSessionString, PaymentCashNo);
     }
     catch (Exception ex)
     {
         this.ProcessingDlgClose();
         ExMessageBox.Show(CLASS_NM + ".GetPaymentCashListD" + Environment.NewLine + ex.ToString(), "エラー確認");
     }
 }