Open Outlook Calendar from Access

S

Sylvie

Hello All
From a command button on Access, how can you open Outlook Calendar for the
user to be able to add an appointment and if possible return the Date and
time of the appointment on a text box on the current form. I'm using
Access2007.
Thank you so much.
 
B

Beetle

There is no simple, built in way to do what you want. It's going to require
some programming on your part. Simply opening Outlook isn't that
difficult, but transferring data between the two is more complicated.
Outlook stores it's data in one table (aka a "flat file" structure), whereas
Access uses the relational model (multiple related tables).

So, the question is, how comfortable are you with programming in
the VBA environment?
 
S

SylvieB

I don't know much about VBA, although i'd like to learn (still looking for a
good book to learn). If i go only with opening Outlook calendar, what code do
I need to write? Thank you
 
B

Beetle

Here is a link to an article about creating an Outlook appointment
from Access. It assumes that you would be entering the appointment
data in Access and then just adding it to Outlook programmatically, so
the appointment data would need to be stored in an Access table.

Even if that is not what you want to do, the article should give you some
useful information regarding working with Outlook from within Access.
 

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