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
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