Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
如何加?
菜单设计
快捷菜单代码:
插入行
CurrentTable.Rows.InsertNew()
上移行
With CurrentTable
If .Position > 0 Then
.Current.Move(.Position - 1)
End If
End With
下移行
With CurrentTable
If .Position < .Count - 1 Then
.Current.Move(.Position + 1)
End If
End With