Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
第一行:
Tables("表名").Position = 0
上一行:
With Tables("表名")
.Position = .Position - 1
End With
下一行:
With Tables("表名")
.Position = .Position + 1
End With
最末行:
With Tables("表名")
.Position = .Rows.Count - 1
End With
谢了,我已解决了。
通用的,表示当前表:
第一行:
With CurrentTable
.Position = 0
End With
上一行:
With CurrentTable
.Position = .Position - 1
End With
下一行:
With CurrentTable
.Position = .Position + 1
End With
最末行:
With CurrentTable
.Position = .Rows.Count - 1
End With