473,473 Members | 1,867 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Making an appointment in Outlook from Access

1 New Member
Is there a simple way to open Outlook in Calendar view from Access 2007? I do not know code, but I have used Access for years.
Nov 18 '13 #1
2 3189
ADezii
8,834 Recognized Expert Expert
I am not 100% sure on this, but I do believe that you would have to use the CreateItem() Method of the Outlook Application Object to create the Appointment, then you need to set its Properties, as in:
Expand|Select|Wrap|Line Numbers
  1. Dim objOutlook As Outlook.Application
  2. Dim objAppointment As Outlook.AppointmentItem
  3.  
  4. Set objOutlook = Outlook.Application
  5. Set objAppointment = objOutlook.CreateItem(olAppointmentItem)
  6.  
  7. 'Set properties of the newly created Appointment here
  8. With objAppointment
  9.   '.Actions = ???
  10.   '.AllDayEvent = ???
  11.   '.Body = ???
  12.   '.Duration = ???
  13.   'etc..
  14. End With
Nov 18 '13 #2
topher23
234 Recognized Expert New Member
If you're going to use Outlook Automation like this, don't forget to add "Microsoft Outlook ##.# Object Library" as a Reference or use late binding, as discussed in this insight from Adezii: Early vs. Late Binding
Nov 18 '13 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Bob | last post by:
Hi Everybody I have an MS Access Database that accesses the MS Outlook Inbox. I want to be able to see the full email address that the communication has come from while within Ms Access. ...
1
by: W Akthar | last post by:
Hi, I have written a console application which accesses emails stored on outlook and information about them into SQL Server. The program works but I have click yes to all the pop-ups that...
3
by: Matt | last post by:
I'm trying to do the following, pulling from Outlook with an independent project: 1. The day's Outlook appointments, with person that the appointment was scheduled with 2. Add a list of...
2
by: mik.sjoblom | last post by:
Hello, I have developed a Access application that needs to read mail from Outlook, versions on Access and outlook are 2003. In the code i use mapi to connect to outlook. When i tries to read the...
1
by: Paddy | last post by:
Dear forum, In my database, I have one instance where a specific collection of 7 forms are expected all at one time, so I tried to build an entry screen where the entry form for each individual...
5
by: mattkorguk | last post by:
Hi, Following the introduction of an appointment booking system in Access I've now given myself another issue. As I'm sending lots of appointments out I'm also then getting lots of the same...
1
truthlover
by: truthlover | last post by:
Hi All, Can anyone help me to generate an Outlook 2003 Appointment that can be generated from an Access 2000 form? I have looked at some of the previous posts on this subject (both on...
0
by: sarahmarlowemusic | last post by:
Hi there I am trying to schedule users (email addresses available on the network which I think is Exchange server) from an Access 2003 DB. I have found Arvin Meyer's outlook appointment...
2
by: jrworsham | last post by:
Please help! I have an Outlook module opening a connection to Access, writing in some data, and then pulling out some data. But for some reason the code only works the first time and after that you...
2
by: Vic Rensburg | last post by:
Dear All, I have a Call Logger database with a scheduler function. I've managed to book the appointments and set reminders in Outlook 2007 via access vba, but I'ma bit stuck in calling the...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.