Greetings,
I must set a certain range to have 3 TextColumns. The problem is that the formatting is always applied to the whole document, which is of course not what I meant to do.
Here is the code I am using right now:
Dim c As Long
Dim x As Range
For c = 2 To InlineShapes.Count
Set x = ThisDocument.Range(InlineShapes(c).Range.End, InlineShapes(c + 1).Range.Start)
x.PageSetup.TextColumns.SetCount 3
Next c
Thanks for any help,
-Eric Fournier
I must set a certain range to have 3 TextColumns. The problem is that the formatting is always applied to the whole document, which is of course not what I meant to do.
Here is the code I am using right now:
Dim c As Long
Dim x As Range
For c = 2 To InlineShapes.Count
Set x = ThisDocument.Range(InlineShapes(c).Range.End, InlineShapes(c + 1).Range.Start)
x.PageSetup.TextColumns.SetCount 3
Next c
Thanks for any help,
-Eric Fournier