How do i change the default position of the cursor when creating .

L

Lumus

If its possible, how do i change where the cursor appears when i create a
document from a template?

I.E.

Heading Text
Heading Text
Heading Text

<NEW INSERTION POINT>

Trailing Text
Trailing Text etc.
 
J

Jay Freedman

Hi Lumus,

In the template, insert a bookmark at the desired point. It can be named
anything you want; let's say you name it StartHere.

Then insert the following macro in the ThisDocument module of the template:

Public Sub Document_New()
ActiveDocument.Bookmarks("StartHere").Select
End Sub
 
Top