以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- BUG收集 (http://foxtable.com/bbs/list.asp?boardid=12) ---- e.Cancel=True 无效或不执行 (http://foxtable.com/bbs/dispbbs.asp?boardid=12&id=107715) |
-- 作者:zhull1028 -- 发布时间:2017/10/8 15:21:00 -- e.Cancel=True 无效或不执行 代码如下,每次重新打项目,e.Cancel=True都不执行或无效,需要再次进入编辑保存才会有效,不知是何原因? If Tables("凭证.凭证分录.外币分录").Rows.Count()=0 Then messagebox.show("必须录入原币金额!","提示",MessageBoxButtons.OK ,MessageBoxIcon.Information) e.Cancel=True Else Dim bbje As Single =Tables("凭证.凭证分录.外币分录").Current("本币金额") Dim fx As String=Tables("凭证.凭证分录.外币分录").Current("方向") Dim bzdm As String=Tables("凭证.凭证分录.外币分录").Current("币种代码") Dim ybje As Single =Tables("凭证.凭证分录.外币分录").Current("原币金额") Dim hl As Single =Tables("凭证.凭证分录.外币分录").Current("汇率") Dim jfje As Single= Tables("凭证.凭证分录").Current("借方金额") Dim dfje As Single=Tables("凭证.凭证分录").Current("贷方金额") If bzdm="" Or fx="" Or ybje=0 Or hl=0 Then messagebox.show("各项目不能为空!") e.Cancel=True Else If fx="借" Then If bbje<>jfje Then messagebox.show("本币金额与分录借方金额不一致!") e.Cancel=True End If End If If fx="贷" Then If bbje<>dfje Then messagebox.show("本币金额与分录贷方金额不一致!") e.Cancel=True End If End If End If End If
|