I get the above message when I paste two pages of text in to a macro I'm
recording and formatting. I get the message when I restart my computer I
usually copy the text before I start the recording and paste it in once I
start recording.
Can anyone help with this? I would like to get rid of the error and have a
functional macro
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
"wordwordy" <word...@discussions.microsoft.com> wrote in message
news:CCFF078E-C9C0-46A5...@microsoft.com...
"Graham Mayor" wrote:
> .
>
--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org
"wordwordy" <word...@discussions.microsoft.com> wrote in message
news:9AF91814-93DA-424C...@microsoft.com...
"Graham Mayor" wrote:
> .
>
--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
"wordwordy" <word...@discussions.microsoft.com> wrote in message
news:DAEFB57F-EE78-4CD6...@microsoft.com...
Sub Personal()
'
' Personal Macro
'
'
Selection.TypeText Text:= _
"I am an honest, conscientious person. I have complete confi"
Selection.TypeText Text:= _
"dence in the work my work and I have always been a good team"
Selection.TypeText Text:= _
" player and communicator in the work place. I have worked u"
Selection.TypeText Text:= _
"nder pressure in the past but always managed to achieve exce"
Selection.TypeText Text:="llent results despite the extra pressure."
End Sub
Sub test()
'
' test Macro
'
'
Selection.PasteAndFormat (wdPasteDefault)
ActiveWindow.ActivePane.VerticalPercentScrolled = 0
ActiveWindow.ActivePane.VerticalPercentScrolled = 66
Selection.MoveUp Unit:=wdLine, Count:=111
Selection.TypeParagraph
Selection.TypeParagraph
Selection.TypeParagraph
Selection.TypeParagraph
Selection.MoveUp Unit:=wdLine, Count:=3
Selection.TypeText Text:="Personal"
End Sub
"Suzanne S. Barnhill" wrote:
> .
>
Assuming that it was that macro that produced the error, it probably did so
previously because nothing had been copied to the clipboard.
There is nothing in either of your two macros to do that.
--
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"wordwordy" <word...@discussions.microsoft.com> wrote in message
news:D7B82BE0-15B6-485F...@microsoft.com...