WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Word 2007 Short-Cut Question

 
   Home -> Office -> New Users RSS
Next:  why has my typing suddenly turned red?  
Author Message
WSR

External


Since: May 27, 2008
Posts: 12



(Msg. 1) Posted: Tue Aug 19, 2008 8:07 am
Post subject: Word 2007 Short-Cut Question
Archived from groups: microsoft>public>word>newusers (more info?)

I'd like to create a one key short-cut key that allows me to "Paste Special"
/ "Picture (Enhanced Metafile") since I use that feature a lot.

Any guidance/assistance is appreciated
Back to top
Login to vote
Stefan Blom

External


Since: Jul 01, 2004
Posts: 5177



(Msg. 2) Posted: Tue Aug 19, 2008 2:49 pm
Post subject: Re: Word 2007 Short-Cut Question [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

You can use Ctrl+Alt+V to display the Paste Special dialog box.

--
Stefan Blom
Microsoft Word MVP


"WSR" <wsr-203.TakeThisOut@hotmail.com> wrote in message
news:%23gItSPfAJHA.1940@TK2MSFTNGP05.phx.gbl...
> I'd like to create a one key short-cut key that allows me to "Paste
> Special" / "Picture (Enhanced Metafile") since I use that feature a lot.
>
> Any guidance/assistance is appreciated
>
Back to top
Login to vote
Terry Farrell

External


Since: Dec 08, 2003
Posts: 3330



(Msg. 3) Posted: Tue Aug 19, 2008 3:42 pm
Post subject: Re: Word 2007 Short-Cut Question [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Have you tested that method?

--
Terry Farrell - MSWord MVP

"PamC via OfficeKB.com" <u43222@uwe> wrote in message
news:88e75dc5ded02@uwe...
> Record a macro and assign it to a shortcut key of your choosing.
>
> PamC
>
> WSR wrote:
>>I'd like to create a one key short-cut key that allows me to "Paste
>>Special"
>>/ "Picture (Enhanced Metafile") since I use that feature a lot.
>>
>>Any guidance/assistance is appreciated
>
> --
> Message posted via http://www.officekb.com
>
Back to top
Login to vote
WSR

External


Since: May 27, 2008
Posts: 12



(Msg. 4) Posted: Tue Aug 19, 2008 3:42 pm
Post subject: Re: Word 2007 Short-Cut Question [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

My question regarding the macro is how do I make it "generic" so that it's
pasting what ever object I cut?

When I try to record the macro from a blank sheet, the paste button is
greyed out.

What I don't what the macro to do is Paste Special / Picture the same object
over and over again.

I want it to Paste Special the last object on the clipboard.

If this makes any sense.


"Terry Farrell" <terryfarrell.RemoveThis@msn.com> wrote in message
news:OGO2BngAJHA.1016@TK2MSFTNGP03.phx.gbl...
> Have you tested that method?
>
> --
> Terry Farrell - MSWord MVP
>
> "PamC via OfficeKB.com" <u43222@uwe> wrote in message
> news:88e75dc5ded02@uwe...
>> Record a macro and assign it to a shortcut key of your choosing.
>>
>> PamC
>>
>> WSR wrote:
>>>I'd like to create a one key short-cut key that allows me to "Paste
>>>Special"
>>>/ "Picture (Enhanced Metafile") since I use that feature a lot.
>>>
>>>Any guidance/assistance is appreciated
>>
>> --
>> Message posted via http://www.officekb.com
>>
>
Back to top
Login to vote
WSR

External


Since: May 27, 2008
Posts: 12



(Msg. 5) Posted: Wed Aug 20, 2008 2:32 pm
Post subject: Re: Word 2007 Short-Cut Question [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

What I want to do is cut from another application and paste special as a
picture (enhanced metafile) format.

When I record the macro as you describe, the cut some cells from an Excel
file the result in the Word file is a table, not a picture.

Any ideas with my macro?

Here's the VB

Sub PasteSpecialPicture()
'
' PasteSpecialPicture Macro
'
'
Selection.PasteSpecial (wdPasteEnhancedMetafile)
End Sub


Thanks 8^>


"PamC via OfficeKB.com" <u43222@uwe> wrote in message
news:88eb70a316bcc@uwe...
> First copy an image. Then turn on the macro recorder, and go to it. You
> need
> to record the steps for pasting an image that is already in memory (the
> clipboard).
>
> PamC
>
> WSR wrote:
>>My question regarding the macro is how do I make it "generic" so that it's
>>pasting what ever object I cut?
>>
>>When I try to record the macro from a blank sheet, the paste button is
>>greyed out.
>>
>>What I don't what the macro to do is Paste Special / Picture the same
>>object
>>over and over again.
>>
>>I want it to Paste Special the last object on the clipboard.
>>
>>If this makes any sense.
>>
>>> Have you tested that method?
>>>
>>[quoted text clipped - 7 lines]
>>>>>
>>>>>Any guidance/assistance is appreciated
>
> --
> Message posted via OfficeKB.com
> http://www.officekb.com/Uwe/Forums.aspx/ms-word-general/200808/1
>
Back to top
Login to vote
Herb Tyson [MVP]

External


Since: Oct 02, 2003
Posts: 2230



(Msg. 6) Posted: Wed Aug 20, 2008 9:59 pm
Post subject: Re: Word 2007 Short-Cut Question [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Try this line:

Selection.PasteSpecial DataType:=9

--
Herb Tyson MS MVP
Author of the Word 2007 Bible
Blog: http://word2007bible.herbtyson.com
Web: http://www.herbtyson.com


"WSR" <wsr-203.DeleteThis@hotmail.com> wrote in message
news:Oai5aLvAJHA.3568@TK2MSFTNGP06.phx.gbl...
> What I want to do is cut from another application and paste special as a
> picture (enhanced metafile) format.
>
> When I record the macro as you describe, the cut some cells from an Excel
> file the result in the Word file is a table, not a picture.
>
> Any ideas with my macro?
>
> Here's the VB
>
> Sub PasteSpecialPicture()
> '
> ' PasteSpecialPicture Macro
> '
> '
> Selection.PasteSpecial (wdPasteEnhancedMetafile)
> End Sub
>
>
> Thanks 8^>
>
>
> "PamC via OfficeKB.com" <u43222@uwe> wrote in message
> news:88eb70a316bcc@uwe...
>> First copy an image. Then turn on the macro recorder, and go to it. You
>> need
>> to record the steps for pasting an image that is already in memory (the
>> clipboard).
>>
>> PamC
>>
>> WSR wrote:
>>>My question regarding the macro is how do I make it "generic" so that
>>>it's
>>>pasting what ever object I cut?
>>>
>>>When I try to record the macro from a blank sheet, the paste button is
>>>greyed out.
>>>
>>>What I don't what the macro to do is Paste Special / Picture the same
>>>object
>>>over and over again.
>>>
>>>I want it to Paste Special the last object on the clipboard.
>>>
>>>If this makes any sense.
>>>
>>>> Have you tested that method?
>>>>
>>>[quoted text clipped - 7 lines]
>>>>>>
>>>>>>Any guidance/assistance is appreciated
>>
>> --
>> Message posted via OfficeKB.com
>> http://www.officekb.com/Uwe/Forums.aspx/ms-word-general/200808/1
>>
>
>
Back to top
Login to vote
WSR

External


Since: May 27, 2008
Posts: 12



(Msg. 7) Posted: Thu Aug 21, 2008 9:25 am
Post subject: Re: Word 2007 Short-Cut Question [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thanks Herb & PamC

Using the following VB allows me to Paste/Special/Picture (Enhanced
Metafile)


Sub PasteSpecialPicture()
'
' PasteSpecialPicture Macro
'
'
Selection.PasteSpecial DataType:=9
End Sub


"Herb Tyson [MVP]" <herb.DeleteThis@1x2y3z.xnw> wrote in message
news:eCqWxGzAJHA.4040@TK2MSFTNGP06.phx.gbl...
> Try this line:
>
> Selection.PasteSpecial DataType:=9
>
> --
> Herb Tyson MS MVP
> Author of the Word 2007 Bible
> Blog: http://word2007bible.herbtyson.com
> Web: http://www.herbtyson.com
>
>
> "WSR" <wsr-203.DeleteThis@hotmail.com> wrote in message
> news:Oai5aLvAJHA.3568@TK2MSFTNGP06.phx.gbl...
>> What I want to do is cut from another application and paste special as a
>> picture (enhanced metafile) format.
>>
>> When I record the macro as you describe, the cut some cells from an Excel
>> file the result in the Word file is a table, not a picture.
>>
>> Any ideas with my macro?
>>
>> Here's the VB
>>
>> Sub PasteSpecialPicture()
>> '
>> ' PasteSpecialPicture Macro
>> '
>> '
>> Selection.PasteSpecial (wdPasteEnhancedMetafile)
>> End Sub
>>
>>
>> Thanks 8^>
>>
>>
>> "PamC via OfficeKB.com" <u43222@uwe> wrote in message
>> news:88eb70a316bcc@uwe...
>>> First copy an image. Then turn on the macro recorder, and go to it. You
>>> need
>>> to record the steps for pasting an image that is already in memory (the
>>> clipboard).
>>>
>>> PamC
>>>
>>> WSR wrote:
>>>>My question regarding the macro is how do I make it "generic" so that
>>>>it's
>>>>pasting what ever object I cut?
>>>>
>>>>When I try to record the macro from a blank sheet, the paste button is
>>>>greyed out.
>>>>
>>>>What I don't what the macro to do is Paste Special / Picture the same
>>>>object
>>>>over and over again.
>>>>
>>>>I want it to Paste Special the last object on the clipboard.
>>>>
>>>>If this makes any sense.
>>>>
>>>>> Have you tested that method?
>>>>>
>>>>[quoted text clipped - 7 lines]
>>>>>>>
>>>>>>>Any guidance/assistance is appreciated
>>>
>>> --
>>> Message posted via OfficeKB.com
>>> http://www.officekb.com/Uwe/Forums.aspx/ms-word-general/200808/1
>>>
>>
>>
>
Back to top
Login to vote
Herb Tyson [MVP]

External


Since: Oct 02, 2003
Posts: 2230



(Msg. 8) Posted: Thu Aug 21, 2008 9:41 am
Post subject: Re: Word 2007 Short-Cut Question [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I'm glad it worked. It took a bit of detective work to figure out, since the
macro recorder recorded paste special as PasteAndFormat, instead.

--
Herb Tyson MS MVP
Author of the Word 2007 Bible
Blog: http://word2007bible.herbtyson.com
Web: http://www.herbtyson.com


"WSR" <wsr-203 DeleteThis @hotmail.com> wrote in message
news:exYfPE5AJHA.4572@TK2MSFTNGP02.phx.gbl...
> Thanks Herb & PamC
>
> Using the following VB allows me to Paste/Special/Picture (Enhanced
> Metafile)
>
>
> Sub PasteSpecialPicture()
> '
> ' PasteSpecialPicture Macro
> '
> '
> Selection.PasteSpecial DataType:=9
> End Sub
>
>
> "Herb Tyson [MVP]" <herb DeleteThis @1x2y3z.xnw> wrote in message
> news:eCqWxGzAJHA.4040@TK2MSFTNGP06.phx.gbl...
>> Try this line:
>>
>> Selection.PasteSpecial DataType:=9
>>
>> --
>> Herb Tyson MS MVP
>> Author of the Word 2007 Bible
>> Blog: http://word2007bible.herbtyson.com
>> Web: http://www.herbtyson.com
>>
>>
>> "WSR" <wsr-203 DeleteThis @hotmail.com> wrote in message
>> news:Oai5aLvAJHA.3568@TK2MSFTNGP06.phx.gbl...
>>> What I want to do is cut from another application and paste special as a
>>> picture (enhanced metafile) format.
>>>
>>> When I record the macro as you describe, the cut some cells from an
>>> Excel file the result in the Word file is a table, not a picture.
>>>
>>> Any ideas with my macro?
>>>
>>> Here's the VB
>>>
>>> Sub PasteSpecialPicture()
>>> '
>>> ' PasteSpecialPicture Macro
>>> '
>>> '
>>> Selection.PasteSpecial (wdPasteEnhancedMetafile)
>>> End Sub
>>>
>>>
>>> Thanks 8^>
>>>
>>>
>>> "PamC via OfficeKB.com" <u43222@uwe> wrote in message
>>> news:88eb70a316bcc@uwe...
>>>> First copy an image. Then turn on the macro recorder, and go to it.
>>>> You need
>>>> to record the steps for pasting an image that is already in memory (the
>>>> clipboard).
>>>>
>>>> PamC
>>>>
>>>> WSR wrote:
>>>>>My question regarding the macro is how do I make it "generic" so that
>>>>>it's
>>>>>pasting what ever object I cut?
>>>>>
>>>>>When I try to record the macro from a blank sheet, the paste button is
>>>>>greyed out.
>>>>>
>>>>>What I don't what the macro to do is Paste Special / Picture the same
>>>>>object
>>>>>over and over again.
>>>>>
>>>>>I want it to Paste Special the last object on the clipboard.
>>>>>
>>>>>If this makes any sense.
>>>>>
>>>>>> Have you tested that method?
>>>>>>
>>>>>[quoted text clipped - 7 lines]
>>>>>>>>
>>>>>>>>Any guidance/assistance is appreciated
>>>>
>>>> --
>>>> Message posted via OfficeKB.com
>>>> http://www.officekb.com/Uwe/Forums.aspx/ms-word-general/200808/1
>>>>
>>>
>>>
>>
>
>
Back to top
Login to vote
Display posts from previous:   
       Home -> Office -> New Users All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
  Office
 Office Other
 Security
 WinRAR
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET