![]() |
|
#1
|
|||
|
|||
|
Dim olAppt As Outlook.AppointmentItem
Dim olApptCopy As Outlook.AppointmentItem Set olApptCopy = Outlook.CreateItem(olAppointmentItem) 'Copy the desired details to a new appointment item If objItem.Class = olAppointment Then Set olAppt = objItem With olApptCopy .Subject = olAppt.Subject .Location = olAppt.Location .Body = olAppt.Body .Categories = olAppt.Categories .AllDayEvent = olAppt.AllDayEvent End With 'Display the copy olApptCopy.Display This code takes a copy of a calendar item and copies it like a template for a new calendar item. It works really well. Now I would like to change the font from within the code. Is it possible? |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Add Calendar Item to Quick Access Toolbar | komobu | Outlook | 3 | 11-07-2020 03:04 PM |
| Insert Excel Table into Outlook Calendar Item | komobu | Outlook | 0 | 02-07-2019 08:54 AM |
How to change the body font in an existing Design Template?
|
Meenie50 | Word | 2 | 01-04-2017 03:17 PM |
VBA to change font colour in email body on send
|
RealmOfCOnfusion | Outlook | 1 | 06-30-2016 09:55 PM |
Create Calendar Item though VBA
|
komobu | Outlook | 3 | 11-19-2015 08:44 AM |