Insert Text via Macro in Outlook 2007

  • Thread starter Thread starter dd
  • Start date Start date
D

dd

I have written the below vb macro (modified here for privacy and it works in
Word) and would like to use it to insert a signature within the Outlook New
Appointment area. It have added the developer stuff and macro button to the
New Appt Toolbar but I get an error every time (runtime error 424). Can you
help?

Sub CalendarSignature()
'
' CalendarSignature Macro
' Inserts signature, title and phone number.
'

Application.ActiveExplorer.Activate
Selection.TypeText Text:="Ms. Name"
Selection.TypeParagraph
Selection.TypeText Text:="title"
Selection.TypeParagraph
Selection.TypeText Text:="phone number"
End Sub
 
My work computer does not allow me to browse to turtleflock...I will attempt
this at home. Thank you.
 
Back
Top