Is it possbile to capture the insert new row (above or below) event?
When they add a new row I want to add bookmarks to the cells?
Any help/direction is much appreciated.
Thanks
-Sarju
Doug Robbins - Word MVP - 04 Aug 2006 21:33 GMT
Dim mynewrow as Row
Set mynewrow = ActiveDocument.Tables(1).Rows.Add etc

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> Is it possbile to capture the insert new row (above or below) event?
> When they add a new row I want to add bookmarks to the cells?
[quoted text clipped - 3 lines]
> Thanks
> -Sarju
Jezebel - 04 Aug 2006 22:42 GMT
Unfortunately, there is no 'new row' event. The Windows.SelectionChange
event is fired when you move into a new table cell: so you can write code
for that event in which you check if you are in a table at all, and if so,
whether the row contains whatever it needs to contain.
> Is it possbile to capture the insert new row (above or below) event?
> When they add a new row I want to add bookmarks to the cells?
[quoted text clipped - 3 lines]
> Thanks
> -Sarju