Word 2k Memo Macro Editing

J

Joyce

Can you edit this Word template document macro to prevent
the memo graphic from going onto the second page of the
memo?


Sub Memo()
'
' Memo Macro
' Macro recorded <date> by <username>
'
Documents.Add Template:= _
"C:\Documents and Settings\<username>\Application
Data\Microsoft\Templates\MEMO.dot" _
, NewTemplate:=False, DocumentType:=0
Selection.MoveDown Unit:=wdLine, Count:=11
Selection.MoveUp Unit:=wdLine, Count:=5
Selection.MoveRight Unit:=wdCharacter, Count:=4
End Sub
 
D

Doug Robbins - Word MVP

Hi Joyce,

I don't know where the memo graphic comes into this. Maybe it should be in
the first page header of the template. Also instead of the Selection.Move
statements, you should insert a bookmark into the template at the location
to which you are moving the selection and then use

ActiveDocument.Bookmarks("bookmarkname").Range.Select

Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.

Hope this helps
Doug Robbins - Word MVP
 

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