Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
dim r as row = tables("A表").addnew
上一行,有2种概念:概念一、指当前行,不一定是增加前的最后一行
if tables("A表").current isnot nothing then
r("某列") = tables("A表").current("某列")
end if
概念二、指增加前的最后一行
if tables("A表").current isnot nothing then
r("某列") = tables("A表").Rows(tables("A表").rows.count-2)("某列")
end if
不好意思。是有二个按钮,一个按钮是增加一行并复制某列数据,另一个按钮须根据需要增加多行,并能复制某几列数据。