How to insert a time stamp anywhere in Outlook 2003

K

Kev

If you want to insert a timestamp anywhere in Outlook:
1. Open Outlook
2. Pres Alt+F11 to start VB editior
3. Top left box, right click project one and insert a new module
4. Left Click Module one, then in the right window paste the following
code

Sub StampContact()
Dim objItem As Object
Dim objNS As NameSpace

Set objNS = Application.GetNamespace("MAPI")
Set objItem = Application.ActiveInspector.CurrentItem
objItem.Body = objItem.Body & Now() _
& " - " & ": "
'End If

Set objItem = Nothing
Set objNS = Nothing
End Sub

5. close visual basic editor
6. Open any task, right click on the toolbar and select Customize
7. Click Commands Tab, scroll down and select Macros
8. Drag the Project1.Stamp macro up to the toolbar
9. All Done

When ever you want to insert a timestamp in Outlook, click on the
button.

Im trying to work out how to assign a KB short cut to it.

Kevin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top