Remove lines after removing table

A

accdev

I'm an amateur with Word vb. In Access 2003 I'm generating the content of a
Word doc that has been set up from a template. There is one table with
current billing charges and another with temporary adjustments. If there are
no adjustments I delete the adjustments table, but I also want to get rid of
the 2 lines (header and detail) that the table took up.
Here is some of the delete code: wrdobj.ActiveDocument.Tables(2).Delete.
How do I get rid of the 2 lines?
 
A

accdev

I finally did something that worked. I had to play around with the Count
until it did exactly what I wanted. I created a bookmark just above the
table. When there is a table I just delete it.

wrdobj.ActiveDocument.Tables(3).Delete
wrdobj.ActiveDocument.Bookmarks("G2").Select
wrdobj.Selection.Delete Unit:=wdCharacter, Count:=6
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top