PDA

View Full Version : Customizing the Appointment window



GregL65
07-25-2012, 02:38 PM
Is it possible to make a custom dialog appear when the user clicks in the Subject line of the Appointment window, and then insert text to the Subject line when the user is finished with the custom dialog?

If not, what about creating a menu item or toolbar item on the Appointment window -- is that possible?


Thanks,

Greg

JP2112
08-06-2012, 06:58 AM
How about a script that creates the appointment for you? Something like


Dim subjectLine As String
Dim appt As Outlook.AppointmentItem
subjectLine = InputBox("Type your subject here")
Set appt = Outlook.CreateItem(olAppointmentItem)
With appt
.Subject = subjectLine
.Display
End With