[RESOLVED] How to move down a single line in word 2007
Hi,
Word 2007 has this new feature which results in a large gap between lines if you just press the "carraige return" key but a smaller gap between the lines if you hold down "shift" and press the "carraige return" key.
From VB i have tried printing "vbcrlf", "CHR(10)" and "CHR(13)" all of which result in the large gaps between the lines.
How to i get the smaller gaps between the lines when printing from VB as if i had hel the "shift" key when pressing "carriage return" ?
Thanks in advance,
Chris V
Re: How to move down a single line in word 2007
Quote:
How to i get the smaller gaps between the lines when printing from VB as if i had hel the "shift" key when pressing "carriage return" ?
vb Code:
Selection.Style = ActiveDocument.Styles("No Spacing")
To get the original spacing back use this
vb Code:
Selection.Style = ActiveDocument.Styles("Normal")
Re: [RESOLVED] How to move down a single line in word 2007