以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  删除空行  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=89651)

--  作者:lk15502
--  发布时间:2016/8/26 10:26:00
--  删除空行
代码写在“删除空行”的按钮中,最后output.show没有显示,请问是什么原因?
If MessageBox.show("是否执行删除空行操作,请确认!","提示",MessageBoxButtons.YesNo,MessageBoxIcon.Warning) = DialogResult.Yes Then
    Dim cnt As Integer
    cnt = DataTables("数据操作日志").sqlDeleteFor("用户 Is Null and 时间 is null and 涉及表 is null and 涉及行 is null and 涉及列 is null and 涉及编号 is null and 操作 is null")
    DataTables("数据操作日志").RemoveFor("用户 Is Null and 时间 is null and 涉及表 is null and 涉及行 is null and 涉及列 is null and 涉及编号 is null and 操作 is null")
    output.show("合计删除了" & cnt & "个空行!")
End If

--  作者:Hyphen
--  发布时间:2016/8/26 10:42:00
--  
output.show值输出到命令窗口

msgbox("合计删除了" & cnt & "个空行!")