|
InfoTransaction的BeforeTrans事件裡,該如何取得Client輸入的資料? |
|
|
在BeforeTrans事件中可以通過UpdateComp.CurrentRow來讀到當前的Row, 如下: private void infoTransaction1_BeforeTrans(object sender, InfoTransactionBeforeTransEventArgs e) { int i = Convert.ToInt16(ucMaster.CurrentRow["Quantity"]); // 取得 ucMaster所對應的Quantity欄位值 …. }
|
|
|