Creating an Appointments Schedule in Outlook

bnw

Registered User.
Local time
Today, 13:36
Joined
Sep 19, 2006
Messages
26
How to create a VBA code for generating an appointment schedule in Outlook? :(
 
Search this forum for "Outlook" applications. Outlook, like most of MS Office, exposes its components using the Automation concept. (Used to be called "Component Object Model" or COM.) You'll also see that in association with ActiveX.

In summary, you need to create an Outlook Application, after which you can open the Outlook calendar and manipulate it. Places to look:

Access Help on creating an Application. (Their examples are Word and Excel.)

Access Help on navigating collections. (Because the Outlook elements will be collections.)

Outlook Help on programming concepts. (Because that topic - inside of Outlook - will name the objects and collections you can see.)

Outlook Help on VBA programming. (Because that will contain examples on VBA code to dink around with Outlook objects.)
 

Users who are viewing this thread

Back
Top Bottom