A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Creating a macro in tasks with text.



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old September 24th 07, 03:18 PM posted to microsoft.public.outlook.program_vba
Mr. L
external usenet poster
 
Posts: 4
Default Creating a macro in tasks with text.

I receive several requests to do different things throughout the day. I
normally drag these emails to my task folder so that they will create a task.
In most cases I need to type in a little more detail on each task. For this
I have made several notes that I copy and paste the text into the task. I
know there has to be an easy way to do this. I'm not sure were to go when
trying to make a macro within Outlook. But, I know a lot of you out there
could do this in your sleep and I am grateful for any help you can throw my
way.

Mr L

  #2  
Old September 24th 07, 04:03 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Creating a macro in tasks with text.

Take a look at the macro sample for adding a date stamp to an item for an
example of what you need your macro to look like. Substitute the text you
want to use for the date stamp (Now) in code like that.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Mr. L" wrote in message
...
I receive several requests to do different things throughout the day. I
normally drag these emails to my task folder so that they will create a
task.
In most cases I need to type in a little more detail on each task. For
this
I have made several notes that I copy and paste the text into the task. I
know there has to be an easy way to do this. I'm not sure were to go when
trying to make a macro within Outlook. But, I know a lot of you out there
could do this in your sleep and I am grateful for any help you can throw
my
way.

Mr L


  #3  
Old September 24th 07, 05:02 PM posted to microsoft.public.outlook.program_vba
Mr. L
external usenet poster
 
Posts: 4
Default Creating a macro in tasks with text.

I must be doing something wrong. I am getting a compile error when I am
trying to use some of the code I found. My VBS need work. :-( Even a basic
script to just add some text to an email would be perfect. (I'll keep
trying and searching.)

"Ken Slovak - [MVP - Outlook]" wrote:

Take a look at the macro sample for adding a date stamp to an item for an
example of what you need your macro to look like. Substitute the text you
want to use for the date stamp (Now) in code like that.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Mr. L" wrote in message
...
I receive several requests to do different things throughout the day. I
normally drag these emails to my task folder so that they will create a
task.
In most cases I need to type in a little more detail on each task. For
this
I have made several notes that I copy and paste the text into the task. I
know there has to be an easy way to do this. I'm not sure were to go when
trying to make a macro within Outlook. But, I know a lot of you out there
could do this in your sleep and I am grateful for any help you can throw
my
way.

Mr L



  #4  
Old September 24th 07, 07:00 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Creating a macro in tasks with text.

That code is VBA macro code, which is what you asked for. It's not VBScript
code, which usually is run only as the code behind the form in a custom
Outlook form.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Mr. L" wrote in message
...
I must be doing something wrong. I am getting a compile error when I am
trying to use some of the code I found. My VBS need work. :-( Even a
basic
script to just add some text to an email would be perfect. (I'll keep
trying and searching.)


  #5  
Old September 24th 07, 08:00 PM posted to microsoft.public.outlook.program_vba
Mr. L
external usenet poster
 
Posts: 4
Default Creating a macro in tasks with text.

Sorry, I didn't realize that I was in a different board. I'm not even sure
what VBA is. Is it even close to VBS? Which would be the best way to handle
this?

Sorry again.

"Ken Slovak - [MVP - Outlook]" wrote:

That code is VBA macro code, which is what you asked for. It's not VBScript
code, which usually is run only as the code behind the form in a custom
Outlook form.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Mr. L" wrote in message
...
I must be doing something wrong. I am getting a compile error when I am
trying to use some of the code I found. My VBS need work. :-( Even a
basic
script to just add some text to an email would be perfect. (I'll keep
trying and searching.)



  #6  
Old September 24th 07, 09:22 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Creating a macro in tasks with text.

VBA (Visual Basic for Applications) is what's used for Outlook macros. It's
used also for macros in all the other Office applications. Did you look at
that link I provided? It has all the information you need for the basis of
the macro you want.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Mr. L" wrote in message
...
Sorry, I didn't realize that I was in a different board. I'm not even
sure
what VBA is. Is it even close to VBS? Which would be the best way to
handle
this?

Sorry again.


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Creating text macro for mail Boghound Outlook and VBA 9 June 10th 07 08:38 PM
creating a macro using FIND Ale Outlook and VBA 1 April 19th 07 10:12 PM
Creating macro that will sort emails into folders based on text in body mugginns Outlook and VBA 5 October 3rd 06 07:49 AM
Creating a macro... I think Casey Outlook - General Queries 9 July 27th 06 05:29 PM
Creating a new Macro in Outlook jpotucek Outlook and VBA 3 April 27th 06 02:30 PM


All times are GMT +1. The time now is 04:57 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.