以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  1秒内只能增加1行  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=73123)

--  作者:阿福
--  发布时间:2015/8/12 21:35:00
--  1秒内只能增加1行
请问各位老师,如何设置增加行时,不能在1秒内增加多行,1秒内只能增加1行,如何在BeforeAddDataRow设置代码?或者其他方法?
--  作者:大红袍
--  发布时间:2015/8/12 21:49:00
--  

BeforeAddDataRow事件

 

static ptime As Date = Nothing

Dim sp As TimeSpan = Date.now - ptime
If sp.TotalSeconds <= 1 Then
    e.cancel = True
Else
    ptime = Date.now
End If


--  作者:阿福
--  发布时间:2015/8/12 21:58:00
--  
谢谢大红袍老师,我也想到一种方法
在表里增加列“sys_创建时间”,用来记录增加行时的时间
Dim a As Date = e.DataTable.Compute("max(sys_创建时间)")
Dim t As TimeSpan = Date.Now - a
If t.TotalSeconds < 1 Then
e.Cancel = True
MessageBox.Show("该表不能快速在1秒内增加多行,抱歉!")
End If