Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
下载信息 [文件大小: 下载次数: ] | |
点击浏览该文件:插入行bug.rar |
我用菜单的插入行测试,没有管你的代码。
我用菜单的插入行测试,没有管你的代码。
我的代码也是引用菜单的插入行Syscmd.Row.Insert(),祥见以下。
如果说这个菜单没有问题,那就当作帮忙纠正我的问题(最近,这个可是最麻烦的问题,天天需要面对),OK?
(有时候,除了插入一空白行,还想再写入一些值)
Dim edr as row= e.Row
if edr isnot nothing then
if e.Col.Name = "插入"
If edr("插入") = True then
dim rnew as row
dim n as integer = edr.Index
if n = CurrentTable.rows.count-1 then
rnew = CurrentTable.addnew
else
CurrentTable.Position = n+1
Syscmd.Row.Insert()
rnew = CurrentTable.rows(n+1)
end if
rnew("日期") = edr("日期").AddDays(1)
End If
End If
End If
多谢,呵呵
给你添麻烦!