Quick/Easy Way to Copy Data from Email

G

G

I want to copy email from an email (subject or text) for future use
(pasting). Is there a quick/easy way to do this in Outlook 2003?

Thanks.

Gary
 
M

Michael Bauer [MVP - Outlook]

Do you want to do that by code? if not, double click the text, then right
click, and choose Copy.

--
Best regards
Michael Bauer - MVP Outlook

: VBOffice Reporter for Data Analysis & Reporting
: Outlook Categories? Category Manager Is Your Tool
: <http://www.vboffice.net/product.html?pub=6&lang=en>


Am Wed, 27 Aug 2008 04:50:01 -0700 schrieb G:
 
G

G

Yes, I wnat to do that by code. Basically, I want to embed some sort of
trigger (in an email?) that copies the data.

Thanks for your response.
 
M

Michael Bauer [MVP - Outlook]

By what do you want the trigger to be raised, do you want to copy all the
subject and body, and where do you want to paste it?

--
Best regards
Michael Bauer - MVP Outlook

: VBOffice Reporter for Data Analysis & Reporting
: Outlook Categories? Category Manager Is Your Tool
: <http://www.vboffice.net/product.html?pub=6&lang=en>


Am Thu, 28 Aug 2008 05:36:14 -0700 schrieb G:
 
G

G

Sorry for the delayed response ... on vacation.


- By what do you want the trigger to be raised

## Click of the mouse

- do you want to copy all the subject and body

## Just the subject

- where do you want to paste it

## From the clipboard

Thanks, in advance.

G
 
M

Michael Bauer [MVP - Outlook]

The Outlook objct model doesn't offer a way to work with the clipboard. If
you add a UserForm to your VBA project, the MSForms library will be
referenced, which in turn offers a DataObject.

After adding the UserForm, please open the object browser (f2), switch from
<All libraries> to MSForms, and select the DataObject left hand, then see
what methods are available right hand.

The subject of the currently opened item is:

Application.ActiveInspector.CurrentItem.Subject

With the DataObject you may write that subject into the clipboard.

--
Best regards
Michael Bauer - MVP Outlook

: VBOffice Reporter for Data Analysis & Reporting
: Outlook Categories? Category Manager Is Your Tool
: <http://www.vboffice.net/product.html?pub=6&lang=en>


Am Fri, 5 Sep 2008 11:25:01 -0700 schrieb G:
 
Top