代码写在“删除空行”的按钮中,最后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