Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Xane
 
Posts: n/a
Default How do I paste text into Word in the document's font face?

If you paste text into a Word document, Word always uses this "useful"
feature of retaining the original font and text characteristics. This is
terribly annoying to me to be honest, because 99 out of a hundred times, I
just want to paste the text into the document with the document's font face,
colour etc intact. (so not the original font I copied the text in from, for
example, a webpage.)

These days, I just paste the text in a notepad document and then paste that
into word, but there has to be a simple switch I can flick somewhere to just
preserve the document font at all times when pasting. Anyone know where that
is?
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
garfield-n-odie
 
Posts: n/a
Default How do I paste text into Word in the document's font face?

When pasting, use Edit | Paste Special | Paste: As: Unformatted
text | OK.

Xane wrote:

If you paste text into a Word document, Word always uses this "useful"
feature of retaining the original font and text characteristics. This is
terribly annoying to me to be honest, because 99 out of a hundred times, I
just want to paste the text into the document with the document's font face,
colour etc intact. (so not the original font I copied the text in from, for
example, a webpage.)

These days, I just paste the text in a notepad document and then paste that
into word, but there has to be a simple switch I can flick somewhere to just
preserve the document font at all times when pasting. Anyone know where that
is?


  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom
 
Posts: n/a
Default How do I paste text into Word in the document's font face?

If you are using Word 2002/2003 you should see a smart tag which
allows you to select the desired format of the pasted text. For more,
see http://www.shaunakelly.com/word/styl...ionsWorks.html.

Alternatively, you can click Paste Special on the Edit menu, and
choose to paste as "Unformatted text". An equivalent method is to use
the following macro (useful if you need to paste in text format a
lot):

Sub PasteAsText()
On Error Resume Next
Selection.PasteSpecial datatype:=wdPasteText
End Sub

For installation instructions, see
http://gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP


"Xane" wrote in message
...
If you paste text into a Word document, Word always uses this

"useful"
feature of retaining the original font and text characteristics.

This is
terribly annoying to me to be honest, because 99 out of a hundred

times, I
just want to paste the text into the document with the document's

font face,
colour etc intact. (so not the original font I copied the text in

from, for
example, a webpage.)

These days, I just paste the text in a notepad document and then

paste that
into word, but there has to be a simple switch I can flick somewhere

to just
preserve the document font at all times when pasting. Anyone know

where that
is?









  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Xane
 
Posts: n/a
Default How do I paste text into Word in the document's font face?

Thanks a lot Stefan, that might be helpful.
If I enter this macro in that normal file (forgot the extention), then all
text should automatically be pasted as plain text in the font of the
document, right?



"Stefan Blom" wrote:

If you are using Word 2002/2003 you should see a smart tag which
allows you to select the desired format of the pasted text. For more,
see http://www.shaunakelly.com/word/styl...ionsWorks.html.

Alternatively, you can click Paste Special on the Edit menu, and
choose to paste as "Unformatted text". An equivalent method is to use
the following macro (useful if you need to paste in text format a
lot):

Sub PasteAsText()
On Error Resume Next
Selection.PasteSpecial datatype:=wdPasteText
End Sub

For installation instructions, see
http://gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP


"Xane" wrote in message
...
If you paste text into a Word document, Word always uses this

"useful"
feature of retaining the original font and text characteristics.

This is
terribly annoying to me to be honest, because 99 out of a hundred

times, I
just want to paste the text into the document with the document's

font face,
colour etc intact. (so not the original font I copied the text in

from, for
example, a webpage.)

These days, I just paste the text in a notepad document and then

paste that
into word, but there has to be a simple switch I can flick somewhere

to just
preserve the document font at all times when pasting. Anyone know

where that
is?










  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom
 
Posts: n/a
Default How do I paste text into Word in the document's font face?

No, you'd have to run the macro manually, for example, by adding it to
a toolbar.

If you prefer to intercept the built-in Paste command, simply
change the name of the sub-routine to "EditPaste" (assuming that it is
stored in the Normal template). In other words, it should look like
this:

Sub EditPaste()
On Error Resume Next
Selection.PasteSpecial datatype:=wdPasteText
End Sub

--
Stefan Blom
Microsoft Word MVP


"Xane" wrote in message
...
Thanks a lot Stefan, that might be helpful.
If I enter this macro in that normal file (forgot the extention),

then all
text should automatically be pasted as plain text in the font of the
document, right?



"Stefan Blom" wrote:

If you are using Word 2002/2003 you should see a smart tag which
allows you to select the desired format of the pasted text. For

more,
see

http://www.shaunakelly.com/word/styl...ionsWorks.html.

Alternatively, you can click Paste Special on the Edit menu, and
choose to paste as "Unformatted text". An equivalent method is to

use
the following macro (useful if you need to paste in text format a
lot):

Sub PasteAsText()
On Error Resume Next
Selection.PasteSpecial datatype:=wdPasteText
End Sub

For installation instructions, see
http://gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP


"Xane" wrote in message
...
If you paste text into a Word document, Word always uses this

"useful"
feature of retaining the original font and text characteristics.

This is
terribly annoying to me to be honest, because 99 out of a

hundred
times, I
just want to paste the text into the document with the

document's
font face,
colour etc intact. (so not the original font I copied the text

in
from, for
example, a webpage.)

These days, I just paste the text in a notepad document and then

paste that
into word, but there has to be a simple switch I can flick

somewhere
to just
preserve the document font at all times when pasting. Anyone

know
where that
is?



















  #6   Report Post  
Posted to microsoft.public.word.docmanagement
Xane
 
Posts: n/a
Default How do I paste text into Word in the document's font face?

Eh... *sheepish look*

"simply" change the name of a sub-routine? I'm afraid I need a bit more info
here... where do I go to do that? I'm not much of a coder of anything (html
is about as far as I get with anything resembling code)...
It might be asking for a bit much, but can u take me through it step by step?


"Stefan Blom" wrote:

No, you'd have to run the macro manually, for example, by adding it to
a toolbar.

If you prefer to intercept the built-in Paste command, simply
change the name of the sub-routine to "EditPaste" (assuming that it is
stored in the Normal template). In other words, it should look like
this:

Sub EditPaste()
On Error Resume Next
Selection.PasteSpecial datatype:=wdPasteText
End Sub

--
Stefan Blom
Microsoft Word MVP


"Xane" wrote in message
...
Thanks a lot Stefan, that might be helpful.
If I enter this macro in that normal file (forgot the extention),

then all
text should automatically be pasted as plain text in the font of the
document, right?



"Stefan Blom" wrote:

If you are using Word 2002/2003 you should see a smart tag which
allows you to select the desired format of the pasted text. For

more,
see

http://www.shaunakelly.com/word/styl...ionsWorks.html.

Alternatively, you can click Paste Special on the Edit menu, and
choose to paste as "Unformatted text". An equivalent method is to

use
the following macro (useful if you need to paste in text format a
lot):

Sub PasteAsText()
On Error Resume Next
Selection.PasteSpecial datatype:=wdPasteText
End Sub

For installation instructions, see
http://gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP


"Xane" wrote in message
...
If you paste text into a Word document, Word always uses this
"useful"
feature of retaining the original font and text characteristics.
This is
terribly annoying to me to be honest, because 99 out of a

hundred
times, I
just want to paste the text into the document with the

document's
font face,
colour etc intact. (so not the original font I copied the text

in
from, for
example, a webpage.)

These days, I just paste the text in a notepad document and then
paste that
into word, but there has to be a simple switch I can flick

somewhere
to just
preserve the document font at all times when pasting. Anyone

know
where that
is?

















  #7   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom
 
Posts: n/a
Default How do I paste text into Word in the document's font face?

If you read the article by MVP Graham Mayor at
http://gmayor.com/installing_macro.htm you know how to create a macro
in normal.dot. Rather than using the name I first suggested
("PasteAsText"), you use "EditPaste". That way, you get a macro which
replaces Word's normal paste command.

--
Stefan Blom
Microsoft Word MVP


"Xane" wrote in message
...
Eh... *sheepish look*

"simply" change the name of a sub-routine? I'm afraid I need a bit

more info
here... where do I go to do that? I'm not much of a coder of

anything (html
is about as far as I get with anything resembling code)...
It might be asking for a bit much, but can u take me through it step

by step?


"Stefan Blom" wrote:

No, you'd have to run the macro manually, for example, by adding

it to
a toolbar.

If you prefer to intercept the built-in Paste command, simply
change the name of the sub-routine to "EditPaste" (assuming that

it is
stored in the Normal template). In other words, it should look

like
this:

Sub EditPaste()
On Error Resume Next
Selection.PasteSpecial datatype:=wdPasteText
End Sub

--
Stefan Blom
Microsoft Word MVP


"Xane" wrote in message
...
Thanks a lot Stefan, that might be helpful.
If I enter this macro in that normal file (forgot the

extention),
then all
text should automatically be pasted as plain text in the font of

the
document, right?



"Stefan Blom" wrote:

If you are using Word 2002/2003 you should see a smart tag

which
allows you to select the desired format of the pasted text.

For
more,
see

http://www.shaunakelly.com/word/styl...ionsWorks.html.

Alternatively, you can click Paste Special on the Edit menu,

and
choose to paste as "Unformatted text". An equivalent method is

to
use
the following macro (useful if you need to paste in text

format a
lot):

Sub PasteAsText()
On Error Resume Next
Selection.PasteSpecial datatype:=wdPasteText
End Sub

For installation instructions, see
http://gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP


"Xane" wrote in message
...
If you paste text into a Word document, Word always uses

this
"useful"
feature of retaining the original font and text

characteristics.
This is
terribly annoying to me to be honest, because 99 out of a

hundred
times, I
just want to paste the text into the document with the

document's
font face,
colour etc intact. (so not the original font I copied the

text
in
from, for
example, a webpage.)

These days, I just paste the text in a notepad document and

then
paste that
into word, but there has to be a simple switch I can flick

somewhere
to just
preserve the document font at all times when pasting. Anyone

know
where that
is?





















  #8   Report Post  
Posted to microsoft.public.word.docmanagement
Opinicus
 
Posts: n/a
Default How do I paste text into Word in the document's font face?

"Stefan Blom" wrote in message

No, you'd have to run the macro manually, for example, by adding it to
a toolbar.


If you prefer to intercept the built-in Paste command, simply
change the name of the sub-routine to "EditPaste" (assuming that it is
stored in the Normal template). In other words, it should look like
this:


I've assigned the macro to control-shift-V. That way I can have the best of
both worlds.

--
Bob
http://www.kanyak.com


Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I set right and left alignment on the same line in Word? Matador Page Layout 1 November 9th 05 08:32 PM
convert from wordperfect bullets and numbering 184wp Microsoft Word Help 1 October 27th 05 08:00 PM
is word perfect compatible with office word? Noreen Microsoft Word Help 1 May 11th 05 11:17 PM
Making Word do something that Wordperfect can do NarniaUK New Users 4 May 1st 05 10:44 PM
Continuous breaks convert to next page breaks Jennifer Hunt Microsoft Word Help 2 December 30th 04 05:45 PM


All times are GMT +1. The time now is 02:13 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"